]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* progmodes/compile.el (compilation-always-kill): Doc fix.
[gnu-emacs] / lisp / ChangeLog
1 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
2
3 * progmodes/compile.el (compilation-always-kill): Doc fix.
4
5 2012-08-30 Chong Yidong <cyd@gnu.org>
6
7 * window.el (display-buffer-reuse-frames): Make the obsolescence
8 message more informative.
9
10 2012-08-30 Glenn Morris <rgm@gnu.org>
11
12 * paren.el (show-paren-delay):
13 Add a :set function. Doc fix. (Bug#12297)
14
15 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
16
17 * progmodes/compile.el (compilation-always-kill): New var.
18 (compilation-start): Use it.
19
20 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
21
22 * simple.el (read-only-mode): Move from files.el for bootstrapping.
23 * files.el (read-only-mode): Move to simple.el.
24
25 * files.el (read-only-mode): New minor mode.
26 (toggle-read-only): Use it and mark obsolete.
27 (find-file--read-only):
28 * vc/vc.el (vc-next-action, vc-checkout):
29 * vc/vc-cvs.el (vc-cvs-checkout):
30 * obsolete/vc-mcvs.el (vc-mcvs-update):
31 * ffap.el (ffap--toggle-read-only): Update callers.
32
33 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
34
35 * eshell/esh-ext.el (eshell-external-command): Do not examine
36 remote shell scripts. See
37 <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
38
39 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
40 "/usr/local/sbin".
41
42 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
43
44 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
45
46 2012-08-28 Leo Liu <sdl.web@gmail.com>
47
48 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
49 completion-at-point. (Bug#12220)
50
51 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
52
53 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
54
55 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
56
57 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
58 be buffer-local; add delete-trailing-whitespace (bug#12259).
59
60 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
61
62 * progmodes/hideif.el (hif-compress-define-list):
63 Fix typo. (Bug#11951)
64
65 2012-08-28 Dan Nicolaescu <dann@gnu.org>
66
67 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
68 buffer local setting.
69
70 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
71 rcirc-encode-coding-system.
72
73 2012-08-28 Leo Liu <sdl.web@gmail.com>
74
75 * net/rcirc.el (rcirc-split-message): New function.
76 (rcirc-send-message): Use it. (Bug#12051)
77
78 2012-08-28 Juri Linkov <juri@jurta.org>
79
80 * info.el (Info-fontify-node): Hide empty lines at the end of
81 the node. (Bug#12272)
82
83 2012-08-27 Drew Adams <drew.adams@oracle.com>
84
85 * dired.el (dired-pop-to-buffer): Make window start at beginning
86 of buffer (Bug#12281).
87
88 2012-08-26 Chong Yidong <cyd@gnu.org>
89
90 * window.el (special-display-regexps, special-display-frame-alist)
91 (special-display-buffer-names, special-display-function)
92 (display-buffer-reuse-frames): Mark as obsolete.
93
94 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
95
96 * help.el (help-print-return-message): Don't treat
97 display-buffer-reuse-frames specially.
98
99 2012-08-26 Chong Yidong <cyd@gnu.org>
100
101 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
102 New variable, replacing gdb-frame-parameters.
103 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
104 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
105 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
106 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
107 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
108 the functions directly with gdb-display-buffer-other-frame-action.
109 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
110 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
111 (gdb-display-stack-buffer, gdb-display-locals-buffer)
112 (gdb-display-registers-buffer): Define directly.
113 (def-gdb-display-buffer): Macro deleted.
114 (gdb-display-buffer): Remove second and third args, callers don't
115 use them. Defer to the default display-buffer behavior, apart
116 from making windows dedicated.
117 (gdb-setup-windows): Don't call display-buffer unnecessarily.
118
119 * progmodes/gud.el (gud-display-line): Just use display-buffer.
120
121 * window.el (display-buffer-pop-up-frame): Handle a
122 pop-up-frame-parameters alist entry.
123 (display-buffer): Document it.
124
125 2012-08-26 Chong Yidong <cyd@gnu.org>
126
127 * isearch.el (search-whitespace-regexp): Make string and nil
128 values apply to both ordinary and regexp search. Allow a cons
129 cell value to distinguish between the two.
130 (isearch-whitespace-regexp, isearch-search-forward)
131 (isearch-search-backward): New functions.
132 (isearch-occur, isearch-search-fun-default, isearch-search)
133 (isearch-lazy-highlight-new-loop): Use them.
134 (isearch-forward, isearch-forward-regexp): Doc fix.
135
136 2012-08-26 Chong Yidong <cyd@gnu.org>
137
138 * faces.el (help-argument-name): Always inherit from italic
139 (Bug#12213).
140
141 2012-08-25 Martin Rudalics <rudalics@gmx.at>
142
143 * window.el (window--even-window-heights): Even heights when
144 WINDOW and the selected window form a vertical combination.
145 (display-buffer-use-some-window): Provide that window used gets
146 sized back by quit-window. (Bug#11880) and (Bug#12091)
147
148 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
149
150 Fix file time stamp problem with bzr and CVS (Bug#12001).
151 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
152 in the file's time stamp, since the version control system loses
153 that information.
154
155 2012-08-22 Juri Linkov <juri@jurta.org>
156
157 * info.el (Info-fontify-node): Hide the suffix of the
158 Info file name in the header line. (Bug#12187)
159
160 2012-08-22 Glenn Morris <rgm@gnu.org>
161
162 * calendar/cal-tex.el (cal-tex-weekly-common):
163 Restore leading blank page.
164
165 2012-08-22 Le Wang <l26wang@gmail.com> (tiny change)
166
167 * misc.el (forward-to-word, backward-to-word): Activate or extend
168 the region under `shift-select-mode'. (Bug#12231)
169
170 2012-08-22 Bastien Guerry <bzg@gnu.org>
171
172 * progmodes/executable.el (executable-prefix): Set to "#!" instead
173 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
174 gives details on why the space is never needed.
175
176 2012-08-22 Martin Rudalics <rudalics@gmx.at>
177
178 * window.el (walk-window-tree, window-with-parameter):
179 New optional argument MINIBUF to control whether these functions
180 should run on the minibuffer window.
181 (window-at-side-list): Don't operate on minibuffer window.
182 (window-in-direction): Simplify and rewrite doc-string.
183 (window--size-ignore): Rename to window--size-ignore-p.
184 Update callers.
185 (display-buffer-in-atom-window, window--major-non-side-window)
186 (window--major-side-window, display-buffer-in-major-side-window)
187 (delete-side-window, display-buffer-in-side-window):
188 New functions.
189 (window--side-check, window-deletable-p, delete-window)
190 (delete-other-windows, split-window): Handle side windows and
191 atomic windows appropriately.
192 (window--display-buffer): Call display-buffer-record-window also
193 when the window buffer did not change.
194
195 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
196
197 * help-fns.el (help-fns--key-bindings):
198 Abbreviate non-symbol remap targets. (Bug#12174)
199
200 2012-08-22 Martin Rudalics <rudalics@gmx.at>
201
202 * dired.el (dired-mark-remembered): Don't clobber point.
203 (Bug#11795)
204
205 2012-08-22 Glenn Morris <rgm@gnu.org>
206
207 * progmodes/bug-reference.el (bug-reference): New custom group.
208 (bug-reference-bug-regexp): Make it a defcustom.
209
210 2012-08-22 Daiki Ueno <ueno@unixuser.org>
211
212 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
213 (js-paren-indent-offset, js-square-indent-offset)
214 (js-curly-indent-offset): Add :safe (Bug#12257).
215
216 2012-08-22 Edward O'Connor <hober0@gmail.com>
217
218 * json.el (json-key-format): Add error properties.
219 (json-encode-key): New function.
220 (json-encode-hash-table, json-encode-alist, json-encode-plist):
221 Use json-encode-key.
222
223 2012-08-22 Glenn Morris <rgm@gnu.org>
224
225 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
226 (cal-tex-leftday, cal-tex-rightday): Remove functions.
227 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
228 Update for above change.
229
230 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
231
232 * cus-face.el (custom-face-attributes): Fix customize type for the
233 :underline attribute. (Bug#11805)
234
235 2012-08-21 Martin Rudalics <rudalics@gmx.at>
236
237 * window.el (window-point-1, set-window-point-1): Remove.
238 (window-in-direction, record-window-buffer)
239 (set-window-buffer-start-and-point, split-window-below)
240 (window--state-get-1, display-buffer-record-window):
241 Replace calls to window-point-1 and set-window-point-1 by calls to
242 window-point and set-window-point respectively.
243
244 2012-08-21 Glenn Morris <rgm@gnu.org>
245
246 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
247 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
248 Use it.
249
250 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
251 (cal-tex-shortday): New function.
252 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
253 (cal-tex-cursor-filofax-daily): Use the above.
254
255 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
256 New functions.
257 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
258 (cal-tex-cursor-filofax-week): Use them.
259
260 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
261 New constants.
262 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
263 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
264
265 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
266 (cal-tex-end-document): Don't rely on buffer name.
267
268 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
269 Use cal-tex-vspace.
270 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
271 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
272 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
273 Use cal-tex-arg.
274
275 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
276 (cal-tex-cursor-week, cal-tex-cursor-week2)
277 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
278 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
279 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
280 (cal-tex-insert-preamble, cal-tex-b-document)
281 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
282 Improve cal-tex-cmd usage.
283
284 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
285 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
286 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
287 (cal-tex-weekly-paper): New function.
288 (cal-tex-cursor-week, cal-tex-cursor-week2)
289 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
290 (cal-tex-cursor-day): Use it.
291
292 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
293 (cal-tex-cursor-filofax-week): Remove leading blank page.
294
295 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
296 Add autoload cookie. For now at least, don't use color, since
297 no other cal-tex function does.
298
299 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
300 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
301 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
302
303 2012-08-21 Juri Linkov <juri@jurta.org>
304
305 * info.el (Info-file-attributes): New variable.
306 (info-insert-file-contents): Add file attributes to
307 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
308 `Info-toc-nodes' when previous modtime of the Info file is less
309 than new modtime.
310 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
311 of info.el. (Bug#12230)
312
313 2012-08-20 Glenn Morris <rgm@gnu.org>
314
315 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
316 * calendar/holidays.el (calendar-holiday-list):
317 Report errors with display-warning rather than beep'n'sleep.
318
319 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
320
321 * net/tramp.el (tramp-accept-process-output): Accept only output
322 from PROC. Otherwise, process filters and sentinels might be
323 confused. (Bug#12145)
324
325 2012-08-20 Chong Yidong <cyd@gnu.org>
326
327 * descr-text.el (describe-text-properties-1): Use overlays-in to
328 report on empty overlays (Bug#3322).
329
330 2012-08-20 Glenn Morris <rgm@gnu.org>
331
332 * mail/rmailout.el (rmail-output-read-file-name):
333 Trap and report errors in rmail-output-file-alist elements.
334
335 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
336 since most non-font-lock faces are not also variables).
337
338 2012-08-20 Edward Reingold <reingold@iit.edu>
339
340 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
341 New function. (Bug12160)
342
343 2012-08-19 Glenn Morris <rgm@gnu.org>
344
345 * mail/rmailout.el (rmail-output-read-file-name):
346 Fix previous change (when the alist is nil or does not match).
347
348 2012-08-19 Chong Yidong <cyd@gnu.org>
349
350 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
351 (Bug#12228).
352
353 2012-08-18 Chong Yidong <cyd@gnu.org>
354
355 * simple.el (yank-handled-properties): New defcustom.
356 (yank-excluded-properties): Add font-lock-face and category.
357 (yank): Doc fix.
358
359 * subr.el (remove-yank-excluded-properties):
360 Obey yank-handled-properties. The special handling of font-lock-face
361 and category is now done this way, instead of being hard-coded.
362 (insert-for-yank-1): Remove font-lock-face handling.
363 (yank-handle-font-lock-face-property)
364 (yank-handle-category-property): New function.
365
366 2012-08-17 Glenn Morris <rgm@gnu.org>
367
368 * mail/rmailout.el (rmail-output-read-file-name):
369 Check rmail-output-file-alist against the full message body
370 in the correct rmail buffer. (Bug#12214)
371
372 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
373
374 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
375 Eliminate superfluous prompt. (Bug#12203)
376
377 2012-08-17 Chong Yidong <cyd@gnu.org>
378
379 * mouse.el (mouse-appearance-menu): If x-select-font returns a
380 font spec, set the font directly (Bug#3228).
381
382 2012-08-17 Martin Rudalics <rudalics@gmx.at>
383
384 * window.el (delete-window): Fix last fix.
385
386 2012-08-16 Martin Rudalics <rudalics@gmx.at>
387
388 * window.el (window-valid-p): Move to window.c.
389 (window-child, window-child-count, window-last-child)
390 (window-normalize-window, window-combined-p)
391 (window-combinations, window-atom-root, window-min-size)
392 (window-sizable, window-sizable-p, window-size-fixed-p)
393 (window-min-delta, window-max-delta, window--resizable)
394 (window--resizable-p, window-resizable, window-total-size)
395 (window-full-height-p, window-full-width-p, window-body-size)
396 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
397 (minimize-window, window-deletable-p, delete-window)
398 (delete-other-windows, set-window-buffer-start-and-point)
399 (next-buffer, previous-buffer, split-window, balance-windows-2)
400 (set-window-text-height, window-buffer-height)
401 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
402 (truncated-partial-width-window-p): Minor code adjustments.
403 In doc-strings state whether the argument window has to denote a
404 live, valid or any window.
405
406 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
407
408 * progmodes/subword.el (subword-forward-function)
409 (subword-backward-function, subword-forward-regexp)
410 (subword-backward-regexp): New variables.
411 (subword-forward, subword-forward-internal, subword-backward-internal):
412 Use new variables, eg so that different "word" definitions
413 can be easily used. (Bug#11411)
414
415 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
416
417 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
418 for composite selectors.
419 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
420 operation just because we can't find a previous revision.
421
422 2012-08-15 Chong Yidong <cyd@gnu.org>
423
424 * frame.el (set-frame-font): Accept font objects.
425
426 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
427
428 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
429
430 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
431
432 * man.el (Man-overstrike-face, Man-underline-face)
433 (Man-reverse-face): Remove variables.
434 (Man-overstrike, Man-underline, Man-reverse): New faces.
435 (Man-fontify-manpage): Use them instead of the variables.
436 (Man-cleanup-manpage): Comment change.
437 (Man-ansi-color-map): New variable.
438 (Man-fontify-manpage): Use it.
439 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
440
441 Implement ANSI SGR parameters 22-27 (bug#12146).
442 * ansi-color.el (ansi-colors): Doc fix.
443 (ansi-color-context, ansi-color-context-region): Doc fix.
444 (ansi-color--find-face): New function.
445 (ansi-color-apply, ansi-color-apply-on-region): Use it.
446 Rename the local variable `face' to `codes' since it is now a list of
447 ansi codes. Doc fix.
448 (ansi-color-get-face): Remove.
449 (ansi-color-parse-sequence): New function, derived from
450 ansi-color-get-face.
451 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
452 codes 22-27.
453
454 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
455
456 * subr.el (read-passwd): Allow use from a minibuffer.
457
458 2012-08-14 Eli Zaretskii <eliz@gnu.org>
459
460 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
461 inside comments and strings as identifiers.
462
463 * progmodes/gud.el (gud-tooltip-print-command): Quote the
464 expression to evaluate. This allows to evaluate expressions with
465 embedded whitespace.
466 (gud-tooltip-tips): Add a blank before the newline in the
467 message-box text, for the benefit of message-box emulation on
468 MS-Windows.
469
470 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
471 messages from GDB, pop them up in a tooltip to give feedback to
472 user.
473 (gdb-tooltip-print-1): Quote the expression to evaluate.
474 This allows to evaluate expressions with embedded whitespace.
475 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
476 if the TTY name is nil or empty (which happens when communicating
477 with the inferior via pipes, e.g. on MS-Windows).
478 (gdb-internals): If GDB sends a "&\n" empty debugging message,
479 don't send that to the GUD buffer.
480
481 2012-08-14 Glenn Morris <rgm@gnu.org>
482
483 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
484 Optimize away setq-default with no args, as for setq. (Bug#12195)
485
486 2012-08-14 Chong Yidong <cyd@gnu.org>
487
488 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
489
490 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
491 (Bug#12085).
492
493 2012-08-14 Glenn Morris <rgm@gnu.org>
494
495 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
496
497 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
498
499 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
500 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
501 Use cached shell name.
502
503 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
504
505 * progmodes/python.el (python-shell-send-string):
506 (python-shell-send-setup-code): Do not use `format' with `message'.
507
508 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
509
510 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
511 (ruby-percent-literal-beg-re): New constant.
512 (ruby-syntax-general-delimiters-goto-beg): Rename to
513 `ruby-syntax-enclosing-percent-literal', improve literal type check.
514 (ruby-syntax-propertize-general-delimiters): Rename to
515 `ruby-syntax-propertize-percent-literal', it's a shorter and more
516 popular term. Adjust comments everywhere.
517 (ruby-syntax-propertize-percent-literal): Only propertize when not
518 inside a simple string or comment. When the literal is unclosed,
519 leave the text after it unpropertized.
520 (ruby-syntax-methods-before-regexp): New constant.
521 (ruby-syntax-propertize-function): Use it to recognize regexps.
522 Don't look at the text after regexp, just use the whitelist.
523
524 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
525
526 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
527 non-nil always load the compiled file if it exists. (Bug#12197)
528
529 2012-08-14 Chong Yidong <cyd@gnu.org>
530
531 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
532 (hi-lock-set-pattern): When deciding whether to use font lock or
533 overlays, look at font-lock-mode instead of font-lock-fontified
534 (Bug#12168).
535 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
536 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
537
538 2012-08-14 Daiki Ueno <ueno@unixuser.org>
539
540 * subr.el (internal--after-with-selected-window): Fix typo
541 (Bug#12193).
542
543 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
544
545 Use `completion-table-dynamic' for completion functions.
546 * progmodes/python.el
547 (python-shell-completion--do-completion-at-point)
548 (python-shell-completion--get-completions):
549 Remove functions.
550 (python-shell-completion-complete-at-point): New function.
551 (python-completion-complete-at-point): Use it.
552
553 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
554
555 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
556 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
557
558 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
559
560 * subr.el (function-get): Refine `autoload' arg so it can also
561 autoload functions for gv.el (bug#12191).
562 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
563 autoloads macros.
564
565 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
566 Prefer pcase-let over destructuring-bind.
567 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
568 Also, remove whitespace as we go, rather than after accumulating the
569 various places.
570
571 * subr.el (internal--before-with-selected-window)
572 (internal--after-with-selected-window): Fix typo seleted->selected.
573 (with-selected-window): Adjust callers.
574 Reported by Dmitry Gutov <dgutov@yandex.ru>.
575
576 2012-08-13 Bastien Guerry <bzg@gnu.org>
577
578 * window.el (special-display-popup-frame): Minor docstring
579 enhancement. (Bug#12172)
580
581 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
582
583 * tar-mode.el (tar-header-data-end): Only ignore size for files of
584 type 1-6.
585 (tar-header-block-summarize, tar-get-descriptor): Handle pax
586 extended headers.
587
588 * files.el (hack-local-variables-filter): Remove useless eval.
589
590 2012-08-13 Martin Rudalics <rudalics@gmx.at>
591
592 * subr.el (with-selected-window): Fix last change.
593
594 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
595
596 * subr.el (internal--before-with-seleted-window)
597 (internal--after-with-seleted-window): New functions.
598 (with-selected-window): Use them, to replace dependency on
599 tty-top-frame.
600
601 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
602
603 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
604 binding for `newline'.
605 (ruby-move-to-block): When moving backward, stop at block opening,
606 not indentation.
607 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
608 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
609 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
610 `ruby-toggle-block'.
611
612 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
613
614 * ibuffer.el (ibuffer-do-toggle-read-only):
615 * dired.el (dired-toggle-read-only):
616 * buff-menu.el (Buffer-menu-toggle-read-only):
617 * bindings.el (mode-line-toggle-read-only):
618 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
619
620 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
621
622 * descr-text.el (describe-char): Put the overlays over the
623 "displayed as" character.
624
625 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
626
627 * calc/calc-units.el (math-default-units-table): Give an
628 initial value.
629 (math-put-default-units): Add options to put composite units and
630 unit systems in the default units table.
631 (calc-convert-units): Send composite units to
632 `math-put-default-units' when appropriate.
633
634 2012-08-11 Glenn Morris <rgm@gnu.org>
635
636 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
637
638 * tutorial.el (help-with-tutorial):
639 * emacs-lisp/copyright.el (copyright-update-directory):
640 * emacs-lisp/autoload.el (autoload-find-generated-file)
641 (autoload-find-file): Disable local eval: (for insurance).
642
643 * files.el (hack-local-variables-filter): If an eval: form is not
644 known to be safe, and enable-local-variables is :safe, then ignore
645 the form totally, as is done for non-eval forms. (Bug#12155)
646 This is CVE-2012-3479.
647
648 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
649
650 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
651 (rx-form): Simplify.
652
653 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
654
655 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
656 ?, _, and : are symbol constituents, ! is not (but kinda should be).
657 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
658 (ruby-syntax-propertize-function): Adjust for changes in
659 `ruby-syntax-propertize-heredoc'.
660
661 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
662
663 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
664 binding (use `M-;' instead).
665 (ruby-singleton-class-p): New function.
666 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
667
668 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
669
670 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
671
672 2012-08-10 Chong Yidong <cyd@gnu.org>
673
674 * progmodes/python.el (python-shell-get-process-name): Don't mess
675 with same-window-buffer-names.
676
677 * eshell/eshell.el (eshell-add-to-window-buffer-names)
678 (eshell-remove-from-window-buffer-names): Make obsolete.
679 (eshell-buffer-name, eshell-unload-hook): Don't use them.
680 (eshell): Just use pop-to-buffer-same-window instead.
681
682 2012-08-10 Chong Yidong <cyd@gnu.org>
683
684 * bindings.el: Bind M-= back to count-words-region.
685
686 * simple.el (count-words-region): Accept a prefix arg for acting
687 on the entire buffer.
688 (count-words--buffer-message): New helper function.
689
690 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
691
692 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
693 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
694 (event-start, event-end): Use posn-at-point to return a more
695 informative posn.
696 (posnp): New function.
697 * mouse.el (popup-menu-normalize-position): Use it.
698
699 2012-08-10 Masatake YAMATO <yamato@redhat.com>
700
701 * mouse.el (popup-menu-normalize-position): New function.
702 (popup-menu): Use `popup-menu-normalize-position' to normalize
703 the form for POSITION argument.
704
705 * term/x-win.el (x-menu-bar-open):
706 Use the value returend from (posn-at-point) as position
707 passed to `popup-menu'.
708
709 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
710
711 * calc/calccomp.el (math-compose-expr): Add extra argument
712 indicating that parentheses should be put around products in
713 denominators. Give multiplication precedence over division during
714 composition.
715
716 2012-08-09 Chong Yidong <cyd@gnu.org>
717
718 * man.el (Man-switches, Man-sed-command, Man-awk-command)
719 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
720 (Man-untabify-command, manual-program): Convert to defcustom
721 (Bug#10429).
722
723 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
724
725 * descr-text.el (describe-char): Don't insert extra newlines
726 (Bug#10127).
727
728 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
729 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
730
731 * align.el (align-region): Delete temporary markers (Bug#10047).
732 Plus some code cleanups.
733
734 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
735
736 * progmodes/python.el (python-pdbtrack-tracked-buffer)
737 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
738 (python-shell-internal-last-output): Use make-local-variable
739 instead of make-variable-buffer-local.
740
741 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
742
743 * progmodes/python.el: Enhancements to forward-sexp.
744 (python-nav-forward-sexp): Rename from
745 python-nav-forward-sexp-function.
746 (python-nav--forward-sexp, python-nav--backward-sexp):
747 New functions.
748
749 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
750
751 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
752 modes and simplification modes.
753
754 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
755
756 * delsel.el (delete-selection-pre-hook): Don't propagate the
757 file-supersession signals (bug#12161).
758
759 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
760
761 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
762 (cl-map-extents): Add compatibility aliases (bug#12135).
763
764 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
765
766 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
767 tests by `ignore-error'.
768 (tramp-find-shell): Open also a new shell, when cache is already
769 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
770
771 2012-08-08 Juri Linkov <juri@jurta.org>
772
773 * bookmark.el: Add `defaults' property to the bookmark record.
774 (bookmark-current-buffer): Doc fix.
775 (bookmark-make-record): Add `defaults' property with default values
776 to the bookmark record.
777 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
778 with `bookmark-insert-current-bookmark'.
779 (bookmark-set): Get `defaults' property from the bookmark record
780 and use it in `read-from-minibuffer'.
781 (bookmark-insert-current-bookmark): Remove function.
782
783 * info.el (Info-bookmark-make-record): Add `defaults' property
784 with values of canonical Info node name, the current Info file
785 name and the current Info node name. (Bug#12107)
786
787 2012-08-08 Juri Linkov <juri@jurta.org>
788
789 * files.el (basic-save-buffer): Use `buffer-name' as the default
790 of `read-file-name' when buffer is not visiting a file (bug#12128).
791
792 2012-08-08 Juri Linkov <juri@jurta.org>
793
794 * info.el (Info-isearch-search): Doc fix.
795 (Info-search): Change search-failed message from "initial node" to
796 "end of node" (bug#12078).
797 (Info-isearch-search): Change `isearch-string-state' to
798 `isearch--state-string'.
799
800 2012-08-08 Glenn Morris <rgm@gnu.org>
801
802 * language/persian.el: Remove file.
803 * language/misc-lang.el: Move unique part of persian.el here.
804 * loadup.el: Remove language/persian.
805
806 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
807
808 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
809
810 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
811
812 * progmodes/python.el Fixed defsubst warning.
813 (python-syntax-context) Rename from python-info-ppss-context.
814 (python-syntax-context-type): Rename from
815 python-info-ppss-context-type.
816 (python-syntax-comment-or-string-p): Rename from
817 python-info-ppss-comment-or-string-p.
818
819 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
820
821 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
822
823 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
824
825 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
826 a defcustom that is quoted with backquote.
827
828 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
829 Fix handling of interactive spec when the body uses return.
830 (math-do-arg-check, math-define-function-body): Use backquote forms.
831 * calc/calc-ext.el (math-defcache): Likewise.
832 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
833 * allout.el (allout-new-exposure): Likewise.
834 * calc/calcalg2.el (math-tracing-integral): Likewise.
835 * info.el (Info-last-menu-item): Likewise.
836 * emulation/vip.el (vip-loop): Likewise.
837 * textmodes/artist.el (artist-funcall): Likewise.
838 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
839 Construct menu-item directly.
840
841 * progmodes/autoconf.el (font-lock-syntactic-keywords):
842 Don't declare.
843
844 2012-08-07 Chong Yidong <cyd@gnu.org>
845
846 * simple.el (deactivate-mark): Preserve text properties when
847 saving the primary selection (Bug#8384).
848
849 2012-08-07 Kevin Ryde <user42@zip.com.au>
850
851 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
852 (woman-parse-numeric-value): On a bad .IP line, issue a warning
853 and continue processing (Bug#12110).
854
855 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
856
857 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
858 syntax-propertize-function (bug#10095).
859
860 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
861
862 * help-fns.el (help-fns--key-bindings, help-fns--signature)
863 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
864 describe-function-1.
865 (describe-function-1): Use them. Move compiler macro after sig.
866 (help-fns--compiler-macro): Use function-get. Assume we're already in
867 standard-output. Adjust layout to new call order.
868
869 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
870 re-binding a symbol that has a symbol-macro (bug#12119).
871
872 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
873
874 * language/persian.el: New file. (Bug#11812)
875 * loadup.el: Add language/persian.el.
876
877 2012-08-06 Chong Yidong <cyd@gnu.org>
878
879 * window.el (window--maybe-raise-frame): New function.
880 (window--display-buffer): Split off from here.
881 (display-buffer-reuse-window, display-buffer-pop-up-frame)
882 (display-buffer-pop-up-window, display-buffer-use-some-window):
883 Obey an inhibit-switch-frame action alist entry.
884 (display-buffer): Update doc.
885
886 * replace.el (occur-after-change-function): Avoid losing focus by
887 using the inhibit-switch-frame display parameter (Bug#12139).
888
889 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
890
891 Make internal shell process buffer names start with space.
892 * progmodes/python.el (python-shell-make-comint): Add optional
893 argument INTERNAL.
894 (run-python-internal): Use it.
895 (python-shell-internal-get-or-create-process): Check for new
896 internal buffer names.
897
898 2012-08-06 Glenn Morris <rgm@gnu.org>
899
900 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
901 Do less getting and setting of environment variables.
902
903 2012-08-05 Chong Yidong <cyd@gnu.org>
904
905 * proced.el (proced): Add substitution string to docstring to
906 trigger autoloading of the proced library on C-h f (Bug#1768).
907
908 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
909 Don't show defvars which have no second argument (Bug#8638).
910
911 * imenu.el (imenu-generic-expression): Move documentation here
912 from imenu--generic-function.
913 (imenu--generic-function): Refer to imenu-generic-expression.
914
915 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
916
917 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
918 indentation declaration.
919 (viper-loop): Add indentation declaration (Bug#7025).
920
921 2012-08-05 Chong Yidong <cyd@gnu.org>
922
923 * help-fns.el (describe-variable): Add hyperlink for
924 directory-local variables files. Improve buffer-local and
925 permanent-local reporting; suggested by MON KEY (Bug#6644).
926
927 * help-mode.el (help-dir-local-var-def): New button type.
928
929 * files.el (kill-buffer-hook): Provide a defvar.
930
931 2012-08-05 Glenn Morris <rgm@gnu.org>
932
933 * eshell/esh-ext.el (eshell/addpath):
934 Also update eshell-path-env. (Bug#12013)
935
936 2012-08-05 Chong Yidong <cyd@gnu.org>
937
938 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
939
940 * fringe.el (fringe-styles): Add docstring.
941 (fringe--check-mode): New function.
942 (set-fringe-mode, set-fringe-style): Use it.
943 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
944
945 * files.el (set-auto-mode): Fix invalid setq call.
946
947 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
948
949 * isearch.el: Misc simplification; use defstruct.
950 (isearch-mode-map): Dense maps now work like sparse ones.
951 (isearch--state): New defstruct.
952 (isearch-string-state, isearch-message-state, isearch-point-state)
953 (isearch-success-state, isearch-forward-state)
954 (isearch-other-end-state, isearch-word-state, isearch-error-state)
955 (isearch-wrapped-state, isearch-barrier-state)
956 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
957 replaced by defstruct's accessors.
958 (isearch--set-state): Rename from isearch-top-state and change
959 calling convention.
960 (isearch-push-state): Use new isearch--get-state.
961 (isearch-toggle-word): Disable regexp when enabling word.
962 (isearch-message-prefix): Remove unused arg _c-q-hack.
963 (isearch-message-suffix): Remove unused arg _ellipsis.
964
965 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
966
967 * simple.el (list-processes--refresh): For a server use :host or
968 :local as the address.
969 (list-processes): Doc fix.
970
971 2012-08-04 Michal Nazarewicz <mina86@mina86.com> (tiny change)
972
973 * lisp/mpc.el: Support password in host argument.
974 (mpc--proc-connect): Parse and use new password element.
975 Set mpc-proc variable instead of returning process.
976 (mpc-proc): Adjust accordingly.
977
978 2012-08-03 Eli Zaretskii <eliz@gnu.org>
979
980 * whitespace.el (whitespace-display-mappings): Use Unicode
981 codepoints, instead of emacs-mule codepoints. See
982 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
983 for the details.
984
985 * files.el (file-truename): Don't skip symlink-chasing part on
986 windows-nt. Incorporate the resolution of 8+3 short aliases on
987 Windows into the loop that recursively chases symlinks.
988 Compare directory and its parent case-insensitively on MS-Windows and
989 MS-DOS.
990
991 2012-08-03 Chong Yidong <cyd@gnu.org>
992
993 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
994
995 * sort.el (sort-regexp-fields): Doc fix.
996
997 2012-08-03 Tassilo Horn <tsdh@gnu.org>
998
999 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
1000 labels regex position point at the expected place.
1001
1002 2012-08-03 MON KEY <monkey@sandpframing.com>
1003
1004 * net/imap.el (imap-interactive-login, imap-authenticate)
1005 (imap-mailbox-lsub, imap-mailbox-list)
1006 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
1007 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
1008 (imap-parse-response): Doc fix.
1009
1010 2012-08-03 João Távora <joaotavora@gmail.com>
1011
1012 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
1013 if sexp scanning does not move point (Bug#5734).
1014
1015 2012-08-02 Tassilo Horn <tsdh@gnu.org>
1016
1017 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
1018 Add listings, minted, and ctable packages.
1019 (reftex-label-alist-builtin): Move listings, minted, and ctable
1020 entries before LaTeX.
1021 (reftex-label-alist): Docfix.
1022
1023 2012-08-02 Bastien Guerry <bzg@gnu.org>
1024
1025 * replace.el (occur): Fix docstring (bug#12122).
1026
1027 2012-08-02 Glenn Morris <rgm@gnu.org>
1028
1029 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
1030
1031 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
1032
1033 Obsolete alias inactivate-current-input-method-function (Bug#10150).
1034 * international/mule-cmds.el: Create
1035 inactivate-current-input-method-function as an obsolete alias for
1036 deactivate-current-input-method-function. See Katsumi Yamaoka in
1037 <http://bugs.gnu.org/10150#46>.
1038
1039 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
1040
1041 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
1042 of nested `if's.
1043
1044 2012-08-01 Glenn Morris <rgm@gnu.org>
1045
1046 * progmodes/autoconf.el (autoconf-definition-regexp):
1047 Add AH_TEMPLATE, adjust submatch numbering.
1048 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
1049 (autoconf-current-defun-function): Update for above change.
1050 (autoconf-current-defun-function): First skip to end of current word.
1051
1052 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
1053
1054 * calendar/cal-html.el (cal-html-insert-agenda-days):
1055 Fix typo. (Bug#12018)
1056
1057 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
1058
1059 Shell processes: enhancements to startup and CEDET compatibility.
1060 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
1061 (python-shell-make-comint): accept-process-output at startup.
1062 (run-python-internal): Set inferior-python-mode-hook to nil.
1063 (python-shell-internal-get-or-create-process): call sit-for.
1064 (python-preoutput-result): Add obsolete alias.
1065 (python-shell-internal-send-string): Use it.
1066 (python-shell-send-setup-code): Remove call to
1067 accept-process-output.
1068
1069 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
1070
1071 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
1072 (Bug#12108)
1073
1074 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
1075
1076 * calc-mode.el (calc-basic-simplification-mode): Rename from
1077 `calc-limited-simplification-mode'.
1078 (calc-alg-simplification-mode): New function.
1079 (calc-set-simplify-mode): Adjust message.
1080
1081 * calc.el (calc-set-mode-line): Adjust mode line display for
1082 basic simplification mode.
1083
1084 * calc-help.el (calc-m-prefix-help): Update help message.
1085
1086 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
1087 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
1088
1089 2012-07-31 Bastien Guerry <bzg@gnu.org>
1090
1091 * man.el (man): Fix comment. (bug#12101)
1092
1093 2012-07-31 Martin Rudalics <rudalics@gmx.at>
1094
1095 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
1096 Don't return a non-nil value when no suitable buffer was found.
1097
1098 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
1099
1100 * progmodes/python.el (run-python-internal): Disable font lock for
1101 internal shells.
1102
1103 2012-07-30 Stefan Merten <smerten@oekonux.de>
1104
1105 * rst.el: Silence `checkdoc-ispell'.
1106 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
1107 (rst-official-version, rst-official-cvs-rev)
1108 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
1109 (rst-mode-map): New key binding.
1110
1111 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
1112
1113 Update .PHONY listings in makefiles.
1114 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
1115 autoloads, update-subdirs, updates, bzr-update, update-authors,
1116 compile-onefile, compile-calc, backup-compiled-files,
1117 compile-after-backup, compile-one-process, mh-autoloads,
1118 bootstrap-clean, distclean, maintainer-clean.
1119
1120 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
1121
1122 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
1123 (calc-set-mode-line): Don't display "AlgSimp ".
1124
1125 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
1126 (calc-lim-simplify-mode): New function.
1127 (calc-set-simplify-mode): Default to 'alg.
1128 (calc-default-simplify-mode): Make algebraic simplifications
1129 the default.
1130
1131 * calc/calc-ext.el (calc-init-extensions): Remove binding for
1132 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
1133
1134 * calc/calc-help.el (calc-m-prefix-help): Change messages to
1135 indicate new simplification modes.
1136
1137 * calc/README: Mention new default simplification mode.
1138
1139 * calc/calc.el (math-normalize-error): New variable.
1140 (math-normalize): Set `math-normalize-error' to t
1141 when there's an error.
1142
1143 * calc/calc-alg.el (math-simplify): Don't simplify when
1144 `math-normalize' returns an error.
1145
1146 2012-07-29 Eli Zaretskii <eliz@gnu.org>
1147
1148 * international/mule-cmds.el (set-locale-environment): Revert last
1149 change, since display-graphic-p returns nil when this function is
1150 called during startup. Instead...
1151
1152 * term/w32console.el (terminal-init-w32console): ...setup the
1153 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
1154
1155 2012-07-29 Juri Linkov <juri@jurta.org>
1156
1157 * simple.el (goto-line): Don't display default line number in the
1158 prompt because it should be displayed by `read-number' (bug#9952).
1159 Add the current line number to the defaults of `goto-line' to
1160 allow its easier modification by users with `M-n' (bug#9201).
1161
1162 * subr.el (read-number): Support multiple default values like in
1163 other minibuffer reading functions. Replace `read' with
1164 `string-to-number' for consistency with `number-to-string'.
1165
1166 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
1167
1168 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
1169 * emulation/viper-init.el (viper-deactivate-input-method-action):
1170 Rename from viper-inactivate-input-method-action.
1171 (viper-deactivate-input-method):
1172 Rename from viper-inactivate-input-method.
1173 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
1174 * international/mule-cmds.el (deactivate-input-method):
1175 Rename from inactivate-input-method.
1176 Also run input-method-deactivate-hook.
1177 (deactivate-current-input-method-function):
1178 Rename from inactivate-current-input-method-function.
1179 (input-method-deactivate-hook): New hook.
1180 (input-method-inactivate-hook): Mark obsolete.
1181 (inactivate-input-method): Mark obsolete.
1182
1183 * international/quail.el (quail-activate):
1184 Also run quail-deactivate-hook.
1185 (quail-deactivate): Rename from quail-inactivate.
1186 * international/robin.el (robin-activate):
1187 Also run robin-deactivate-hook.
1188 (robin-deactivate): Rename from robin-inactivate.
1189
1190 2012-07-29 Chong Yidong <cyd@gnu.org>
1191
1192 * simple.el (indicate-copied-region): New function.
1193 (kill-ring-save): Split off from here.
1194
1195 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
1196 (kill-rectangle): Set deactivate-mark to t on read-only error.
1197
1198 * register.el (copy-to-register, copy-rectangle-to-register):
1199 Deactivate the mark, and use indicate-copied-region (Bug#10056).
1200 (append-to-register, prepend-to-register):
1201 Call 2012-07-29 Juri Linkov <juri@jurta.org>
1202
1203 * simple.el (async-shell-command-buffer): New defcustom.
1204 (shell-command): Use it. (Bug#4719)
1205
1206 2012-07-28 Eli Zaretskii <eliz@gnu.org>
1207
1208 * international/mule-cmds.el (set-locale-environment): In a
1209 console session on MS-Windows, set up keyboard and terminal
1210 encoding from the OEM codepage, not the ANSI codepage.
1211 (Bug#12055)
1212
1213 2012-07-28 Chong Yidong <cyd@gnu.org>
1214
1215 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
1216 gdb-get-location.
1217
1218 2012-07-28 Leo Liu <sdl.web@gmail.com>
1219
1220 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
1221 the alist (bug#12029).
1222
1223 2012-07-28 Eli Zaretskii <eliz@gnu.org>
1224
1225 * makefile.w32-in (custom-deps, finder-data, updates, compile)
1226 (compile-always, compile-first)
1227 ($(lisp)/calendar/cal-loaddefs.el)
1228 ($(lisp)/calendar/diary-loaddefs.el)
1229 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
1230 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
1231 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
1232 instead of on update-subdirs.
1233 (bootstrap-clean): Delete $(lisp)/subdirs.el.
1234
1235 2012-07-28 Chong Yidong <cyd@gnu.org>
1236
1237 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
1238 directory if vc-deduce-backend returns nil (Bug#7350).
1239
1240 * simple.el (delete-trailing-lines): New option.
1241 (delete-trailing-whitespace): Obey it (Bug#11879).
1242
1243 2012-07-28 David Engster <deng@randomsample.de>
1244
1245 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
1246 Explanation of new 'symbol-qnames feature in doc-strings.
1247 (xml-maybe-do-ns): Return expanded names as plain symbols if
1248 'symbol-qnames was provided in XML-NS argument (Bug#11916).
1249 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
1250
1251 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
1252
1253 Consistent completion in inferior python with emacs -nw.
1254 * progmodes/python.el (inferior-python-mode): replace "<tab>"
1255 binding in inferior-python-mode-map with "\t".
1256 (python-shell-completion-complete-at-point)
1257 (python-completion-complete-at-point): Remove interactive spec.
1258
1259 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
1260
1261 * calc/calccomp.el (math-compose-expr): Undo previous change.
1262
1263 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
1264
1265 * progmodes/python.el (python-mode-map): Add keybinding for
1266 run-python.
1267 (python-shell-make-comint): Fix pop-to-buffer call.
1268 (run-python): Autoload. New arg SHOW.
1269 (python-shell-get-or-create-process): Do not pop python process
1270 buffer.
1271
1272 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
1273
1274 * notifications.el (notifications-on-action-signal)
1275 (notifications-on-closed-signal): Use also the bus address for the map.
1276 (notifications-notify, notifications-close-notification)
1277 (notifications-get-capabilities): Add optional argument BUS.
1278
1279 2012-07-27 Tassilo Horn <tsdh@gnu.org>
1280
1281 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
1282 Add support for the lstlisting and minted environments, and for the
1283 ctable macro.
1284 * textmodes/reftex.el (reftex-compile-variables): Also recognize
1285 labels written in keyvals syntax.
1286
1287 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
1288
1289 * calc/calccomp.el (math-compose-expr): Use parentheses when
1290 there is a product in the denominator of a fraction.
1291
1292 2012-07-26 Eli Zaretskii <eliz@gnu.org>
1293
1294 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
1295 ($(lisp)/calendar/diary-loaddefs.el)
1296 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
1297 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
1298 Fixes failures in parallel bootstrap because subdirs.el is being
1299 rewritten while the autoload files are built at the same time,
1300 which needs to load subdirs.el.
1301
1302 2012-07-26 Martin Rudalics <rudalics@gmx.at>
1303
1304 * mouse.el (popup-menu): Fix doc-string and re-indent code.
1305 (mouse-drag-line): Don't exit tracking when a switch-frame or
1306 switch-window event occurs (Bug#12006).
1307
1308 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
1309
1310 * mouse.el (popup-menu): Fix last change.
1311
1312 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
1313
1314 Autoload from Lisp with more care. Follow aliases when looking for
1315 function properties.
1316 * subr.el (autoloadp): New function.
1317 (symbol-file): Use it.
1318 (function-get): New function.
1319 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
1320 autoload-do-load.
1321 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
1322 (lisp-indent-function):
1323 * emacs-lisp/gv.el (gv-get):
1324 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
1325 * emacs-lisp/byte-opt.el (byte-optimize-form):
1326 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
1327 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
1328 Use function-get.
1329 * emacs-lisp/cl.el: Don't propagate function properties any more.
1330
1331 * speedbar.el (speedbar-add-localized-speedbar-support):
1332 * emacs-lisp/disass.el (disassemble-internal):
1333 * desktop.el (desktop-load-file):
1334 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
1335 (describe-function-1):
1336 * emacs-lisp/find-func.el (find-function-noselect):
1337 * emacs-lisp/elp.el (elp-instrument-function):
1338 * emacs-lisp/advice.el (ad-has-proper-definition):
1339 * apropos.el (apropos-safe-documentation, apropos-macrop):
1340 * emacs-lisp/debug.el (debug-on-entry):
1341 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
1342 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
1343 * calc/calc.el (name): Use autoloadp & autoload-do-load.
1344
1345 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
1346
1347 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
1348 function, not an obsolete variable (Bug#12046).
1349
1350 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
1351
1352 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
1353
1354 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
1355
1356 * emacs-lisp/pp.el (pp-display-expression): Select old selected
1357 window only if it is still live (Bug#12034).
1358
1359 2012-07-25 Martin Rudalics <rudalics@gmx.at>
1360
1361 * subr.el (redirect-frame-focus): Add advertised calling
1362 convention (Bug#12030).
1363
1364 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
1365
1366 Prefer typical American spelling for "acknowledgment".
1367 * vc/add-log.el (change-log-acknowledgment): Rename from
1368 change-log-acknowledgement, with an alias for the old name.
1369
1370 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
1371
1372 * calc-alg.el (math-simplify-divide): Don't cross multiply
1373 in an equation when the lhs is a variable.
1374
1375 2012-07-24 Julien Danjou <julien@danjou.info>
1376
1377 * net/netrc.el (netrc-find-service-number, netrc-store-data):
1378 Remove, unused.
1379
1380 2012-07-23 Eli Zaretskii <eliz@gnu.org>
1381
1382 * startup.el (command-line): Don't display an empty user name in
1383 the error message about non-existent home directory, when
1384 init-file-user was set to an empty string. See
1385 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
1386 for the details and context.
1387
1388 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
1389
1390 * ses.el (ses-cell-formula-aset): New macro.
1391 (ses-cell-references-aset): New macro.
1392 (ses-cell-p): New function.
1393 (ses-rename-cell): Do no longer rely on complex operations like
1394 ses-cell-set-formula or ses-set-cell to change the cell and handle
1395 the undo at the same time, but rather use lower level new macros
1396 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
1397 the undo directly. Refresh the mode line.
1398
1399 2012-07-21 Leo Liu <sdl.web@gmail.com>
1400
1401 * progmodes/cc-cmds.el (c-defun-name):
1402 Use match-string-no-properties instead for consistency.
1403
1404 2012-07-20 Leo Liu <sdl.web@gmail.com>
1405
1406 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
1407 (Bug#7879)
1408
1409 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
1410
1411 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
1412
1413 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
1414 * progmodes/bug-reference.el, misearch.el: Provide themselves
1415 (bug#11915).
1416
1417 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
1418 of narrowed buffer (bug#11966).
1419
1420 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
1421
1422 * ses.el (ses-rename-cell): Set new name also in reference list of
1423 cells of which the renamed cell depends.
1424
1425 2012-07-20 Masatake YAMATO <yamato@redhat.com>
1426
1427 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
1428 to check whether menu-bar is shown or not. If not shown,
1429 show the menu-bar as a popup menu instead of using tmm.
1430 * mouse.el (popup-menu): Accept `point' as `position' argument.
1431
1432 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
1433
1434 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
1435 up inside string symbol literal (bug#11923).
1436
1437 2012-07-20 Eli Zaretskii <eliz@gnu.org>
1438
1439 * startup.el (fancy-startup-text): Read the whole tutorial, not
1440 just its first 256 bytes. Prevents gibberish in display of the
1441 tutorial title.
1442
1443 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
1444
1445 Drop idle buffer compaction due to an absence of the
1446 proved efficiency.
1447 * compact.el: Remove.
1448
1449 2012-07-19 Sam Steingold <sds@gnu.org>
1450
1451 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
1452 vc-bzr-pull & vc-bzr-merge-branch.
1453 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
1454 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
1455 for consistency with compilation-error-regexp-alist.
1456 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
1457 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
1458 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
1459 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
1460
1461 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1462
1463 * emacs-lisp/chart.el: Use lexical-binding.
1464 (chart-emacs-storage): Don't hardcode the list of entries.
1465
1466 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
1467
1468 Next round of tweaks caused by Fgarbage_collect changes.
1469 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
1470
1471 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
1472
1473 Compact buffers when idle.
1474 * compact.el: New file.
1475
1476 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1477
1478 * subr.el (eventp): Presume that if it looks vaguely like an event,
1479 it's an event (bug#10190).
1480
1481 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
1482
1483 Enhancements to ppss related code (thanks Stefan).
1484 * progmodes/python.el (python-indent-context)
1485 (python-indent-calculate-indentation, python-indent-dedent-line)
1486 (python-indent-electric-colon, python-nav-forward-block)
1487 (python-mode-abbrev-table)
1488 (python-info-assignment-continuation-line-p): Simplify checks
1489 for ppss context.
1490 (python-info-continuation-line-p): Cleanup.
1491 (python-info-ppss-context): Do not catch 'quote.
1492 (python-info-ppss-context-type)
1493 (python-info-ppss-comment-or-string-p): Simplify.
1494
1495 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
1496
1497 * progmodes/python.el: Enhancements to eldoc support.
1498 (python-info-current-symbol): New function.
1499 (python-eldoc-at-point): Use python-info-current-symbol.
1500 (python-info-current-defun): Fix cornercase on first defun scan.
1501 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
1502 and signal error when no inferior python process is available.
1503
1504 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
1505
1506 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
1507 assume it's always t.
1508 (vc-git-registered): Remove caching, the function is only called
1509 once.
1510 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
1511
1512 2012-07-18 Chong Yidong <cyd@gnu.org>
1513
1514 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
1515
1516 * simple.el (count-words): Report on narrowing (Bug#9959).
1517
1518 * bindings.el: Bind M-= to count-words.
1519
1520 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
1521
1522 2012-07-18 Masatake YAMATO <yamato@redhat.com>
1523
1524 * progmodes/sh-script.el (sh-imenu-generic-expression):
1525 Capture a function with `function' keyword and without parentheses
1526 like "function FOO" (bug#11856).
1527
1528 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
1529
1530 * window.el (split-window-sensibly): Make WINDOW argument
1531 optional.
1532
1533 2012-07-18 Chong Yidong <cyd@gnu.org>
1534
1535 * subr.el (keyboard-translate): Doc fix (Bug#7261).
1536
1537 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
1538 and make C-x 8 RET exit isearch (Bug#11439).
1539
1540 * international/iso-transl.el: Move isearch-mode-map key
1541 definitions to isearch.el.
1542
1543 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1544
1545 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
1546 (eieio-defclass): Use gv-define-setter when possible.
1547
1548 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
1549
1550 Reflect recent changes in Fgarbage_collect.
1551 * emacs-lisp/chart.el (chart-emacs-storage): Change to
1552 reflect new format of data returned by Fgarbage_collect.
1553
1554 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
1555
1556 New utility functions + python-info-ppss-context fix (Bug#11910).
1557 * progmodes/python.el (python-info-beginning-of-block-statement-p)
1558 (python-info-ppss-comment-or-string-p): New functions.
1559 (python-info-ppss-context): Small fix for string check.
1560
1561 2012-07-17 Juri Linkov <juri@jurta.org>
1562
1563 * dired-aux.el (dired-do-async-shell-command): Doc fix.
1564 (dired-do-async-shell-command): Don't add `*' at the end of the
1565 command (Bug#11815).
1566 (dired-do-shell-command): Doc fix.
1567 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
1568 Join the individual commands using either "&" or ";" as the
1569 separator depending on the values of these trailing characters.
1570 At the end re-add the trailing "&". (Bug#10598)
1571
1572 * simple.el (async-shell-command): Sync the interactive spec with
1573 `shell-command'. Doc fix.
1574 (shell-command): Doc fix.
1575
1576 2012-07-17 Juri Linkov <juri@jurta.org>
1577
1578 * descr-text.el (describe-char): Fix format args. (Bug#10129)
1579
1580 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
1581
1582 Final renames and doc fixes for movement commands (bug#11899).
1583 * progmodes/python.el (python-nav-beginning-of-statement):
1584 Rename from python-nav-statement-start.
1585 (python-nav-end-of-statement): Rename from
1586 python-nav-statement-end.
1587 (python-nav-beginning-of-block): Rename from
1588 python-nav-block-start.
1589 (python-nav-end-of-block): Rename from python-nav-block-end.
1590
1591 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
1592
1593 * progmodes/python.el (python-shell-send-string-no-output):
1594 Allow accept-process-output to quit, keeping shell process ready for
1595 future interactions (Bug#11868).
1596
1597 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1598
1599 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
1600
1601 * emacs-lisp/elint.el (elint-find-args-in-code):
1602 Use help-function-arglist, so as to handle lexical byte-code.
1603
1604 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
1605 change (bug#11826).
1606
1607 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1608
1609 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
1610 Avoid spuriously marking the buffer as modified because of c-is-sws.
1611
1612 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
1613 as not-a-comment (bug#11946).
1614
1615 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
1616 for uninterned vars.
1617
1618 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
1619 Use read-event since we don't really want to read chars but bytes.
1620
1621 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
1622 $$..$$ but also $..$ using regexps (bug#11953).
1623 Use tex-verbatim for \url and \path.
1624 (tex-font-lock-keywords): Define as defconst like the others.
1625 (tex-common-initialization): Don't use font-lock-syntax-table any more.
1626
1627 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
1628
1629 * international/mule-cmds.el (ucs-insert): Make it an obsolete
1630 alias for insert-char.
1631
1632 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
1633
1634 * progmodes/python.el: Simplified imenu implementation.
1635 (python-nav-jump-to-defun): Remove command.
1636 (python-mode-map): Use `imenu' instead.
1637 (python-nav-list-defun-positions-cache)
1638 (python-imenu-include-defun-type, python-imenu-make-tree)
1639 (python-imenu-subtree-root-label, python-imenu-index-alist):
1640 Remove vars.
1641 (python-nav-list-defun-positions, python-nav-read-defun)
1642 (python-imenu-tree-assoc, python-imenu-make-element-tree)
1643 (python-imenu-make-tree, python-imenu-create-index):
1644 Remove functions.
1645 (python-mode): Update to interact with imenu by setting
1646 `imenu-extract-index-name-function' only.
1647
1648 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
1649
1650 * progmodes/python.el: Enhancements to navigation commands.
1651 (python-nav-backward-sentence)
1652 (python-nav-forward-sentence): Remove.
1653 (python-nav-backward-statement, python-nav-forward-statement)
1654 (python-nav-statement-start, python-nav-statement-end)
1655 (python-nav-backward-block, python-nav-forward-block)
1656 (python-nav-block-start, python-nav-block-end)
1657 (python-nav-forward-sexp-function)
1658 (python-info-current-line-comment-p)
1659 (python-info-current-line-empty-p): New functions.
1660 (python-indent-context): Use `python-nav-statement-start'.
1661
1662 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
1663
1664 * eshell/em-ls.el (eshell/ls): Use `apply'.
1665
1666 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
1667 multi-hops, instead of Tramp internals.
1668
1669 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
1670
1671 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
1672 when F1 and F2 are located on different hosts.
1673
1674 2012-07-14 Chong Yidong <cyd@gnu.org>
1675
1676 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
1677 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
1678 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
1679 (xterm-mouse--read-event-sequence-1000)
1680 (xterm-mouse--read-event-sequence-1006): New functions. For old
1681 mouse protocol, handle M-mouse-X events correctly.
1682 (xterm-mouse-event): New arg specifying mouse protocol.
1683 (turn-on-xterm-mouse-tracking-on-terminal)
1684 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
1685 sequence to toggle extended coordinates on newer XTerms.
1686 This appears to be harmless on terminals which do not support this.
1687
1688 2012-07-14 Leo Liu <sdl.web@gmail.com>
1689
1690 Add fringe bitmap indicators for flymake. (Bug#11253)
1691 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
1692 (flymake-make-overlay): New arg BITMAP.
1693 (flymake-error-bitmap, flymake-warning-bitmap)
1694 (flymake-fringe-indicator-position): New user variables.
1695
1696 * fringe.el: New bitmap exclamation-mark.
1697
1698 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
1699
1700 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
1701 also (Bug#7879).
1702
1703 2012-07-14 Chong Yidong <cyd@gnu.org>
1704
1705 * electric.el (electric-pair-post-self-insert-function): Fix pair
1706 insertion in empty-region case (Bug#11520).
1707
1708 2012-07-14 Chong Yidong <cyd@gnu.org>
1709
1710 * bindings.el: Consolidate ctl-x-r-map bindings.
1711 Bind copy-rectangle-as-kill to C-x r w.
1712
1713 * rect.el, register.el: Move bindings to bindings.el.
1714
1715 2012-07-14 Reuben Thomas <rrt@sc3d.org>
1716
1717 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
1718
1719 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
1720
1721 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
1722
1723 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
1724
1725 * bindings.el (top): Use `mapc' instead of `mapcar'.
1726
1727 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
1728
1729 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
1730
1731 * progmodes/sql.el (sql-comint): Suppress the check for program on
1732 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
1733 (Bug#11908)
1734
1735 2012-07-13 Chong Yidong <cyd@gnu.org>
1736
1737 * bindings.el: Assign a non-nil permanent-local property to
1738 per-buffer variables which lack a default value (Bug#11930).
1739
1740 * help-fns.el (describe-variable): In the "automatically becomes
1741 local" notice, take note of permanent-local variables.
1742
1743 2012-07-13 Chong Yidong <cyd@gnu.org>
1744
1745 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
1746 to allow printing the message when called from Lisp.
1747
1748 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1749 Remove toggle-read-only.
1750
1751 * bs.el (bs-toggle-readonly):
1752 * buff-menu.el (Buffer-menu-toggle-read-only):
1753 Remove with-no-warnings around toggle-read-only.
1754
1755 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
1756 Remove with-no-warnings around toggle-read-only.
1757 (ffap-read-only, ffap-read-only-other-window)
1758 (ffap-read-only-other-frame): Callers changed.
1759
1760 * help-mode.el: Don't require view package.
1761 (help-mode-finish): Set buffer-read-only instead of calling
1762 toggle-read-only.
1763
1764 * bindings.el (mode-line-toggle-read-only):
1765 * dired.el (dired-toggle-read-only):
1766 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
1767 with non-nil second arg.
1768
1769 * emacs-lisp/eieio-custom.el (eieio-customize-object):
1770 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
1771 directly.
1772
1773 2012-07-12 Eli Zaretskii <eliz@gnu.org>
1774
1775 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
1776 not incf.
1777
1778 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
1779
1780 More CL cleanups and reduction of use of cl.el.
1781 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
1782 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
1783 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
1784 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
1785 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
1786 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
1787 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
1788 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
1789 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
1790 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
1791 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
1792 * eshell/em-cmpl.el, eshell/em-banner.el:
1793 * calendar/parse-time.el: Use cl-lib.
1794 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
1795 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
1796 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
1797 * term/ns-win.el, term.el, shell.el, ps-samp.el:
1798 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
1799 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
1800 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
1801 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
1802 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
1803 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
1804 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
1805 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
1806 `lambda' rather than with `quote'.
1807 (eshell-do-opt): Adjust accordingly.
1808 (eshell-process-option): Simplify.
1809 * eshell/esh-var.el:
1810 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
1811 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
1812 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
1813 to `pcase--dontcare'.
1814 * emacs-lisp/cl.el (labels): Mark obsolete.
1815 (cl--letf, letf): Move to cl-lib.
1816 (cl--letf*, letf*): Remove.
1817 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
1818 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
1819 (cl-progv): Rewrite.
1820 (cl--letf, cl-letf): Move from cl.el.
1821 (cl-letf*): New macro.
1822 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
1823
1824 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
1825
1826 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
1827
1828 2012-07-11 Chong Yidong <cyd@gnu.org>
1829
1830 * vc/log-edit.el (log-edit-vc-backend): New variable.
1831 (log-edit): Doc fix.
1832
1833 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
1834 argument of log-edit to set up all local variables.
1835 (vc-start-logentry): New optional arg specifying VC backend.
1836
1837 * vc/vc.el (vc-checkin): Use it.
1838 (vc-deduce-fileset): Handle Log Edit buffers.
1839 (vc-diff): Make first argument optional too.
1840
1841 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
1842
1843 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
1844
1845 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
1846 command, just in case. The function is not needed anymore.
1847 (eshell-external-command): Do not call `eshell-remote-command'.
1848
1849 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
1850
1851 Reduce use of (require 'cl).
1852 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
1853 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
1854 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
1855 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
1856 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
1857 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
1858 * battery.el, avoid.el, abbrev.el: Use cl-lib.
1859 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
1860 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
1861 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
1862 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
1863 * calculator.el, autorevert.el, apropos.el: Don't require CL.
1864 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
1865 (byte-compile-unfold-bcf, byte-compile-check-variable):
1866 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
1867 (byte-compile-nilconstp):
1868 * emacs-lisp/autoload.el (make-autoload): Use pcase.
1869 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
1870
1871 * emacs-lisp/gv.el (cond): Make it a valid place.
1872 (if): Simplify slightly.
1873
1874 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
1875 (pcase--self-quoting-p): New function.
1876 (pcase--u1): Use it.
1877
1878 2012-07-10 Glenn Morris <rgm@gnu.org>
1879
1880 * emacs-lisp/authors.el (authors-fixed-entries):
1881 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
1882
1883 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
1884
1885 Rename configure.in to configure.ac (Bug#11603).
1886 * emacs-lisp/authors.el (authors-canonical-file-name):
1887 * progmodes/autoconf.el (autoconf-mode):
1888 Prefer configure.ac to configure.in.
1889
1890 2012-07-08 Chong Yidong <cyd@gnu.org>
1891
1892 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
1893 Implement the mouse-1-click-follows-link handling properly.
1894
1895 * info.el (Info-link-keymap): Use follow-link mechanism for
1896 header-line links (Bug#374).
1897
1898 * simple.el (deactivate-mark): Do not set the primary selection
1899 if another program has acquired it (Bug#11772).
1900
1901 2012-07-07 Kevin Ryde <user42@zip.com.au>
1902
1903 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
1904 (woman-decode-region): Replace escaped-escapes without destroying
1905 bold or underline (Bug#11552).
1906 (woman2-process-escapes): Handle nofill regions (Bug#11591).
1907
1908 2012-07-07 Chong Yidong <cyd@gnu.org>
1909
1910 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
1911 (interprogram-cut-function, interprogram-paste-function):
1912 Mention that we typically mean the clipboard.
1913
1914 2012-07-06 Glenn Morris <rgm@gnu.org>
1915
1916 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
1917
1918 * files.el (toggle-read-only): Restrict message to interactive use.
1919
1920 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
1921
1922 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
1923
1924 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
1925
1926 2012-07-06 Glenn Morris <rgm@gnu.org>
1927
1928 * Makefile.in (compile-one-process): Rename from "recompile".
1929
1930 * Makefile.in (bzr-update): "compile" is the same as "recompile
1931 autoloads", but parallelizable, so use that instead.
1932
1933 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
1934
1935 * window.el (quit-window): Always restore window height when
1936 it's saved in quit-restore parameter (Bug#11810).
1937
1938 2012-07-06 Glenn Morris <rgm@gnu.org>
1939
1940 * simple.el (kill-whole-line): Doc tweak.
1941
1942 2012-07-06 Eli Zaretskii <eliz@gnu.org>
1943
1944 * files.el (file-relative-name): Compare file names
1945 case-insensitively if on MS-Windows or MS-DOS, or if
1946 read-file-name-completion-ignore-case is non-nil. Don't use
1947 case-fold-search for this purpose. (Bug#11827)
1948
1949 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
1950
1951 * calendar/cal-dst.el (calendar-current-time-zone):
1952 Return calendar-current-time-zone-cache if non-nil.
1953
1954 2012-07-17 Masatake YAMATO <yamato@redhat.com>
1955 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
1956
1957 * calendar/cal-dst.el (calendar-current-time-zone):
1958 Return calendar-current-time-zone-cache if non-nil.
1959
1960 2012-07-06 Glenn Morris <rgm@gnu.org>
1961
1962 * Makefile.in (cvs-update): Remove old alias.
1963
1964 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
1965
1966 Sync with Tramp 2.2.6-pre.
1967
1968 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
1969 compatible declaration.
1970
1971 * net/tramp-cmds.el (tramp-append-tramp-buffers):
1972 Protect `list-load-path-shadows' call.
1973
1974 * net/tramp-compat.el (top): Require packages, which aren't
1975 autoloaded anymore for XEmacs. Protect call of
1976 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
1977 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
1978 it hurts at least for SXEmacs.
1979 (tramp-compat-temporary-file-directory): In XEmacs, there is no
1980 standard-value for `temporary-file-directory'.
1981
1982 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
1983 Redirect stderr to /dev/null.
1984 (tramp-sh-handle-write-region): uid and gid can be floats.
1985 Reported by Russell Sim <russell.sim@gmail.com>.
1986 (tramp-sh-handle-vc-registered): Hide errors.
1987 (tramp-vc-file-name-handler): Use dummy results for `process-file'
1988 and `start-file-process'.
1989 (tramp-maybe-open-connection): Check also whether `non-essential'
1990 is bound.
1991
1992 2012-07-04 Chong Yidong <cyd@gnu.org>
1993
1994 * xml.el (xml--parse-buffer): Use xml-syntax-table.
1995 (xml-parse-tag): Likewise, and avoid changing entity tables.
1996 (xml-syntax-table): Define from scratch, making sure not to give
1997 x2000 and other Unicode spaces whitespace syntax, since those are
1998 not spaces in XML.
1999 (xml-parse-fragment): Delete unused function.
2000 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
2001 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
2002 (xml-entity-ref, xml-pe-reference-re)
2003 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
2004 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
2005 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
2006 (xml-entity-value-re): Use syntax references in regexps where
2007 possible; no need to define inside a let-binding.
2008 (xml-parse-dtd): Use xml-pe-reference-re.
2009 (xml-entity-or-char-ref-re): New defconst.
2010 (xml-parse-string, xml-substitute-special): Use it.
2011
2012 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2013
2014 * files.el (locate-dominating-file): Allow `name' to be a predicate.
2015 (find-file--read-only): New function.
2016 (find-file-read-only, find-file-read-only-other-window)
2017 (find-file-read-only-other-frame): Use it.
2018 (insert-file-contents-literally): Don't `fset'.
2019 (get-free-disk-space): Use locate-dominating-file.
2020
2021 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
2022 function is already compiled.
2023
2024 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
2025
2026 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
2027
2028 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
2029 files on the same host.
2030
2031 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
2032
2033 * help-fns.el (describe-function-1): Only call
2034 help-fns--autoloaded-p when we have a file name. (Bug#11848)
2035
2036 2012-07-03 Chong Yidong <cyd@gnu.org>
2037
2038 * xml.el: Protect parser against XML bombs.
2039 (xml-entity-expansion-limit): New variable.
2040 (xml-parse-string, xml-substitute-special): Use it.
2041 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
2042
2043 2012-07-03 Glenn Morris <rgm@gnu.org>
2044
2045 * progmodes/bug-reference.el (bug-reference-bug-regexp):
2046 Allow linking to specific messages in debbugs reports (eg 123#5).
2047
2048 2012-07-02 Chong Yidong <cyd@gnu.org>
2049
2050 * xml.el: Fix entity and character reference expansion, allowing
2051 them to expand into markup as per XML spec.
2052 (xml-default-ns): New variable.
2053 (xml-entity-alist): Use XML spec definitions for lt and amp.
2054 (xml-parse-region): Make first two arguments optional.
2055 Discard text properties.
2056 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
2057 All callers changed.
2058 (xml-parse-tag): Call xml-parse-tag-1. For backward
2059 compatibility, this function should not modify buffer contents.
2060 (xml-parse-tag-1): Fix opening-tag regexp.
2061 (xml-parse-string): Rewrite, handling entity and character
2062 references properly.
2063 (xml--entity-replacement-text): Signal an error if a parameter
2064 entity is undefined.
2065
2066 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2067
2068 * comint.el (comint-output-filter): Filter out repeated prompts.
2069
2070 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
2071 and file-name-absolute-p.
2072 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
2073 internal calls.
2074
2075 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
2076
2077 Spelling fixes.
2078 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
2079 Rename from byte-compile--refiy-function. All uses changed.
2080
2081 2012-07-01 Chong Yidong <cyd@gnu.org>
2082
2083 * xml.el (xml--parse-buffer): New function. Move most of
2084 xml-parse-region here.
2085 (xml-parse-region): Copy region into a temporary buffer, since
2086 parameter entity substitution requires changing buffer contents.
2087 Use xml--parse-buffer.
2088 (xml-parse-file): Use xml--parse-buffer.
2089 (xml-parse-dtd): Make parameter entity substitution work right.
2090 Use proper regexps for ELEMENT declarations (Bug#7172).
2091
2092 2012-06-30 Glenn Morris <rgm@gnu.org>
2093
2094 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
2095
2096 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
2097 Remove outdated and unnecessary dbus declarations.
2098
2099 2012-06-30 Eli Zaretskii <eliz@gnu.org>
2100
2101 * emacs-lisp/timer.el (timer-until): Subtract results of
2102 float-time, instead of taking float-time of the result of
2103 time-subtract, since float-time signals an error for negative time
2104 arguments.
2105
2106 2012-06-30 Chong Yidong <cyd@gnu.org>
2107
2108 * xml.el (xml-*-re): Convert defvars into defconsts, and
2109 eval-and-compile them so eval-and-compile works on derivatives.
2110 (xml--entity-replacement-text): Use eval-and-comple.
2111
2112 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
2113
2114 * vc/vc-git.el (vc-git-registered): Use cache property
2115 `git-registered'.
2116 (vc-git-mode-line-string): Call `vc-working-revision' instead of
2117 `vc-git-working-revision' in order to benefit from the cache.
2118 (vc-git-root): Use cache property `git-root'. (Bug#11757)
2119
2120 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
2121
2122 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
2123 removed (likely outside Emacs). (Bug#11757)
2124
2125 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
2126
2127 * emacs-lisp/cl-lib.el: Require macroexp.
2128
2129 2012-06-30 Chong Yidong <cyd@gnu.org>
2130
2131 * xml.el: Implement XML parameter entities.
2132 (xml-parameter-entity-alist): New variable.
2133 (xml-parse-region, xml-parse-fragment): Preserve previous values
2134 of xml-entity-alist and xml-parameter-entity-alist, so that
2135 repeated calls on different documents do not change them.
2136 (xml-parse-tag): Fix doctype regexp.
2137 (xml--entity-replacement-text): New function.
2138 (xml-parse-dtd): Use it. Don't handle system entities; doing that
2139 properly requires url retrieval which is unimplemented.
2140 (xml-escape-string): Doc fix.
2141
2142 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
2143
2144 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
2145
2146 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
2147
2148 * fringe.el (fringe-mode): Doc fix.
2149
2150 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
2151
2152 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
2153 is non-nil.
2154 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
2155 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
2156
2157 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
2158
2159 * calendar/cal-dst.el (calendar-current-time-zone):
2160 Return calendar-current-time-zone-cache if non-nil.
2161
2162 2012-06-29 Masatake YAMATO <yamato@redhat.com>
2163
2164 * progmodes/which-func.el (which-func-format):
2165 Add mouse-face. (Bug#11698)
2166
2167 2012-06-29 Leo Liu <sdl.web@gmail.com>
2168
2169 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
2170
2171 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2172
2173 * minibuffer.el (minibuffer-confirm-exit-commands):
2174 Add completion-at-point (bug#11725).
2175
2176 2012-06-29 Glenn Morris <rgm@gnu.org>
2177
2178 * progmodes/f90.el (f90-font-lock-keywords-2):
2179 Add some preprocessor elements. (Bug#10499)
2180
2181 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2182
2183 * progmodes/cperl-mode.el (cperl-update-syntaxification):
2184 Use syntax-propertize (bug#11739).
2185
2186 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
2187
2188 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
2189
2190 2012-06-28 Julien Danjou <julien@danjou.info>
2191
2192 * term.el (term-handle-colors-array): Use a set of new faces to
2193 color the terminal. Also uses :inverse-video property.
2194 (term-default-fg-color): Set to nil by default, deprecate in favor
2195 of `term-face'.
2196 (term-default-bg-color): Set to nil by default, deprecate in favor
2197 of `term-face'.
2198 (term-current-face): Use `term-face' by default.
2199 (term-bold-attribute): Variable deleted.
2200
2201 2012-06-28 Glenn Morris <rgm@gnu.org>
2202
2203 * simple.el (completion-list-mode-finish):
2204 Don't use toggle-read-only. (Since completion-list-mode has
2205 a special mode-class, it wasn't doing anything extra anyway.)
2206
2207 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
2208
2209 Make inlining of other-mode interpreted functions work (bug#11799).
2210 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
2211 (byte-compile): Use it to fix compilation of lexical-binding closures.
2212 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
2213 function, if needed.
2214
2215 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
2216
2217 * help-mode.el (help-make-xrefs): Don't just withstand
2218 cyclic-variable-indirection but any error in documentation-property.
2219
2220 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
2221 memory use.
2222 * bindings.el (bindings--define-key): New function.
2223 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
2224 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
2225 * bindings.el: Use it to purecopy define-key bindings.
2226
2227 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
2228
2229 * emacs-lisp/cl.el (flet): Mark obsolete.
2230 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
2231 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
2232 * progmodes/js.el (js-c-fill-paragraph):
2233 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
2234 (ebrowse-switch-member-buffer-to-derived-class):
2235 * play/5x5.el (5x5-solver): Use cl-flet.
2236
2237 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
2238 (cl--symbol-function): New macro.
2239 (cl--letf, cl--letf*): Use it.
2240
2241 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
2242 Strip "toggle-" if any.
2243
2244 2012-06-27 Glenn Morris <rgm@gnu.org>
2245
2246 * info.el (Info-default-directory-list): Move here from paths.el.
2247 * paths.el: Remove file, which is now empty.
2248 * loadup.el: No longer load "paths".
2249
2250 * custom.el (custom-initialize-delay): Doc fix.
2251
2252 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
2253 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
2254 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
2255 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
2256 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
2257 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
2258 * eshell/eshell.el (eshell-defgroup): Remove alias.
2259
2260 2012-06-27 Chong Yidong <cyd@gnu.org>
2261
2262 * help.el (help-enable-auto-load): New variable.
2263
2264 * help-fns.el (help-fns--autoloaded-p): New function.
2265 (describe-function-1): Refer to a function as "autoloaded" if it
2266 was autoloaded at any time in the past. Perform autoloading if
2267 help-enable-auto-load is non-nil.
2268
2269 2012-06-26 Eli Zaretskii <eliz@gnu.org>
2270
2271 * makefile.w32-in (compile, compile-always): Depend on
2272 update-subdirs, not on subdirs.el. Otherwise, several different
2273 sub-targets of 'bootstrap' running in parallel could
2274 simultaneously write to subdirs.el, producing a garbled file.
2275
2276 2012-06-26 Sam Steingold <sds@gnu.org>
2277
2278 * files.el (file-name-base): New convenience function.
2279 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
2280 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
2281 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
2282 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
2283 * textmodes/ispell.el, textmodes/reftex-ref.el:
2284 * textmodes/tex-mode.el: Use it.
2285 Did not touch cedet and org because they are maintained elsewhere.
2286
2287 2012-06-26 Martin Rudalics <rudalics@gmx.at>
2288
2289 * calendar/calendar.el (calendar-exit): Don't try to delete or
2290 iconify last frame. See:
2291 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
2292
2293 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
2294
2295 * server.el (server-process-filter): Remember dir in the
2296 process's `server-client-directory' properties.
2297
2298 2012-06-24 Chong Yidong <cyd@gnu.org>
2299
2300 * xml.el (xml-parse-tag): Correctly handle comment embedded in
2301 non-tag text.
2302
2303 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
2304
2305 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
2306
2307 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2308
2309 * help-fns.el (describe-variable): Don't croak when doc is not found.
2310 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
2311 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
2312 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
2313 * emacs-lisp/smie.el (smie-next-sexp): CSE.
2314 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
2315 ((lambda ..) ..).
2316 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
2317
2318 2012-06-23 Chong Yidong <cyd@gnu.org>
2319
2320 * info.el (Info-mouse-follow-link): Accept symbol values of
2321 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
2322 (Info-fontify-node): Use Info-link-keymap for all navigation
2323 buttons, with link-args property to perform the desired action.
2324 (Info-link-keymap): Doc fix.
2325 (Info-next-link-keymap, Info-prev-link-keymap)
2326 (Info-up-link-keymap): Delete now-unused keymaps.
2327
2328 2012-06-23 Chong Yidong <cyd@gnu.org>
2329
2330 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
2331
2332 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
2333 system abbrevs.
2334
2335 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
2336
2337 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2338
2339 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
2340 (bug#11719).
2341
2342 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
2343 the requote function doesn't work properly (bug#11714).
2344
2345 2012-06-23 Glenn Morris <rgm@gnu.org>
2346
2347 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
2348
2349 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2350
2351 Further GV/CL cleanups.
2352 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
2353 gv-expander.
2354 (gv--defun-declaration): New function.
2355 (defun-declarations-alist): Use it.
2356 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
2357 (gv-place): Autoload.
2358 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
2359 original definition of dotimes and dolist.
2360 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
2361 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
2362 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
2363 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
2364 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
2365 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
2366 to the function's definition.
2367 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
2368 * window.el:
2369 * files.el:
2370 * faces.el:
2371 * env.el: Don't use CL.
2372
2373 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
2374
2375 Support higher-resolution time stamps (Bug#9000).
2376
2377 * calendar/time-date.el (with-decoded-time-value): New arg
2378 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
2379 (encode-time-value): New optional arg PICO. New type 3.
2380 (time-to-seconds) [!float-time]: Support the new picoseconds
2381 component if it's used.
2382 (seconds-to-time, time-subtract, time-add):
2383 Support ps-resolution time stamps as well.
2384
2385 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
2386 (timerp): Timer vectors now have length 9, not 8.
2387 (timer--time): Support new-style (4-part) time stamps.
2388 (timer-next-integral-multiple-of-time): Time stamps now have
2389 picosecond resolution, so take a bit more care about rounding.
2390 (timer-relative-time, timer-inc-time): New optional arg psecs.
2391 (timer-set-time-with-usecs): Set psecs to 0.
2392 (timer--activate): Check psecs component, too.
2393
2394 * proced.el (proced-time-lessp): Support ps-resolution stamps.
2395
2396 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2397
2398 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
2399 Move the non-essential binding to the post/pre-command-hook where it is
2400 more obviously correct.
2401
2402 * subr.el (read-passwd): Don't use a history at all.
2403 * savehist.el (savehist-save): Remove password saved accidentally
2404 because of the above bug.
2405
2406 2012-06-22 Bastien Guerry <bzg@gnu.org>
2407
2408 * files.el (toggle-read-only): Display a message telling whether
2409 the buffer is read-only or not (bug#11726).
2410
2411 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2412
2413 * emacs-lisp/gv.el: New file.
2414 * subr.el (push, pop): Extend to generalized variables.
2415 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
2416 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
2417 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
2418 gv-define-simple-setter, and gv-define-expander.
2419 Remove setf-methods defined in gv. Rename cl-setf -> setf.
2420 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
2421 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
2422 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
2423 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
2424 gv-letplace.
2425 (cl-defstruct): Don't define setf-method any more.
2426 * emacs-lisp/cl.el (flet): Don't autoload.
2427 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
2428 (define-setf-expander, defsetf, define-modify-macro)
2429 (cl-struct-setf-expander): Move from cl-lib.el.
2430 * emacs-lisp/syntax.el:
2431 * emacs-lisp/ewoc.el:
2432 * emacs-lisp/smie.el:
2433 * emacs-lisp/cconv.el:
2434 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
2435 (timer--time): Use gv-define-simple-setter.
2436 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
2437 to avoid coding-system problems in subr.el. Adjust all users.
2438 (macroexp--maxsize, macroexp-small-p): New functions.
2439 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
2440 * scroll-bar.el (scroll-bar-mode):
2441 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
2442 (normal-erase-is-backspace-mode): Don't use the `eq' place.
2443 * winner.el (winner-configuration, winner-make-point-alist)
2444 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
2445 * files.el (locate-file-completion-table): Avoid list*.
2446
2447 2012-06-22 Chong Yidong <cyd@gnu.org>
2448
2449 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
2450 (dired-create-files): Doc fix (Bug#11329).
2451 (dired-do-copy): Doc fix (Bug#11334).
2452 (dired-mark-read-string): Doc fix (Bug#11553).
2453
2454 * dired.el (dired-recursive-copies, dired-recursive-deletes):
2455 Doc fix (Bug#11326).
2456 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
2457 (dired-dwim-target): Doc fix.
2458
2459 * wdired.el (wdired-mode): Doc fix.
2460
2461 2012-06-22 Glenn Morris <rgm@gnu.org>
2462
2463 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
2464 (pcmpl-rpm-cache-stamp-file): New constant.
2465 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
2466 (pcmpl-rpm-packages): Optionally cache list of packages.
2467
2468 * pcmpl-rpm.el (pcmpl-rpm): New group.
2469 (pcmpl-rpm-query-options): New option.
2470 (pcmpl-rpm-packages): No need to inline it.
2471 Use pcmpl-rpm-query-options.
2472
2473 * calendar/calendar.el (calendar-in-read-only-buffer):
2474 Avoid some needless mode changes.
2475
2476 2012-06-21 Chong Yidong <cyd@gnu.org>
2477
2478 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
2479 (desktop-path): Remove . from the default value (Bug#10977).
2480 (desktop-read): Use user-emacs-directory if desktop-path is nil.
2481
2482 2012-06-20 Chong Yidong <cyd@gnu.org>
2483
2484 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
2485
2486 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
2487
2488 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
2489 (bug#11201).
2490
2491 2012-06-20 Chong Yidong <cyd@gnu.org>
2492
2493 * term.el (term-window-width): Handle the case of a missing right
2494 fringe (Bug#8837).
2495 (term-check-size): Use window-text-height (Bug#5445).
2496 (term-mode): Use define-derived-mode. Minor cleanups.
2497 Set font-lock-defaults (Bug#7692).
2498 (term-move-columns, term-insert-char, term-emulate-terminal)
2499 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
2500
2501 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
2502
2503 * net/ange-ftp.el (ange-ftp-get-passwd):
2504 Bind `enable-recursive-minibuffers'.
2505 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
2506
2507 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
2508
2509 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
2510
2511 2012-06-19 Glenn Morris <rgm@gnu.org>
2512
2513 * progmodes/python.el (python-mode): Derive from prog-mode.
2514
2515 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
2516
2517 * emulation/edt.el (edt-default-menu-bar-update-buffers)
2518 (edt-user-menu-bar-update-buffers): New functions.
2519 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
2520
2521 2012-06-19 Chong Yidong <cyd@gnu.org>
2522
2523 * subr.el (with-selected-window): Preserve the selected window's
2524 terminal's top-frame (Bug#4702).
2525
2526 * window.el (save-selected-window): Likewise.
2527
2528 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
2529
2530 * progmodes/python.el (python-rx-constituents): Move backquote.
2531 (python-skeleton-define, python-define-auxiliary-skeleton):
2532 Use `declare'.
2533
2534 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
2535
2536 * minibuffer.el (read-file-name-default): Revert the patch from
2537 2012-06-17.
2538
2539 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
2540
2541 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
2542 (pcase--u1, pcase--q1): Don't use apply-partially.
2543
2544 2012-06-18 Glenn Morris <rgm@gnu.org>
2545
2546 * progmodes/python.el (python-proc, python-buffer)
2547 (python-send-receive, python-send-string): Fix obsolete versions.
2548
2549 2012-06-18 Martin Rudalics <rudalics@gmx.at>
2550
2551 * window.el (special-display-p): Completely remove stringp
2552 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
2553
2554 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
2555
2556 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
2557
2558 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
2559
2560 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
2561 * net/tramp-sh.el (tramp-maybe-open-connection):
2562 Throw if `non-essential' is non-nil.
2563
2564 2012-06-17 Martin Rudalics <rudalics@gmx.at>
2565
2566 * window.el (special-display-p): Signal an error if BUFFER-NAME
2567 is not a string (Bug#11713).
2568
2569 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
2570
2571 * progmodes/python.el (python-info-beginning-of-backslash):
2572 Rename from python-info-beginning-of-backlash, as a spelling fix.
2573
2574 2012-06-17 Chong Yidong <cyd@gnu.org>
2575
2576 * term.el (term-emulate-terminal): If term-check-size is called,
2577 move point to the process mark without resetting point (Bug#4635).
2578
2579 2012-06-17 Glenn Morris <rgm@gnu.org>
2580
2581 * international/mule-cmds.el (mule-menu-keymap)
2582 (set-language-environment, set-locale-environment): Doc tweaks.
2583
2584 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
2585
2586 * cus-face.el (custom-face-attributes): Add wave-style underline
2587 attribute.
2588 * faces.el (set-face-attribute): Update docstring to describe
2589 wave-style underline attribute.
2590
2591 2012-06-16 Chong Yidong <cyd@gnu.org>
2592
2593 * term/xterm.el (terminal-init-xterm): Discard input before
2594 querying background mode (Bug#10959).
2595
2596 2012-06-16 Stefan Merten <smerten@oekonux.de>
2597
2598 * textmodes/rst.el: Added and corrected some comments.
2599 (rst-re-alist-def): Improve symbol syntax.
2600 (rst-mode-syntax-table): Correct syntax entries.
2601 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
2602 (rst-official-version, rst-official-cvs-rev): Update version
2603 information.
2604
2605 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
2606
2607 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
2608 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
2609
2610 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
2611
2612 * progmodes/python.el: New python.el merge.
2613 (python-guess-indent): Obsolete var.
2614 (python-indent-guess-indent-offset): New defcustom.
2615 (python-indent): Obsolete var.
2616 (python-indent-offset): New defcustom.
2617 (python-python-command, python-jython-command): Delete var.
2618 (python-shell-interpreter): New defcustom.
2619 (python-pdbtrack-do-tracking-p): Delete var.
2620 (python-pdbtrack-activate): New defcustom.
2621 (python-use-skeletons): Obsolete var.
2622 (python-skeleton-autoinsert): New defcustom.
2623 (inferior-python-filter-regexp, python-continuation-offset)
2624 (python-honour-comment-indentation, python-indent-string-contents)
2625 (python-jython-packages, python-mode-hook)
2626 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
2627 (python-shell-prompt-alist)
2628 (python-source-modes): Delete defcustoms.
2629 (python-check-buffer-name, python-eldoc-setup-code)
2630 (python-eldoc-string-code, python-ffap-setup-code)
2631 (python-ffap-string-code, python-fill-comment-function)
2632 (python-fill-decorator-function, python-fill-paren-function)
2633 (python-fill-string-function, python-imenu-include-defun-type)
2634 (python-imenu-make-tree, python-imenu-subtree-root-label)
2635 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
2636 (python-shell-compilation-regexp-alist)
2637 (python-shell-completion-module-string-code)
2638 (python-shell-completion-pdb-string-code)
2639 (python-shell-completion-setup-code)
2640 (python-shell-completion-string-code)
2641 (python-shell-enable-font-lock, python-shell-exec-path)
2642 (python-shell-extra-pythonpaths)
2643 (python-shell-internal-buffer-name, python-shell-interpreter-args)
2644 (python-shell-process-environment)
2645 (python-shell-prompt-block-regexp)
2646 (python-shell-prompt-output-regexp)
2647 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
2648 (python-shell-send-setup-max-wait, python-shell-setup-codes)
2649 (python-shell-virtualenv-path): New defcustoms.
2650 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
2651 (inferior-python-mode-syntax-table, python--prompt-regexp)
2652 (python-buffer, python-command python-python-command)
2653 (python-default-template, python-imports, python-indent-index)
2654 (python-indent-list, python-indent-list-length)
2655 (python-mode-running, python-pdbtrack-is-tracking-p)
2656 (python-preoutput-continuation, python-preoutput-leftover)
2657 (python-preoutput-result, python-preoutput-skip-next-prompt)
2658 (python-prev-dir/file, python-recursing)
2659 (python-saved-check-command, python-version-checked)
2660 (python-which-func-length-limit)
2661 (view-return-to-alist): Delete vars.
2662 (python-check-custom-command, python-dotty-syntax-table)
2663 (python-imenu-index-alist, python-indent-current-level)
2664 (python-indent-dedenters, python-indent-levels)
2665 (python-nav-beginning-of-defun-regexp)
2666 (python-nav-list-defun-positions-cache)
2667 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
2668 (python-shell-internal-buffer)
2669 (python-skeleton-available): New vars.
2670 (def-python-skeleton): Delete macro.
2671 (python-skeleton-define): New macro.
2672 (python-define-auxiliary-skeleton, python-rx): New macros.
2673 (python-insert-class): Delete command.
2674 (python-skeleton-class): New command.
2675 (python-insert-def): Delete command.
2676 (python-skeleton-def): New command.
2677 (python-insert-for): Delete command.
2678 (python-skeleton-for): New command.
2679 (python-insert-if): Delete command.
2680 (python-skeleton-if): New command.
2681 (python-insert-try/except, python-insert-try/finally): Delete commands.
2682 (python-skeleton-try): New command.
2683 (python-insert-while): Delete command.
2684 (python-skeleton-while): New command.
2685 (python-backspace): Delete command.
2686 (python-indent-dedent-line-backspace): New command.
2687 (python-electric-colon): Delete command.
2688 (python-indent-electric-colon): New command.
2689 (python-guess-indent): Delete command.
2690 (python-indent-guess-indent-offset): New command.
2691 (python-shift-left): Delete command.
2692 (python-indent-shift-left): New command.
2693 (python-shift-right): Delete command.
2694 (python-indent-shift-right): New command.
2695 (python-find-function): Delete command.
2696 (python-nav-jump-to-defun): New command.
2697 (python-next-statement): Delete command.
2698 (python-nav-forward-sentence): New command.
2699 (python-previous-statement): Delete command.
2700 (python-nav-backward-sentence): New command.
2701 (python-fill-paragraph): Delete command.
2702 (python-fill-paragraph-function): New command.
2703 (python-send-buffer): Delete command.
2704 (python-shell-send-buffer): New command.
2705 (python-send-defun): Delete command.
2706 (python-shell-send-defun): New command.
2707 (python-send-region, python-send-region-and-go): Delete commands.
2708 (python-shell-send-region)
2709 (python-shell-switch-to-shell): New commands.
2710 (python-send-string): Delete command.
2711 (python-shell-send-string): New command.
2712 (python-switch-to-python): Delete command.
2713 (python-shell-switch-to-shell): New command.
2714 (python-describe-symbol): Delete command.
2715 (python-eldoc-at-point): New command.
2716 (python--set-prompt-regexp, python-args-to-list)
2717 (python-after-info-look, python-check-version)
2718 (python-check-comint-prompt, python-find-imports)
2719 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
2720 (python-unload-function, python-expand-template)
2721 (python-maybe-jython, python-preoutput-filter)
2722 (python-pdbtrack-get-source-buffer)
2723 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
2724 (python-pdbtrack-toggle-stack-tracking)
2725 (python-pdbtrack-track-stack-file, python-initial-text)
2726 (python-first-word, python-comment-line-p, python-send-command)
2727 (python-setup-brm, python-sentinel, python-set-proc)
2728 (python-skip-out, python-input-filter, python-outdent-p)
2729 (python-outline-level, python-backslash-continuation-line-p)
2730 (python-end-of-block, python-end-of-statement, python-mark-block)
2731 (python-beginning-of-block, python-beginning-of-statement)
2732 (python-blank-line-p, python-beginning-of-string)
2733 (python-open-block-statement-p): Delete functions.
2734 (python-indent-line, python-indent-line-1): Delete functions.
2735 (python-indent-line): New function.
2736 (python-indentation-levels): Delete function.
2737 (python-indent-calculate-levels): New function.
2738 (python-proc): Delete function.
2739 (python-shell-get-process): New function.
2740 (python-send-receive): Delete function.
2741 (python-shell-send-string-no-output): New function.
2742 (python-module-path): Delete function.
2743 (python-ffap-module-path): New function.
2744 (python-completion-at-point)
2745 (python-symbol-completions): Delete functions.
2746 (python-completion-complete-at-point): New function.
2747 (python-load-file): Delete function.
2748 (python-shell-send-file): New function.
2749 (python-calculate-indentation): Delete function.
2750 (python-indent-calculate-indentation): New function.
2751 (python-skip-comments/blanks): Delete function.
2752 (python-util-forward-comment): New function.
2753 (python-continuation-line-p): Delete function.
2754 (python-info-continuation-line-p): New function.
2755 (python-which-func, python-current-defun): Delete function.
2756 (python-info-current-defun): New function.
2757 (python-beginning-of-defun): Delete function.
2758 (python-nav-beginning-of-defun): New function.
2759 (python-close-block-statement-p)
2760 (python-block-end-p): Delete function.
2761 (python-info-closing-block): New function.
2762 (python-comint-output-filter-function)
2763 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
2764 (python-fill-comment, python-fill-decorator, python-fill-paren)
2765 (python-fill-string, python-imenu-make-element-tree)
2766 (python-imenu-make-tree, python-imenu-tree-assoc)
2767 (python-indent-context, python-indent-dedent-line)
2768 (python-indent-line-function)
2769 (python-indent-post-self-insert-function)
2770 (python-indent-toggle-levels)
2771 (python-info-assignment-continuation-line-p)
2772 (python-info-beginning-of-backlash)
2773 (python-info-block-continuation-line-p)
2774 (python-info-closing-block-message)
2775 (python-info-line-ends-backslash-p)
2776 (python-info-looking-at-beginning-of-defun)
2777 (python-info-ppss-context, python-info-ppss-context-type)
2778 (python-nav-list-defun-positions, python-nav-read-defun)
2779 (python-nav-sentence-end, python-nav-sentence-start)
2780 (python-pdbtrack-comint-output-filter-function)
2781 (python-pdbtrack-set-tracked-buffer)
2782 (python-shell-calculate-exec-path)
2783 (python-shell-calculate-process-environment)
2784 (python-shell-completion--do-completion-at-point)
2785 (python-shell-completion--get-completions)
2786 (python-shell-completion-complete-at-point)
2787 (python-shell-completion-complete-or-indent)
2788 (python-shell-get-or-create-process)
2789 (python-shell-get-process-name)
2790 (python-shell-internal-get-or-create-process)
2791 (python-shell-internal-get-process-name)
2792 (python-shell-internal-send-string, python-shell-make-comint)
2793 (python-shell-parse-command, python-shell-send-setup-code)
2794 (python-skeleton-add-menu-items)
2795 (python-util-clone-local-variables, python-util-position)
2796 (run-python-internal, python-indentation-levels)
2797 (python-nav-beginning-of-defun)
2798 (python-completion-complete-at-point): New functions.
2799 (run-python): Change arguments. New API requirements.
2800
2801 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
2802
2803 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
2804 (bug#11649).
2805
2806 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
2807 (macroexp--expand-all): Use it.
2808
2809 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
2810 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
2811 Use `cl-function' instead.
2812
2813 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
2814
2815 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
2816 Suggested by Stefan Monnier while discussing bug#11657.
2817
2818 2012-06-14 Sam Steingold <sds@gnu.org>
2819
2820 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
2821
2822 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
2823
2824 * play/doctor.el (doctor-doc): Remove parameter and use
2825 doctor-sent instead of sent.
2826 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
2827
2828 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2829
2830 * files.el: Require cl-lib.
2831 (file-name-non-special): Replace case -> cl-case.
2832
2833 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
2834
2835 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
2836 mapping from #' to function*.
2837
2838 2012-06-13 Chong Yidong <cyd@gnu.org>
2839
2840 * mouse.el (mouse-drag-track): Do not set the mark if the user
2841 releases the mouse without selecting anything (Bug#11588).
2842
2843 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2844
2845 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
2846 as well (bug#11646).
2847
2848 * loadup.el: Count byte-code functions as well.
2849
2850 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
2851 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
2852
2853 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
2854 (bug#11649). Add cl-defun and cl-defmacro.
2855
2856 2012-06-13 Drew Adams <drew.adams@oracle.com>
2857
2858 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
2859 Fix last change.
2860
2861 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
2862
2863 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
2864 Otherwise, it blocks in batch mode.
2865
2866 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
2867
2868 * help-mode.el (bookmark-make-record-default): Declare.
2869
2870 2012-06-13 Chong Yidong <cyd@gnu.org>
2871
2872 * emacs-lisp/package.el (list-packages): Compute a list of
2873 packages that are newly-available since the last list-packages
2874 invocation.
2875 (package-menu--new-package-list): New var.
2876 (package-menu--generate, package-menu--print-info)
2877 (package-menu--status-predicate, package-menu-mark-install):
2878 Handle new status label "new".
2879
2880 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
2881
2882 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
2883 conversion to backquotes.
2884
2885 2012-06-12 Chong Yidong <cyd@gnu.org>
2886
2887 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
2888 Rename from gud-inhibit-global-bindings.
2889
2890 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
2891
2892 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
2893 hook from nxml-glyph-set-hook.
2894
2895 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
2896 declaration.
2897
2898 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
2899
2900 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
2901 Convert to defcustom.
2902
2903 2012-06-12 Drew Adams <drew.adams@oracle.com>
2904
2905 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
2906 New functions.
2907 (help-mode): Use them.
2908
2909 2012-06-11 Glenn Morris <rgm@gnu.org>
2910
2911 * progmodes/fortran.el (fortran-font-lock-keywords-3):
2912 Use preprocessor face for directives.
2913 (fortran-directive-re): Doc fix.
2914
2915 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2916
2917 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
2918 conversion to backquotes (bug#11652).
2919
2920 Fix compiler-expansion of CL's cXXr functions (bug#11673).
2921 * emacs-lisp/cl-lib.el (cl--defalias): New function.
2922 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
2923 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
2924 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
2925 (cl-ninth, cl-tenth): Mark them as inlinable.
2926 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
2927 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
2928 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
2929 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
2930 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
2931 (cl-list*, cl-adjoin): Don't put an autoload manually.
2932 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
2933 (cl--compiler-macro-list*): Add autoload cookie.
2934 (cl--compiler-macro-cXXr): New function.
2935
2936 * help-fns.el (help-fns--compiler-macro): New function extracted from
2937 describe-function-1; follow aliases and use `compiler-macro' property.
2938 (describe-function-1): Use it.
2939
2940 2012-06-11 Chong Yidong <cyd@gnu.org>
2941
2942 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
2943 is uninstalled, if imagemagick is installed.
2944
2945 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2946
2947 * emacs-lisp/cl-lib.el: Use lexical-binding.
2948 (cl-map-extents, cl-maclisp-member): Remove.
2949 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
2950 (cl--set-substring, cl--block-wrapper, cl--block-throw)
2951 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
2952 * emacs-lisp/cl-extra.el: Use lexical-binding.
2953 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
2954 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
2955 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
2956 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
2957 * emacs-lisp/cl-seq.el: Use lexical-binding.
2958 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
2959 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
2960 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
2961 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
2962 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
2963 CL's internals.
2964
2965 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
2966
2967 Sync with Tramp 2.2.6-pre.
2968
2969 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
2970 `print-length' and `print-level' to nil, in order to avoid
2971 truncation. Reported by Christopher Schmidt
2972 <christopher@ristopher.com>.
2973
2974 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
2975
2976 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
2977 New defmacro.
2978 (tramp-compat-copy-directory): Add optional argument
2979 COPY-CONTENTS. It is not handled yet.
2980
2981 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
2982 (tramp-ftp-file-name-p): Simplify.
2983
2984 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
2985 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
2986 connection vector.
2987
2988 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
2989 (tramp-methods): Do not use `tramp-password-end-of-line'.
2990 (tramp-completion-function-alist-putty): Handle UNIX case.
2991 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
2992 (tramp-do-file-attributes-with-stat)
2993 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
2994 gid as real numbers. They could run out of integer range on cygwin.
2995 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
2996 (tramp-sh-handle-expand-file-name): Handle hops.
2997 (tramp-open-connection-setup-interactive-shell):
2998 Use `tramp-cleanup'. Move check for busyboxes ...
2999 (tramp-find-shell): ... here. Simplify implementation.
3000 Set "remote-shell" property also for alternative shells.
3001 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
3002 If failing, a regular file would be written otherwise.
3003 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
3004 (tramp-find-inline-encoding): Cache the coding commands in the
3005 process cache. Apply test command on the remote side, if defined.
3006 (tramp-find-inline-compress): Cache the compress commands in the
3007 process cache.
3008 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
3009 when requested. Handle hops.
3010 (tramp-current-connection): New defvar.
3011 (tramp-maybe-open-connection): Use `tramp-cleanup'.
3012 Throw `suppress', if there was a failed connection shortly before.
3013 Handle user interrupt. (Bug#10187)
3014 (tramp-get-inline-compress, tramp-get-inline-coding):
3015 Read connection properties from the process cache.
3016
3017 * net/tramp-smb.el (tramp-smb-server-version)
3018 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
3019 New defconsts.
3020 (tramp-smb-prompt): Extend for powershell prompt.
3021 (tramp-smb-file-name-handler-alist): Add handlers for
3022 `process-file', `shell-command' and `start-file-process'.
3023 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
3024 (tramp-smb-winexe-shell-command-switch): New defcustoms.
3025 (tramp-smb-file-name-p): Simplify.
3026 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
3027 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
3028 (tramp-smb-shell-quote-argument): New defuns.
3029 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
3030 Implement using "tar". By this, time-stamps are preserved.
3031 (tramp-smb-handle-copy-file): Handle also the case of directories.
3032 (tramp-smb-do-file-attributes-with-stat)
3033 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
3034 Use `tramp-get-connection-buffer').
3035 (tramp-smb-handle-rename-file): Use "rename", when source and
3036 target are on the same share.
3037 (tramp-smb-maybe-open-connection): Handle wrong passwords.
3038 Use `tramp-smb-server-version'.
3039 (tramp-smb-wait-for-output): Remove prompt.
3040
3041 * net/tramp.el (top): Require 'cl.
3042 (tramp-methods, tramp-rsh-end-of-line):
3043 Remove `tramp-password-end-of-line' from docstring.
3044 (tramp-save-ad-hoc-proxies): New defcustom.
3045 (tramp-completion-function-alist): Adapt docstring.
3046 (tramp-default-password-end-of-line): Remove defcustom.
3047 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
3048 (tramp-user-regexp, tramp-file-name-regexp-unified)
3049 (tramp-file-name-regexp-url): Extend regexp by hop separator.
3050 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
3051 (tramp-remote-file-name-spec-regexp): New defconst.
3052 (tramp-file-name-structure): Extend structure for hops.
3053 (tramp-get-method-parameter): Move up.
3054 (tramp-file-name-p, tramp-dissect-file-name)
3055 (with-parsed-tramp-file-name): Handle hops.
3056 (tramp-file-name-hop): New defun.
3057 (tramp-make-tramp-file-name): New optional arg HOP.
3058 (tramp-message-show-progress-reporter-message): New defvar.
3059 (tramp-with-progress-reporter): Use it. We cannot use
3060 `tramp-message-show-message' here, because this suppresses also
3061 error buffers.
3062 (tramp-error-with-buffer): Suppress buffer view, if
3063 `tramp-message-show-message' is nil.
3064 Use `tramp-get-connection-buffer'.
3065 (tramp-cleanup): New defun.
3066 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
3067 (tramp-file-name-handler): If `debug-on-error' is set, propagate
3068 an error unchanged.
3069 (tramp-completion-handle-file-name-all-completions): Handle hops.
3070 Fix an error when called from ido.
3071 (tramp-completion-dissect-file-name): Use better local variable
3072 name. Add hop to the vector.
3073 (tramp-handle-insert-file-contents): Use progress-reporter for the
3074 whole scenario.
3075 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
3076 to `t'.
3077 (tramp-check-for-regexp): Simplify search.
3078 (tramp-enter-password): Remove it. Move implementation ...
3079 (tramp-action-password): ... here.
3080 (tramp-mode-string-to-int, tramp-local-host-p)
3081 (tramp-make-tramp-temp-file, tramp-read-passwd)
3082 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
3083 Set tramp-autoload cookie.
3084
3085 * net/trampver.el: Update release number.
3086
3087 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3088 Michael Albinus <michael.albinus@gmx.de>
3089
3090 * net/tramp.el (tramp-set-completion-function): Fix docstring.
3091 (tramp-parse-group, tramp-parse-file)
3092 (tramp-parse-shostkeys-sknownhosts): New defuns.
3093 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
3094 (tramp-parse-shosts-group, tramp-parse-sconfig)
3095 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
3096 (tramp-parse-sknownhosts, tramp-parse-hosts)
3097 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
3098 Use them.
3099 (tramp-parse-passwd-group, tramp-parse-netrc-group)
3100 (tramp-parse-putty-group): Don't narrow.
3101 (tramp-parse-putty): Make a loop.
3102 (tramp-file-name-handler): Catch the `suppress' signal.
3103
3104 2012-06-11 Chong Yidong <cyd@gnu.org>
3105
3106 * image.el (imagemagick-register-types): Put the ImageMagick entry
3107 at the end of image-type-file-name-regexps.
3108
3109 2012-06-11 Johan Bockgård <bojohan@gnu.org>
3110
3111 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
3112 (pcase, pcase-let*, pcase-dolist): Use them.
3113
3114 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
3115
3116 * emacs-lisp/pcase.el (pcase--let*): New function.
3117 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
3118 (pcase--expand): Use macroexp-let².
3119
3120 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
3121
3122 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
3123 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
3124 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
3125 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
3126 * emacs-lisp/derived.el: Use pcase instead of `cl'.
3127 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
3128
3129 2012-06-10 Glenn Morris <rgm@gnu.org>
3130
3131 * mail/rmail.el (rmail-yank-current-message): Leave point at
3132 correct position. (Bug#11660)
3133
3134 2012-06-10 Chong Yidong <cyd@gnu.org>
3135
3136 * allout-widgets.el: Fix code header.
3137
3138 2012-06-10 Chong Yidong <cyd@gnu.org>
3139
3140 * cus-edit.el (customize-changed-options-previous-release):
3141 Bump to 24.1.
3142
3143 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
3144
3145 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
3146
3147 2012-06-09 Chong Yidong <cyd@gnu.org>
3148
3149 * ebuff-menu.el (electric-buffer-list): Preserve header line.
3150
3151 2012-06-09 Martin Rudalics <rudalics@gmx.at>
3152
3153 * window.el (special-display-popup-frame): Don't use
3154 window--display-buffer (Bug#11651).
3155
3156 2012-06-09 Eli Zaretskii <eliz@gnu.org>
3157
3158 Fix parallel builds: make sure loaddefs.el is not being written
3159 while Lisp files are compiled.
3160 (compile): Don't depend on 'mh-autoloads'.
3161 (compile-CMD, compile-SH): Depend on 'autoloads'.
3162 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
3163
3164 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
3165
3166 2012-06-09 Chong Yidong <cyd@gnu.org>
3167
3168 * face-remap.el (face-remap-add-relative, face-remap-set-base)
3169 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
3170 Doc fixes (Bug#11225).
3171
3172 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
3173
3174 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
3175 a function if there's a clear indication that it has a compiler-macro.
3176 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
3177 (macro-declarations-alist): Add arglist to declaration functions.
3178 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
3179 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
3180 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
3181 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
3182 Also add autoload to find the compiler macro.
3183 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
3184 (cl--compiler-macro-member, cl--compiler-macro-assoc)
3185 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
3186 (cl--compiler-macro-get): New functions, replacing calls to
3187 cl-define-compiler-macro.
3188 (cl-typep) [compiler-macro]: Use macroexp-let².
3189
3190 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
3191
3192 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
3193 string properly, fixes Bug#11473.
3194
3195 2012-06-08 Chong Yidong <cyd@gnu.org>
3196
3197 * faces.el (set-face-attribute): Doc fix.
3198 (modify-face): Don't use :bold and :italic.
3199 (error, warning, success): Tweak definitions.
3200
3201 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
3202 (custom-modified, custom-set, custom-changed, custom-themed)
3203 (custom-saved, custom-button, custom-button-mouse)
3204 (custom-button-pressed, custom-state, custom-comment-tag)
3205 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
3206 (custom-group-subtitle): Use new-style face specs.
3207 (custom-invalid-face, custom-rogue-face, custom-modified-face)
3208 (custom-set-face, custom-changed-face, custom-saved-face)
3209 (custom-button-face, custom-button-pressed-face)
3210 (custom-documentation-face, custom-state-face)
3211 (custom-comment-face, custom-comment-tag-face)
3212 (custom-variable-tag-face, custom-variable-button-face)
3213 (custom-face-tag-face, custom-group-tag-face-1)
3214 (custom-group-tag-face): Remove obsolete face alias.
3215
3216 * epa.el (epa-validity-high, epa-validity-medium)
3217 (epa-validity-low, epa-mark, epa-field-name, epa-string)
3218 (epa-field-name, epa-field-body):
3219 * font-lock.el (font-lock-comment-face, font-lock-string-face)
3220 (font-lock-keyword-face, font-lock-builtin-face)
3221 (font-lock-function-name-face, font-lock-variable-name-face)
3222 (font-lock-type-face, font-lock-constant-face):
3223 * ido.el (ido-first-match, ido-only-match, ido-subdir)
3224 (ido-virtual, ido-indicator, ido-incomplete-regexp):
3225 * speedbar.el (speedbar-button-face, speedbar-file-face)
3226 (speedbar-directory-face, speedbar-tag-face)
3227 (speedbar-selected-face, speedbar-highlight-face)
3228 (speedbar-separator-face):
3229 * whitespace.el (whitespace-newline, whitespace-space)
3230 (whitespace-hspace, whitespace-tab, whitespace-trailing)
3231 (whitespace-line, whitespace-space-before-tab)
3232 (whitespace-space-after-tab, whitespace-indentation)
3233 (whitespace-empty):
3234 * emulation/cua-base.el (cua-global-mark):
3235 * eshell/em-prompt.el (eshell-prompt):
3236 * net/newst-plainview.el (newsticker-new-item-face)
3237 (newsticker-old-item-face, newsticker-immortal-item-face)
3238 (newsticker-obsolete-item-face, newsticker-date-face)
3239 (newsticker-statistics-face, newsticker-default-face):
3240 * net/newst-reader.el (newsticker-feed-face)
3241 (newsticker-extra-face, newsticker-enclosure-face):
3242 * net/newst-treeview.el (newsticker-treeview-face)
3243 (newsticker-treeview-new-face, newsticker-treeview-old-face)
3244 (newsticker-treeview-immortal-face)
3245 (newsticker-treeview-obsolete-face)
3246 (newsticker-treeview-selection-face):
3247 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
3248 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
3249 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
3250 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
3251 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
3252 (nxml-outline-active-indicator, nxml-outline-ellipsis):
3253 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
3254 (mpuz-text):
3255 * progmodes/vera-mode.el (vera-font-lock-number)
3256 (vera-font-lock-function, vera-font-lock-interface):
3257 * textmodes/table.el (table-cell): Use new-style face specs, and
3258 don't use the old :bold and :italic attributes.
3259
3260 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
3261 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
3262 (ebrowse-member-class, ebrowse-progress): Likewise.
3263 (ebrowse-tree-mark-face, ebrowse-root-class-face)
3264 (ebrowse-file-name-face, ebrowse-default-face)
3265 (ebrowse-member-attribute-face, ebrowse-member-class-face)
3266 (ebrowse-progress-face): Remove obsolete faces.
3267
3268 * progmodes/flymake.el (flymake-errline, flymake-warnline):
3269 Inherit from error and warning faces respectively.
3270
3271 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
3272 Likewise.
3273 (flyspell-incorrect-face, flyspell-duplicate-face):
3274 Remove obsolete aliases.
3275
3276 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
3277
3278 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
3279 Avoid infloop.
3280
3281 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
3282
3283 * startup.el (argv, argi): Make lexically scoped.
3284 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
3285 * emacs-lisp/cl-macs.el: Use lexical-binding.
3286 Rename cl-bind-* to cl--bind-*.
3287 * files.el: Don't require `cl' since it doesn't use it.
3288 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
3289
3290 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
3291
3292 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
3293 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
3294 instead of calling external sort utility.
3295 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
3296
3297 2012-06-08 Eli Zaretskii <eliz@gnu.org>
3298
3299 * descr-text.el (describe-char): Mention how to insert the
3300 character, if the current input method doesn't support it.
3301 See the discussion in this thread for the details:
3302 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
3303
3304 2012-06-08 Sam Steingold <sds@gnu.org>
3305
3306 * bindings.el (global-map): Bind XF86Forward to next-buffer and
3307 XF86Back to previous-buffer.
3308 (minibuffer-local-map): Bind them to next-history-element and
3309 previous-history-element respectively.
3310 * help-mode.el (help-mode-map): Bind them to help-go-forward and
3311 help-go-back respectively.
3312 * info.el (Info-mode-map): Bind them to Info-history-forward and
3313 Info-history-back respectively.
3314 These are the keys next to Up on the ThinkPad keyboard.
3315
3316 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
3317
3318 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
3319 * emacs-lisp/cl-macs.el: Provide itself.
3320 (cl--labels-convert-cache): New var.
3321 (cl--labels-convert): New function.
3322 (cl-flet, cl-labels): New implementation with new semantics, relying on
3323 lexical-binding.
3324 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
3325 (cl-closure-vars, cl--function-convert-cache)
3326 (cl--function-convert): Move from cl-macs.el.
3327 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
3328 rename by removing the "cl-" prefix.
3329 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
3330
3331 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3332
3333 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
3334 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
3335 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
3336 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
3337 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
3338 (cl-hash-table-count): Add old compatibility aliases.
3339
3340 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
3341 Use macroexpand-all-environment instead.
3342 (cl--old-macroexpand): New var.
3343 (cl--sm-macroexpand): New function.
3344 (cl-symbol-macrolet): Use it during macro expansion.
3345 (cl--function-convert-cache): New var.
3346 (cl--function-convert): New function, extracted from
3347 cl-macroexpand-all.
3348 (cl-lexical-let): Use it.
3349
3350 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
3351 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
3352 (cl-member): Remove old alias.
3353
3354 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
3355 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
3356 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
3357 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
3358 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
3359 (cl-macroexpand-cmacs): Remove var.
3360 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
3361 Use macroexpand-all instead.
3362
3363 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3364
3365 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
3366 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
3367 (macroexp-copyable-p): New functions and macros.
3368 * emacs-lisp/edebug.el (edebug-unwrap):
3369 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
3370 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
3371 (pcase--let*): Remove.
3372 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
3373 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
3374 macroexp-const-p instead.
3375 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
3376
3377 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
3378 instead of "cl-" for internal definitions. Use macroexp-const-p.
3379 (cl-old-bc-file-form): Remove var.
3380 (cl-const-exprs-p): Remove fun.
3381 (cl-labels, cl-macrolet): Use backquote.
3382 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
3383 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
3384 (cl-define-setf-expander): Rename from cl-define-setf-method.
3385 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
3386
3387 * international/mule-cmds.el: Don't require CL.
3388 (view-hello-file): Don't use `letf'.
3389
3390 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3391
3392 * tmm.el (tmm-prompt): Use string-prefix-p.
3393 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
3394 (tmm-add-prompt): Use minibuffer-completion-help.
3395 (tmm-delete-map): Remove.
3396
3397 * subr.el (kbd): Make it its own function.
3398
3399 2012-06-07 Stefan Merten <smerten@oekonux.de>
3400
3401 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
3402 Silence compiler warnings. Fix versions.
3403 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
3404 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
3405 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
3406 (rst-package-emacs-version-alist): Correct Emacs version to
3407 represent major merge with upstream.
3408 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
3409
3410 2012-06-06 Glenn Morris <rgm@gnu.org>
3411
3412 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
3413 Only print environment variables if set.
3414
3415 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
3416
3417 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
3418 (macroexp--cons): Rename from maybe-cons.
3419 (macroexp--accumulate): Rename from macroexp-accumulate.
3420 (macroexp--all-forms): Rename from macroexpand-all-forms.
3421 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
3422 (macroexp--expand-all): Rename from macroexpand-all-1.
3423
3424 2012-06-06 Sam Steingold <sds@gnu.org>
3425
3426 * calendar/calendar.el (calendar-in-read-only-buffer):
3427 Call `special-mode' to enable the standard read-only keybindings.
3428
3429 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
3430
3431 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
3432 with "loading" messages (bug#11635).
3433
3434 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
3435
3436 * files.el (enable-remote-dir-locals): New option.
3437 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
3438
3439 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
3440 Ensure, that the temp directory is local.
3441
3442 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
3443 `temporary-file-directory'.
3444
3445 * progmodes/python.el (python-send-region): Ensure, that the
3446 temporary file is created also in the remote case.
3447
3448 2012-06-06 Glenn Morris <rgm@gnu.org>
3449
3450 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
3451 (vc-rcs-update-changelog): Use it.
3452
3453 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
3454
3455 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
3456 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
3457 (vc-sccs-diff): Replace use of the external vcdiff script.
3458
3459 2012-06-05 Glenn Morris <rgm@gnu.org>
3460
3461 * ledit.el: Move to obsolete/.
3462
3463 2012-06-05 Sam Steingold <sds@gnu.org>
3464
3465 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
3466 patch (Bug#11140).
3467
3468 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
3469
3470 * emacs-lisp/cust-print.el: Move to obsolete.
3471
3472 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
3473 compiler-macro expansion.
3474
3475 Add native compiler-macro support.
3476 * emacs-lisp/macroexp.el (macroexpand-all-1):
3477 Support compiler-macros directly. Properly follow aliases and apply
3478 the compiler macros more thoroughly.
3479 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
3480 macroexpand now properly follows aliases.
3481 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
3482 (cl-compiler-macroexpand): Use new prop.
3483 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
3484
3485 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
3486
3487 2012-06-05 Martin Rudalics <rudalics@gmx.at>
3488
3489 * window.el (get-lru-window, get-mru-window, get-largest-window):
3490 New argument NOT-SELECTED to avoid picking the selected window.
3491 (window--display-buffer-1, window--display-buffer-2): Replace by
3492 new function window--display-buffer
3493 (display-buffer-same-window, display-buffer-reuse-window)
3494 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
3495 Use window--display-buffer.
3496 (display-buffer-use-some-window): Remove temporary dedication
3497 hack by calling get-lru-window and get-largest-window with
3498 NOT-SELECTED argument non-nil. Call window--display-buffer.
3499
3500 2012-06-05 Glenn Morris <rgm@gnu.org>
3501
3502 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
3503 Replace external vcdiff script.
3504
3505 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
3506
3507 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
3508
3509 2012-06-04 Chong Yidong <cyd@gnu.org>
3510
3511 * image.el (imagemagick-types-inhibit): Revert last change.
3512 Add INFO and M.
3513 (imagemagick-enabled-types): Remove CIN and EPS*.
3514
3515 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
3516
3517 * emacs-lisp/cl-lib.el: Rename from cl.el.
3518 * emacs-lisp/cl.el: New compatibility file.
3519 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
3520 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
3521 to obey the "cl-" prefix.
3522 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
3523
3524 2012-06-03 Glenn Morris <rgm@gnu.org>
3525
3526 * emacs-lisp/authors.el (authors-aliases): Addition.
3527
3528 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
3529 Fix :version.
3530
3531 2012-06-03 Stefan Merten <smerten@oekonux.de>
3532
3533 * textmodes/rst.el: Add comments.
3534 (rst-transition, rst-adornment): New faces.
3535 (rst-adornment-faces-alist): Make default safe to reevaluate.
3536 Fixes
3537 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
3538 Improve customization tags.
3539 (rst-define-level-faces): Clarify meaning.
3540
3541 2012-06-03 Chong Yidong <cyd@gnu.org>
3542
3543 * progmodes/compile.el (compilation-mode-line-fail)
3544 (compilation-mode-line-run, compilation-mode-line-exit):
3545 New faces.
3546 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
3547
3548 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
3549
3550 * progmodes/which-func.el (which-func-update-ediff-windows):
3551 New function. Use it in ediff-select-hook (Bug#11478).
3552
3553 2012-06-03 Chong Yidong <cyd@gnu.org>
3554
3555 * bindings.el: Remove explicit help text from format-mode-line.
3556 It is now supplied by mode-line-default-help-echo.
3557 (mode-line-front-space, mode-line-end-spaces)
3558 (mode-line-misc-info): New variables.
3559 (mode-line-modes, mode-line-position): Move the default value to
3560 the variable definition.
3561 (mode-line-default-help-echo): New defcustom.
3562 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
3563 (mode-line-modified-help-echo): New functions.
3564 (mode-line-mule-info, mode-line-modified): Use them.
3565 (mode-line-eol-desc, propertized-buffer-identification):
3566 Consistency fixes for help text.
3567 (mode-line-coding-system-map): Allow using mouse-3 to invoke
3568 set-buffer-file-coding-system (Bug#289).
3569 (mode-line-mule-info-help-echo): Update help text.
3570
3571 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
3572
3573 * simple.el (execute-extended-command): Set real-this-command
3574 (bug#11506).
3575
3576 2012-06-02 Chong Yidong <cyd@gnu.org>
3577
3578 Remove incorrect uses of "modeline" in comments, docstrings, and
3579 function/variable names (Bug#10329).
3580
3581 * cus-edit.el (mode-line):
3582 * dframe.el (dframe-mouse-hscroll):
3583 * emacs-lisp/re-builder.el:
3584 * emacs-lisp/easy-mmode.el (define-minor-mode):
3585 * frame.el (set-frame-name):
3586 * help.el (lookup-minor-mode-from-indicator):
3587 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
3588 * progmodes/cc-cmds.el (c-toggle-auto-newline)
3589 (c-toggle-hungry-state):
3590 * progmodes/antlr-mode.el (antlr-language-alist):
3591 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
3592 * progmodes/vhdl-mode.el (vhdl-mode):
3593 * progmodes/which-func.el (which-func, which-func-cleanup-function):
3594 * term/ns-win.el (ns-face-at-pos):
3595 * term/sup-mouse.el (sup-mouse-report):
3596 * textmodes/flyspell.el (flyspell-mode-line-string):
3597 * textmodes/ispell.el (ispell-highlight-face):
3598 * textmodes/reftex-global.el:
3599 * vc/vc-arch.el (vc-arch-mode-line-string):
3600 * vc/vc-cvs.el (vc-cvs-mode-line-string):
3601 * vc/vc-git.el (vc-git-mode-line-string):
3602 * vc/vc-hooks.el (vc-display-status)
3603 (vc-default-mode-line-string):
3604 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
3605
3606 * ansi-color.el (ansi-color-faces-vector): Change default faces.
3607
3608 * dired.el (dired-sort-set-mode-line): Rename from
3609 dired-sort-set-modeline. All callers changed.
3610
3611 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
3612 eshell-status-in-modeline.
3613
3614 * foldout.el (foldout-mode-line-string): Rename from
3615 foldout-modeline-string. All callers changed.
3616 (foldout-update-mode-line): Rename from foldout-update-modeline.
3617
3618 * subr.el (redraw-modeline): Make into obsolete alias.
3619
3620 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
3621 timeclock-modeline-display. Make old name an alias.
3622 (timeclock-update-mode-line): Likewise. All callers changed.
3623 (timeclock-mode-line-display): No need to check before using
3624 add-hook.
3625 (timeclock-relative, timeclock-day-over-hook)
3626 (timeclock-use-elapsed, timeclock-mode-string)
3627 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
3628
3629 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
3630 crisp-mode-modeline-string.
3631
3632 * play/solitaire.el (solitaire-build-mode-line): Rename from
3633 solitaire-build-modeline. All callers changed.
3634
3635 * play/zone.el (zone-hiding-mode-line): Rename from
3636 zone-hiding-modeline. All callers changed.
3637 (zone): Remove unusued `modeline-hidden-level' property.
3638
3639 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
3640 xscheme-modeline-initialize. All callers changed.
3641
3642 * strokes.el (strokes-lighter): Rename from
3643 strokes-modeline-string.
3644
3645 * textmodes/sgml-mode.el (html-face-tag-alist)
3646 (html-tag-face-alist): Use mode-line face instead of obsolete
3647 alias modeline.
3648
3649 2012-06-02 Stefan Merten <smerten@oekonux.de>
3650
3651 * textmodes/rst.el: Always require `cl'.
3652 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
3653
3654 2012-06-02 Chong Yidong <cyd@gnu.org>
3655
3656 * image.el (imagemagick-enabled-types): Rename from
3657 imagemagick-types-enable. Add many more types.
3658 (imagemagick-types-inhibit): Change default to nil.
3659 (imagemagick-filter-types): Caller changed.
3660
3661 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3662
3663 * emacs-lisp/cl-macs.el: Use backquotes.
3664 (cl-transform-function-property): Use eval-and-compile rather than
3665 abusing `require'.
3666 (defstruct): Use declare-function instead of with-no-warnings.
3667
3668 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
3669 (byte-compile-output-docform): Re-add the print-circle bindings.
3670 (byte-compile-fix-header): Use #$ just because it's shorter.
3671 (byte-compile-output-file-form): Remove defun/defmacro.
3672
3673 2012-06-01 Martin Rudalics <rudalics@gmx.at>
3674
3675 * simple.el (choose-completion): Remove now obsolete binding for
3676 owindow.
3677
3678 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
3679
3680 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
3681 in order to avoid "Stack overflow in regexp matcher".
3682
3683 2012-05-31 Glenn Morris <rgm@gnu.org>
3684
3685 * image.el: For clarity, call imagemagick-register-types at
3686 top-level, rather than relying on a custom :initialize.
3687 (imagemagick-types-enable): New option. (Bug#11557)
3688 (imagemagick-filter-types): New function. (Bug#7406)
3689 (imagemagick-register-types): Use imagemagick-filter-types.
3690 If disabling support, remove elements altogether rather
3691 than using an impossible regexp.
3692 (imagemagick-types-inhibit): Give it the default init function.
3693
3694 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3695
3696 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
3697 Handle arbitrary file name lengths (Bug#11585).
3698
3699 2012-05-31 Martin Rudalics <rudalics@gmx.at>
3700
3701 * desktop.el (desktop-read): Clear previous and next buffers for
3702 all windows and bury *Messages* buffer (bug#11556).
3703
3704 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 Add `declare' for `defun'. Align `defmacro's with it.
3707 * emacs-lisp/easy-mmode.el (define-minor-mode)
3708 (define-globalized-minor-mode): Don't autoload the var definitions.
3709 * emacs-lisp/byte-run.el: Use lexical-binding.
3710 (defun-declarations-alist, macro-declarations-alist): New vars.
3711 (defmacro, defun): Use them.
3712 (make-obsolete, define-obsolete-function-alias)
3713 (make-obsolete-variable, define-obsolete-variable-alias):
3714 Use `declare'.
3715 (macro-declaration-function): Mark obsolete.
3716 * emacs-lisp/autoload.el: Use lexical-binding.
3717 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
3718
3719 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3720
3721 * textmodes/ispell.el (ispell-with-no-warnings):
3722 Define as a macro.
3723 (ispell-kill-ispell, ispell-change-dictionary):
3724 Use `called-interactively-p' for Emacs instead of obsolete
3725 `interactive-p'.
3726
3727 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3728
3729 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
3730 (macro-declaration-function): Move var from C code.
3731 (macro-declaration-function): Define function with defalias.
3732 * emacs-lisp/macroexp.el (macroexpand-all-1):
3733 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
3734 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
3735 defun/defmacro any more.
3736 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
3737 Provide fallback for unknown arglist.
3738 (byte-compile-arglist-warn): Change calling convention.
3739 (byte-compile-output-file-form): Move print-vars binding.
3740 (byte-compile-output-docform): Simplify accordingly.
3741 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
3742 (byte-compile-defmacro-declaration): Remove.
3743 (byte-compile-file-form-defmumble): Generalize to defalias.
3744 (byte-compile-output-as-comment): Return byte-positions.
3745 Simplify callers accordingly.
3746 (byte-compile-lambda): Use `assert'.
3747 (byte-compile-defun, byte-compile-defmacro): Remove.
3748 (byte-compile-file-form-defalias):
3749 Use byte-compile-file-form-defmumble.
3750 (byte-compile-defalias-warn): Remove.
3751
3752 2012-05-29 Stefan Merten <smerten@oekonux.de>
3753
3754 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
3755 possible. Fix authors. Improve comments. Improve loading of `cl'.
3756
3757 (rst-mode-abbrev-table): Merge definition.
3758 (rst-mode): Make sure `font-lock-defaults' is buffer local.
3759 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
3760
3761 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
3762
3763 * calendar/icalendar.el
3764 (icalendar-export-region): Export UID properly.
3765
3766 2012-05-29 Leo Liu <sdl.web@gmail.com>
3767 * calendar/icalendar.el (icalendar-import-format):
3768 Add `icalendar-import-format-uid' (Bug#11525).
3769 (icalendar-import-format-uid): New.
3770 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
3771 Export UID.
3772
3773 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
3774
3775 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
3776 different alternative patterns.
3777 (pcase-codegen): Be more careful to preserve identity.
3778 (pcase--u1): Don't forget to mark vars as used.
3779
3780 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
3781 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
3782 (byte-compile-from-buffer): ...rather than here.
3783
3784 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
3785 functions from byte-compile-function-environment.
3786
3787 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
3788
3789 * window.el (window-deletable-p): Avoid deleting the root window
3790 of a frame with an active minibuffer.
3791
3792 2012-05-29 Martin Rudalics <rudalics@gmx.at>
3793
3794 * simple.el (choose-completion): Use quit-window (Bug#11567).
3795
3796 2012-05-29 Chong Yidong <cyd@gnu.org>
3797
3798 * whitespace.el (whitespace-cleanup): Fix usage of
3799 whitespace-empty-at-bob-regexp (Bug#11492).
3800
3801 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3802
3803 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
3804 revert (Bug#11488).
3805
3806 2012-05-29 Juri Linkov <juri@jurta.org>
3807
3808 * isearch.el (isearch-mode-map): Bind `M-s _' to
3809 `isearch-toggle-symbol'. Bind `M-s c' to
3810 `isearch-toggle-case-fold'.
3811 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
3812 (isearch-forward): Add `M-s _' to the docstring.
3813 (isearch-forward-symbol, isearch-toggle-case-fold)
3814 (isearch-symbol-regexp): New functions. (Bug#11381)
3815
3816 2012-05-29 Juri Linkov <juri@jurta.org>
3817
3818 * isearch.el (isearch-word): Add docstring. (Bug#11381)
3819 (isearch-occur, isearch-search-and-update): If `isearch-word' is
3820 a function, call it to get the regexp.
3821 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
3822 property `isearch-message-prefix' instead of the string "word ".
3823 (isearch-search-fun-default): For the case of `isearch-word',
3824 return a lambda that calls re-search-forward/re-search-backward
3825 with a regexp returned by `word-search-regexp' or by the function
3826 in `isearch-word'.
3827
3828 2012-05-29 Juri Linkov <juri@jurta.org>
3829
3830 * isearch.el (isearch-search-fun-default): New function.
3831 (isearch-search-fun): Move default part to the new function
3832 `isearch-search-fun-default'.
3833 (isearch-search-fun-function): Set the default value to
3834 `isearch-search-fun-default'. (Bug#11381)
3835
3836 * comint.el (comint-history-isearch-end):
3837 Use `isearch-search-fun-default'.
3838 (comint-history-isearch-search): Use `isearch-search-fun-default'
3839 and remove spacial case for `isearch-word'.
3840 (comint-history-isearch-wrap): Remove spacial case for
3841 `isearch-word'.
3842
3843 * hexl.el (hexl-isearch-search-function):
3844 Use `isearch-search-fun-default'.
3845
3846 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
3847 Use `word-search-regexp' for `isearch-word'.
3848
3849 * misearch.el (multi-isearch-search-fun):
3850 Use `isearch-search-fun-default'.
3851
3852 * simple.el (minibuffer-history-isearch-search):
3853 Use `isearch-search-fun-default' and remove spacial case for
3854 `isearch-word'.
3855 (minibuffer-history-isearch-wrap): Remove spacial case for
3856 `isearch-word'.
3857
3858 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
3859 Remove spacial case for `isearch-word'.
3860 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
3861
3862 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3863
3864 Decrease XEmacs incompatibilities.
3865 * textmodes/flyspell.el (flyspell-check-pre-word-p):
3866 Use `string-match'.
3867 (flyspell-delete-region-overlays): Use alternative definition for
3868 XEmacs.
3869 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
3870 (flyspell-word): Use `process-kill-without-query' if XEmacs.
3871 (flyspell-mode-on): Use `interactive-p' if XEmacs.
3872 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
3873 `define-obsolete-face-alias' under XEmacs, but old method.
3874
3875 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
3876 `with-no-warnings' definition or Emacs alias.
3877 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
3878 (ispell-word): Do not use `region-p' if XEmacs.
3879
3880 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3881
3882 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
3883 Check for `ispell-dictionary-base-alist' instead of full
3884 `ispell-dictionary-alist'.
3885 (ispell-init-process): Show spellchecker when starting new Ispell
3886 process.
3887
3888 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3889
3890 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
3891 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
3892
3893 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
3894
3895 * version.el (motif-version-string, gtk-version-string)
3896 (ns-version-string): Declare.
3897
3898 2012-05-27 Juri Linkov <juri@jurta.org>
3899
3900 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
3901 after the `eval-defun-1' specialcaseing
3902 like in `edebug-eval-defun' (bug#10181).
3903
3904 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
3905 like in `eval-defun-1'.
3906
3907 2012-05-27 Eli Zaretskii <eliz@gnu.org>
3908
3909 * mail/sendmail.el (mail-yank-region):
3910 Recognize rmail-yank-current-message in addition to insert-buffer.
3911 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
3912 a *mail* buffer created through rmail-start-mail with sendmail as
3913 mail-user-agent.
3914
3915 2012-05-27 Chong Yidong <cyd@gnu.org>
3916
3917 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
3918 Default to 256 (Bug#11267).
3919
3920 * help.el (describe-mode): Doc fix.
3921
3922 2012-05-26 Glenn Morris <rgm@gnu.org>
3923
3924 * w32-fns.el (w32-init-info): Remove.
3925 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
3926
3927 * info.el (info-initialize): For self-contained NS builds, put the
3928 included info/ directory at the front. (Bug#2791)
3929
3930 * paths.el (Info-default-directory-list): Make it a defcustom,
3931 mainly so that we can use custom-initialize-delay.
3932
3933 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
3934
3935 * subr.el (buffer-has-markers-at): Mark obsolete.
3936
3937 * subr.el (lambda): Use declare.
3938
3939 * emacs-lisp/lisp-mode.el (lambda):
3940 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
3941
3942 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3943
3944 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
3945
3946 2012-05-26 Glenn Morris <rgm@gnu.org>
3947
3948 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
3949
3950 2012-05-25 Glenn Morris <rgm@gnu.org>
3951
3952 * paths.el: Remove no-byte-compile.
3953 * loadup.el: No need to load paths.el uncompiled.
3954
3955 * image.el (imagemagick-types-inhibit): Doc fix.
3956
3957 * version.el: Remove no-byte-compile and associated formatting.
3958 * loadup.el: No need to load version.el uncompiled. AFAICS, this
3959 is ancient code from when there was an "inc-vers.el".
3960
3961 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
3962
3963 * progmodes/gdb-mi.el: Minor style changes.
3964 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
3965 Turn into minor modes.
3966 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
3967 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
3968 (gdb-shell): Remove unneeded let-binding.
3969 (gdb-get-many-fields): Eliminate O(n²) behavior.
3970
3971 2012-05-25 Eli Zaretskii <eliz@gnu.org>
3972
3973 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
3974 platforms that don't link in fontset.c.
3975
3976 2012-05-25 Juri Linkov <juri@jurta.org>
3977
3978 Use the same diff color scheme as in modern VCSes (bug#10181).
3979
3980 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
3981 to avoid confusion with `diff-added' that now uses green colors.
3982 (diff-removed): Use shades of red.
3983 (diff-added): Use shades of green.
3984 (diff-changed): Leave just the yellow color.
3985 (diff-use-changed-face): New variable.
3986 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
3987 how to highlight context diff changes.
3988 (diff-refine-change): Use shades of yellow.
3989 (diff-refine-removed): New face that uses shades of red.
3990 (diff-refine-added): New face that uses shades of green.
3991 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
3992 `diff-refine-removed' in the call to `smerge-refine-subst'
3993 depending on the value of `diff-use-changed-face'.
3994
3995 * vc/smerge-mode.el (smerge-mine): Use shades of red.
3996 (smerge-other): Use shades of green.
3997 (smerge-base): Use shades of yellow.
3998 (smerge-refined-change): Empty face.
3999 (smerge-refined-removed): New face that uses shades of red.
4000 (smerge-refined-added): New face that uses shades of green.
4001 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
4002 args `props-r' and `props-a', and use them. Doc fix.
4003 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
4004 on its value use different faces `smerge-refined-change',
4005 `smerge-refined-removed', `smerge-refined-added' in the call to
4006 `smerge-refine-subst'.
4007
4008 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
4009 Add face condition `min-colors 88' with shades of red.
4010 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
4011 `min-colors 88' with shades of green.
4012 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
4013 `min-colors 88' with shades of yellow.
4014
4015 2012-05-24 Glenn Morris <rgm@gnu.org>
4016
4017 * paths.el (prune-directory-list, remote-shell-program): Move to...
4018 * files.el (prune-directory-list, remote-shell-program): ...here.
4019 For the latter, delay initialization, prefer ssh, just search PATH.
4020
4021 * paths.el (term-file-prefix): Move to faces.el (the only user).
4022 * faces.el (term-file-prefix): Move here, make it a defcustom.
4023
4024 * paths.el (news-directory, news-path, news-inews-program):
4025 Move to gnus/nnspool.el.
4026
4027 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
4028
4029 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
4030 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
4031 Make the latter a defcustom, with a delayed initialization.
4032
4033 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
4034 These were deleted from Gnus itself late 2010.
4035
4036 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
4037
4038 * progmodes/which-func.el (which-func-ff-hook):
4039 Check against user-error, not error.
4040
4041 * emacs-lisp/edebug.el (top): Do not load or set up loading of
4042 cl-specs.el, which no longer exists.
4043
4044 2012-05-22 Glenn Morris <rgm@gnu.org>
4045
4046 * info.el (info-emacs-bug): New command.
4047 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
4048 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
4049
4050 2012-05-21 Glenn Morris <rgm@gnu.org>
4051
4052 * makefile.w32-in (update-subdirs-SH):
4053 * Makefile.in (update-subdirs): Update for moved update-subdirs.
4054
4055 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
4056
4057 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
4058
4059 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4060 Simplify Maven regexp, and make sure the file can't start with a space
4061 (bug#11517).
4062
4063 2012-05-21 Glenn Morris <rgm@gnu.org>
4064
4065 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4066 Scrap superfluous subshells.
4067
4068 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4069
4070 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
4071 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
4072
4073 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
4074
4075 * calc/calc.el (calc-ensure-consistent-units): New variable.
4076
4077 * calc/calc-units.el (math-consistent-units-p)
4078 (math-check-unit-consistency): New functions.
4079 (calc-quick-units, calc-convert-units):
4080 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
4081 is non-nil.
4082 (calc-extract-units): Fix typo.
4083
4084 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4085
4086 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
4087
4088 * textmodes/flyspell.el: Commenting style, plus code simplifications.
4089 (flyspell-default-deplacement-commands): Don't spell check after
4090 repeated window/frame switches (e.g. triggered by mouse-movement).
4091 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
4092 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
4093 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
4094 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
4095 Remove unused vars.
4096 (flyspell-get-casechars, flyspell-get-not-casechars):
4097 Simplify; Don't bother removing a ] just to add it back.
4098 * textmodes/ispell.el (ispell-program-name): Use executable-find.
4099
4100 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4101
4102 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
4103 New functions.
4104 (math-function-table): Add support for more C functions.
4105
4106 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4107
4108 * textmodes/flyspell.el (flyspell-check-pre-word-p)
4109 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
4110 Protect delay handling for otherchars against empty otherchars.
4111
4112 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4113
4114 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
4115 their respective macro declarations.
4116 * skeleton.el (define-skeleton):
4117 * progmodes/compile.el (define-compilation-mode):
4118 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
4119 (define-ibuffer-filter):
4120 * emacs-lisp/generic.el (define-generic-mode):
4121 * emacs-lisp/easy-mmode.el (define-minor-mode)
4122 (define-globalized-minor-mode):
4123 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
4124 * emacs-lisp/byte-run.el (defsubst):
4125 * custom.el (deftheme): Add doc-string metadata.
4126
4127 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4128
4129 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
4130
4131 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4132
4133 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
4134
4135 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
4136 * emacs-lisp/cl-macs.el: Idem.
4137 * emacs-lisp/cl-specs.el: Remove.
4138
4139 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4140
4141 Minor renaming of internal CL functions and variables.
4142 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
4143 (cl--position): Rename from cl-position.
4144 (cl--delete-duplicates): Rename from cl-delete-duplicates.
4145 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
4146 (cl--random-state): Rename from *random-state*.
4147
4148 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4149
4150 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
4151 parens around the arg list (bug#11499).
4152
4153 2012-05-17 Juri Linkov <juri@jurta.org>
4154
4155 * isearch.el (word-search-regexp, word-search-backward)
4156 (word-search-forward, word-search-backward-lax)
4157 (word-search-forward-lax): Move functions from search.c
4158 (bug#10145, bug#11381).
4159
4160 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4161
4162 * textmodes/flyspell.el (flyspell-check-pre-word-p)
4163 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
4164 Delay for otherchars as for normal word components.
4165
4166 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
4167
4168 * minibuffer.el (completion--sifn-requote): Fix last change.
4169 (minibuffer-local-must-match-filename-map):
4170 Move define-obsolete-variable-alias before its var.
4171
4172 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
4173
4174 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
4175
4176 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
4177 behavior.
4178 (completion--string-equal-p): New function.
4179 (completion--twq-all): Use it to get better assertion failure data.
4180
4181 Only handle ".." and '..' quoting in shell-mode (bug#11466).
4182 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
4183 (shell--requote-argument): New functions.
4184 (shell-completion-vars): Use them.
4185 (shell--parse-pcomplete-arguments): Rename from
4186 shell-parse-pcomplete-arguments.
4187 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
4188 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
4189 Obey comint-file-name-quote-list.
4190
4191 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
4192 (smie-indent-keyword): Use it.
4193
4194 2012-05-14 Stefan Merten <smerten@oekonux.de>
4195
4196 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
4197
4198 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4199
4200 * net/rlogin.el (rlogin-mode-map): Fix last change.
4201
4202 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
4203
4204 * mail/smtpmail.el (smtpmail-send-command): Send the command and
4205 the following \r\n using a single `process-send-string', since the
4206 Lotus SMTP server refuses to accept any commands if they are sent
4207 with two `process-send-string's (Bug#11444).
4208
4209 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4210
4211 * shell.el (shell-parse-pcomplete-arguments):
4212 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
4213
4214 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
4215
4216 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
4217 (image-transform-scale, image-transform-right-angle-fudge): New vars.
4218 (image-transform-width, image-transform-fit-width): New functions.
4219 (image-transform-properties): Use them.
4220 (image-transform-check-size): New function.
4221 (image-toggle-display-image): Use it (for testing).
4222 (image-transform-set-rotation): Reduce angle mod 360.
4223 Delete obsolete comment.
4224
4225 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
4226
4227 * image-mode.el: Fix scaling (bug#11399).
4228 (image-transform-resize): Doc fix.
4229 (image-transform-properties): Default scale is 1 and height should
4230 be an integer.
4231
4232 2012-05-13 Johan Bockgård <bojohan@gnu.org>
4233
4234 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
4235 than hard-coding `car', to fix misbehavior when moving forward.
4236
4237 2012-05-13 Chong Yidong <cyd@gnu.org>
4238
4239 * emacs-lisp/tabulated-list.el (tabulated-list-format)
4240 (tabulated-list-entries, tabulated-list-padding)
4241 (tabulated-list-sort-key): Make permanent-local.
4242
4243 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
4244 (electric-buffer-list): Put electric buffer menu
4245 command descriptions in this docstring, instead of the docstring
4246 of electric-buffer-menu-mode. Code cleanups.
4247 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
4248 Electric-buffer-menu-mode.
4249 (electric-buffer-update-highlight): Minor code cleanup.
4250
4251 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
4252
4253 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
4254 (Bug#11447)
4255
4256 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4257
4258 Move define-obsolete-variable-alias before the var's definition.
4259 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
4260 * tooltip.el (tooltip-hook):
4261 * textmodes/reftex-toc.el (reftex-toc-map):
4262 * textmodes/reftex-sel.el (reftex-select-label-map)
4263 (reftex-select-bib-map):
4264 * textmodes/reftex-index.el (reftex-index-map)
4265 (reftex-index-phrases-map):
4266 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
4267 * progmodes/meta-mode.el (meta-mode-map):
4268 * novice.el (disabled-command-hook):
4269 * loadhist.el (unload-hook-features-list):
4270 * frame.el (blink-cursor):
4271 * files.el (find-file-not-found-hooks, write-file-hooks)
4272 (write-contents-hooks):
4273 * emulation/tpu-edt.el (GOLD-map):
4274 * emacs-lock.el (emacs-lock-from-exiting):
4275 * emacs-lisp/generic.el (generic-font-lock-defaults):
4276 * emacs-lisp/chart.el (chart-map):
4277 * dos-fns.el (register-name-alist):
4278 * dired-x.el (dired-omit-files-p):
4279 * desktop.el (desktop-enable):
4280 * cus-edit.el (custom-mode-hook):
4281 * buff-menu.el (buffer-menu-mode-hook):
4282 * bookmark.el (bookmark-read-annotation-text-func)
4283 (bookmark-exit-hooks):
4284 * allout.el (allout-mode-deactivate-hook)
4285 (allout-exposure-change-hook, allout-structure-added-hook)
4286 (allout-structure-deleted-hook, allout-structure-shifted-hook):
4287 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
4288 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
4289 comes before the corresponding variable's definition.
4290
4291 2012-05-12 Chong Yidong <cyd@gnu.org>
4292
4293 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
4294 (Buffer-menu-mouse-select): Restore function (Bug#11459).
4295 (Buffer-menu-mode-map): Bind it.
4296 (Buffer-menu--pretty-name): Add a mouse-face property.
4297
4298 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
4299
4300 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
4301 (prolog-upper-case-string, prolog-lower-case-string)
4302 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
4303 (prolog-use-smie, prolog-smie-grammar): New vars.
4304 (prolog-smie-forward-token, prolog-smie-backward-token)
4305 (prolog-smie-rules): New funs.
4306 (prolog-comment-indent): Remove.
4307 (prolog-mode-variables): Use default comment indentation instead.
4308 Setup SMIE.
4309 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
4310 (prolog-mode): Don't call them any more.
4311 (prolog-electric-colon, prolog-electric-dash)
4312 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
4313
4314 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
4315
4316 * minibuffer.el (completion--twq-all): Again, allow case differences.
4317
4318 * term.el: Move keymap initialization code to be more idiomatic.
4319 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
4320 (term-terminal-menu): Move initialization into declaration.
4321 (term-escape-char): Let the user set it in her .emacs.
4322
4323 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
4324 Provide SMIE-based indentation (not enabled by default yet).
4325 (sh-mode-map): Don't bind electric keys.
4326 Use electric-pair-mode instead of skeleton-pair.
4327 (sh-assignment-regexp): Fit within 80 columns.
4328 (sh-indent-supported): Specify actual shell name instead of boolean.
4329 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
4330 (sh-maybe-here-document): Use it. Make obsolete.
4331 (sh-electric-here-document-mode) New minor mode.
4332 (sh-mode): Use it. Don't set sh-indent-supported-here here.
4333 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
4334 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
4335 (sh-smie-rc-grammar, sh-use-smie): New vars.
4336 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
4337 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
4338 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
4339 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
4340 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
4341 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
4342 (sh-set-shell): Use smie-setup if requested.
4343
4344 * term.el (term-set-escape-char): Properly set term-escape-char.
4345 See http://stackoverflow.com/questions/10524656.
4346
4347 2012-05-10 Chong Yidong <cyd@gnu.org>
4348
4349 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
4350 Use url-generic-parse-url, and handle host names and Windows
4351 filenames properly.
4352 (ffap-url-unwrap-remote): Use url-generic-parse-url.
4353 (ffap-url-unwrap-remote): Accept list values, specifying a list of
4354 URL schemes to work on.
4355 (ffap--toggle-read-only): New function.
4356 (ffap-read-only, ffap-read-only-other-window)
4357 (ffap-read-only-other-frame): Use it.
4358 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
4359 necessary for ffap-url-unwrap-remote.
4360
4361 2012-05-10 Dave Abrahams <dave@boostpro.com>
4362
4363 * cus-start.el (create-lockfiles): Add it.
4364
4365 2012-05-09 Chong Yidong <cyd@gnu.org>
4366
4367 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
4368 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
4369
4370 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
4371
4372 * shell.el (shell-completion-vars): Fix last change (bug#11348).
4373
4374 2012-05-09 Chong Yidong <cyd@gnu.org>
4375
4376 * ansi-color.el (ansi-color-process-output): Check for validity of
4377 comint-last-output-start before using it. This avoids a bad
4378 interaction with gdb-mi's input/output buffer.
4379
4380 2012-05-09 Glenn Morris <rgm@gnu.org>
4381
4382 * files.el (dir-locals-read-from-file):
4383 Mention dir-locals in any error message.
4384
4385 2012-05-09 Chong Yidong <cyd@gnu.org>
4386
4387 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
4388 package (Bug#11410).
4389
4390 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
4391 variables into description.
4392
4393 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
4394
4395 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
4396 shell-delimiter-argument-list (bug#11348).
4397 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
4398
4399 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
4400
4401 * textmodes/rst.el: Silence byte-compiler warnings.
4402 (rst-re-alist, rst-reset-section-caches): Move around.
4403 (rst-re): Use `characterp', not `char-valid-p'.
4404 (font-lock-beg, font-lock-end): Declare.
4405
4406 * progmodes/idlw-shell.el (specs): Remove reference to deleted
4407 variable `idlwave-shell-activate-alt-keybindings' and simplify.
4408
4409 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
4410
4411 2012-05-08 Glenn Morris <rgm@gnu.org>
4412
4413 * files.el (auto-mode-alist): Treat ".make" like ".mk".
4414
4415 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4416
4417 * vc/log-edit.el: Add GNU coding standards highlighting.
4418 (log-edit-font-lock-gnu-style)
4419 (log-edit-font-lock-gnu-keywords): New vars.
4420 (log-edit-font-lock-keywords): New fun.
4421 (log-edit-mode): Don't fold case in font-lock.
4422 (log-edit-font-lock-keywords): Do not assume case-folding.
4423
4424 * imenu.el: Misc cleanup. Make docstrings out of comments.
4425 Use lexical-binding.
4426 (imenu--index-alist, imenu--last-menubar-index-alist)
4427 (imenu-menubar-modified-tick): Use defvar-local.
4428 (imenu--split-menu): Remove unused var.
4429 (imenu--cleanup-seen): Declare as global.
4430 (imenu--cleanup): Use dolist.
4431
4432 * subr.el (defvar-local): Add debug spec and doc-string position.
4433
4434 2012-05-08 Glenn Morris <rgm@gnu.org>
4435
4436 * language/burmese.el, language/cham.el, language/czech.el:
4437 * language/english.el, language/georgian.el, language/greek.el:
4438 * language/japanese.el, language/khmer.el, language/korean.el:
4439 * language/lao.el, language/misc-lang.el, language/romanian.el:
4440 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
4441 * language/thai.el, language/utf-8-lang.el:
4442 Remove no-byte-compile setting.
4443
4444 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
4445
4446 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
4447
4448 * progmodes/make-mode.el (makefile-browse):
4449 Remove unnecessary interactive. (Bug#11324)
4450
4451 2012-05-07 Glenn Morris <rgm@gnu.org>
4452
4453 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
4454
4455 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
4456
4457 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4458
4459 * loadup.el: Preload newcomment.el.
4460 * newcomment.el: Move autoload-only code to toplevel.
4461
4462 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
4463 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
4464 Handle new :right-align column property.
4465 (tabulated-list-print-col): Idem, plus use `display' text-property to
4466 try and preserve alignment for variable pitch fonts.
4467
4468 2012-05-07 Chong Yidong <cyd@gnu.org>
4469
4470 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
4471 (tabulated-list-use-header-line): New var.
4472 (tabulated-list-init-header): Use it.
4473 (tabulated-list-print-fake-header): New function.
4474 (tabulated-list-print): Use it.
4475 (tabulated-list-sort-button-map): Add non-header-line commands.
4476 (tabulated-list-init-header): Add column name property to basic
4477 labels as well.
4478 (tabulated-list-col-sort): Handle non-header-line button case.
4479 (tabulated-list--sort-by-column-name): Fix a corner case.
4480
4481 * buff-menu.el (list-buffers--refresh):
4482 Handle Buffer-menu-use-header-line.
4483
4484 2012-05-06 Chong Yidong <cyd@gnu.org>
4485
4486 * buff-menu.el: Convert to Tabulated List mode.
4487 (Buffer-menu-buffer+size-width): Make obsolete.
4488 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
4489 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
4490 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
4491 documentation into docstring of buffer-menu.
4492 (Buffer-menu-toggle-files-only): Add an informative message.
4493 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
4494 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
4495 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
4496 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
4497 (Buffer-menu-execute, Buffer-menu-select)
4498 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
4499 (Buffer-menu-bury): Use Tabulated List machinery.
4500 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
4501 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
4502 Delete.
4503 (list-buffers--refresh): New function.
4504 (list-buffers-noselect): Use it.
4505 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
4506 (Buffer-menu--pretty-file-name): New helper functions.
4507
4508 * loadup.el: Preload tabulated-list.
4509
4510 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
4511 tabulated-list-sort-column.
4512 (tabulated-list-init-header): Add the initial aligning space even
4513 if tabulated-list-padding is zero.
4514
4515 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
4516
4517 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
4518 whose cdr is not a cons cell correctly (bug#11038).
4519
4520 2012-05-06 Chong Yidong <cyd@gnu.org>
4521
4522 * emacs-lisp/tabulated-list.el (tabulated-list-format):
4523 Accept additional plist in column descriptors.
4524 (tabulated-list-init-header): Obey it.
4525 (tabulated-list-get-entry): New function.
4526 (tabulated-list-put-tag): Use it. Use string-width instead of
4527 length.
4528 (tabulated-list--column-number): New function.
4529 (tabulated-list-print): Use it.
4530 (tabulated-list-print-col): New function.
4531 Set `tabulated-list-column-name' property on each column's text.
4532 (tabulated-list-print-entry): Use it.
4533 (tabulated-list-delete-entry, tabulated-list-set-col):
4534 New functions.
4535 (tabulated-list-sort-column): New command (Bug#11337).
4536
4537 * buff-menu.el (list-buffers): Move C-x C-b binding from
4538 buff-menu.el to bindings.el.
4539
4540 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
4541 :advertised-binding feature.
4542
4543 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
4544
4545 * progmodes/compile.el (compilation-internal-error-properties):
4546 Calculate start position correctly when end-col is set but
4547 end-line is not (Bug#11382).
4548
4549 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
4550
4551 * man.el (Man-unindent): Use text-property-default-nonsticky to
4552 prevent untabify from inheriting face properties (Bug#11408).
4553
4554 2012-05-05 Stefan Merten <smerten@oekonux.de>
4555
4556 * textmodes/rst.el: Major merge with upstream development up to
4557 Docutils SVN r7399 / rst.el V1.2.1.
4558
4559 Clarify maintainership and authors.
4560
4561 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
4562 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
4563 (rst-official-version, rst-official-cvs-rev, rst-version)
4564 (rst-package-emacs-version-alist): New functions and variables
4565 for version information.
4566
4567 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
4568 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
4569 (rst-mode-syntax-table, rst-mode): New and corrected functions
4570 and variables representing reStructuredText features.
4571
4572 (rst-re): New function for reStructuredText regexes. Use in
4573 many places.
4574
4575 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
4576 (rst-mode-map): Rebind keys.
4577
4578 (rst-mode-lazy, rst-font-lock-keywords)
4579 (rst-font-lock-extend-region)
4580 (rst-font-lock-extend-region-internal)
4581 (rst-font-lock-extend-region-extend)
4582 (rst-font-lock-find-unindented-line-limit)
4583 (rst-font-lock-find-unindented-line-match)
4584 (rst-adornment-level, rst-font-lock-adornment-level)
4585 (rst-font-lock-adornment-match)
4586 (rst-font-lock-handle-adornment-pre-match-form)
4587 (rst-font-lock-handle-adornment-matcher): Major revision of
4588 font-locking. Integrate with other code. Use `jit-lock-mode'.
4589
4590 (rst-preferred-adornments, rst-adjust-hook)
4591 (rst-new-adornment-down, rst-preferred-bullets)
4592 (rst-preferred-bullets, rst-indent, rst-indent-width)
4593 (rst-indent-field, rst-indent-literal-normal)
4594 (rst-indent-literal-minimized, rst-indent-comment): Change,
4595 extend and improve customization.
4596
4597 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
4598 (rst-normalize-cursor-position, rst-get-decoration)
4599 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
4600 (rst-rstrip, rst-toc-insert-find-delete-contents)
4601 (rst-shift-fill-region, rst-compute-bullet-tabs)
4602 (rst-debug-print-tabs, rst-debug-mark-found)
4603 (rst-shift-region-guts, rst-shift-region-right)
4604 (rst-shift-region-left, rst-use-char-classes)
4605 (rst-font-lock-keywords-function)
4606 (rst-font-lock-indentation-point)
4607 (rst-font-lock-find-unindented-line-begin)
4608 (rst-font-lock-find-unindented-line-end)
4609 (rst-font-lock-find-unindented-line)
4610 (rst-font-lock-adornment-point, rst-font-lock-level)
4611 (rst-adornment-level-alist): Remove functions and variables.
4612
4613 (rst-compare-adornments, rst-get-adornment-match)
4614 (rst-suggest-new-adornment, rst-get-adornments-around)
4615 (rst-adornment-complete-p, rst-get-next-adornment)
4616 (rst-adjust-adornment, rst-display-adornments-hierarchy)
4617 (rst-straighten-adornments): Standardize function names to
4618 use "adornment" instead of "decoration". Correct callers.
4619 Similar standardizing in many places.
4620
4621 (rst-update-section, rst-adjust, rst-promote-region)
4622 (rst-enumerate-region, rst-bullet-list-region)
4623 (rst-repeat-last-character): Correct use of `interactive'.
4624
4625 (rst-classify-adornment, rst-find-all-adornments)
4626 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
4627 (rst-find-leftmost-column, rst-repeat-last-character):
4628 Refactor functions.
4629
4630 (rst-find-title-line, rst-reset-section-caches)
4631 (rst-get-adornments-around, rst-adjust-adornment-work)
4632 (rst-arabic-to-roman, rst-roman-to-arabic)
4633 (rst-insert-list-pos, rst-insert-list-new-item)
4634 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
4635 New functions.
4636
4637 (rst-all-sections, rst-section-hierarchy)
4638 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
4639 New variables.
4640
4641 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
4642 configuration instead of only buffer. Change where necessary.
4643
4644 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
4645 (rst-shift-region, rst-adaptive-fill): New functions for
4646 indentation and filling.
4647
4648 (rst-comment-line-break, rst-comment-indent)
4649 (rst-comment-insert-comment, rst-comment-region)
4650 (rst-uncomment-region): New functions for handling comments.
4651
4652 (rst-compile): Quote shell arguments.
4653
4654 (rst-compile-pdf-preview, rst-compile-slides-preview):
4655 Delete temporary files after use.
4656
4657 2012-05-05 Glenn Morris <rgm@gnu.org>
4658
4659 * calendar/cal-html.el: Optionally include holidays in the output.
4660 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
4661 (cal-html-holidays): New option.
4662 (cal-html-css-default): Add holiday entry.
4663 (holiday-in-range): Autoload it.
4664 (cal-html-htmlify-entry): Add optional class argument.
4665 (cal-html-htmlify-list): Add optional holidays argument.
4666 (cal-html-insert-agenda-days): Include holidays in the output.
4667 (cal-html-one-month): Maybe include holidays.
4668
4669 * calendar/holidays.el (holiday-in-range):
4670 Move here from cal-tex-list-holidays.
4671 * calendar/cal-tex.el (cal-tex-list-holidays):
4672 Make it an obsolete alias for holiday-in-range. Update all callers.
4673
4674 2012-05-05 Chong Yidong <cyd@gnu.org>
4675
4676 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
4677 Nextstep.
4678
4679 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
4680
4681 * files.el (file-auto-mode-skip): New var.
4682 (set-auto-mode-1): Use it.
4683
4684 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4685
4686 * repeat.el: Use lexical-binding.
4687 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
4688 (repeat-undo-count): Remove.
4689 (repeat):
4690 * progmodes/octave-mod.el (octave-abbrev-start):
4691 * progmodes/f90.el (f90-abbrev-start):
4692 * face-remap.el (text-scale-adjust):
4693 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
4694
4695 * emacs-lisp/pcase.el (pcase--let*): New function.
4696 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
4697 a bit more.
4698 (pcase--split-pred): Be more clever about ruling out overlap between
4699 a predicate and some constant pattern.
4700 (pcase--q1): Use `null' instead of (eq foo nil).
4701
4702 * subr.el (setq-local, defvar-local): New macros.
4703 (kbd): Redefine as an alias.
4704 (with-selected-window): Leave unrelated frames alone.
4705 (set-temporary-overlay-map): New function.
4706
4707 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4708
4709 * subr.el (user-error): New function.
4710 * window.el (switch-to-buffer):
4711 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
4712 (smerge-match-conflict):
4713 * simple.el (previous-matching-history-element)
4714 (next-matching-history-element, goto-history-element, undo-more)
4715 (undo-start):
4716 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
4717 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
4718 (next-file, tags-loop-scan, list-tags, complete-tag):
4719 * progmodes/compile.el (compilation-loop):
4720 * mouse.el (mouse-minibuffer-check):
4721 * man.el (Man-bgproc-sentinel, Man-goto-page):
4722 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
4723 (Info-history-forward, Info-follow-reference, Info-menu)
4724 (Info-extract-menu-item, Info-extract-menu-counting)
4725 (Info-forward-node, Info-backward-node, Info-next-menu-item)
4726 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
4727 (Info-next-reference, Info-prev-reference, Info-index)
4728 (Info-index-next, Info-follow-nearest-node)
4729 (Info-copy-current-node-name):
4730 * imenu.el (imenu--make-index-alist)
4731 (imenu-default-create-index-function, imenu-add-to-menubar):
4732 * files.el (basic-save-buffer, recover-file):
4733 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
4734 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
4735 (checkdoc-message-text, checkdoc-defun):
4736 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
4737 * cus-edit.el (customize-changed-options, customize-rogue)
4738 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
4739 (custom-variable-mark-to-reset-standard)
4740 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
4741 (custom-file):
4742 * completion.el (check-completion-length):
4743 * comint.el (comint-search-arg)
4744 (comint-previous-matching-input-string-position)
4745 (comint-previous-matching-input)
4746 (comint-replace-by-expanded-history-before-point, comint-send-input)
4747 (comint-copy-old-input, comint-backward-matching-input)
4748 (comint-goto-process-mark, comint-set-process-mark):
4749 * calendar/calendar.el (calendar-cursor-to-date): Use it.
4750 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
4751
4752 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4753
4754 * dabbrev.el (dabbrev--ignore-case-p): New function.
4755 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
4756 Use it.
4757
4758 * files.el (automount-dir-prefix): Mark as obsolete.
4759
4760 2012-05-04 Glenn Morris <rgm@gnu.org>
4761
4762 * patcomp.el, play/bruce.el: Move to obsolete/.
4763
4764 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
4765
4766 Fix minor Y10k bugs.
4767 * arc-mode.el (archive-unixdate):
4768 * autoinsert.el (auto-insert-alist):
4769 * calc/calc-forms.el (math-this-year):
4770 * emacs-lisp/copyright.el (copyright-current-year)
4771 (copyright-update-year, copyright):
4772 * tar-mode.el (tar-clip-time-string):
4773 * time.el (display-time-update):
4774 Don't assume years have 4 digits.
4775
4776 2012-05-04 Chong Yidong <cyd@gnu.org>
4777
4778 * dos-w32.el (file-name-buffer-file-type-alist)
4779 (direct-print-region-use-command-dot-com):
4780 * ffap.el (ffap-menu-regexp):
4781 * find-file.el (ff-special-constructs):
4782 * follow.el (follow-debug):
4783 * forms.el (forms--debug):
4784 * iswitchb.el (iswitchb-all-frames):
4785 * ido.el (ido-all-frames):
4786 * emacs-lisp/timer.el (timer-max-repeats):
4787 * mail/feedmail.el (feedmail-mail-send-hook)
4788 (feedmail-mail-send-hook-queued):
4789 * mail/footnote.el (footnote-signature-separator):
4790 * mail/mailabbrev.el (mail-alias-separator-string)
4791 (mail-abbrev-mode-regexp):
4792 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
4793 * progmodes/idlwave.el (idlwave-libinfo-file)
4794 (idlwave-default-completion-case-is-down)
4795 (idlwave-library-routines): Convert defvars to defcustoms.
4796
4797 * mail/rmail.el (rmail-decode-mime-charset):
4798 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
4799 (idlwave-shell-fix-inserted-breaks)
4800 (idlwave-shell-activate-alt-keybindings)
4801 (idlwave-shell-use-breakpoint-glyph):
4802 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
4803
4804 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4805
4806 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
4807
4808 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
4809
4810 * progmodes/verilog-mode.el (font-lock-keywords):
4811 Fix mis-highligting auto. Reported by Craig Barner.
4812 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
4813 defines from global name space. Reported by Dan Dever.
4814 (verilog-auto-reset, verilog-auto-reset-widths)
4815 (verilog-auto-tieoff): Support using unbased numbers for
4816 AUTORESET and AUTOTIEOFF.
4817 (verilog-submit-bug-report): Update variable list.
4818 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
4819 parenthesis from not matching. Reported by Michael Rytting.
4820 (verilog-auto-template-lint): Fix hash error when linting modules
4821 with no used templates.
4822 (verilog-warn, verilog-warn-error)
4823 (verilog-warn-fatal): When non-interactive report multiple
4824 warnings before exiting. Suggested by Brad Dobbie.
4825 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
4826 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
4827 to report unused template errors. Reported by Brad Dobbie.
4828 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
4829 nets, bug438. Reported by Vns Blore.
4830 (verilog-auto-inout-module, verilog-auto-reg)
4831 (verilog-read-decls, verilog-read-sub-decls-sig)
4832 (verilog-signals-edit-wire-reg, verilog-signals-with):
4833 Fix passing of Verilog data types in ANSI input/output ports
4834 such as "output logic" into the AUTOs. Special case "wire" and
4835 "reg" for backwards compatibility presuming Verilog 2001.
4836 (verilog-auto-ascii-enum): Add "auto enum" as alias.
4837 (verilog-preprocess): Fix replication of preprocess output.
4838 Reported by Brad Dobbie.
4839 (verilog-auto-inst-interfaced-ports):
4840 Create verilog-auto-inst-interfaced-ports, bug429.
4841 Reported by Julian Gorfajn.
4842 (verilog-after-save-font-hook)
4843 (verilog-before-save-font-hook): New variable.
4844 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
4845 (verilog-save-font-mods): Wrap disabling fontification, reported
4846 by David Rogoff.
4847 (verilog-do-indent, verilog-pretty-declarations-auto)
4848 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
4849 Reported by Pierre-David Pfister.
4850 (verilog-set-auto-endcomments): Fix endtask auto comments outside
4851 of class declarations, bug292. Reported by Kevin Heilman.
4852 (verilog-read-decls): Fix 'parameter type' not appearing in
4853 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
4854 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
4855 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
4856 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
4857 Reported by David Kravitz.
4858
4859 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
4860
4861 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
4862 assignment with tests in ifs and for loops.
4863 (verilog-extended-complete-re, verilog-complete-reg): Change so
4864 that DPI inport functions don't look like fuction declarations.
4865 (verilog-pretty-expr): Don't line up assignment
4866 operations to the test and increment in if and for loops
4867 (verilog-extended-complete-re, verilog-complete-reg): Change so
4868 that DPI inport functions don't look like fuction declarations.
4869
4870 2012-05-03 Kenichi Handa <handa@m17n.org>
4871
4872 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
4873 decoding, and show a warning message without signaling an error
4874 (Bug#11282).
4875
4876 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4877
4878 * emacs-lisp/bytecomp.el
4879 (byte-compile-file-form-custom-declare-variable): Compile all elements,
4880 since cconv.el might have introduced :fun-body, internal-make-closure,
4881 and friends for bytecomp to handle (bug#11391).
4882 * custom.el (defcustom): Avoid ((λ ..) ..).
4883
4884 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
4885
4886 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
4887
4888 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
4889
4890 * notifications.el (dbus-debug):
4891 * term/linux.el (gpm-mouse-enable):
4892 * term/screen.el (xterm-register-default-colors): Declare.
4893
4894 2012-05-02 Chong Yidong <cyd@gnu.org>
4895
4896 * cus-start.el (gc-cons-percentage, exec-suffixes)
4897 (dos-display-scancodes, dos-hyper-key, dos-super-key)
4898 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
4899 (make-cursor-line-fully-visible, void-text-area-pointer)
4900 (font-list-limit): Add customization data.
4901
4902 * allout.el (allout-exposure-change-functions)
4903 (allout-structure-added-functions)
4904 (allout-structure-deleted-functions)
4905 (allout-structure-shifted-functions): Rename abnormal hooks from
4906 *-hook, and convert to defcustoms.
4907 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
4908 Convert to defcustoms.
4909 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
4910
4911 * allout-widgets.el: Hook callers changed.
4912
4913 2012-05-02 Eli Zaretskii <eliz@gnu.org>
4914
4915 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
4916 the yanked message in preference to the default value of
4917 buffer-file-coding-system.
4918
4919 2012-05-02 Martin Rudalics <rudalics@gmx.at>
4920
4921 * window.el (display-buffer--action-function-custom-type):
4922 Fix entry.
4923
4924 2012-05-02 Alan Mackenzie <acm@muc.de>
4925
4926 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
4927
4928 2012-05-01 Glenn Morris <rgm@gnu.org>
4929
4930 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
4931
4932 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
4933
4934 * cus-edit.el (custom-variable-documentation): Simplify with format.
4935
4936 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
4937 Stefan Monnier <monnier@iro.umontreal.ca>
4938
4939 * simple.el (suggest-key-bindings, execute-extended-command):
4940 Move from keyboard.c.
4941
4942 2012-05-01 Chong Yidong <cyd@gnu.org>
4943
4944 * follow.el: Eliminate advice.
4945 (set-process-filter, process-filter, sit-for): Advice deleted.
4946 (follow-mode-off-hook): Obsolete hook removed.
4947 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
4948 Vars deleted.
4949 (follow-auto): Use a :set function.
4950 (follow-mode): Rewritten. Don't advise process filters.
4951 (follow-switch-to-current-buffer-all, follow-scroll-up)
4952 (follow-scroll-down): Assume follow-mode is bound.
4953 (follow-comint-scroll-to-bottom)
4954 (follow-align-compilation-windows): New functions.
4955 (follow--window-sorter): New function.
4956 (follow-all-followers): Use it to explicitly sort windows by their
4957 positions; don't make assumptions about next-window order.
4958 (follow-windows-start-end, follow-delete-other-windows-and-split)
4959 (follow-calc-win-start): Doc fix.
4960 (follow-windows-aligned-p, follow-select-if-visible): Don't call
4961 vertical-motion unnecessarily.
4962 (follow-adjust-window): New function.
4963 (follow-post-command-hook): Use it.
4964 (follow-call-set-process-filter, follow-call-process-filter)
4965 (follow-intercept-process-output, follow-tidy-process-filter-alist)
4966 (follow-stop-intercept-process-output, follow-generic-filter):
4967 Functions deleted.
4968 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
4969 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
4970 New functions, replacing advice on scroll-bar-* commands.
4971 (follow-mwheel-scroll): New function (Bug#4112).
4972
4973 * comint.el (comint-adjust-point): New function.
4974 (comint-postoutput-scroll-to-bottom): Use it.
4975 Call follow-comint-scroll-to-bottom for Follow mode buffers.
4976
4977 2012-05-01 Glenn Morris <rgm@gnu.org>
4978
4979 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
4980 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
4981 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
4982 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
4983 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
4984 Remove no-byte-compile setting.
4985
4986 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4987
4988 * minibuffer.el (completion-table-with-quoting): Fix compatibility
4989 all-completions code to not return a number in the last cdr.
4990
4991 2012-04-30 Leo Liu <sdl.web@gmail.com>
4992
4993 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
4994 read-only error.
4995
4996 2012-04-29 Chong Yidong <cyd@gnu.org>
4997
4998 * follow.el (follow-calc-win-end): Rewrite to handle partial
4999 screen lines correctly (Bug#8390).
5000 (follow-avoid-tail-recenter): Minor cleanup.
5001
5002 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
5003
5004 Avoid the obsolete `assoc' package.
5005 * speedbar.el (speedbar-refresh): Avoid adelete.
5006 (speedbar-file-lists): Simplify and avoid aput.
5007 * man.el (Man--sections, Man--refpages): New vars, replacing
5008 Man-sections-alist and Man-refpages-alist.
5009 (Man-build-section-alist, Man-build-references-alist):
5010 Use them; avoid aput.
5011 (Man--last-section, Man--last-refpage): New vars.
5012 (Man-follow-manual-reference): Use them.
5013 Use the `default' arg of completing-read.
5014 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
5015
5016 2012-04-27 Chong Yidong <cyd@gnu.org>
5017
5018 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
5019
5020 * startup.el (x-apply-session-resources): New function.
5021
5022 * term/ns-win.el (ns-initialize-window-system):
5023 * term/w32-win.el (w32-initialize-window-system):
5024 * term/x-win.el (x-initialize-window-system): Use it to properly
5025 set menu-bar-mode and other vars from X resources, even if the
5026 initial frame is not a window-system frame (Bug#2299).
5027
5028 * subr.el (read-key): Avoid running filter function when setting
5029 up temporary tool bar entries (Bug#9922).
5030
5031 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
5032
5033 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
5034 (Bug#11344)
5035
5036 2012-04-27 Chong Yidong <cyd@gnu.org>
5037
5038 * select.el (xselect--encode-string): New function, split from
5039 xselect-convert-to-string.
5040 (xselect-convert-to-string): Use it.
5041 (xselect-convert-to-filename, xselect-convert-to-os)
5042 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
5043 returned strings are properly encoded (Bug#11315).
5044
5045 2012-04-27 Chong Yidong <cyd@gnu.org>
5046
5047 * simple.el (delete-active-region): Move to killing custom group.
5048
5049 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
5050
5051 * progmodes/which-func.el (which-func-current): Quote %
5052 characters for mode-line processing.
5053
5054 2012-04-27 Chong Yidong <cyd@gnu.org>
5055
5056 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
5057 reaching eob (Bug#11286).
5058
5059 2012-04-27 Eli Zaretskii <eliz@gnu.org>
5060
5061 * progmodes/gdb-mi.el (gdb-control-level): New variable.
5062 (gdb): Make it buffer-local and init to zero.
5063 (gdb-control-commands-regexp): New variable.
5064 (gdb-send): Don't wrap in "-interpreter-exec console" if
5065 gdb-control-level is positive. Increment gdb-control-level
5066 whenever the command matches gdb-control-commands-regexp, and
5067 decrement it each time the command is "end". (Bug#11279)
5068
5069 2012-04-27 Martin Rudalics <rudalics@gmx.at>
5070
5071 * window.el (adjust-window-trailing-edge, enlarge-window)
5072 (shrink-window, window-resize):
5073 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
5074 windows (Bug#11276).
5075
5076 2012-04-27 Chong Yidong <cyd@gnu.org>
5077
5078 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
5079 fix "missing prefix" warning. All callers changed.
5080
5081 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
5082
5083 * emacs-lisp/assoc.el: Move to obsolete/.
5084
5085 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5086
5087 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
5088
5089 * term/ns-win.el (ns-define-service):
5090 * progmodes/pascal.el (pascal-goto-defun):
5091 * progmodes/js.el (js--read-tab):
5092 * progmodes/etags.el (tags-lazy-completion-table):
5093 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
5094 * emacs-lisp/ewoc.el (ewoc--wrap):
5095 * emacs-lisp/assoc.el (aput, adelete, amake):
5096 * doc-view.el (doc-view-convert-current-doc):
5097 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
5098
5099 2012-04-26 Chong Yidong <cyd@gnu.org>
5100
5101 * image.el (image-type-from-buffer): Only return supported image
5102 type (Bug#9045).
5103
5104 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
5105 value, for symmetry with diff-end-of-hunk.
5106 (diff-split-hunk, diff-find-source-location)
5107 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
5108 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
5109 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
5110 compute the relevant hunk or file properly (Bug#6005).
5111 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
5112
5113 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5114
5115 * vc/vc-mtn.el:
5116 * vc/vc-hg.el:
5117 * vc/vc-git.el:
5118 * vc/vc-dir.el:
5119 * vc/vc-cvs.el:
5120 * vc/vc-bzr.el:
5121 * vc/vc-arch.el:
5122 * vc/vc.el: Replace lexical-let by lexical-binding.
5123 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
5124 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
5125 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
5126
5127 2012-04-26 Chong Yidong <cyd@gnu.org>
5128
5129 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
5130 (diff-mode-shared-map): Bind it to / and [remap undo].
5131
5132 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
5133 (ediff-window-setup-function): Use it as the default, to set up
5134 windows based on whether the current frame is graphical (Bug#2138).
5135 (ediff-choose-window-setup-function-automatically): Make obsolete.
5136
5137 * vc/ediff-init.el: Always define ediff-pixel-width/height.
5138
5139 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
5140
5141 * ffap.el: Remove old code for obsolete package.
5142 (ffap-complete-as-file-p): Remove.
5143
5144 Use completion-table-with-quoting for comint and pcomplete.
5145 * comint.el (comint--unquote&requote-argument)
5146 (comint--unquote-argument, comint--requote-argument): New functions.
5147 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
5148 (comint-quote-filename): Use regexp-opt-charset.
5149 (comint--common-suffix, comint--common-quoted-suffix)
5150 (comint--table-subvert): Remove.
5151 (comint-unquote-function, comint-requote-function): New vars.
5152 (comint--complete-file-name-data): Use them with
5153 completion-table-with-quoting.
5154 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
5155 * pcomplete.el (pcomplete-arg-quote-list)
5156 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
5157 (pcomplete-unquote-argument-function): Default to non-nil.
5158 (pcomplete-unquote-argument): Simplify.
5159 (pcomplete--common-quoted-suffix): Remove.
5160 (pcomplete-requote-argument-function): New var.
5161 (pcomplete--common-suffix): New function.
5162 (pcomplete-completions-at-point): Use completion-table-with-quoting
5163 and completion-table-subvert.
5164
5165 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
5166 (minibuffer--double-dollars): Preserve properties.
5167 (completion--sifn-requote): New function.
5168 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
5169
5170 * minibuffer.el: Add support for completion of quoted/escaped data.
5171 (completion-table-with-quoting, completion-table-subvert): New funs.
5172 (completion--twq-try, completion--twq-all): New functions.
5173 (completion--nth-completion): New function.
5174 (completion-try-completion, completion-all-completions): Use it.
5175
5176 2012-04-25 Leo Liu <sdl.web@gmail.com>
5177
5178 * progmodes/python.el (python-pdbtrack-get-source-buffer):
5179 Use compilation-message if available to find real filename.
5180
5181 2012-04-25 Chong Yidong <cyd@gnu.org>
5182
5183 * vc/diff-mode.el (diff-setup-whitespace): New function.
5184 (diff-mode): Use it.
5185
5186 * vc/diff.el (diff-sentinel):
5187 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
5188 Whitespace mode variables based on diff style (Bug#8612).
5189
5190 2012-04-25 Leo Liu <sdl.web@gmail.com>
5191
5192 * progmodes/python.el (python-send-region): Add suffix .py to the
5193 temp file.
5194
5195 * files.el (auto-mode-alist): Use javascript-mode instead.
5196
5197 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
5198
5199 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
5200
5201 * net/soap-client.el (soap-resolve-references-for-sequence-type)
5202 (soap-resolve-references-for-array-type): Hack to prevent self
5203 references, see Bug#9.
5204 (soap-parse-envelope): Report the contents of the 'detail' node
5205 when receiving a fault reply.
5206 (soap-parse-envelope): Report the contents of the entire 'detail' node.
5207
5208 * net/soap-inspect.el (soap-sample-value-for-simple-type)
5209 (soap-inspect-simple-type): New function.
5210
5211 * net/soap-client.el (soap-simple-type): New struct.
5212 (soap-default-xsd-types, soap-default-soapenc-types)
5213 (soap-decode-basic-type, soap-encode-basic-type):
5214 support unsignedInt and double basic types.
5215 (soap-resolve-references-for-simple-type)
5216 (soap-parse-simple-type, soap-encode-simple-type): New function.
5217 (soap-parse-schema): Parse xsd:simpleType declarations.
5218
5219 * net/soap-client.el (soap-default-xsd-types)
5220 (soap-default-soapenc-types): Add integer, byte and anyURI types.
5221 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
5222 the local name of "soapenc:Array".
5223 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
5224 decoding integer, byte and anyURI xsd types.
5225
5226 2012-04-25 Chong Yidong <cyd@gnu.org>
5227
5228 * cus-edit.el (custom-buffer-create-internal): Update header text.
5229
5230 2012-04-25 Eli Zaretskii <eliz@gnu.org>
5231
5232 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
5233 settings on 'system-type', not on 'window-system'. On MS-Windows,
5234 set interactive-mode on in GDB.
5235
5236 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
5237
5238 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
5239 (ruby-syntax-propertize-regexp): Remove.
5240 (ruby-syntax-propertize-function): Split regexp into chunks.
5241 Match following code directly.
5242
5243 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
5244
5245 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
5246 (ruby-syntax-propertize-regexp): New function.
5247 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
5248 by a special keyword.
5249
5250 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
5251 (ruby-syntax-general-delimiters-goto-beg)
5252 (ruby-syntax-propertize-general-delimiters): New functions.
5253 (ruby-syntax-propertize-function): Use them to handle GDL.
5254 (ruby-font-lock-keywords): Move old handling of GDL...
5255 (ruby-font-lock-syntactic-keywords): .. to here.
5256 (ruby-calculate-indent): Adjust indentation for GDL.
5257
5258 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
5259
5260 * notifications.el (top): Remove unneeded declarations.
5261 (notifications-specification-version): Change to "1.2".
5262 (notifications-interface, notifications-notify-method)
5263 (notifications-close-notification-method): Fix docstring.
5264 (notifications-get-capabilities-method): New defconst.
5265 (notifications-notify): Add :action-items, :resident and
5266 :transient hints. Change "image_data" to "image-data" and
5267 "image_path" to "image-path".
5268 (notifications-get-capabilities): New defun.
5269
5270 2012-04-24 Leo Liu <sdl.web@gmail.com>
5271
5272 * progmodes/python.el: Move hideshow setup to the end.
5273
5274 2012-04-24 Martin Rudalics <rudalics@gmx.at>
5275
5276 * window.el (handle-select-window): Clear echo area since this is
5277 no more done by read_char (Bug#11304).
5278
5279 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
5280
5281 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
5282 and `/ M' to filter-derived-mode.
5283 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
5284 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
5285 (ibuffer-mark-by-mode): Use default rather than initial-input.
5286 (ibuffer-filter-by-derived-mode): Autoload and require-match.
5287
5288 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
5289
5290 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
5291 (ibuffer-filter-by-derived-mode): New filter.
5292 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
5293
5294 2012-04-23 Andreas Politz <politza@fh-trier.de>
5295
5296 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
5297
5298 2012-04-23 Chong Yidong <cyd@gnu.org>
5299
5300 * cus-edit.el (customize-apropos, customize-apropos-options):
5301 Disable matching of non-option variables (Bug#11176).
5302 (customize-option, customize-option-other-window)
5303 (customize-changed-options): Doc fix.
5304 (customize-apropos-options, customize-apropos-faces)
5305 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
5306
5307 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
5308 Fix word list splitting (Bug#11132).
5309 (apropos-symbol, apropos-keybinding, apropos-label)
5310 (apropos-property, apropos-function-button)
5311 (apropos-variable-button, apropos-misc-button): New faces.
5312 (apropos-symbol-face, apropos-keybinding-face)
5313 (apropos-label-face, apropos-property-face, apropos-match-face):
5314 Variables removed (Bug#8396).
5315 (apropos-library-button, apropos-format-plist, apropos-print)
5316 (apropos-print-doc, apropos-describe-plist): Callers changed.
5317
5318 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
5319
5320 * net/xesam.el (xesam-mode-map): Use let-bound map in
5321 initialization. (Bug#11292)
5322
5323 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5324
5325 Preserve ispell session localwords when switching back to
5326 original buffer.
5327
5328 * textmodes/ispell.el (ispell-buffer-session-localwords):
5329 New buffer-local variable to hold buffer session localwords.
5330 (ispell-kill-ispell): Add option 'clear to delete session
5331 localwords.
5332 (ispell-command-loop, ispell-change-dictionary)
5333 (ispell-buffer-local-words): Preserve session localwords when
5334 needed.
5335
5336 * textmodes/flyspell.el (flyspell-process-localwords)
5337 (flyspell-do-correct): Preserve session localwords when needed.
5338
5339 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5340
5341 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
5342 using obsolete `translation-table-for-input'.
5343 (ispell-word, ispell-process-line, ispell-complete-word):
5344 Use plain `insert' instead of removed `ispell-insert-word'.
5345
5346 2012-04-22 Chong Yidong <cyd@gnu.org>
5347
5348 * cus-edit.el (custom-variable-menu)
5349 (custom-variable-reset-saved, custom-face-menu)
5350 (custom-face-reset-saved): If there is no saved value, make the
5351 "reset-saved" operation bring back the default (Bug#9509).
5352 (custom-face-state): Properly detect themed faces.
5353
5354 * faces.el (face-spec-set): Stop supporting deprecated form of
5355 third arg.
5356
5357 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
5358
5359 Move functions from C to Lisp. Make non-blocking method calls
5360 the default. Implement further D-Bus standard interfaces.
5361
5362 * net/dbus.el (dbus-message-internal): Declare function.
5363 Remove unneeded function declarations.
5364 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
5365 (dbus-message-type-method-return, dbus-message-type-error)
5366 (dbus-message-type-signal): Declare variables. Remove local
5367 definitions.
5368 (dbus-interface-dbus, dbus-interface-peer)
5369 (dbus-interface-introspectable, dbus-interface-properties)
5370 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
5371 Adapt docstring.
5372 (dbus-interface-objectmanager): New defconst.
5373 (dbus-call-method, dbus-call-method-asynchronously)
5374 (dbus-send-signal, dbus-method-return-internal)
5375 (dbus-method-error-internal, dbus-register-service)
5376 (dbus-register-signal, dbus-register-method): New defuns, moved
5377 from dbusbind.c
5378 (dbus-call-method-handler, dbus-setenv)
5379 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
5380 New defuns.
5381 (dbus-call-method-non-blocking): Make it an obsolete function.
5382 (dbus-unregister-object, dbus-unregister-service)
5383 (dbus-handle-event, dbus-register-property)
5384 (dbus-property-handler): Obey the new structure of
5385 `bus-registered-objects'.
5386 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
5387 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5388 Use `dbus-call-method'.
5389
5390 2012-04-22 Chong Yidong <cyd@gnu.org>
5391
5392 * cus-edit.el (custom-commands, custom-reset-menu)
5393 (Custom-reset-standard): Tweak labels.
5394 (custom-reset-button-menu): Change default to t.
5395 (custom-buffer-create-internal): For the custom-reset-button-menu
5396 case, put the revert button first.
5397 (custom-group-subtitle): New face.
5398 (custom-group-value-create): Align docstring to a specific column.
5399
5400 * wid-edit.el (widget-documentation-link-add): Don't handle
5401 indentation in this function.
5402 (widget-documentation-string-indent-to): New function.
5403 (widget-documentation-string-value-create): Use it.
5404
5405 * autorevert.el (auto-revert):
5406 * epg-config.el (epg):
5407 * ibuffer.el (ibuffer):
5408 * mpc.el (mpc):
5409 * ses.el (ses):
5410 * eshell/eshell.el (eshell):
5411 * net/ange-ftp.el (ange-ftp):
5412 * progmodes/ebnf2ps.el (postscript):
5413 * progmodes/flymake.el (flymake):
5414 * progmodes/prolog.el (prolog):
5415 * progmodes/verilog-mode.el (verilog-mode):
5416 * progmodes/which-func.el (which-func):
5417 * term/xterm.el (xterm):
5418 * textmodes/picture.el (picture):
5419 * textmodes/tildify.el (tildify):
5420 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
5421 customization buffers.
5422
5423 2012-04-22 Alan Mackenzie <acm@muc.de>
5424
5425 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
5426 Adding a ) can hide the resulting (..) from searches. Fix it.
5427 Bound the backward search to the position of the existing (.
5428
5429 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
5430
5431 * progmodes/verilog-mode.el (verilog-mode): Check whether
5432 which-func-modes is t before adding verilog-mode.
5433 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5434
5435 2012-04-21 Leo Liu <sdl.web@gmail.com>
5436
5437 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
5438
5439 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
5440
5441 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
5442 filling of the last column of a table (Bug#5635).
5443 (woman-find-next-control-line): New arg, specifying an additional
5444 regexp component for the control line.
5445 (woman2-roff-buffer): Use it.
5446 (woman-break-table): New function.
5447 (woman2-TS): Use it.
5448
5449 2012-04-21 Chong Yidong <cyd@gnu.org>
5450
5451 * woman.el (woman-set-buffer-display-table, woman-decode-region)
5452 (woman-horizontal-escapes, woman-negative-vertical-space)
5453 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
5454 (WoMan-warn-ignored): Use ?\s instead of ?\ .
5455
5456 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5457
5458 * minibuffer.el (completion-file-name-table): Complete user names.
5459
5460 2012-04-20 Leo Liu <sdl.web@gmail.com>
5461
5462 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
5463 and pcase-let*.
5464
5465 2012-04-20 Chong Yidong <cyd@gnu.org>
5466
5467 * server.el (server-execute): Respect initial-buffer-choice if it
5468 is a string and there are no files to open (Bug#2825).
5469 (server-create-window-system-frame, server-create-tty-frame):
5470 Don't switch buffers here.
5471 (server-process-filter): Only try to open a window system frame if
5472 compiled with graphical support (Bug#8314).
5473
5474 2012-04-20 Dan Nicolaescu <dann@gnu.org>
5475
5476 * battery.el (battery-echo-area-format): Display remaining time
5477 for sysfs backend too (Bug#11269).
5478 (battery-linux-sysfs): Fix conditional for the charge.
5479
5480 2012-04-20 Chong Yidong <cyd@gnu.org>
5481
5482 * progmodes/gdb-mi.el (gdb): Revert previous change.
5483 (gdb-inferior-io--init-proc): New function.
5484 (gdb-init-1): Use it.
5485 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
5486 responsible for allocating a new pty and hooking it to gdb when
5487 the old pty gets an EIO due to process exit.
5488 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
5489 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
5490 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
5491
5492 2012-04-20 Eli Zaretskii <eliz@gnu.org>
5493
5494 * window.el (window-min-size, window-sizable, window-min-delta)
5495 (window-max-delta, window--resizable, window-resizable)
5496 (window-total-size, window-full-height-p, window-full-width-p)
5497 (window-in-direction, window--resize-mini-window, window-resize)
5498 (window--resize-child-windows-normal)
5499 (window--resize-child-windows, window--resize-siblings)
5500 (window--resize-this-window, adjust-window-trailing-edge)
5501 (enlarge-window, shrink-window): Doc fixes.
5502
5503 2012-04-20 Chong Yidong <cyd@gnu.org>
5504
5505 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
5506 New function to call delete-process on the gdb-inferior buffer's pty.
5507 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
5508 pty process (Bug#11273).
5509 (gdb-update): New arg to suppress talking to the gdb process.
5510 (gdb-done-or-error): Use it.
5511 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
5512 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
5513 sentinel not being called.
5514
5515 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
5516
5517 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
5518
5519 2012-04-20 Glenn Morris <rgm@gnu.org>
5520
5521 * net/network-stream.el (open-network-stream): Doc fix.
5522
5523 2012-04-20 Chong Yidong <cyd@gnu.org>
5524
5525 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
5526
5527 2012-04-20 Alan Mackenzie <acm@muc.de>
5528
5529 Ensure searching for keywords is case sensitive.
5530
5531 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
5532 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
5533 (c-defun-name, c-mark-function, c-cpp-define-name)
5534 (c-comment-indent, c-scan-conditionals, c-indent-defun)
5535 (c-context-line-break): Bind case-fold-search to nil.
5536
5537 * progmodes/cc-mode.el (c-font-lock-fontify-region):
5538 Bind case-fold-search to nil.
5539
5540 2012-04-20 Chong Yidong <cyd@gnu.org>
5541
5542 * mail/sendmail.el (mail-bury): Call return action with the right
5543 Rmail buffer (Bug#11242).
5544
5545 * server.el (server-process-filter): Handle corner case where both
5546 tty and nowait options are present (Bug#11102).
5547
5548 2012-04-20 Eli Zaretskii <eliz@gnu.org>
5549
5550 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
5551 (top level): Put into the executable the ident-style '$Id:' tag on
5552 windows-nt as well.
5553
5554 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5555
5556 * electric.el (electric-indent-post-self-insert-function): Check that
5557 electric-indent-mode is enabled in current buffer.
5558
5559 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
5560
5561 * imenu.el (imenu-progress-message): Restore; it is "used" in
5562 erc/erc-imenu.el and net/snmp-mode.el.
5563
5564 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
5565
5566 * avoid.el (mouse-avoidance-mode): Mark unused arg.
5567 (mouse-avoidance-nudge-mouse): Remove unused binding.
5568
5569 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
5570
5571 * descr-text.el (describe-char):
5572 * progmodes/python.el (python-describe-symbol):
5573 Don't call `toggle-read-only', set `buffer-read-only'.
5574
5575 * imenu.el (imenu-default-goto-function): Mark unused args.
5576 (imenu-progress-message): Remove obsolete macro; all callers changed.
5577
5578 * subr.el (keymap-canonicalize): Remove unused binding.
5579 (read-passwd): Mark unused arg.
5580
5581 * tutorial.el (tutorial--display-changes): Remove unused binding.
5582 (tutorial--save-tutorial-to): Remove unused variable.
5583
5584 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
5585 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
5586 (package-generate-autoloads, package-menu--generate)
5587 (package-menu--find-upgrades): Remove unused bindings.
5588
5589 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
5590 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
5591 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
5592 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
5593 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
5594 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
5595 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
5596 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
5597 (cua-delete-char-rectangle): Mark unused args.
5598 (cua-align-rectangle): Remove unused binding.
5599
5600 * mail/rmail.el (compilation--message->loc)
5601 (epa--find-coding-system-for-mime-charset): Declare.
5602
5603 * net/dbus.el (dbus-register-service): Declare.
5604 (dbus-name-owner-changed-handler): Remove unused binding.
5605
5606 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
5607 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
5608 (nxml-scan-backward-within): Mark unused arg.
5609 (nxml-dynamic-markup-word): Remove unused binding.
5610
5611 * mouse.el (mouse-menu-major-mode-map):
5612 * emacs-lisp/authors.el (authors-scan-change-log)
5613 (authors-add-to-author-list):
5614 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
5615 * emacs-lisp/smie.el (smie-auto-fill):
5616 * mail/sendmail.el (mail-bury):
5617 * mail/unrmail.el (unrmail):
5618 * net/tls.el (open-tls-stream):
5619 * textmodes/picture.el (picture-mouse-set-point):
5620 Remove unused bindings.
5621
5622 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
5623
5624 * net/tramp.el (tramp-action-password): Let-bind
5625 `enable-recursive-minibuffers' to t.
5626
5627 2012-04-18 Sam Steingold <sds@gnu.org>
5628
5629 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
5630 instead of 'string to accommodate values like [f11].
5631 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
5632 * progmodes/gdb-mi.el: Likewise.
5633
5634 2012-04-18 Leo Liu <sdl.web@gmail.com>
5635
5636 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
5637 current buffer.
5638 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
5639 LOCAL is nil.
5640
5641 2012-04-18 Chong Yidong <cyd@gnu.org>
5642
5643 * simple.el (line-move): Use forward-line if in batch mode
5644 (Bug#11053).
5645
5646 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
5647
5648 * files.el (after-find-file): Do not try to add a final newline if
5649 the buffer is read-only (Bug#11156).
5650
5651 2012-04-17 Richard Stallman <rms@gnu.org>
5652
5653 * mail/rmail.el (rmail-start-mail):
5654 Pass (rmail-mail-return...) for the return-action.
5655 Pass (rmail-yank-current-message...) for the yank-action.
5656 (rmail-yank-current-message): New function.
5657 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
5658 (rmail-reply): Likewise.
5659 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
5660
5661 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
5662 buffer, not the last. Reject temp buffers. Use the rmail-mode
5663 buffer, not newbuf.
5664
5665 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
5666
5667 * server.el (server-ensure-safe-dir): Simplify.
5668
5669 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
5670
5671 * emacs-lisp/smie.el: Provide smarter auto-filling.
5672 (smie-auto-fill): New function.
5673 (smie-setup): Use it.
5674
5675 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
5676
5677 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
5678
5679 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
5680 (comment-indent): Use it.
5681
5682 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
5683
5684 * ses.el: The overall change is to add cell renaming, that is
5685 setting fancy names for cell symbols other than name matching
5686 "\\`[A-Z]+[0-9]+\\'" regexp .
5687 (ses-localvars): Add ses--renamed-cell-symb-list.
5688 (ses-create-cell-variable): New defun.
5689 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
5690 (ses-relocate-formula): Relocate formulas only for cells the
5691 symbols of which are not renamed, i.e. symbols whose names do not
5692 match regexp "\\`[A-Z]+[0-9]+\\'".
5693 (ses-relocate-all): Relocate values only for cells the symbols of
5694 which are not renamed.
5695 (ses-load): Create cells variables as the (ses-cell ...) are read,
5696 in order to check row col consistency with cell symbol name only
5697 for cells that are not renamed.
5698 (ses-replace-name-in-formula): New defun.
5699 (ses-rename-cell): New defun.
5700
5701 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
5702
5703 * progmodes/perl-mode.el (perl-indent-parens-as-block):
5704 New option (bug#11118).
5705 (perl-calculate-indent): Respect it.
5706
5707 2012-04-17 Glenn Morris <rgm@gnu.org>
5708
5709 * dired-aux.el (dired-mark-read-string): Doc fix.
5710
5711 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
5712
5713 * dired-aux.el (dired-mark-read-string): Offer optional completion.
5714 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
5715
5716 2012-04-17 Glenn Morris <rgm@gnu.org>
5717
5718 * mouse.el (mouse-drag-track):
5719 * speedbar.el (speedbar-frame-mode):
5720 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
5721
5722 2012-04-16 Leo Liu <sdl.web@gmail.com>
5723
5724 * progmodes/python.el: Trivial cleanup.
5725
5726 2012-04-16 Glenn Morris <rgm@gnu.org>
5727
5728 * vc/vc.el (vc-string-prefix-p):
5729 * vc/pcvs-util.el (cvs-string-prefix-p):
5730 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
5731 * mpc.el (mpc-string-prefix-p):
5732 Make all of these into obsolete aliases for string-prefix-p.
5733 Update callers.
5734 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
5735
5736 * textmodes/two-column.el: Move custom options to the start.
5737 (frame-width): Remove compat definition.
5738 (2C-associate-buffer, 2C-dissociate):
5739 Use with-current-buffer rather than save-excursion.
5740 (2C-dissociate): Force a mode-line update.
5741 (2C-autoscroll): Use ignore-errors.
5742
5743 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
5744 Autoload trivia.
5745
5746 * emacs-lisp/cl-extra.el (*random-state*):
5747 Remove unnecessary declaration.
5748
5749 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
5750
5751 * play/cookie1.el (cookie-snarf):
5752 Give an explicit error if input file cannot be read.
5753
5754 * play/yow.el (yow-file): Use expand-file-name rather than concat.
5755
5756 * progmodes/perl-mode.el (c-macro-expand):
5757 Remove unnecessary autoload (it is in loaddefs.el).
5758
5759 * textmodes/picture.el (picture-desired-column)
5760 (picture-update-desired-column): Convert comments to doc-strings.
5761 (picture-substitute): Remove function.
5762 (picture-mode-map): Initialize in the defvar.
5763
5764 * woman.el: Remove eval-after-load for tar-mode.
5765 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
5766 (woman-tar-extract-file): Autoload it.
5767
5768 * frame.el (automatic-hscrolling): Make this alias obsolete.
5769
5770 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5771
5772 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
5773 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
5774 (ispell-dictionary-base-alist): Revert to original XEmacs
5775 friendly version for default. [:alpha:] will be added in
5776 `ispell-set-spellchecker-params' if needed.
5777
5778 2012-04-16 Chong Yidong <cyd@gnu.org>
5779
5780 * image.el (imagemagick--file-regexp): New variable.
5781 (imagemagick-register-types): Use it.
5782 (imagemagick-types-inhibit): Add :set function. Allow new value
5783 of t to inhibit all types.
5784
5785 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
5786 so we can preload it.
5787
5788 * loadup.el (fboundp): Preload regexp-opt, needed by
5789 imagemagick-register-types.
5790
5791 2012-04-15 Chong Yidong <cyd@gnu.org>
5792
5793 * frame.el (scrolling): Remove nearly unused customization group.
5794
5795 * scroll-all.el (scroll-all-mode): Move to windows group.
5796
5797 2012-04-15 Chong Yidong <cyd@gnu.org>
5798
5799 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
5800
5801 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
5802
5803 Avoid the use of ((lambda ...) ...) in lexical-binding code.
5804 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
5805
5806 2012-04-15 Glenn Morris <rgm@gnu.org>
5807
5808 * simple.el (process-file-side-effects): Doc fix.
5809
5810 2012-04-15 Glenn Morris <rgm@gnu.org>
5811
5812 * international/mule-cmds.el (set-language-environment): Doc fix.
5813
5814 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
5815
5816 * server.el (server-auth-key, server-generate-key): Doc fixes.
5817 (server-get-auth-key): Doc fix. Use `string-match-p'.
5818 (server-start): Reflow docstring.
5819
5820 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
5821
5822 * server.el (server-generate-key): `called-interactively-p'
5823 requires a parameter.
5824
5825 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
5826
5827 * server.el (server-auth-key): New variable.
5828 (server-generate-key, server-get-auth-key): New function.
5829 (server-start): Use the new variable and functions to allow
5830 setting a permanent server key (bug#9423).
5831
5832 2012-04-14 Leo Liu <sdl.web@gmail.com>
5833
5834 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
5835
5836 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
5837
5838 Spelling fixes.
5839 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
5840 Emacs uses American spelling.
5841
5842 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
5843
5844 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
5845 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
5846 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
5847 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
5848
5849 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5850
5851 * progmodes/which-func.el (which-func-modes): Change default.
5852
5853 2012-04-14 Kim F. Storm <storm@cua.dk>
5854
5855 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
5856 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
5857
5858 2012-04-14 Chong Yidong <cyd@gnu.org>
5859
5860 * custom.el (custom-theme-set-variables): Doc fix.
5861
5862 2012-04-14 Glenn Morris <rgm@gnu.org>
5863
5864 * international/mule.el (set-auto-coding-for-load): Doc fix.
5865
5866 2012-04-14 Alan Mackenzie <acm@muc.de>
5867
5868 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
5869 imenu work again for Objective C Mode. Correct the *-index values,
5870 these having been disturbed by a previous change in 2011-08.
5871
5872 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
5873 Correct two search limits.
5874
5875 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5876
5877 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
5878
5879 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
5880
5881 * international/characters.el: Fix sorting.
5882
5883 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5884
5885 * international/characters.el: Add more missing Latin case pairs.
5886
5887 2012-04-14 Glenn Morris <rgm@gnu.org>
5888
5889 * files.el (dir-locals-set-class-variables): Doc fix.
5890
5891 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5892
5893 * international/characters.el: Add set-case-syntax-pair call for
5894 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
5895 counterpart. (Bug#11209)
5896
5897 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
5898
5899 2012-04-14 Glenn Morris <rgm@gnu.org>
5900
5901 * calendar/holidays.el (calendar-check-holidays): Doc fix.
5902
5903 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5904
5905 * textmodes/ispell.el (ispell-dictionary-base-alist):
5906 Add data for Hebrew.
5907
5908 2012-04-14 Chong Yidong <cyd@gnu.org>
5909
5910 * net/rcirc.el (rcirc-cmd-quit):
5911 Revert 2012-03-18 change (Bug#11192).
5912
5913 2012-04-14 Glenn Morris <rgm@gnu.org>
5914
5915 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
5916
5917 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5918
5919 * minibuffer.el (completion-in-region-mode-map):
5920 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
5921
5922 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
5923
5924 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
5925
5926 2012-04-13 Masatake YAMATO <yamato@redhat.com>
5927
5928 * minibuffer.el (minibuffer-local-filename-syntax): New variable
5929 to allow `C-M-f' and `C-M-b' to move to the nearest path
5930 separator (bug#9511).
5931
5932 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
5933
5934 * avoid.el: Require cl when compiling. And also move the
5935 `provide' to the end.
5936
5937 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5938
5939 * avoid.el (mouse-avoidance-banish-position): New variable.
5940 (mouse-avoidance-banish-destination): Use it (bug#10165).
5941
5942 2012-04-13 Leo Liu <sdl.web@gmail.com>
5943
5944 * progmodes/which-func.el (which-func-modes): Add objc-mode.
5945
5946 2012-04-13 Ken Brown <kbrown@cornell.edu>
5947
5948 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
5949 this is no longer needed now that cygstart understands file:// URLs.
5950 (browse-url-filename-alist): For the same reason, don't modify
5951 file:// URLs on Cygwin.
5952
5953 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5954
5955 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
5956 the region on shift if the binding is already shifted (bug#11221).
5957
5958 2012-04-12 Glenn Morris <rgm@gnu.org>
5959
5960 * mail/mailpost.el: Move to obsolete/.
5961
5962 2012-04-12 Drew Adams <drew.adams@oracle.com>
5963
5964 * imenu.el (imenu--generic-function): Ignore invisible definitions
5965 (bug#10123).
5966
5967 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
5968
5969 * hexl.el (hexl-bits): New variable.
5970 (hexl-options): Mention the variable in the doc string.
5971 (hexl-rulerise, hexl-line-displen): New functions.
5972 (hexl-mode): Mention the new variable.
5973 (hexl-mode, hexl-current-address, hexl-current-address):
5974 Use the displen.
5975 (hexl-ascii-start-column): New function.
5976 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
5977 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
5978
5979 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5980
5981 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
5982 '("-i" ENCODING), in 2 separate command-line arguments, to specify
5983 the encoding, as expected by hunspell.
5984
5985 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5986
5987 * battery.el (battery--linux-sysfs-regexp): New const.
5988 (battery-status-function): Use it. Remove yeeloong special case.
5989 (battery-yeeloong-sysfs): Remove.
5990 (battery-echo-area-format): Remove yeeloong special case.
5991
5992 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5993
5994 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
5995 Reported by Noah Friedman.
5996
5997 * subr.el (read-passwd): Use read-string.
5998
5999 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
6000
6001 * vcursor.el (vcursor-move): Increase the priority of the overlay
6002 (bug#9663).
6003
6004 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6005
6006 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
6007 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
6008
6009 2012-04-11 William Stevenson <yhvh2000@gmail.com>
6010
6011 * textmodes/artist.el (artist-mode): Convert artist-mode to use
6012 define-minor-mode (bug#10760).
6013
6014 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
6015
6016 * progmodes/grep.el (rgrep): Tweak the find command line so
6017 that directories matching `grep-find-ignored-files' won't be
6018 pruned (bug#10351).
6019
6020 2012-04-11 Chong Yidong <cyd@gnu.org>
6021
6022 * startup.el (command-line): Remove support for long-obsolete
6023 variable font-lock-face-attributes.
6024
6025 2012-04-11 Glenn Morris <rgm@gnu.org>
6026
6027 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
6028
6029 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6030
6031 * window.el (window--state-get-1): Obey window-point-insertion-type.
6032
6033 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
6034
6035 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
6036 to previous function when point is on the first character of a
6037 function. Take care of that in `narrow-to-defun' (bug#6157).
6038
6039 2012-04-11 Glenn Morris <rgm@gnu.org>
6040
6041 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
6042 not just file-errors.
6043
6044 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
6045 (vc-bzr-sha1): Use internal sha1.
6046
6047 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6048
6049 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
6050
6051 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
6052
6053 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
6054 that start in the middle of the line (bug#10496).
6055
6056 2012-04-10 Dan Nicolaescu <dann@gnu.org>
6057
6058 * battery.el (battery-linux-proc-acpi): Only one battery is
6059 discharged at a time, but that seems to confuse battery.el when
6060 computing `rate-type' for the battery not being discharged
6061 (bug#10332).
6062
6063 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
6064
6065 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
6066
6067 * international/quail.el: Use dolist and simplify.
6068 (quail-define-package, quail-update-keyboard-layout)
6069 (quail-define-rules): Use dolist.
6070 (quail-insert-kbd-layout, quail-get-translation): CSE.
6071
6072 * tmm.el: Use dolist, remove left over hook.
6073 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
6074 Use dolist.
6075 (calendar-load-hook): Don't mess with it.
6076
6077 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
6078 Use derived-mode-p. Run the diff asynchronously.
6079
6080 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
6081
6082 * obsolete/mouse-sel.el: Add an Obsolete-since header.
6083
6084 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
6085
6086 * misc.el: Display absolute path of loaded DLLs (bug#10424).
6087 (list-dynamic-libraries--loaded): New function.
6088 (list-dynamic-libraries--refresh): Use it.
6089
6090 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
6091
6092 * progmodes/python.el (python-fill-paragraph):
6093 Make python-fill-region in a multiline string work when font-lock is
6094 disabled (bug#7018).
6095
6096 2012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
6097
6098 * language/european.el (cp775): Add oem/legacy (en)coding on
6099 DOS/MS Windows for the Baltic languages. There are still plenty
6100 of texts written in this encoding/codepage (bug#6519).
6101
6102 2012-04-10 Glenn Morris <rgm@gnu.org>
6103
6104 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
6105 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
6106
6107 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
6108
6109 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6110 next-line "n" and previous-line "p" in order to make recentf more
6111 consistent with ibuffer, dired or org-mode (bug#9387).
6112
6113 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
6114
6115 * image.el (put-image): Return the overlay created instead of the
6116 optional input string (bug#7834). Note that this may break code
6117 that is (for some reason or other) depending on `put-image'
6118 returning the string.
6119
6120 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
6121
6122 * simple.el (zap-to-char): Allow zapping using input methods
6123 (bug#1580).
6124
6125 * textmodes/fill.el (fill-region): Leave point and mark where they
6126 were before filling (bug#5399).
6127
6128 2012-04-09 Glenn Morris <rgm@gnu.org>
6129
6130 * version.el (emacs-bzr-get-version):
6131 Handle lightweight checkouts of local branches.
6132
6133 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
6134
6135 * international/characters.el: Recover lost case pairs. (Bug#11209)
6136
6137 2012-04-09 Chong Yidong <cyd@gnu.org>
6138
6139 * custom.el (custom-variable-p): Return nil for non-symbol
6140 arguments instead of signaling an error.
6141 (user-variable-p): Obsolete alias for custom-variable-p.
6142
6143 * apropos.el (apropos-variable):
6144 * files-x.el (read-file-local-variable):
6145 * simple.el (set-variable):
6146 * woman.el (woman-mini-help):
6147 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
6148
6149 2012-04-09 Glenn Morris <rgm@gnu.org>
6150
6151 * startup.el (normal-top-level): Don't look for leim-list.el
6152 in places where it will not be found. (Bug#910)
6153
6154 * international/mule-cmds.el (set-default-coding-systems):
6155 * files.el (normal-mode):
6156 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
6157 This function was removed with ucs-tables.el in 2008.
6158
6159 2012-04-08 Eli Zaretskii <eliz@gnu.org>
6160
6161 * textmodes/ispell.el (ispell-check-version): For hunspell, set
6162 ispell-encoding8-command to "-i", without a trailing space.
6163 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
6164 separate command-line arguments, to specify the encoding, since
6165 that's how hunspell expects it.
6166
6167 2012-04-08 Glenn Morris <rgm@gnu.org>
6168
6169 * loadup.el: Load bindings before cus-start.
6170 This reduces somewhat the number of "rogue" settings in emacs -Q.
6171
6172 2012-04-07 Glenn Morris <rgm@gnu.org>
6173
6174 * version.el (emacs-bzr-get-version): New function.
6175 (emacs-bzr-version): New variable.
6176 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
6177 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
6178
6179 2012-04-07 Eli Zaretskii <eliz@gnu.org>
6180
6181 * international/uni-bidi.el, international/uni-category.el:
6182 * international/uni-combining.el, international/uni-decimal.el:
6183 * international/uni-decomposition.el, international/uni-digit.el:
6184 * international/uni-lowercase.el, international/uni-mirrored.el:
6185 * international/uni-name.el, international/uni-numeric.el:
6186 * international/uni-titlecase.el, international/uni-uppercase.el:
6187 Update for Unicode 6.1.
6188
6189 2012-04-07 Eli Zaretskii <eliz@gnu.org>
6190
6191 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
6192
6193 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
6194
6195 * window.el (shrink-window): Mention the `window-min-height'
6196 variable in the doc string.
6197
6198 2012-04-05 Bastien Guerry <bzg@altern.org>
6199
6200 * color.el (color-lighten-name): Fix typo.
6201
6202 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6203
6204 * server.el (server--on-display-p): New function.
6205 (server--on-display-p): Use it.
6206
6207 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
6208
6209 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
6210 (bug#11145).
6211
6212 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6213
6214 * comint.el (comint--common-quoted-suffix): Check string boundary
6215 before comparing (bug#11158).
6216 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
6217
6218 2012-04-04 Chong Yidong <cyd@gnu.org>
6219
6220 * minibuffer.el (completion-extra-properties): Doc fix.
6221
6222 * subr.el (delayed-warnings-hook): Doc fix.
6223
6224 2012-04-04 Daiki Ueno <ueno@unixuser.org>
6225
6226 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
6227 selection (Bug#11159).
6228 (epa-insert-keys): Inform that the default public key will be
6229 exported if no key is selected.
6230
6231 2012-04-04 Richard Stallman <rms@gnu.org>
6232
6233 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
6234
6235 2012-04-03 Chong Yidong <cyd@gnu.org>
6236
6237 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
6238 mail-insert-file, not its obsolete alias mail-attach-file.
6239
6240 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
6241
6242 * notifications.el (notifications-notify): Fix docstring.
6243
6244 2012-04-02 Glenn Morris <rgm@gnu.org>
6245
6246 * emacs-lisp/authors.el (authors-aliases): Another addition.
6247
6248 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
6249
6250 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
6251 `tramp-compat-call-process' instead of `tramp-local-call-process'.
6252 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
6253
6254 2012-04-01 Chong Yidong <cyd@gnu.org>
6255
6256 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
6257 Handle root directory properly.
6258 (copy-directory): Caller changed.
6259
6260 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
6261 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
6262
6263 2012-03-31 Glenn Morris <rgm@gnu.org>
6264
6265 * term/xterm.el (xterm-extra-capabilities): Doc fix.
6266
6267 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
6268
6269 * calendar/calendar.el (calendar-window-list)
6270 (calendar-hide-window): Restore. (Bug#11140)
6271 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
6272
6273 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
6274
6275 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6276
6277 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
6278 Check if file is a symlink (Bug#10489).
6279
6280 * files.el (copy-directory): Likewise.
6281
6282 2012-03-30 Chong Yidong <cyd@gnu.org>
6283
6284 * image.el (imagemagick-types-inhibit)
6285 (imagemagick-register-types): Doc fix.
6286
6287 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6288
6289 * textmodes/ispell.el (ispell-get-extended-character-mode):
6290 Disable extended-char-mode for hunspell. hunspell does not support it
6291 and treats ~word as ordinary words in pipe mode.
6292
6293 2012-03-30 Glenn Morris <rgm@gnu.org>
6294
6295 * tutorial.el (help-with-tutorial): Ensure local variables don't
6296 happen to make the buffer read-only. (Bug#11127)
6297
6298 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
6299
6300 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
6301 (perl-calculate-indent): Return `noindent' in strings.
6302
6303 2012-03-28 Sam Steingold <sds@gnu.org>
6304
6305 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
6306 instead of the broken adhockery which does not prevent calendar
6307 buffers from being displayed at random after exit.
6308 (calendar-window-list, calendar-hide-window): Remove the broken
6309 adhockery.
6310
6311 2012-03-28 Glenn Morris <rgm@gnu.org>
6312
6313 * replace.el (query-replace-map): Doc fix.
6314
6315 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
6316
6317 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
6318 contents. (Bug#11109)
6319
6320 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
6321
6322 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
6323 (bug#11077).
6324 (avl-tree--check, avl-tree--check-node): New funs.
6325
6326 2012-03-27 Martin Rudalics <rudalics@gmx.at>
6327
6328 * window.el (switch-to-visible-buffer): New option.
6329 (switch-to-prev-buffer, switch-to-next-buffer):
6330 Observe switch-to-visible-buffer. Make sure that checking for a window
6331 showing a buffer already is done on the same frame.
6332
6333 2012-03-27 Glenn Morris <rgm@gnu.org>
6334
6335 * startup.el (mail-host-address): Doc fix.
6336
6337 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6338
6339 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
6340 than 197 variables.
6341
6342 2012-03-26 Ami Fischman <ami@fischman.org>
6343
6344 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
6345
6346 2012-03-26 Glenn Morris <rgm@gnu.org>
6347
6348 * files.el (save-buffers-kill-emacs): Doc fix.
6349
6350 * startup.el (normal-top-level, command-line, command-line-1):
6351 Give them doc strings.
6352
6353 2012-03-25 Eli Zaretskii <eliz@gnu.org>
6354
6355 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
6356 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
6357
6358 2012-03-25 Chong Yidong <cyd@gnu.org>
6359
6360 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
6361 theme if it was previously enabled before (Bug#11031).
6362
6363 * cus-theme.el (custom-theme-write-faces): Retrieve current face
6364 spec with custom-face-get-current-spec if its :shown-value is not
6365 determined yet (Bug#9337).
6366 (customize-create-theme, custom-theme-revert): Doc fixes.
6367
6368 * button.el (button-at): Minor addition to docstring.
6369
6370 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
6371
6372 * vc/vc.el (vc-merge): Fix a prompt.
6373
6374 2012-03-24 Chong Yidong <cyd@gnu.org>
6375
6376 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
6377 point (Bug#9623).
6378
6379 * button.el (button-at): Minor addition to docstring.
6380
6381 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
6382
6383 * newcomment.el (comment-choose-indent): No space after BOL.
6384
6385 2012-03-22 Sam Steingold <sds@gnu.org>
6386
6387 * window.el (switch-to-prev-buffer): Revert last patch because the
6388 bug turned out to be an advertised feature (Elisp manual 28.14).
6389
6390 2012-03-22 Glenn Morris <rgm@gnu.org>
6391
6392 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
6393 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
6394
6395 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
6396
6397 * net/network-stream.el (network-stream-open-starttls): Make error
6398 message under Windows be less misleading.
6399
6400 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
6401
6402 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
6403 understands (bug#9942).
6404
6405 2012-03-22 Chong Yidong <cyd@gnu.org>
6406
6407 * simple.el (end-of-visible-line): Handle return value of
6408 next-single-property-change properly (Bug#9371).
6409
6410 2012-03-22 Kenichi Handa <handa@m17n.org>
6411
6412 * international/quail.el (quail-insert-kbd-layout): Fix previous
6413 change. To avoid unwanted bidi reordering, use
6414 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
6415
6416 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
6417
6418 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
6419 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
6420 (ruby-beginning-of-indent): Be more careful with the difference
6421 between word-boundary and symbol boundary.
6422 (ruby-mode-syntax-table): Make : a symbol constituent.
6423
6424 2012-03-21 Andreas Politz <politza@fh-trier.de>
6425
6426 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
6427
6428 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
6429
6430 * progmodes/etags.el (tags-completion-at-point-function):
6431 Improve last fix.
6432
6433 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
6434
6435 2012-03-21 Sam Steingold <sds@gnu.org>
6436
6437 * progmodes/etags.el (tags-completion-at-point-function):
6438 Avoid the error when point is inside the pattern.
6439
6440 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
6441
6442 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
6443 line (Bug#10855).
6444
6445 2012-03-21 Drew Adams <drew.adams@oracle.com>
6446
6447 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
6448
6449 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
6450
6451 * ido.el (ido-set-current-directory, ido-read-internal)
6452 (ido-choose-completion-string, ido-completion-help): Handle nil
6453 value of ido-completion-buffer (Bug#11008).
6454
6455 2012-03-21 Sam Steingold <sds@gnu.org>
6456
6457 * window.el (switch-to-prev-buffer): Do not switch to a visible
6458 window previous buffer, just like with the frame previous buffers.
6459
6460 2012-03-21 Chong Yidong <cyd@gnu.org>
6461
6462 * faces.el (make-face, make-empty-face, copy-face):
6463 * face-remap.el (face-remap-add-relative, face-remap-set-base):
6464 Doc fixes.
6465
6466 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
6467
6468 * wid-edit.el (widget-complete-field): Remove (bug#11051).
6469 (widget-complete): Remove broken use of it.
6470
6471 2012-03-20 Chong Yidong <cyd@gnu.org>
6472
6473 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
6474 Use string-width and truncate-string-width to handle arbitrary
6475 characters.
6476
6477 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
6478
6479 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
6480 to draw rectangles, not squares. (Regression introduced by revno
6481 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
6482
6483 2012-03-18 Chong Yidong <cyd@gnu.org>
6484
6485 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
6486 it is not yet defined (for temacs).
6487
6488 2012-03-18 Leo Liu <sdl.web@gmail.com>
6489
6490 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
6491
6492 2012-03-17 Eli Zaretskii <eliz@gnu.org>
6493
6494 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
6495 (ispell-choices-win-default-height, ispell-silently-savep)
6496 (ispell-dictionary-alist, ispell-encoding8-command)
6497 (ispell-check-version, ispell-aspell-find-dictionary)
6498 (ispell-valid-dictionary-list, ispell-words-keyword)
6499 (ispell-get-word, ispell-internal-change-dictionary)
6500 (ispell-region, ispell-skip-region-list)
6501 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
6502 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
6503 (ispell-message-text-end, ispell-message)
6504 (ispell-buffer-local-parsing): Doc fix.
6505
6506 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
6507
6508 * htmlfontify.el: Add support for code block fontification for ODT
6509 export (Bug #9914).
6510 (hfy-optimisations): Define new option
6511 `body-text-only'
6512 (hfy-fontify-buffer): Honor above setting.
6513 (hfy-begin-span, hfy-end-span): New routines factored out form
6514 `hfy-fontify-buffer'.
6515 (hfy-begin-span-handler, hfy-end-span-handler): New variables
6516 that permit insertion of custom tags.
6517 (hfy-fontify-buffer): Use above handlers.
6518 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
6519 (hfy-face-to-css): Re-defined to be a variable.
6520 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
6521 over multiple runs. This is made possible by having the caller let
6522 bind a special variable `hfy-user-sheet-assoc'.
6523 (htmlfontify-string): New defun.
6524 (hfy-compile-face-map): Make sure that the last char in the
6525 buffer is correctly fontified.
6526 (hfy-face-resolve-face): Whitespace only change.
6527
6528 2012-03-17 Eli Zaretskii <eliz@gnu.org>
6529
6530 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
6531 message more clear.
6532
6533 2012-03-16 Leo Liu <sdl.web@gmail.com>
6534
6535 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
6536
6537 2012-03-16 Alan Mackenzie <acm@muc.de>
6538
6539 Further optimise the handling of large macros.
6540
6541 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
6542 limit to a call of `c-literal-limits'.
6543 (c-determine-+ve-limit): New function.
6544 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
6545 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
6546 In CASE 5B, restrict a search limit to 500.
6547 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
6548
6549 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
6550 Restrict macro bounds to +-500 from after-change's BEG END.
6551
6552 2012-03-16 Leo Liu <sdl.web@gmail.com>
6553
6554 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
6555
6556 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
6557
6558 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
6559 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6560
6561 2012-03-16 Glenn Morris <rgm@gnu.org>
6562
6563 * view.el (view-buffer, view-buffer-other-window)
6564 (view-buffer-other-frame): Doc fixes re special mode-class.
6565
6566 * subr.el (eval-after-load): If named feature is provided not from
6567 a file, run after-load forms. (Bug#10946)
6568
6569 * calendar/calendar.el (calendar-insert-at-column):
6570 Handle non-unit-width characters a bit better. (Bug#10978)
6571
6572 2012-03-15 Chong Yidong <cyd@gnu.org>
6573
6574 * emacs-lisp/ring.el (ring-extend): New function.
6575 (ring-insert+extend): Extend the ring correctly (Bug#11019).
6576
6577 * comint.el (comint-read-input-ring)
6578 (comint-add-to-input-history): Grow comint-input-ring lazily.
6579
6580 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
6581
6582 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
6583 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
6584
6585 * imenu.el: Fix multiple inheritance breakage (bug#9199).
6586 (imenu-add-to-menubar): Don't add a redundant index.
6587 (imenu-update-menubar): Handle a dynamically composed keymap.
6588
6589 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
6590
6591 * mail/sendmail.el (mail-encode-header):
6592 Bind rfc2047-encode-encoded-words to nil.
6593
6594 2012-03-13 Glenn Morris <rgm@gnu.org>
6595
6596 * calendar/calendar.el (calendar-string-spread):
6597 Handle non-unit-width characters a bit better. (Bug#10978)
6598
6599 2012-03-13 Leo Liu <sdl.web@gmail.com>
6600
6601 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
6602 directory and file as argument (Bug#10822).
6603
6604 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
6605
6606 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
6607 For dynamically generated code, follow $PC.
6608 (gdb-disassembly-handler-custom): Handle no function name case.
6609
6610 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
6611
6612 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
6613 * emulation/ws-mode.el (ws-query-replace):
6614 * sort.el (sort-regexp-fields):
6615 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
6616
6617 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6618
6619 * dabbrev.el: Fix cycle completion order (bug#10963).
6620 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
6621 (dabbrev-completion): Don't use an obarray; provide
6622 a cycle-sort-function.
6623
6624 2012-03-12 Leo Liu <sdl.web@gmail.com>
6625
6626 * simple.el (kill-new): Use equal-including-properties for comparison.
6627 (kill-do-not-save-duplicates): Doc fix.
6628
6629 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6630
6631 * dabbrev.el: Fix cycle completion (bug#10963).
6632 Use lexical binding and wrap to 80 columns.
6633 (dabbrev-completion): Delay computing the list of completions.
6634
6635 2012-03-12 Kenichi Handa <handa@m17n.org>
6636
6637 * international/quail.el (quail-insert-kbd-layout): Surround each
6638 row by LRO and PDF instead of inserting many LRMs. Pad the left
6639 and right of each non-spacing marks. Insert invisible space
6640 between lower and upper characters to prevent composition.
6641
6642 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6643
6644 * minibuffer.el (minibuffer-complete): Don't get confused when the
6645 function is run twice via different commands (bug#10958).
6646 (complete-with-action): Fix docstring.
6647
6648 2012-03-12 Chong Yidong <cyd@gnu.org>
6649
6650 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
6651 (nxml-completion-at-point-function): New function.
6652 (nxml-mode): Use it.
6653 (nxml-bind-meta-tab-to-complete-flag): Default to t.
6654
6655 * emacs-lisp/package.el (package-unpack, package-unpack-single):
6656 Load generated autoloads file before byte compiling (Bug#10970).
6657 (package--make-autoloads-and-compile): New helper fun.
6658
6659 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
6660
6661 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
6662
6663 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
6664
6665 * autorevert.el (auto-revert-handler): Ensure, that
6666 file-readable-p is applied only for local files or in
6667 auto-revert-tail-mode.
6668
6669 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
6670
6671 * server.el (server-eval-at): Handle non-tcp connections.
6672 Decode result string.
6673
6674 * server.el (server-msg-size): New constant.
6675 (server-reply-print): New function.
6676 (server-eval-and-print): Use it.
6677 (server-eval-at): Use server-quote-arg and server-unquote-arg.
6678 Handle -print-nonl.
6679
6680 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
6681
6682 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
6683 (Bug#10987).
6684
6685 2012-03-11 Chong Yidong <cyd@gnu.org>
6686
6687 * simple.el (goto-line): Doc fix (Bug#9938).
6688
6689 * subr.el (save-window-excursion): Doc fix (Bug#9979).
6690
6691 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
6692 when finished (Bug#10963).
6693
6694 2012-03-11 Martin Rudalics <rudalics@gmx.at>
6695
6696 * window.el (split-window-below): Fix bug in case where
6697 split-window-keep-point is nil (Bug#10971).
6698
6699 2012-03-11 Juri Linkov <juri@jurta.org>
6700
6701 * replace.el (replace-highlight): Set isearch-word to nil
6702 unconditionally. (Bug#10887)
6703
6704 2012-03-10 Eli Zaretskii <eliz@gnu.org>
6705
6706 * net/mairix.el (mairix-replace-invalid-chars): Rename from
6707 mairix-replace-illegal-chars; all callers changed. Don't remove
6708 ^, ~, and = characters: they are meaningful in mairix search specs.
6709 (mairix-widget-create-query): Add usage information about mairix
6710 search forms: negating words, searching for substrings, etc.
6711
6712 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
6713
6714 * international/fontset.el (font-encoding-alist): Add an entry for
6715 ksx1001 (Bug#5667).
6716
6717 2012-03-10 Richard Stallman <rms@gnu.org>
6718
6719 * mail/sendmail.el (mail-encode-header):
6720 Set rfc2047-encode-encoded-words.
6721
6722 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
6723
6724 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
6725 view buffer means not swapped.
6726 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
6727 (rmail-write-region-annotate): Error if real text has disappeared.
6728
6729 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
6730
6731 2012-03-10 Chong Yidong <cyd@gnu.org>
6732
6733 * emulation/cua-rect.el (cua--init-rectangles):
6734 * emulation/cua-base.el (cua--init-keymaps):
6735 Add delete-forward-char to remappings (Bug#9666).
6736
6737 2012-03-10 Martin Rudalics <rudalics@gmx.at>
6738
6739 * speedbar.el (speedbar-unhighlight-one-tag-line):
6740 Avoid unhighlighting due to frame switching (Bug#10275).
6741
6742 2012-03-10 Chong Yidong <cyd@gnu.org>
6743
6744 * minibuffer.el (completion-in-region, completion-help-at-point):
6745 Give the completion field overlay a high priority (Bug#6830).
6746
6747 * dired.el (dired-goto-file): Recognize absolute file name
6748 listings (Bug#7126).
6749 (dired-goto-file-1): New helper function.
6750 (dired-toggle-read-only): Inhibit warnings.
6751
6752 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
6753
6754 * net/dbus.el (dbus-property-handler): Return empty array if
6755 there are no properties.
6756
6757 2012-03-09 Leo Liu <sdl.web@gmail.com>
6758
6759 * savehist.el (savehist-printable): Stricter check for string
6760 value (Bug#10937).
6761
6762 2012-03-09 Eli Zaretskii <eliz@gnu.org>
6763
6764 * mail/smtpmail.el (smtpmail-send-it):
6765 Bind coding-system-for-write to *-unix, so that FCC files are kept in
6766 valid mbox format.
6767
6768 2012-03-09 Glenn Morris <rgm@gnu.org>
6769
6770 * files.el (dir-locals-find-file):
6771 Don't check result is regular, readable.
6772 (dir-locals-read-from-file): Demote errors.
6773
6774 2012-03-08 Eli Zaretskii <eliz@gnu.org>
6775
6776 * international/quail.el (quail-insert-kbd-layout):
6777 Insert invisible LRM characters before each character in a keyboard
6778 layout cell, to prevent their reordering by bidi display engine.
6779 For details, see the discussion in
6780 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
6781
6782 2012-03-08 Alan Mackenzie <acm@muc.de>
6783
6784 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
6785 the starting position; make it extend the marked region when
6786 invoked repeatedly - all under appropriate circumstances.
6787 Fixes bugs #5525, #10906.
6788
6789 2012-03-08 Glenn Morris <rgm@gnu.org>
6790
6791 * files.el (locate-dominating-file, dir-locals-find-file):
6792 Undo 2012-03-06 change.
6793
6794 2012-03-07 Eli Zaretskii <eliz@gnu.org>
6795
6796 * international/quail.el (quail-help):
6797 Force bidi-paragraph-direction be left-to-right. See discussion in
6798 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
6799 for the reason.
6800
6801 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
6802
6803 Avoid superfluous registering of signals. (Bug#10807)
6804
6805 * notifications.el (notifications-on-action-object)
6806 (notifications-on-close-object): New defvars.
6807 (notifications-on-action-signal, notifications-on-closed-signal):
6808 Unregister the signal if not needed any longer.
6809 (notifications-notify): Register `notifications-action-signal' or
6810 `notifications-closed-signal', if :on-action or :on-close has been
6811 passed as argument.
6812
6813 2012-03-07 Chong Yidong <cyd@gnu.org>
6814
6815 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
6816 non-X platforms.
6817
6818 2012-03-06 Glenn Morris <rgm@gnu.org>
6819
6820 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
6821 (x-disown-selection-internal, x-get-selection-internal):
6822 Doc fix (add arglist signatures). (Bug#10783)
6823
6824 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
6825
6826 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
6827 Handle breakpoints with no "type".
6828
6829 2012-03-06 Glenn Morris <rgm@gnu.org>
6830
6831 * files.el (locate-dominating-file): Add optional predicate argument.
6832 (dir-locals-find-file): Make use of above change.
6833
6834 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
6835
6836 * info.el (Info-insert-dir): Also try "dir.gz".
6837
6838 2012-03-06 Glenn Morris <rgm@gnu.org>
6839
6840 * files.el (dir-locals-find-file):
6841 Ignore non-readable or non-regular files. (Bug#10928)
6842
6843 * files.el (locate-dominating-file): Doc fix.
6844
6845 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
6846
6847 * calendar/calendar.el (calendar-set-mode-line):
6848 `getenv' returns a string. (Bug#10951)
6849
6850 2012-03-05 Leo Liu <sdl.web@gmail.com>
6851
6852 * simple.el (backward-delete-char-untabify): Constrain point to
6853 field (Bug#10939).
6854
6855 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
6856
6857 2012-03-05 Chong Yidong <cyd@gnu.org>
6858
6859 * simple.el (count-words): If called from Lisp, return the word
6860 count, for symmetry with `count-lines'. Arglist changed.
6861 (count-words--message): Args changed. Consolidate counting code
6862 from count-words and count-words-region.
6863 (count-words-region): Caller changed.
6864 (count-lines-region): Make it an obsolete alias.
6865
6866 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
6867
6868 * saveplace.el (save-place-to-alist)
6869 (save-place-ignore-files-regexp): Allow value nil to disable this
6870 feature.
6871
6872 2012-03-04 Chong Yidong <cyd@gnu.org>
6873
6874 * faces.el (face-spec-reset-face): For the default face, reset the
6875 attributes to default values (Bug#10748).
6876
6877 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
6878
6879 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
6880 previous patch: Check `message-send-mail-function', and not the
6881 default function (bug#10897).
6882
6883 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
6884
6885 * notifications.el (notifications-on-action-signal)
6886 (notifications-on-closed-signal): Check for unique service name of
6887 incoming event. Fix error in removing entry.
6888 (top): Register for signals with wildcard service name.
6889 (notifications-notify): Use daemon unique service name for map entries.
6890
6891 2012-03-04 Chong Yidong <cyd@gnu.org>
6892
6893 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
6894
6895 2012-03-04 Glenn Morris <rgm@gnu.org>
6896
6897 * abbrev.el (copy-abbrev-table, abbrev-table-p)
6898 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
6899 (expand-abbrev, define-abbrev-table): Doc fixes.
6900
6901 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6902
6903 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
6904 `message-default-send-mail-function' and not `send-mail-function'
6905 when doing the prompting for `sendmail-query-once' before sending
6906 in Message buffers (bug#10897).
6907
6908 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
6909 This is inconsistent with all the other stream functions, which leave
6910 the setting up to the higher levels (if so wanted) (bug#10931).
6911
6912 2012-03-02 Alan Mackenzie <acm@muc.de>
6913
6914 Depessimize the handling of very large macros.
6915
6916 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
6917 (c-macro-cache-syntactic): New variables to implement a one
6918 element macro cache.
6919 (c-invalidate-macro-cache): New function.
6920 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
6921 Adapt to use the new cache.
6922 (c-state-safe-place): Use better the cache of safe positions.
6923 (c-state-semi-nonlit-pos-cache)
6924 (c-state-semi-nonlit-pos-cache-limit):
6925 New variables for...
6926 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
6927 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
6928 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
6929 Use c-state-semi-safe-place.
6930
6931 * progmodes/cc-langs.el (c-get-state-before-change-functions):
6932 Add c-invalidate-macro-cache to the C, C++, Obj entries.
6933
6934 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
6935
6936 * jka-compr.el (jka-compr-call-process):
6937 Apply `file-accessible-directory-p' only when the default directory is
6938 not remote.
6939
6940 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
6941
6942 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
6943 access of FILE2, if FILE1 does not exist.
6944
6945 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
6946 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
6947
6948 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
6949 Add "PAGER=" to `process-environment'.
6950
6951 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
6952
6953 * progmodes/sql.el: Bug fix
6954 (sql-get-login-ext): Save login values in globals.
6955 (sql-get-login): Use new version of `sql-get-login-ext'.
6956 (sql-interactive-mode): Set global `sql-connection' to nil.
6957 (sql-connect): Set global values for connection.
6958 (sql-product-interactive): Save global values as buffer local.
6959
6960 2012-02-29 Leo Liu <sdl.web@gmail.com>
6961
6962 * abbrev.el (define-abbrevs): Reset sys to nil.
6963
6964 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6965
6966 * files.el (file-equal-p): Rename from `files-equal-p'.
6967 Return nil when one or both files don't exist.
6968 (file-subdir-of-p): Now only top directory must exists,
6969 return nil if it doesn't.
6970 (copy-directory): No need to test with `file-subdir-of-p' after
6971 creating dir.
6972 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
6973 to `file-equal-p'.
6974
6975 2012-02-28 Glenn Morris <rgm@gnu.org>
6976
6977 * shell.el (shell-mode):
6978 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
6979 * play/landmark.el (landmark-font-lock-face-O):
6980 * play/handwrite.el (handwrite):
6981 * play/gomoku.el (gomoku-O):
6982 * net/browse-url.el (browse-url-browser-display):
6983 * international/mule.el (define-charset):
6984 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
6985 * filesets.el (filesets-find-file-delay):
6986 * eshell/em-xtra.el (eshell-xtra):
6987 * eshell/em-unix.el (eshell-grep):
6988 * emulation/viper.el (viper-mode):
6989 * emacs-lisp/regexp-opt.el (regexp-opt-group):
6990 * emacs-lisp/easymenu.el (easy-menu-define):
6991 * calendar/timeclock.el (timeclock-use-display-time):
6992 * bs.el (bs-mode):
6993 * bookmark.el (bookmark-save-flag):
6994 Doc fix (standardize possessive apostrophe usage).
6995
6996 2012-02-27 Chong Yidong <cyd@gnu.org>
6997
6998 * emulation/viper-cmd.el (viper-intercept-ESC-key):
6999 Fix key-binding lookup for ESC key (Bug#9146).
7000
7001 * font-lock.el (font-lock-specified-p): Rename from
7002 font-lock-spec-present. Callers changed.
7003
7004 2012-02-27 Daniel Hackney <dan@haxney.org>
7005
7006 * emacs-lisp/package.el (package-compute-transaction):
7007 Handle holding a package version to t in package-load-list.
7008
7009 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
7010
7011 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
7012 (tramp-get-inode, tramp-get-device): Use cached values.
7013
7014 2012-02-26 Alan Mackenzie <acm@muc.de>
7015
7016 Check there is a font-lock specification before doing initial
7017 fontification.
7018
7019 * font-core.el (font-lock-mode): Move the conditional from
7020 :after-hook to font-lock-initial-fontify.
7021 (font-lock-default-function): Move the check for a specification
7022 to font-lock-spec-present.
7023
7024 * font-lock.el (font-lock-initial-fontify): Call ...
7025 (font-lock-spec-present): New function.
7026
7027 2012-02-26 Jim Blandy <jimb@red-bean.com>
7028
7029 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
7030 (gdb-send): Apply it to the operand of the '-interpreter-exec
7031 console' command, so that we can pass arguments with (say) quotes
7032 in them. Store exact string sent in gdb-debug-log (Bug#10765).
7033
7034 2012-02-26 Chong Yidong <cyd@gnu.org>
7035
7036 * help-fns.el (describe-function-1): Clarify description of
7037 remapping (Bug#10844).
7038
7039 * files.el (files-equal-p): Doc fix.
7040 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
7041 and quit the loop once a mismatch is found.
7042
7043 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
7044
7045 * bs.el (bs--show-with-configuration): Don't throw an error
7046 if the window cannot be split; otherwise, subsequent calls to
7047 bs-show fail, restoring a stale window config. (Bug#10882)
7048
7049 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
7050
7051 * term/ns-win.el (global-map): Bind ns-drag-file to
7052 ns-find-file (Bug#5855, Bug#10050).
7053
7054 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
7055
7056 * calendar/parse-time.el (parse-time-string): Allow extractor to
7057 return nil.
7058
7059 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
7060
7061 * net/tramp.el (tramp-file-name-for-operation):
7062 Add `files-equal-p' and `file-subdir-of-p'.
7063
7064 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7065 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7066 Add COPY-CONTENTS argument.
7067
7068 2012-02-25 Chong Yidong <cyd@gnu.org>
7069
7070 Add custom groups for VC backends, for consistency with vc-bzr.
7071
7072 * vc/vc-arch.el (vc-arch):
7073 * vc/vc-cvs.el (vc-cvs):
7074 * vc/vc-git.el (vc-git):
7075 * vc/vc-hg.el (vc-hg):
7076 * vc/vc-mtn.el (vc-mtn):
7077 * vc/vc-rcs.el (vc-rcs):
7078 * vc/vc-sccs.el (vc-sccs):
7079 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
7080 All relevant defcustoms reassigned.
7081
7082 2012-02-25 Chong Yidong <cyd@gnu.org>
7083
7084 * newcomment.el (comment-styles): Add autoload (Bug#10868).
7085
7086 * term/x-win.el (x-initialize-window-system): Reduce default for
7087 x-selection-timeout to 5 seconds (Bug#8869).
7088
7089 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7090
7091 * files.el (files-equal-p, file-subdir-of-p): New functions.
7092 (copy-directory): Error when trying to copy a directory on itself.
7093 Add missing copy-contents arg to tramp handler.
7094 * dired-aux.el (dired-copy-file-recursive): Same.
7095 (dired-create-files): Modify destination when source is equal to
7096 dest when copying files.
7097 Return also when dest is a subdir of source. (Bug#10489)
7098
7099 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
7100
7101 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
7102 (Bug#10874)
7103
7104 2012-02-23 Alan Mackenzie <acm@muc.de>
7105
7106 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
7107 parameter "after-hook:" to allow the expansion to run code after
7108 the execution of the mode hooks.
7109
7110 * font-lock.el (font-lock-initial-fontify): New function extracted
7111 from font-lock-mode-internal.
7112
7113 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
7114 :after-hook.
7115
7116 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7117
7118 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
7119 (completion--cache-all-sorted-completions): New function.
7120 (completion-all-sorted-completions): Use it.
7121 (completion--do-completion, minibuffer-force-complete):
7122 Use it to re-instate the flush hook.
7123
7124 * icomplete.el (icomplete-completions): Replace last fix with a better
7125 one (bug#10850).
7126
7127 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
7128
7129 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
7130 when it might call us back infinitely (bug#10797).
7131
7132 2012-02-23 Glenn Morris <rgm@gnu.org>
7133
7134 * minibuffer.el (completion-category-overrides): Doc fix.
7135
7136 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7137
7138 * minibuffer.el (completion-table-with-context): Fix inf-loop.
7139 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
7140
7141 2012-02-23 Glenn Morris <rgm@gnu.org>
7142
7143 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
7144 (authors-obsolete-files-regexps, authors-ignored-files)
7145 (authors-ambiguous-files, authors-renamed-files-alist):
7146 Add more entries.
7147
7148 2012-02-23 Juri Linkov <juri@jurta.org>
7149
7150 * isearch.el (isearch-occur): Sync interactive spec with occur's
7151 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
7152
7153 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
7154
7155 2012-02-22 Juri Linkov <juri@jurta.org>
7156
7157 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
7158 (ucs-insert): Doc fix. Check for hex digits in the string.
7159 Don't display `nil' in the error message. (Bug#10857)
7160
7161 2012-02-22 Alan Mackenzie <acm@muc.de>
7162
7163 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
7164
7165 2012-02-22 Glenn Morris <rgm@gnu.org>
7166
7167 * ffap.el (ffap-c-path):
7168 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
7169
7170 2012-02-22 Chong Yidong <cyd@gnu.org>
7171
7172 * custom.el (load-theme): Doc fix.
7173
7174 2012-02-22 Glenn Morris <rgm@gnu.org>
7175
7176 * dired-x.el (dired-guess-shell-alist-default):
7177 Remove escape sequences from nroff output. (Bug#172)
7178
7179 2012-02-21 Glenn Morris <rgm@gnu.org>
7180
7181 * vc/emerge.el (emerge-defvar-local):
7182 Set `permanent-local' property rather than unused `preserved'.
7183
7184 * textmodes/picture.el (picture-delete-char): New alias.
7185 (picture-mode-map): Use it. (Bug#10860)
7186 (picture-mode): Doc fix.
7187
7188 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
7189
7190 * newcomment.el (uncomment-region-default): Remove unused binding.
7191
7192 2012-02-21 Glenn Morris <rgm@gnu.org>
7193
7194 * textmodes/picture.el (picture-motion, picture-motion-reverse)
7195 (picture-self-insert, picture-tab-chars): Doc fix.
7196 (picture-mode-map): Fix C-a, C-e.
7197
7198 2012-02-20 Glenn Morris <rgm@gnu.org>
7199
7200 * emacs-lisp/authors.el (authors-aliases): Add another entry.
7201
7202 2012-02-20 Leo Liu <sdl.web@gmail.com>
7203
7204 * icomplete.el (icomplete-completions): Check FROM arg before
7205 passing to substring (Bug#10850).
7206
7207 2012-02-19 Chong Yidong <cyd@gnu.org>
7208
7209 * comint.el: Require ansi-color.
7210 (comint-output-filter-functions): Add ansi-color-process-output.
7211
7212 * ansi-color.el: Don't set comint-output-filter-functions; it is
7213 now in the initial value defined in comint.el.
7214 (ansi-color-apply-face-function): New variable.
7215 (ansi-color-apply-on-region): Use it.
7216 (ansi-color-apply-overlay-face): New function.
7217
7218 * shell.el (shell): No need to require ansi-color.
7219 (shell-mode): Use ansi-color-apply-face-function to highlight
7220 color escapes using font-lock-face property (Bug#10835).
7221
7222 2012-02-19 Chong Yidong <cyd@gnu.org>
7223
7224 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
7225 mode-line formats (Bug#10839).
7226
7227 2012-02-18 Glenn Morris <rgm@gnu.org>
7228
7229 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
7230
7231 * mail/undigest.el (unforward-rmail-message): Doc fix.
7232
7233 * saveplace.el (save-place-ignore-files-regexp): Add :version.
7234
7235 2012-02-18 Eli Zaretskii <eliz@gnu.org>
7236
7237 * international/characters.el (script-list): Sync with the latest
7238 Unicode Character Database.
7239
7240 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
7241
7242 * international/titdic-cnv.el: Remove duplicate coding tag.
7243 * language/cham.el: Likewise.
7244 * language/tai-viet.el: Likewise.
7245
7246 2012-02-18 Glenn Morris <rgm@gnu.org>
7247
7248 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
7249 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
7250 (calendar-bahai-all-holidays-flag, calendar-other-dates):
7251 * calendar/diary-lib.el (diary-abbreviated-year-flag):
7252 * calendar/holidays.el (holiday-bahai-holidays)
7253 (calendar-holidays, list-holidays):
7254 Use utf-8 Bahá'í in doc-strings, menus, etc.
7255
7256 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
7257
7258 * saveplace.el (save-place-ignore-files-regexp): New variable
7259 allowing for excluding files from saving their location of point.
7260 The default value matches the temporary commit message editing
7261 files from Git, SVN, Bazaar, and Mercurial.
7262 (save-place-to-alist): Use it.
7263
7264 2012-02-17 Lawrence Mitchell <wence@gmx.li>
7265 Stefan Monnier <monnier@iro.umontreal.ca>
7266
7267 * newcomment.el (uncomment-region-default): Don't leave extra space
7268 when an arg is provided (bug#8150).
7269
7270 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
7271
7272 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
7273
7274 2012-02-17 Glenn Morris <rgm@gnu.org>
7275
7276 * net/socks.el: Require network-stream. (Bug#10599)
7277
7278 2012-02-17 Kenichi Handa <handa@m17n.org>
7279
7280 * international/charprop.el:
7281 * international/uni-name.el:
7282 * international/uni-old-name.el:
7283 * international/uni-comment.el: Regenerate.
7284
7285 2012-02-16 Glenn Morris <rgm@gnu.org>
7286
7287 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
7288 Interactively in calendar buffer, give an error if not on a date.
7289
7290 2012-02-15 Glenn Morris <rgm@gnu.org>
7291
7292 * shell.el (shell-delimiter-argument-list):
7293 Revert 2011-02-17 change. (Bug#8027)
7294
7295 2012-02-15 Chong Yidong <cyd@gnu.org>
7296
7297 * minibuffer.el (completion-at-point-functions): Doc fix.
7298
7299 * custom.el (defcustom): Doc fix; note use of defvar.
7300
7301 2012-02-15 Glenn Morris <rgm@gnu.org>
7302
7303 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
7304 Doc fixes.
7305
7306 2012-02-14 Glenn Morris <rgm@gnu.org>
7307
7308 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
7309
7310 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
7311
7312 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
7313 way the ports list is computed.
7314 (smtpmail-query-smtp-server): Prompt the user for a port number if
7315 we can't connect to any of the standard ports (bug#10810).
7316
7317 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
7318
7319 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
7320
7321 2012-02-13 Glenn Morris <rgm@gnu.org>
7322
7323 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
7324
7325 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
7326
7327 * net/gnutls.el (gnutls-trustfiles): New variable.
7328 (gnutls-negotiate): Use it.
7329
7330 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
7331
7332 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
7333 does its stuff if Gnus is running.
7334
7335 2012-02-13 Alan Mackenzie <acm@muc.de>
7336
7337 Fix a loop in c-set-fl-decl-start.
7338
7339 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
7340 c-backward-syntactic-ws actually moves backwards.
7341
7342 2012-02-13 Leo Liu <sdl.web@gmail.com>
7343
7344 * net/rcirc.el (rcirc-markup-attributes): Move point to the
7345 beginning so that all \C-o chars are removed.
7346
7347 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
7348
7349 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
7350
7351 2012-02-12 Alan Mackenzie <acm@muc.de>
7352
7353 Fix infinite loop with long macros.
7354 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
7355
7356 2012-02-12 Chong Yidong <cyd@gnu.org>
7357
7358 * window.el (display-buffer): Doc fix (Bug#10785).
7359
7360 2012-02-12 Glenn Morris <rgm@gnu.org>
7361
7362 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
7363 (x-disown-selection-internal, x-get-selection-internal):
7364 Sync docs with the xselect.c versions.
7365
7366 * allout-widgets.el: Add missing license notice.
7367
7368 2012-02-11 Glenn Morris <rgm@gnu.org>
7369
7370 * select.el (x-get-selection-internal, x-own-selection-internal)
7371 (x-disown-selection-internal):
7372 * x-dnd.el (x-get-selection-internal): Update declarations.
7373
7374 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
7375
7376 * window.el (window-sides-slots):
7377 * tool-bar.el (tool-bar-position):
7378 * term/xterm.el (xterm-extra-capabilities):
7379 * ses.el (ses-self-reference-early-detection):
7380 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
7381 (verilog-auto-wire-type)
7382 (verilog-auto-delete-trailing-whitespace)
7383 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
7384 (verilog-auto-tieoff-declaration):
7385 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
7386 (sql-oracle-statement-starters, sql-oracle-scan-on):
7387 * progmodes/prolog.el (prolog-align-comments-flag)
7388 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
7389 (prolog-left-indent-regexp, prolog-paren-indent-p)
7390 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
7391 (prolog-types, prolog-mode-specificators)
7392 (prolog-determinism-specificators, prolog-directives)
7393 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
7394 (prolog-electric-dot-flag)
7395 (prolog-electric-dot-full-predicate-template)
7396 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
7397 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
7398 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
7399 (prolog-program-switches, prolog-prompt-regexp)
7400 (prolog-debug-on-string, prolog-debug-off-string)
7401 (prolog-trace-on-string, prolog-trace-off-string)
7402 (prolog-zip-on-string, prolog-zip-off-string)
7403 (prolog-use-standard-consult-compile-method-flag)
7404 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
7405 (prolog-imenu-max-lines, prolog-info-predicate-index)
7406 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
7407 (prolog-char-quote-workaround):
7408 * progmodes/cc-vars.el (c-defun-tactic):
7409 * net/tramp.el (tramp-encoding-command-interactive)
7410 (tramp-local-end-of-line):
7411 * net/soap-client.el (soap-client):
7412 * net/netrc.el (netrc-file):
7413 * net/gnutls.el (gnutls):
7414 * minibuffer.el (completion-category-overrides)
7415 (completion-cycle-threshold)
7416 (completion-pcm-complete-word-inserts-delimiters):
7417 * man.el (Man-name-local-regexp):
7418 * mail/feedmail.el (feedmail-display-full-frame):
7419 * international/characters.el (glyphless-char-display-control):
7420 * eshell/em-ls.el (eshell-ls-date-format):
7421 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
7422 (lisp-lambda-list-keyword-parameter-indentation)
7423 (lisp-lambda-list-keyword-parameter-alignment):
7424 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
7425 * dired-x.el (dired-omit-verbose):
7426 * cus-theme.el (custom-theme-allow-multiple-selections):
7427 * calc/calc.el (calc-highlight-selections-with-faces)
7428 (calc-lu-field-reference, calc-lu-power-reference)
7429 (calc-note-threshold):
7430 * battery.el (battery-mode-line-limit):
7431 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
7432 (archive-7z-update):
7433 * allout.el (allout-prefixed-keybindings)
7434 (allout-unprefixed-keybindings)
7435 (allout-inhibit-auto-fill-on-headline)
7436 (allout-flattened-numbering-abbreviation):
7437 * allout-widgets.el (allout-widgets-auto-activation)
7438 (allout-widgets-icons-dark-subdir)
7439 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
7440 (allout-widgets-theme-dark-background)
7441 (allout-widgets-theme-light-background)
7442 (allout-widgets-item-image-properties-emacs)
7443 (allout-widgets-item-image-properties-xemacs)
7444 (allout-widgets-run-unit-tests-on-load)
7445 (allout-widgets-time-decoration-activity)
7446 (allout-widgets-hook-error-post-time)
7447 (allout-widgets-track-decoration):
7448 Add missing :version tags to new defcustoms and defgroups.
7449
7450 * progmodes/sql.el (sql-ansi-statement-starters)
7451 (sql-oracle-statement-starters): Add custom type.
7452
7453 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
7454 (prolog-system-version): Give it a type.
7455
7456 2012-02-11 Eli Zaretskii <eliz@gnu.org>
7457
7458 * term/pc-win.el (x-select-text, x-selection-owner-p)
7459 (x-own-selection-internal, x-disown-selection-internal)
7460 (x-get-selection-internal): Sync doc strings and argument lists
7461 with xselect.c, common-win.el and x-win.el. (Bug#10783)
7462
7463 2012-02-11 Leo Liu <sdl.web@gmail.com>
7464
7465 * progmodes/python.el (python-end-of-statement): Fix infinite
7466 loop. (Bug#10788)
7467
7468 2012-02-10 Glenn Morris <rgm@gnu.org>
7469
7470 * international/mule-cmds.el (unify-8859-on-encoding-mode)
7471 (unify-8859-on-decoding-mode): Properly mark as obsolete.
7472
7473 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
7474
7475 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
7476 about SMTP before checking the From header.
7477
7478 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
7479 into own function for reuse by emacsbug.el.
7480
7481 2012-02-10 Leo Liu <sdl.web@gmail.com>
7482
7483 * subr.el (condition-case-unless-debug): Rename from
7484 condition-case-no-debug. All callers changed.
7485 (with-demoted-errors): Fix caller.
7486
7487 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
7488 * nxml/rng-valid.el (rng-do-some-validation):
7489 * emacs-lisp/package.el (package-refresh-contents)
7490 (package-menu-execute):
7491 * desktop.el (desktop-create-buffer):
7492 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
7493
7494 2012-02-10 Glenn Morris <rgm@gnu.org>
7495
7496 * textmodes/bibtex.el:
7497 Add missing :version tags for new/changed defcustoms.
7498
7499 * files.el (remote-file-name-inhibit-cache): Doc fixes.
7500
7501 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
7502
7503 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
7504 (smtpmail-via-smtp): Use it, or fall back on the From address.
7505 (smtpmail-send-it): Ditto.
7506
7507 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
7508
7509 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
7510 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
7511 (byte-compile-tmp-var): New const.
7512 (byte-compile-defvar): Use it to minimize .elc size.
7513 Just use `defvar' rather than simulate it (bug#10761).
7514
7515 2012-02-09 Glenn Morris <rgm@gnu.org>
7516
7517 * files.el (rename-uniquely): Doc fix. (Bug#3806)
7518
7519 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
7520 Add :version tags.
7521
7522 * progmodes/compile.el (compilation-error-screen-columns)
7523 (compilation-first-column, compilation-filter-start): Doc fixes.
7524
7525 * vc/log-view.el (log-view-toggle-entry-display):
7526 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
7527
7528 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
7529 (report-emacs-bug-can-use-xdg-email):
7530 (report-emacs-bug-insert-to-mailer): Doc fixes.
7531 (report-emacs-bug): Message fix.
7532
7533 * net/browse-url.el (browse-url-can-use-xdg-open)
7534 (browse-url-xdg-open): Doc fixes.
7535
7536 * electric.el (electric-indent-mode, electric-pair-mode)
7537 (electric-layout-rules, electric-layout-mode): Doc fixes.
7538 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
7539
7540 2012-02-08 Martin Rudalics <rudalics@gmx.at>
7541
7542 * server.el (server-unselect-display): Don't inadvertently kill
7543 the current buffer. (Bug#10729)
7544
7545 2012-02-08 Glenn Morris <rgm@gnu.org>
7546
7547 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
7548 (sql-list-table): Doc fixes.
7549
7550 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
7551 Comment out (does nothing).
7552
7553 * completion.el (dynamic-completion-mode):
7554 * dirtrack.el (dirtrack-debug-mode):
7555 * electric.el (electric-layout-mode):
7556 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
7557 * face-remap.el (text-scale-mode, buffer-face-mode):
7558 * iimage.el (iimage-mode):
7559 * image-mode.el (image-transform-mode):
7560 * minibuffer.el (completion-in-region-mode):
7561 * scroll-lock.el (scroll-lock-mode):
7562 * simple.el (next-error-follow-minor-mode):
7563 * tar-mode.el (tar-subfile-mode):
7564 * tooltip.el (tooltip-mode):
7565 * vcursor.el (vcursor-use-vcursor-map):
7566 * wid-browse.el (widget-minor-mode):
7567 * emulation/tpu-edt.el (tpu-edt-mode):
7568 * emulation/tpu-extras.el (tpu-cursor-free-mode):
7569 * international/iso-ascii.el (iso-ascii-mode):
7570 * language/thai-util.el (thai-word-mode):
7571 * mail/supercite.el (sc-minor-mode):
7572 * net/goto-addr.el (goto-address-mode):
7573 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
7574 * progmodes/cwarn.el (cwarn-mode):
7575 * progmodes/flymake.el (flymake-mode):
7576 * progmodes/glasses.el (glasses-mode):
7577 * progmodes/hideshow.el (hs-minor-mode):
7578 * progmodes/pascal.el (pascal-outline-mode):
7579 * textmodes/enriched.el (enriched-mode):
7580 * vc/smerge-mode.el (smerge-mode):
7581 Doc fixes (minor mode argument).
7582
7583 2012-02-07 Eli Zaretskii <eliz@gnu.org>
7584
7585 * ls-lisp.el (ls-lisp-sanitize): New function.
7586 (ls-lisp-insert-directory): Use it to fix or remove any elements
7587 in file-alist with missing attributes. (Bug#4673)
7588
7589 2012-02-07 Alan Mackenzie <acm@muc.de>
7590
7591 Fix spurious recognition of c-in-knr-argdecl.
7592
7593 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
7594 putative K&R region.
7595
7596 2012-02-07 Alan Mackenzie <acm@muc.de>
7597
7598 * progmodes/cc-engine.el (c-forward-objc-directive):
7599 Prevent looping in "#pragma mark @implementation".
7600
7601 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
7602
7603 * notifications.el (notifications-on-closed-signal): Make `reason'
7604 optional. (Bug#10744)
7605
7606 2012-02-07 Glenn Morris <rgm@gnu.org>
7607
7608 * emacs-lisp/easy-mmode.el (define-minor-mode):
7609 Doc fixes for the macro and the mode it defines.
7610
7611 * image.el (imagemagick-types-inhibit): Doc fix.
7612
7613 * cus-start.el (imagemagick-render-type): Add it.
7614
7615 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
7616
7617 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
7618 Set the default at load time, too, so that `font-lock-fontify-buffer'
7619 can be called without setting up the entire mode first. This fixes
7620 a bug in `mm-inline-text' with C MIME parts.
7621
7622 2012-02-06 Chong Yidong <cyd@gnu.org>
7623
7624 * simple.el (list-processes--refresh): Delete exited processes
7625 (Bug#8094).
7626
7627 * comint.el (comint-next-prompt): next-single-char-property-change
7628 and prev-single-char-property-change never return nil (Bug#8657).
7629
7630 * custom.el (defcustom): Doc fix (Bug#9711).
7631
7632 2012-02-05 Chong Yidong <cyd@gnu.org>
7633
7634 * cus-edit.el (custom-variable-reset-backup): Quote the value
7635 before storing it in the customized-value property (Bug#6712).
7636 (custom-display): Add a customization type tag.
7637 (custom-buffer-create-internal): Improve tooltip message.
7638
7639 * wid-edit.el (widget-field-value-get): New optional arg to
7640 suppress trailing whitespace truncation.
7641 (character): Use it (Bug#2689).
7642
7643 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
7644
7645 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
7646 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
7647
7648 2012-02-05 Chong Yidong <cyd@gnu.org>
7649
7650 * cus-edit.el (custom-variable-value-create): For mismatched
7651 types, show the current value (Bug#7600).
7652
7653 * custom.el (defcustom): Doc fix.
7654
7655 2012-02-05 Glenn Morris <rgm@gnu.org>
7656
7657 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
7658
7659 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
7660
7661 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
7662 (pp-buffer): Use `ignore-errors', `looking-at-p'.
7663 (pp-last-sexp): Use `looking-at-p'.
7664
7665 2012-02-04 Glenn Morris <rgm@gnu.org>
7666
7667 * files.el (revert-buffer):
7668 Doc fix (mention revert-buffer-in-progress-p).
7669
7670 * emacs-lisp/ert-x.el (ert-simulate-command):
7671 Check deferred-action-list (which is obsolete) is bound.
7672
7673 * subr.el (with-wrapper-hook): Doc fixes.
7674
7675 * simple.el (filter-buffer-substring-functions)
7676 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
7677
7678 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
7679
7680 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
7681 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
7682
7683 2012-02-04 Leo Liu <sdl.web@gmail.com>
7684
7685 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
7686
7687 2012-02-04 Glenn Morris <rgm@gnu.org>
7688
7689 * image.el (image-extension-data): Add obsolete alias.
7690
7691 * isearch.el (isearch-update): Doc fix.
7692
7693 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
7694
7695 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
7696
7697 2012-02-03 Glenn Morris <rgm@gnu.org>
7698
7699 * image.el (image-animated-p): Doc fix. Use image-animated-types.
7700 (image-animate-timeout): Doc fix.
7701
7702 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
7703
7704 2012-02-02 Glenn Morris <rgm@gnu.org>
7705
7706 * server.el (server-auth-dir): Doc fix.
7707 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
7708
7709 * subr.el (run-mode-hooks): Doc fix.
7710
7711 2012-02-02 Juri Linkov <juri@jurta.org>
7712
7713 * image-mode.el (image-toggle-display-image): Remove tautological
7714 `major-mode' from the `derived-mode-p' test.
7715
7716 2012-02-02 Kenichi Handa <handa@m17n.org>
7717
7718 * composite.el (compose-region): Cancel previous change.
7719
7720 2012-02-02 Kenichi Handa <handa@m17n.org>
7721
7722 * composite.el (compose-region, compose-string): Signal error for
7723 a null string component (Bug#6988).
7724
7725 2012-02-01 Chong Yidong <cyd@gnu.org>
7726
7727 * view.el (view-buffer-other-window, view-buffer-other-frame):
7728 Handle special modes like view-buffer (Bug#10650).
7729 (view-buffer): Simplify.
7730
7731 * frame.el (set-frame-font): Tweak meaning of third argument.
7732
7733 * dynamic-setting.el (font-setting-change-default-font):
7734 Use set-frame-font (Bug#9982).
7735
7736 2012-02-01 Glenn Morris <rgm@gnu.org>
7737
7738 * progmodes/compile.el (compilation-internal-error-properties):
7739 Respect compilation-first-column in the "*compilation*" buffer.
7740
7741 * emacs-lisp/easy-mmode.el (define-minor-mode):
7742 Relax :variable's test for a named function.
7743
7744 2012-01-31 Alan Mackenzie <acm@muc.de>
7745
7746 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
7747 off by one error.
7748
7749 2012-01-31 Chong Yidong <cyd@gnu.org>
7750
7751 * frame.el (set-frame-font): New arg ALL-FRAMES.
7752
7753 * menu-bar.el (menu-set-font): Use set-frame-font.
7754
7755 * faces.el (face-spec-reset-face): Don't apply unspecified
7756 attribute values to the default face.
7757
7758 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
7759
7760 * progmodes/cwarn.el (cwarn): Remove dead link.
7761 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
7762 Remove * from defcustom docstrings.
7763 (turn-on-cwarn-mode): Make obsolete.
7764 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
7765 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
7766
7767 2012-01-31 Glenn Morris <rgm@gnu.org>
7768
7769 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
7770 Fix :variable handling of mode a symbol not equal to modefun.
7771 Allow named functions to be used as the cdr of :variable.
7772
7773 2012-01-30 Glenn Morris <rgm@gnu.org>
7774
7775 * emacs-lisp/authors.el (authors-fixed-entries):
7776 Remove reference to deleted file rnewspost.el.
7777
7778 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
7779
7780 * window.el (window-with-parameter): Remove unused variable `windows'.
7781 (window--side-check): Remove unused variable `code'.
7782 (window--resize-siblings): Remove unused variable `first'.
7783 (adjust-window-trailing-edge): Remove unused variable `failed'.
7784 (window-deletable-p, window--delete): Remove unused variable `buffer'.
7785 Use `let', not `let*'.
7786 (balance-windows-2): Remove unused variable `found'.
7787 (window--state-put-2): Remove unused variable `splits'.
7788 (window-state-put): Remove unused variable `selected'.
7789 (same-window-p): Use `string-match-p'.
7790 (display-buffer-assq-regexp): Remove unused variable `value'.
7791 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7792 Mark argument ALIST as ignored.
7793 (pop-to-buffer): Remove unused variable `old-window'.
7794
7795 2012-01-29 Eli Zaretskii <eliz@gnu.org>
7796
7797 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
7798 and .lzma compressed files.
7799
7800 2012-01-29 Chong Yidong <cyd@gnu.org>
7801
7802 * frame.el (window-system-default-frame-alist): Doc fix.
7803
7804 * dynamic-setting.el (font-setting-change-default-font): Don't
7805 change the default face if SET-FONT argument is non-nil (Bug#9982).
7806
7807 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
7808
7809 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
7810
7811 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
7812
7813 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
7814 breakpoints in files outside current directory (Bug#6098).
7815
7816 2012-01-29 Chong Yidong <cyd@gnu.org>
7817
7818 * progmodes/python.el: Require ansi-color at top-level.
7819
7820 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
7821 Define and use in Emacs Lisp mode (Bug#9360).
7822 (lisp-mode-abbrev-table): Add doc.
7823 (lisp-mode-variables): Don't set local-abbrev-table.
7824 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
7825
7826 2012-01-28 Roland Winkler <winkler@gnu.org>
7827
7828 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
7829
7830 2012-01-28 Roland Winkler <winkler@gnu.org>
7831
7832 * textmodes/bibtex.el (bibtex-entry-alist): New function.
7833 (bibtex-set-dialect): Use it. Either set global values of
7834 dialect-dependent variables or bind these variables buffer-locally
7835 (Bug#10254).
7836 (bibtex-mode): Call bibtex-set-dialect via
7837 hack-local-variables-hook.
7838 (bibtex-dialect): Update docstring.
7839 Add safe-local-variable predicate.
7840 (bibtex-entry-alist, bibtex-field-alist): Initialize via
7841 bibtex-set-dialect.
7842 (bibtex-mode-map): Define menu for each dialect.
7843 (bibtex-entry): Fix docstring.
7844
7845 2012-01-28 Chong Yidong <cyd@gnu.org>
7846
7847 * eshell/esh-arg.el (eshell-quote-argument): New function.
7848
7849 * eshell/esh-ext.el (eshell-invoke-batch-file):
7850 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
7851 first arg to eshell-parse-command (Bug#10523).
7852
7853 2012-01-28 Drew Adams <drew.adams@oracle.com>
7854
7855 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
7856 `default-directory' is non-nil.
7857
7858 2012-01-28 Eli Zaretskii <eliz@gnu.org>
7859
7860 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
7861 line that displays system-configuration-options. (Bug#9924)
7862
7863 2012-01-28 Drew Adams <drew.adams@oracle.com>
7864
7865 * descr-text.el (describe-char): Show information about POS, in
7866 addition to information about the character at POS. Improve and
7867 update the doc string. Change "code point" to "code point in
7868 charset", to avoid confusion with the character's Unicode code
7869 point shown above that. (Bug#10129)
7870
7871 2012-01-28 Eli Zaretskii <eliz@gnu.org>
7872
7873 * descr-text.el (describe-char): Show the raw character, not only
7874 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
7875 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
7876 for the reasons.
7877
7878 2012-01-28 Phil Hagelberg <phil@hagelb.org>
7879
7880 * emacs-lisp/package.el (package-install):
7881 Run package-refresh-contents if there is no archive yet (Bug#9798).
7882
7883 2012-01-28 Chong Yidong <cyd@gnu.org>
7884
7885 * emacs-lisp/package.el (package-maybe-load-descriptor):
7886 New function, split from package-maybe-load-descriptor.
7887 (package-maybe-load-descriptor): Use it.
7888 (package-download-transaction): Fully load required packages
7889 inside the loop, so that `require' calls work (Bug#10593).
7890 (package-install): No need to call package-initialize now.
7891
7892 2012-01-28 Chong Yidong <cyd@gnu.org>
7893
7894 * simple.el (deactivate-mark): Doc fix (Bug#8614).
7895
7896 * tooltip.el (tooltip-mode): Doc fix.
7897 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
7898
7899 * frame.el (set-cursor-color): Doc fix (Bug#352).
7900
7901 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
7902 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
7903
7904 * cus-edit.el (custom-buffer-create-internal): Fix search button
7905 action (Bug#10542).
7906 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
7907
7908 2012-01-27 Eduard Wiebe <usenet@pusto.de>
7909
7910 * dired.el (dired-mark-files-regexp):
7911 Include any subdirectory components. (Bug#10445)
7912
7913 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
7914
7915 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
7916 Handle [host]:port syntax. (Bug#10533)
7917
7918 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
7919
7920 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
7921
7922 2012-01-26 Glenn Morris <rgm@gnu.org>
7923
7924 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
7925 * term.el (term-raw-escape-map): Use Control-X-prefix.
7926 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
7927
7928 2012-01-25 Martin Rudalics <rudalics@gmx.at>
7929
7930 * window.el (window-state-get, window--state-get-1): Don't deal
7931 with fixed-sizeness of windows. Simplify code.
7932
7933 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
7934
7935 * window.el (window--state-get-1, window--state-put-2):
7936 Don't save and restore the mark.
7937
7938 2012-01-25 Chong Yidong <cyd@gnu.org>
7939
7940 * custom.el (custom-variable-p): Doc fix.
7941
7942 2012-01-25 Glenn Morris <rgm@gnu.org>
7943
7944 * dired.el (dired-goto-file): Handle some of the more common
7945 characters that `ls -b' escapes. (Bug#10596)
7946
7947 * progmodes/compile.el (compilation-next-error-function):
7948 Respect compilation-first-column in the "*compilation*" buffer.
7949 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
7950
7951 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
7952
7953 2012-01-24 Glenn Morris <rgm@gnu.org>
7954
7955 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
7956
7957 2012-01-24 Julien Danjou <julien@danjou.info>
7958
7959 * color.el (color-rgb-to-hsl): Fix value computing.
7960 (color-hue-to-rgb): New function.
7961 (color-hsl-to-rgb): New function.
7962 (color-clamp, color-saturate-hsl, color-saturate-name)
7963 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
7964 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
7965
7966 2012-01-24 Glenn Morris <rgm@gnu.org>
7967
7968 * vc/vc-rcs.el (vc-rcs-create-tag):
7969 * vc/vc-sccs.el (vc-sccs-create-tag):
7970 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
7971
7972 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
7973
7974 * eshell/esh-util.el (eshell-read-hosts-file):
7975 Skip comment lines. (Bug#10549)
7976
7977 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
7978
7979 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
7980
7981 * subr.el (display-delayed-warnings): Doc fix.
7982 (collapse-delayed-warnings): New function to collapse identical
7983 adjacent warnings.
7984 (delayed-warnings-hook): Add it.
7985
7986 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
7987
7988 * net/tramp.el (tramp-action-login): Set connection property "login-as".
7989
7990 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
7991 (tramp-default-user-alist): Don't add "pscp".
7992 (tramp-do-copy-or-rename-file-out-of-band): Use connection
7993 property "login-as", if set. (Bug#10530)
7994
7995 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
7996
7997 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
7998 "plink1" and "psftp". (Bug#10530)
7999
8000 2012-01-21 Kenichi Handa <handa@m17n.org>
8001
8002 * international/mule-cmds.el (prefer-coding-system): Show a
8003 warning message if the default value of file-name-coding-system
8004 was not changed.
8005
8006 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
8007
8008 * windmove.el (windmove-reference-loc):
8009 Fix windmove-reference-loc miscalculation.
8010
8011 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
8012
8013 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
8014 default unit.
8015
8016 2012-01-21 Glenn Morris <rgm@gnu.org>
8017
8018 * international/mule.el (auto-coding-alist): Add .tbz.
8019
8020 * files.el (local-enable-local-variables): Doc fix.
8021 (inhibit-local-variables-regexps): Rename from
8022 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
8023 Doc fix. Add some extensions from auto-coding-alist.
8024 (inhibit-local-variables-suffixes):
8025 Rename from inhibit-first-line-modes-suffixes. Doc fix.
8026 (inhibit-local-variables-p):
8027 New function, extracted from set-auto-mode-1.
8028 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
8029 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
8030 (hack-local-variables): Doc fix. Make the mode-only case
8031 respect enable-local-variables and friends.
8032 Respect inhibit-local-variables-regexps for file-locals, but
8033 not for directory-locals.
8034 (set-visited-file-name):
8035 Take account of inhibit-local-variables-regexps.
8036 Whether it applies may change as the file name is changed.
8037 * jka-cmpr-hook.el (jka-compr-install):
8038 * jka-compr.el (jka-compr-uninstall):
8039 Update for inhibit-first-line-modes-suffixes name change.
8040
8041 2012-01-20 Martin Rudalics <rudalics@gmx.at>
8042
8043 * help-macro.el (make-help-screen): Temporarily restore original
8044 binding for minor-mode-map-alist (Bug#10454).
8045
8046 2012-01-19 Julien Danjou <julien@danjou.info>
8047
8048 * color.el (color-name-to-rgb): Use the white color to find the max
8049 color component value and return correctly computed values.
8050 (color-name-to-rgb): Add missing float conversion for max value.
8051
8052 2012-01-19 Martin Rudalics <rudalics@gmx.at>
8053
8054 * window.el (window--state-get-1, window-state-get): Do not use
8055 special state value for window-persistent-parameters.
8056 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
8057 (window--state-put-2): Reset all window parameters to nil before
8058 assigning values of persistent parameters.
8059
8060 2012-01-18 Alan Mackenzie <acm@muc.de>
8061
8062 Eliminate sluggishness and hangs in fontification of "semicolon
8063 deserts".
8064
8065 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
8066 Change value 10000 -> 3000.
8067 (c-state-safe-place): Reformulate so it doesn't stack up an
8068 infinite number of wrong entries in c-state-nonlit-pos-cache.
8069 (c-determine-limit-get-base, c-determine-limit): New functions to
8070 determine backward search limits disregarding literals.
8071 (c-find-decl-spots): Amend commenting.
8072 (c-cheap-inside-bracelist-p): New function which detects "={".
8073
8074 * progmodes/cc-fonts.el
8075 (c-make-font-lock-BO-decl-search-function): Give a limit to a
8076 backward search.
8077 (c-font-lock-declarations): Fix an occurrence of point being
8078 undefined. Check additionally for point being in a bracelist or
8079 near a macro invocation without a semicolon so as to avoid a
8080 fruitless time consuming search for a declarator. Give a more
8081 precise search limit for declarators using the new
8082 c-determine-limit.
8083
8084 2012-01-18 Glenn Morris <rgm@gnu.org>
8085
8086 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
8087 (set-auto-mode): Doc fixes.
8088
8089 2012-01-17 Glenn Morris <rgm@gnu.org>
8090
8091 * isearch.el (search-nonincremental-instead): Fix doc typo.
8092
8093 * dired.el (dired-insert-directory): Handle newlines in directory name.
8094 (dired-build-subdir-alist): Unescape newlines in directory name.
8095
8096 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
8097
8098 * net/tramp.el (tramp-local-end-of-line): New defcustom.
8099 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
8100 (tramp-action-terminal): Use it. (Bug#10530)
8101
8102 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
8103
8104 * minibuffer.el (completion--replace): Strip properties (bug#10062).
8105
8106 2012-01-16 Martin Rudalics <rudalics@gmx.at>
8107
8108 * window.el (window-state-ignored-parameters): Remove variable.
8109 (window--state-get-1): Rename argument MARKERS to IGNORE.
8110 Handle persistent window parameters. Make copy of clone-of
8111 parameter only if requested. (Bug#10348)
8112 (window--state-put-2): Install a window parameter only if it has
8113 a non-nil value or an existing parameter shall be overwritten.
8114
8115 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
8116
8117 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
8118
8119 2012-01-14 Eli Zaretskii <eliz@gnu.org>
8120
8121 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
8122 don't pass the (nil) value of `upnode' to string-match.
8123
8124 2012-01-14 Chong Yidong <cyd@gnu.org>
8125
8126 * startup.el (command-line): Fix X resource class for cursorColor.
8127 Fix values recognized by the cursorBlink resource.
8128
8129 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
8130
8131 * epg.el (epg--make-temp-file): Avoid permission race condition
8132 when running on old Emacs versions (bug#10403).
8133
8134 2012-01-14 Glenn Morris <rgm@gnu.org>
8135
8136 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
8137
8138 2012-01-13 Alan Mackenzie <acm@muc.de>
8139
8140 Fix filling for when filladapt mode is enabled.
8141
8142 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
8143 c-mask-paragraph, pass in `fill-paragraph' rather than
8144 `fill-region-as-paragraph'. (This is a reversion of a previous
8145 change.)
8146 * progmodes/cc-mode.el (c-basic-common-init):
8147 Make fill-paragraph-handle-comment buffer local and set it to nil.
8148
8149 2012-01-13 Glenn Morris <rgm@gnu.org>
8150
8151 * dired.el (dired-switches-escape-p): New function.
8152 (dired-insert-directory): Use dired-switches-escape-p.
8153 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
8154
8155 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
8156
8157 2012-01-12 Glenn Morris <rgm@gnu.org>
8158
8159 * mail/sendmail.el (mail-mode): Update paragraph-separate for
8160 changes in adaptive-fill-regexp. (Bug#10276)
8161
8162 2012-01-11 Alan Mackenzie <acm@muc.de>
8163
8164 Fix Emacs bug #10463 - put `widen's around the critical spots.
8165
8166 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
8167 widen around each invocation of c-state-pp-to-literal. Remove an
8168 unused let variable.
8169
8170 2012-01-11 Glenn Morris <rgm@gnu.org>
8171
8172 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
8173 Doc fix.
8174
8175 2012-01-10 Chong Yidong <cyd@gnu.org>
8176
8177 * net/network-stream.el (network-stream-open-starttls):
8178 Avoid emitting a confusing error message when the server gives a bad
8179 response to the capability command.
8180
8181 2012-01-10 Glenn Morris <rgm@gnu.org>
8182
8183 * mail/unrmail.el (unrmail): Tweak previous change.
8184
8185 2012-01-09 Chong Yidong <cyd@gnu.org>
8186
8187 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
8188
8189 2012-01-08 Alan Mackenzie <acm@muc.de>
8190
8191 Optimise font locking in long enum definitions.
8192
8193 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
8194 arm to a cond form to handle enums.
8195 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
8196 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
8197
8198 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
8199
8200 * files.el (move-file-to-trash): Preserve default file modes on error.
8201 (Bug#10401)
8202
8203 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
8204
8205 * faces.el (set-face-attribute): Clarify the meaning of the nil
8206 frame (bug#10294).
8207
8208 * subr.el (with-selected-frame): Mention that the selected frame
8209 is restored (bug#9980).
8210
8211 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
8212 (bug#9759).
8213
8214 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
8215 (password-read): Don't autoload unused function.
8216
8217 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
8218
8219 * progmodes/which-func.el (which-func-mode): Turn into a
8220 non-interactive function and mark as obsolete (bug#10428).
8221
8222 2012-01-06 Chong Yidong <cyd@gnu.org>
8223
8224 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
8225 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
8226 functions, along with 1 and -1.
8227
8228 2012-01-06 Eli Zaretskii <eliz@gnu.org>
8229
8230 * time.el (display-time-load-average)
8231 (display-time-default-load-average): Doc fixes. See the thread
8232 starting at
8233 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
8234 for the details.
8235
8236 2012-01-06 Glenn Morris <rgm@gnu.org>
8237
8238 * mail/unrmail.el (unrmail): Give an explicit error if the input file
8239 has no messages. (Bug#10377)
8240
8241 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
8242 than Info-edit. (Bug#10385)
8243
8244 * time.el (display-time-load-average, display-time-next-load-average):
8245 Doc fixes.
8246
8247 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
8248 local setting of buffer-read-only to the input buffer. (Bug#10419)
8249
8250 * calendar/calendar.el (calendar-mode):
8251 Locally set scroll-margin to 0. (Bug#10379)
8252
8253 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
8254
8255 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
8256
8257 2012-01-05 Glenn Morris <rgm@gnu.org>
8258
8259 * eshell/em-unix.el (diff-no-select): Autoload it.
8260 (eshell/diff): Use diff-no-select. (Bug#10420)
8261
8262 2012-01-05 Chong Yidong <cyd@gnu.org>
8263
8264 * shell.el (shell-dynamic-complete-functions): Revert last change.
8265 (shell-command-completion-function): New function.
8266 (shell-completion-vars): Use it to implement
8267 shell-completion-execonly (Bug#10417).
8268
8269 * custom.el (enable-theme): Don't set custom-safe-themes.
8270
8271 * cus-theme.el (custom-theme-merge-theme):
8272 Ignore custom-enabled-themes and custom-safe-themes.
8273
8274 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
8275
8276 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
8277 first prompt in `sql-interacive-mode'.
8278 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
8279 keywords.
8280 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
8281 (sql-product-interactive): Bug fix: Set `sql-buffer' in
8282 context of original buffer. Invoke `sql-login-hook'.
8283
8284 2012-01-04 Eli Zaretskii <eliz@gnu.org>
8285
8286 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
8287 letters in cite-prefix.
8288
8289 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8290
8291 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
8292
8293 2012-01-03 Chong Yidong <cyd@gnu.org>
8294
8295 * shell.el (shell-dynamic-complete-functions):
8296 Put pcomplete-completions-at-point, so as to try
8297 comint-filename-completion first (Bug#10417).
8298
8299 2012-01-02 Richard Stallman <rms@gnu.org>
8300
8301 * battery.el (battery-status-function):
8302 Detect when to use battery-yeeloong-sysfs.
8303 (battery-echo-area-format): Add string for Yeeloong.
8304 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
8305 (battery-yeeloong-sysfs): New function.
8306
8307 2012-01-02 Chong Yidong <cyd@gnu.org>
8308
8309 * dirtrack.el (dirtrack-list): Eliminate unused third element.
8310 (dirtrack): Merge code for handling relative filenames in prompt
8311 from shell-dir-cookie-watcher.
8312 (dirtrack-debug-message): New arg to avoid excess format calls.
8313
8314 * shell.el (shell-dir-cookie-re): Variable deleted.
8315 (shell-dir-cookie-watcher): Function deleted.
8316 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
8317 with dirtrack-mode.
8318
8319 2012-01-01 Eli Zaretskii <eliz@gnu.org>
8320
8321 * term/w32-win.el (dynamic-library-alist) <gnutls>:
8322 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
8323 libgnutls-26.dll.
8324
8325 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
8326
8327 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
8328
8329 2011-12-31 Eli Zaretskii <eliz@gnu.org>
8330
8331 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
8332 headers of non-MIME messages, when rmail-enable-mime is non-nil.
8333
8334 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
8335
8336 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
8337 also for alternative shells.
8338 (tramp-open-connection-setup-interactive-shell): Check, whether
8339 the shell is a busybox.
8340 (tramp-send-command): Don't suppress multiple prompts for
8341 busyboxes, it hurts.
8342
8343 2011-12-28 Chong Yidong <cyd@gnu.org>
8344
8345 * progmodes/gdb-mi.el (gdb-get-source-file-list)
8346 (gdb-get-source-file): Move mode line update to
8347 gdb-get-source-file (Bug#10087).
8348
8349 2011-12-25 Chong Yidong <cyd@gnu.org>
8350
8351 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
8352 gud-gdb-marker-filter without taking it as an argument.
8353 (gud-gdb-run-command-fetch-lines): Caller changed.
8354 (gud-gdb-completion-function): New variable.
8355 (gud-gdb-completion-at-point): Use it.
8356 (gud-gdb-completions-1): Split from gud-gdb-completions.
8357
8358 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
8359 function as separate arguments.
8360 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
8361 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
8362 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
8363 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
8364 (gdb-stopped, def-gdb-auto-update-trigger)
8365 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
8366 (gdb-get-changed-registers, gdb-get-main-selected-frame):
8367 Callers changed.
8368 (gud-gdbmi-completions): New function.
8369 (gdb): Use it for generating the completion table.
8370
8371 2011-12-24 Alan Mackenzie <acm@muc.de>
8372
8373 Introduce a mechanism to widen the region used in context font
8374 locking. Use this to protect declarations from losing their contexts.
8375
8376 * progmodes/cc-langs.el (c-before-font-lock-functions):
8377 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
8378 (c-before-context-fontification-functions): New defvar, a list of
8379 functions to be run just before context (etc.) font locking.
8380
8381 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
8382 New, functionality extracted from
8383 c-neutralize-syntax-in-and-mark-CPP.
8384 (c-in-after-change-fontification): New variable.
8385 (c-after-change): Set c-in-after-change-fontification.
8386 (c-set-fl-decl-start): Rejig its interface, so it can be called
8387 from both after-change and context fontifying.
8388 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
8389 New functions.
8390 (c-standard-font-lock-fontify-region-function): New variable.
8391 (c-font-lock-fontify-region): New function.
8392
8393 2011-12-24 Juri Linkov <juri@jurta.org>
8394
8395 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
8396 (Bug#10348)
8397
8398 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
8399
8400 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
8401 existence of source file. (Bug#10325)
8402
8403 2011-12-23 Alan Mackenzie <acm@muc.de>
8404
8405 Fix unstable fontification inside templates.
8406
8407 * progmodes/cc-langs.el (c-before-font-lock-functions):
8408 Newly created from the singular version. The (c c++ objc) entry now
8409 additionally has c-set-fl-decl-start. The other languages (apart
8410 from AWK) have that as a single entry.
8411
8412 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
8413 The functionality for "local" declarations has been extracted to
8414 c-set-fl-decl-start.
8415
8416 * progmodes/cc-mode.el (c-common-init, c-after-change):
8417 Changes due to pluralisation of c-before-font-lock-functions.
8418 (c-set-fl-decl-start): New function, extracted from
8419 c-font-lock-enclosing-decls and enhanced.
8420
8421 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
8422
8423 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
8424
8425 2011-12-22 Juri Linkov <juri@jurta.org>
8426
8427 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
8428
8429 2011-12-22 Chong Yidong <cyd@gnu.org>
8430
8431 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
8432
8433 2011-12-21 Drew Adams <drew.adams@oracle.com>
8434
8435 * files.el (file-remote-p): Fix docstring. (Bug#10319)
8436
8437 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
8438
8439 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
8440
8441 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
8442
8443 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
8444 highlighting and support. Fix up comments for capitalization.
8445 (cfengine-mode-debug): New var.
8446 (cfengine3-mode): Change the modeline indicator to "CFE3".
8447 (cfengine3-font-lock-keywords): Improve defun highlighting.
8448 (cfengine2-actions): Rename from `cfengine-actions'.
8449 (cfengine2-font-lock-keywords): Rename from
8450 `cfengine-font-lock-keywords'.
8451 (cfengine2-imenu-expression): Rename from
8452 `cfengine-imenu-expression'.
8453 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
8454 (cfengine2-beginning-of-defun): Rename from
8455 `cfengine-beginning-of-defun'.
8456 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
8457 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
8458 (cfengine2-mode): Rename from `cfengine-mode'. Change the
8459 modeline indicator to "CFE2".
8460 (cfengine-mode): Defalias to `cfengine-auto-mode'.
8461 (cfengine-mode-abbrevs): Mark obsolete.
8462
8463 2011-12-21 Chong Yidong <cyd@gnu.org>
8464
8465 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
8466 filename argument.
8467
8468 2011-12-20 Martin Rudalics <rudalics@gmx.at>
8469
8470 * window.el (window-normalize-buffer-to-display): Remove.
8471 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
8472
8473 2011-12-19 Chong Yidong <cyd@gnu.org>
8474
8475 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
8476 Don't signal an error in a predicate function; return non-nil.
8477 (vc-dir-mark-file): Move the error here.
8478 (vc-dir-mark-unmark): If acting on the region, keep going if one
8479 of the entries cannot be marked/unmarked.
8480 (vc-dir-mark-all-files): If current entry is a directory, mark
8481 only child files, as documented.
8482
8483 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
8484
8485 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
8486 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
8487 addition.
8488
8489 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
8490
8491 * term/ns-win.el (ns-get-selection-internal)
8492 (ns-store-selection-internal): Declare.
8493 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
8494 Declare as obsolete.
8495 (ns-get-pasteboard, ns-paste-secondary):
8496 Use ns-get-selection-internal.
8497 (ns-set-pasteboard, ns-copy-including-secondary):
8498 Use ns-store-selection-internal.
8499
8500 2011-12-17 Chong Yidong <cyd@gnu.org>
8501
8502 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
8503 (vc-deduce-fileset): Doc fix.
8504
8505 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
8506
8507 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
8508
8509 2011-12-13 Sam Steingold <sds@gnu.org>
8510
8511 * man.el (Man-getpage-in-background): When running under a
8512 window-system, ignore $MANWIDTH and $COLUMNS.
8513
8514 2011-12-15 Kenichi Handa <handa@m17n.org>
8515
8516 * language/ethio-util.el: Change coding tag to utf-8-emacs.
8517 (setup-ethiopic-environment-internal): Comment out key-binding for
8518 ethio-toggle-punctuation.
8519
8520 2011-12-13 Alan Mackenzie <acm@muc.de>
8521
8522 Add the switch statement to AWK Mode.
8523
8524 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
8525 "default" to the keywords regexp.
8526
8527 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
8528 expression as the rest.
8529 (c-nonlabel-token-key): Allow string literals for AWK.
8530 Refactor for the other modes.
8531
8532 Large brace-block initialisation makes CC Mode slow: Fix.
8533 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
8534 routines. Limit backward searching in c-font-lock-enclosing.decl.
8535
8536 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
8537 pp-state and literal type in addition to the limits.
8538 (c-state-safe-place): New defun, extracted from c-state-literal-at.
8539 (c-state-literal-at): Use the above new defun.
8540 (c-slow-in-literal, c-fast-in-literal): Remove.
8541 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
8542
8543 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
8544 being in a literal. Add a limit for backward searching.
8545
8546 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
8547 c-slow-in-literal.
8548
8549 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
8550
8551 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
8552
8553 2011-12-13 Martin Rudalics <rudalics@gmx.at>
8554
8555 * window.el (delete-other-windows): Use correct frame in call to
8556 window-with-parameter.
8557
8558 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
8559
8560 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
8561 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
8562 (makefile-gmake-statements, makefile-makepp-statements):
8563 Use it and add new makepp keywords.
8564 (makefile-makepp-font-lock-keywords): Add new patterns.
8565 (makefile-match-function-end): Match new [...] and [[...]].
8566
8567 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
8568
8569 * ses.el (ses-call-printer-return, ses-cell-property-get)
8570 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
8571 (ses-create-cell-variable, ses-reset-header-string)
8572 (ses-cell-set-formula, ses-repair-cell-reference-all)
8573 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
8574 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
8575 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
8576 (ses-aset-with-undo, ses-load, ses-truncate-cell)
8577 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
8578 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
8579 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
8580 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
8581 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
8582 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
8583 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
8584 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
8585
8586 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
8587
8588 * ses.el: The overall change is to add cell renaming, that is
8589 setting fancy names for cell symbols other than name matching
8590 "\\`[A-Z]+[0-9]+\\'" regexp .
8591 (ses-create-cell-variable): New defun.
8592 (ses-relocate-formula): Relocate formulas only for cells the
8593 symbols of which are not renamed, i.e. symbols whose names do not
8594 match regexp "\\`[A-Z]+[0-9]+\\'".
8595 (ses-relocate-all): Relocate values only for cells the symbols of
8596 which are not renamed.
8597 (ses-load): Create cells variables as the (ses-cell ...) are read,
8598 in order to check row col consistency with cell symbol name only
8599 for cells that are not renamed.
8600 (ses-replace-name-in-formula): New defun.
8601 (ses-rename-cell): New defun.
8602
8603 2011-12-11 Chong Yidong <cyd@gnu.org>
8604
8605 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
8606 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
8607
8608 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
8609
8610 * window.el (other-window): Fix docstring.
8611
8612 2011-12-10 Eli Zaretskii <eliz@gnu.org>
8613
8614 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
8615 `from' or `to' address before taking its substring.
8616 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
8617 encoded name is chopped in the middle of the encoded string, and
8618 thus displayed encoded.
8619
8620 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
8621
8622 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
8623
8624 2011-12-10 Eli Zaretskii <eliz@gnu.org>
8625
8626 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
8627 to use texinfo-update-node and commands that call it if the
8628 Texinfo file uses @node lines without next/prev/up pointers.
8629 Correct outdated description about texinfo-master-menu.
8630 (texinfo-all-menus-update, texinfo-master-menu)
8631 (texinfo-update-node, texinfo-every-node-update)
8632 (texinfo-multiple-files-update): Doc fix. Warn against updating
8633 all the @node lines.
8634 (texinfo-master-menu): Only call texinfo-update-node if the prefix
8635 argument is numeric. Explain better in the doc string what the
8636 function really does.
8637 (texinfo-insert-master-menu-list): Improve the error message
8638 displayed if there's no menu in the Top node.
8639 (Bug#2975) See also this thread:
8640 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
8641
8642 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
8643
8644 * speedbar.el (speedbar-supported-extension-expressions):
8645 Add .adb and .ads, commonly used for Ada source code (bug#10256).
8646
8647 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
8648
8649 * printing.el (pr-mode-alist):
8650 * simple.el (filter-buffer-substring-functions)
8651 (completion-list-insert-choice-function):
8652 * window.el (window-with-parameter, window-atom-root)
8653 (window-sides-slots, window-size-fixed, window-min-delta)
8654 (window-max-delta, window--resize-mini-window)
8655 (window--resize-child-windows-normal, window-tree)
8656 (delete-other-windows, quit-window, split-window)
8657 (display-buffer-record-window, special-display-buffer-names)
8658 (special-display-regexps, special-display-popup-frame)
8659 (same-window-p, split-window-sensibly)
8660 (display-buffer-overriding-action, display-buffer-alist)
8661 (display-buffer-base-action, display-buffer, switch-to-buffer)
8662 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
8663 (fit-window-to-buffer, recenter-positions)
8664 (mouse-autoselect-window-state, mouse-autoselect-window-select):
8665 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
8666 and remove unneeded backslashes in docstrings.
8667
8668 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
8669
8670 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
8671
8672 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
8673 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
8674 end in ".mk".
8675 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
8676 when reading the makefile (bug#10116).
8677
8678 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
8679
8680 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
8681 (bug#10116).
8682
8683 2011-12-06 Glenn Morris <rgm@gnu.org>
8684
8685 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
8686
8687 2011-12-06 Chong Yidong <cyd@gnu.org>
8688
8689 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
8690
8691 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
8692
8693 * textmodes/table.el (table-shorten-cell): Fix typo.
8694
8695 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
8696
8697 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
8698
8699 2011-12-05 Eli Zaretskii <eliz@gnu.org>
8700
8701 * descr-text.el (describe-char): Fix display of strong
8702 right-to-left characters and directional embeddings and overrides.
8703
8704 * simple.el (what-cursor-position): Fix display of codepoints of
8705 strong right-to-left characters.
8706
8707 2011-12-05 Chong Yidong <cyd@gnu.org>
8708
8709 * faces.el (read-color): Doc fix.
8710
8711 2011-12-05 Glenn Morris <rgm@gnu.org>
8712
8713 * align.el (align--set-marker): Add doc-string.
8714 Don't try to move something that is not a marker. (Bug#10216)
8715
8716 2011-12-04 Glenn Morris <rgm@gnu.org>
8717
8718 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
8719 overly zealous deletion of trailing whitespace.
8720
8721 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
8722
8723 * server.el (server-delete-client): On Windows, do not try to delete
8724 the only terminal.
8725 (server-process-filter): On Windows, treat requests for a tty frame as
8726 if they were for a GUI frame if the running server is in GUI mode.
8727
8728 2011-12-03 Glenn Morris <rgm@gnu.org>
8729
8730 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
8731
8732 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8733
8734 * electric.el: Streamline electric-indent's hook.
8735 (electric-indent-chars): Revert to simple list.
8736 (electric-indent-functions): New var.
8737 (electric-indent-post-self-insert-function): Use it.
8738
8739 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
8740 there's no inferior buffer (bug#10196).
8741 (prolog-consult-compile): Don't use toggle-read-only.
8742
8743 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
8744
8745 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
8746 interrupt. (Bug#10187)
8747
8748 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8749
8750 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
8751 (bug#9160).
8752
8753 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
8754 (bug#10191).
8755
8756 2011-12-02 Juri Linkov <juri@jurta.org>
8757
8758 * info.el (Info-search): Display "end of manual" when Isearch
8759 reaches the end of single-file Info manual. (Bug#9918)
8760
8761 2011-12-02 Eli Zaretskii <eliz@gnu.org>
8762
8763 * isearch.el (isearch-message-prefix): Run the input method part
8764 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
8765
8766 2011-12-02 Juri Linkov <juri@jurta.org>
8767
8768 * isearch.el (isearch-occur): Use `word-search-regexp' for
8769 `isearch-word'.
8770 (isearch-search-and-update): Add condition for `isearch-word' and
8771 call `word-search-regexp'. (Bug#10145)
8772
8773 2011-12-01 Glenn Morris <rgm@gnu.org>
8774
8775 * eshell/em-hist.el (eshell-hist-initialize):
8776 Handle eshell-history-size nil and HISTSIZE set or unset.
8777 (eshell-history-file-name, eshell-history-size): Fix custom type.
8778
8779 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8780
8781 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
8782
8783 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
8784
8785 * progmodes/verilog-mode.el (verilog-pretty-expr):
8786 Rework verilog-pretty-expr to handle new assignment operators in system
8787 verilog, such as += *= and the like.
8788 (verilog-assignment-operator-re): Regular expression to find the
8789 assigment operator in a verilog assignment.
8790 (verilog-assignment-operation-re): Regular expression to find an
8791 assignment statement for pretty-expr.
8792 (verilog-in-attribute-p): Query returns true if point is in an
8793 attribute context; used to skip these for expression line up from
8794 pretty-expr.
8795 (verilog-in-parameter-p): Query returns true if point is in an
8796 parameter definition context; used to skip these for expression
8797 line up from pretty-expr.
8798 (verilog-in-parenthesis-p): Query returns true if point is in a
8799 parenthetical expression, specifically ( ) but not [ ] or { };
8800 used by pretty-expr.
8801 (verilog-just-one-space): If there is no space, don't add one.
8802 (verilog-get-lineup-indent-2): Specifically skip just attribute
8803 contexts for expression lineup, rather than skipping all
8804 parenthetical expressions.
8805 (verilog-calculate-indent): Fix comment, and fix indent.
8806 (verilog-do-indent): Indent declarations in lists (suggested by
8807 Joachim Lechner).
8808 (verilog-mode-abbrev-table): Populate abbrev mode with the various
8809 skeleton items.
8810 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
8811 by Alain Mellan).
8812
8813 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
8814
8815 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
8816 parameters with embedded comments. Reported by Ray Stevens.
8817 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
8818 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
8819 Reported by Tim Holt.
8820 (verilog-auto): Fix AUTOing a upper module then AUTOing module
8821 instantiated by upper module causing wrong expansion until AUTOed a
8822 second time. Reported by K C Buckenmaier.
8823 (verilog-diff-auto): Fix showing .* as a difference when
8824 `verilog-auto-star-save' off. Reported by Dan Dever.
8825 (verilog-auto-reset, verilog-read-always-signals)
8826 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
8827 temporary signals in reset list if
8828 verilog-auto-reset-blocking-in-non is nil, and match assignment
8829 style to each signal's assignment type, bug381.
8830 Reported by Thomas Esposito.
8831 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
8832 (verilog-uvm-statement-re): Support UVM indentation and
8833 highlighting, with old OVM keywords only.
8834 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
8835 Support AUTOTIEOFF creating non-wire data types.
8836 Suggested by Jonathan Greenlaw.
8837 (verilog-auto-insert-lisp, verilog-delete-to-paren)
8838 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
8839 (verilog-inject-sense, verilog-read-inst-pins)
8840 (verilog-read-sub-decls, verilog-read-sub-decls-line):
8841 Fix mismatching parenthesis inside commented out code when deleting
8842 AUTOINST, bug383. Reported by Jonathan Greenlaw.
8843 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
8844 non-numeric vector width. Reported by Alex Reed.
8845 (verilog-auto-ascii-enum): Add "onehot" option to work around not
8846 detecting signals with parameter widths. Reported by Alex Reed.
8847 (verilog-auto-delete-trailing-whitespace):
8848 With `verilog-auto-delete-trailing-whitespace' remove trailing
8849 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
8850 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
8851 Fix verilog-scan-cache corruption when running user AUTO expansion
8852 hooks that call indentation routines.
8853 (verilog-simplify-range-expression): Fix typo ignoring lower case
8854 identifiers.
8855 (verilog-delete-auto): Fix delete-autos to also remove user created
8856 automatics, as long as they start with AUTO.
8857 (verilog-batch-diff-auto, verilog-diff-auto)
8858 (verilog-diff-function): Add `verilog-diff-auto' and bind to
8859 "C-c?" to report differences in AUTO expansion, ignoring spaces.
8860 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
8861 (verilog-in-paren-quick, verilog-re-search-backward-quick)
8862 (verilog-re-search-forward-quick, verilog-syntax-ppss):
8863 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
8864 is disabled and its cache will get corrupt, causing AUTOS not to
8865 expand. Instead use only -quick functions.
8866 (verilog-scan-region): Fix scanning over escaped quotes.
8867 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
8868 (verilog-re-search-backward-quick)
8869 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
8870 related functions now ignore strings, to fix misparsing of strings
8871 with magic comments embedded in them.
8872 (verilog-read-auto-template):
8873 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
8874 Reported by Brad Dobbie.
8875 (verilog-read-auto-template):
8876 Fix 'verilog-auto-inst-template-numbers' with comments.
8877 Reported by Brad Dobbie.
8878 (verilog-auto-inst, verilog-auto-inst-param)
8879 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
8880 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
8881 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
8882 debugging templates without merge conflicts, bug357.
8883 Reported by Brad Dobbie.
8884 (verilog-read-auto-template):
8885 Fix verilog-auto-inst-template-numbers with multiple templates.
8886 Reported by Brad Dobbie.
8887 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
8888 abbrevs so user won't be asked to save.
8889 (verilog-read-auto-lisp-present): Fix to start at beginning of
8890 buffer in case called outside of verilog-auto.
8891 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
8892 to "X-2". Reported by Matthew Myers.
8893 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
8894 all inputs from module templates. Reported by Leith Johnson.
8895 (verilog-module-inside-filename-p): Fix locating programs as with
8896 modules.
8897 (verilog-auto-inst-port): Fix vl-width expressions when using
8898 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
8899 (verilog-decls-get-regs, verilog-decls-get-signals,
8900 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
8901 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
8902 verilog-read-decls): Combine reg and wire structures into one var
8903 structure to represent SystemVerilog concepts.
8904 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
8905 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
8906 (verilog-auto-wire-type, verilog-insert-definition):
8907 Add verilog-auto-wire-type and AUTOLOGIC to support using
8908 SystemVerilog "logic" keyword instead of "wire"/"reg".
8909 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
8910 to declares outputs that also have assignments (presumably in an
8911 ifdef or generate if so there's not a driver conflict).
8912 Reported by Matthew Myers.
8913 (verilog-auto-declare-nettype, verilog-insert-definition):
8914 Add verilog-auto-declare-nettype to fix declarations using
8915 `default_nettype none. Reported by Julian Gorfajn.
8916 (verilog-read-always-signals-recurse, verilog-read-decls)
8917 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
8918 malformed end statement, bug325. Reported by Joshua Wise and
8919 Andrew Drake.
8920 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
8921 (verilog-inst-comment-re): Fix not deleting Interfaced comment
8922 when expanding .* in interfaces, bug320.
8923 Reported by Pierre-David Pfister.
8924 (verilog-read-module-name): Fix import statements between module
8925 name and open parenthesis, bug317.
8926 Reported by Pierre-David Pfister.
8927 (verilog-simplify-range-expression): Fix simplification of
8928 multiplications inside AUTOWIRE connections, bug303.
8929 (verilog-auto-inst-port): Support parameter expansion in
8930 multidimensional arrays.
8931 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
8932 after "assert property". Reported by Julian Gorfajn.
8933 (verilog-simplify-range-expression): Fix "couldn't merge" errors
8934 with multiplication, bug303.
8935 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
8936 Reported by Jan Frode Lonnum.
8937
8938 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
8939
8940 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
8941 (hfy-shell-file-name, hfy-shell):
8942 * international/fontset.el (x-decompose-font-name): Fix typos.
8943
8944 2011-11-29 Ken Brown <kbrown@cornell.edu>
8945
8946 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
8947 (gdb-version): Remove defvar.
8948 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
8949 (gdb-gud-context-command, gdb-non-stop-handler)
8950 (gdb-current-context-command, gdb-stopped): Use it.
8951 (gdb-init-1): Enable pretty printing here.
8952 (gdb-non-stop-handler): Don't enable pretty-printing here.
8953 Check to see if the target supports non-stop mode; if not, turn off
8954 non-stop mode. Use the following.
8955 (gdb-check-target-async): New defun.
8956 (gud-watch, gdb-stopped): Fix whitespace.
8957 (gdb-get-source-file): Don't try to display the source file if
8958 `gdb-main-file' is nil.
8959
8960 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
8961
8962 * align.el: Try to generate fewer markers (bug#10047).
8963 (align--set-marker): New macro.
8964 (align-region): Use it.
8965
8966 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
8967
8968 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
8969
8970 2011-11-29 Chong Yidong <cyd@gnu.org>
8971
8972 * indent.el (indent-for-tab-command, indent-according-to-mode):
8973 Doc fix.
8974 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
8975
8976 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
8977
8978 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
8979 aware of remote file names. (Bug#10124)
8980
8981 2011-11-29 Chong Yidong <cyd@gnu.org>
8982
8983 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
8984
8985 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
8986
8987 * files.el (find-file): Don't use force-same-window (bug#10144).
8988 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
8989 use pop-to-buffer if the selected window can't be used.
8990 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
8991
8992 2011-11-28 Eli Zaretskii <eliz@gnu.org>
8993
8994 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
8995 special-mode-map.
8996
8997 2011-11-28 Chong Yidong <cyd@gnu.org>
8998
8999 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
9000
9001 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
9002
9003 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
9004 gdb-get-source-file-list on gdb-create-source-file-list.
9005
9006 2011-11-26 Eli Zaretskii <eliz@gnu.org>
9007
9008 * whitespace.el (whitespace-newline): Use a different foreground
9009 color for 16-color light-background displays.
9010
9011 2011-11-24 Chong Yidong <cyd@gnu.org>
9012
9013 * window.el (display-buffer--special-action): Doc fix.
9014
9015 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
9016
9017 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
9018 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
9019 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
9020 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
9021 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
9022 (avl-tree-stack-first):
9023 * emacs-lisp/cconv.el (cconv--analyse-use):
9024 * net/gnutls.el (gnutls-negotiate): Fix typos.
9025
9026 2011-11-24 Glenn Morris <rgm@gnu.org>
9027
9028 * lpr.el (lpr-windows-system, lpr-lp-system):
9029 * mail/binhex.el (binhex-begin-line):
9030 * progmodes/grep.el (grep-history, grep-find-history):
9031 * textmodes/flyspell.el:
9032 * vc/pcvs-defs.el (cvs-global-menu):
9033 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
9034 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
9035 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
9036
9037 * net/tls.el: Fix case of "GnuTLS".
9038
9039 * paths.el (rmail-file-name): Format doc-string for make-docfile.
9040
9041 * version.el (emacs-build-system): Give it a doc-string.
9042
9043 2011-11-24 Juri Linkov <juri@jurta.org>
9044
9045 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
9046
9047 2011-11-24 Glenn Morris <rgm@gnu.org>
9048
9049 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
9050 if called on a non-mime message just toggle the headers. (Bug#8006)
9051
9052 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
9053
9054 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
9055 (allout-lead-with-comment-string, allout-structure-deleted-hook)
9056 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
9057 (allout-rebullet-heading, allout-open-sibtopic)
9058 (allout-toggle-current-subtree-encryption)
9059 (allout-toggle-subtree-encryption, allout-encrypt-string)
9060 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
9061 (allout-distinctive-bullets-string, allout-auto-activation):
9062 * window.el (window-normalize-buffer-to-display):
9063 * progmodes/verilog-mode.el (verilog-batch-indent):
9064 * textmodes/bibtex.el (bibtex-field-braces-opt)
9065 (bibtex-field-strings-opt):
9066 * vc/cvs-status.el (cvs-tree-merge):
9067 Fix typos.
9068
9069 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
9070
9071 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
9072 `non-essential' to t, in order to avoid remote connections.
9073
9074 2011-11-23 Eli Zaretskii <eliz@gnu.org>
9075
9076 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9077 On MS-DOS and MS-Windows, compare with loaddefs.el
9078 case-insensitively.
9079
9080 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9081
9082 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
9083
9084 2011-11-23 Glenn Morris <rgm@gnu.org>
9085
9086 * paths.el (rmail-file-name): Reformat the doc-string so that it
9087 is picked up.
9088
9089 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
9090 (rmail-auto-file): Ignore case in the "special" field names,
9091 as mail-fetch-field does for all others.
9092
9093 * mail/rmail.el (rmail-forward):
9094 * mail/rmailkwd.el (rmail-set-label):
9095 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
9096 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
9097
9098 * mail/rmail.el (rmail-current-message): Doc fix.
9099
9100 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
9101
9102 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
9103
9104 * server.el (server-eval-and-print): Allow C-g (bug#6585).
9105
9106 2011-11-22 Glenn Morris <rgm@gnu.org>
9107
9108 * mail/rmailmm.el (test-rmail-mime-handler)
9109 (test-rmail-mime-bulk-handler)
9110 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
9111
9112 2011-11-21 Juri Linkov <juri@jurta.org>
9113
9114 * calc/calc.el (calc-read-key-sequence):
9115 Let-bind `input-method-function' to nil. (Bug#10018)
9116
9117 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9118
9119 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
9120 Tell the caller that the next line needs recomputation, even
9121 though it doesn't start a sexp (bug#10094).
9122
9123 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
9124
9125 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
9126
9127 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9128
9129 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
9130 Use force-same-window.
9131
9132 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9133
9134 * descr-text.el (describe-char-unicode-data):
9135 * json.el (json-string-escape):
9136 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
9137 (Footnote-unicode, Footnote-style-p):
9138 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
9139
9140 2011-11-20 Chong Yidong <cyd@gnu.org>
9141
9142 * window.el (replace-buffer-in-windows): Restore interactive spec.
9143
9144 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9145
9146 * electric.el (electric-indent-mode): Fix last change (too optimistic).
9147
9148 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
9149 (byte-compile-global-not-obsolete-vars): New var.
9150 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
9151 Use it.
9152 (byte-compile-warn-obsolete): Align text with the one in *Help*.
9153
9154 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9155
9156 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
9157 * progmodes/pascal.el (electric-pascal-equal):
9158 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
9159 * xml.el (xml-substitute-special): Fix typos.
9160
9161 2011-11-20 Glenn Morris <rgm@gnu.org>
9162
9163 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
9164 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
9165 Doc fixes.
9166 (rmail-decode-mime-charset): Mark as obsolete.
9167
9168 * mail/rmailsum.el (rmail-message-regexp-p-1):
9169 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
9170 Before using mime functions, check they are set. (Bug#10077)
9171
9172 2011-11-19 Juri Linkov <juri@jurta.org>
9173
9174 * info.el (Info-finder-find-node): Use `package--builtins' instead
9175 of `package-alist'. Use node names formed by the pattern "Keyword "
9176 and the keyword name.
9177
9178 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
9179
9180 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
9181
9182 2011-11-19 Juri Linkov <juri@jurta.org>
9183
9184 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
9185 that calls `revert-buffer' on all Info buffers. (Bug#9915)
9186 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
9187 `old-history', `old-history-forward'. Add let-binding
9188 `window-selected'. Remove calls to `kill-buffer',
9189 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
9190 before calling `Info-find-node', so `Info-find-node-2' will reread
9191 the Info file. Restore window positions only when `window-selected'
9192 is non-nil.
9193
9194 2011-11-19 Juri Linkov <juri@jurta.org>
9195
9196 * isearch.el (isearch-lazy-highlight-new-loop):
9197 Remove condition `(not isearch-error)'. (Bug#9918)
9198
9199 * misearch.el (multi-isearch-search-fun): Add condition
9200 `(not bound)' to ignore lazy-highlighting search.
9201 Add the search-failed message "end of multi" when the end of
9202 multi-sequence is reached. Uncapitalize the search-failed
9203 message "Repeat for next buffer".
9204
9205 * info.el (Info-search): Add the search-failed message
9206 "end of the manual" when the end of the manual is reached
9207 in Isearch mode.
9208
9209 2011-11-19 Juri Linkov <juri@jurta.org>
9210
9211 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
9212 Use non-destructive `remove' instead of `delete' because
9213 `Info-history-list' stored to `Info-isearch-initial-history-list' in
9214 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
9215
9216 2011-11-19 Juri Linkov <juri@jurta.org>
9217
9218 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
9219 to nil instead of binding `search-ring' and `regexp-search-ring'.
9220 (Bug#9185)
9221
9222 2011-11-19 Eli Zaretskii <eliz@gnu.org>
9223
9224 * simple.el (line-move): Force movement by logical lines for any
9225 hscrolled window, not only when auto-hscroll-mode is on.
9226 (line-move-visual): Update doc string to that effect. (Bug#10076)
9227
9228 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
9229
9230 * language/european.el (macintosh): Define as alias for mac-roman.
9231
9232 2011-11-19 Eli Zaretskii <eliz@gnu.org>
9233
9234 * mail/rmailmm.el (rmail-mime-display-header)
9235 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
9236 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
9237 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
9238 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
9239 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
9240 of a raw aref.
9241 (rmail-mime-entity-segment): To get past the tagline, move forward
9242 2 more lines, to account for the 2 empty lines that precede and
9243 follow the line with the buttons.
9244 (rmail-mime-update-tagline): Move one more line, to get past the
9245 empty line that follows the buttons in the tagline. (Bug#9520)
9246
9247 2011-11-19 Martin Rudalics <rudalics@gmx.at>
9248
9249 * window.el (window-max-delta-1, window-min-delta-1)
9250 (window-min-size-1, window-state-get-1, window-state-put-1)
9251 (window-state-put-2): Use "window--" prefix.
9252
9253 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
9254
9255 * emacs-lisp/smie.el: Improve warnings and conflict detection.
9256 (smie-warning-count): New var.
9257 (smie-set-prec2tab): Use it.
9258 (smie-bnf->prec2): Improve warnings. Add docstring.
9259 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
9260 (smie-bnf--set-class): New function.
9261 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
9262 corner case.
9263
9264 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
9265 (compilation-error-properties, compilation-move-to-column):
9266 Handle compilation-first-column while in the target buffer.
9267
9268 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
9269 Don't hardcode point-min==1.
9270
9271 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
9272 (eshell-rewrite-for-command): Remove workaround.
9273 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
9274 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
9275 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
9276
9277 * files-x.el (modify-file-local-variable): Obey commenting conventions.
9278
9279 2011-11-17 Glenn Morris <rgm@gnu.org>
9280
9281 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9282 Ignore buffer-local generated-autoload-file if it is the same
9283 as the global value. (Bug#10049)
9284
9285 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
9286
9287 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
9288 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
9289 (reftex-toc-previous-heading, reftex-toc-max-level)
9290 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
9291 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
9292 (reftex-toc-do-promote, reftex-toc-promote-prepare)
9293 (reftex-toc-promote-action, reftex-toc-extract-section-number)
9294 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
9295 (reftex-toc-rename-label, reftex-toc-visit-location)
9296 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
9297 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
9298 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
9299 leaving "*toc*" only for references to the buffer.
9300
9301 2011-11-17 Martin Rudalics <rudalics@gmx.at>
9302
9303 * window.el (window-resize, delete-window, split-window):
9304 Replace window-splits by window-combination-resize.
9305 * cus-start.el (window-splits): Replace by window-combination-resize.
9306
9307 2011-11-17 Glenn Morris <rgm@gnu.org>
9308
9309 * progmodes/sh-script.el (sh-font-lock-keywords-var):
9310 Make bash entry derive from sh entry, not shell entry.
9311
9312 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
9313
9314 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
9315 local file name.
9316
9317 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
9318
9319 * menu-bar.el (menu-bar-file-menu):
9320 * printing.el (pr-ps-utility):
9321 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
9322 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
9323 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
9324 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
9325 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
9326 (icalendar--convert-cyclic-to-ical)
9327 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
9328 (icalendar--convert-ical-to-diary)
9329 (icalendar--convert-recurring-to-diary)
9330 (icalendar--convert-non-recurring-all-day-to-diary)
9331 (icalendar-import-format-sample):
9332 * progmodes/idlw-shell.el (idlwave-shell-mode):
9333 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
9334 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
9335 (vhdl-ps-print-init): Fix typos.
9336
9337 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
9338
9339 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
9340 FSF and collapse date sequence, obscure author/maintainer email address
9341 better, remove extra version line, track relocation of author's webpage.
9342
9343 * progmodes/python.el (python-pdbtrack-input-prompt)
9344 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
9345 regular python pdb prompts. Adjustments shamelessly taken exactly as
9346 suggested in EmacsWiki page (tiny change):
9347 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
9348
9349 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
9350
9351 * expand.el (expand-pos, expand-index, expand-point):
9352 Remove redundant info from docstring.
9353 (expand-add-abbrevs): Doc fix.
9354 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
9355 (expand-sample-perl-mode-expand-list): Fix typos.
9356
9357 * net/dbus.el (dbus-event-member-name):
9358 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
9359 * term/pc-win.el (msdos-create-frame-with-faces):
9360 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
9361
9362 2011-11-16 Martin Rudalics <rudalics@gmx.at>
9363
9364 * window.el (split-window, window-state-get-1)
9365 (window-state-put-1, window-state-put-2): Rename occurrences of
9366 window-nest to window-combination-limit.
9367 * cus-start.el (window-nest): Rename to window-combination-limit.
9368
9369 2011-11-16 Chong Yidong <cyd@gnu.org>
9370
9371 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
9372 regexp (Bug#10033).
9373
9374 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
9375
9376 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
9377 `completing-read' will remove *Completions* and will preserve
9378 current-buffer for us.
9379 (tmm-add-prompt): Users of *Completions* will always (re)set its
9380 major mode.
9381 (tmm-old-comp-map): Remove.
9382
9383 2011-11-16 Glenn Morris <rgm@gnu.org>
9384
9385 * mail/rmailedit.el: Require rmailmm when compiling.
9386 (rmail-old-mime-state): New declaration.
9387 (rmail-edit-current-message): If editing a mime message,
9388 edit the "raw" message from the mbox buffer.
9389 (rmail-cease-edit): Handle mime messages. (Bug#9840)
9390
9391 2011-11-15 Glenn Morris <rgm@gnu.org>
9392
9393 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
9394 which wasn't being used. Add optional arg to force given state.
9395 (rmail-mime): Add optional arg to force given state.
9396
9397 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
9398
9399 * allout.el (allout-encryption-plaintext-sanitization-regexps):
9400 * frame.el (display-mm-dimensions-alist):
9401 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
9402 (outline-move-subtree-down):
9403 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
9404 (newsticker--treeview-do-get-node):
9405 * net/quickurl.el (quickurl-list-buffer-name):
9406 * progmodes/dcl-mode.el (dcl-mode):
9407 * progmodes/gdb-mi.el (gdb-mapcar*):
9408 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
9409
9410 2011-11-15 Glenn Morris <rgm@gnu.org>
9411
9412 * mail/rmail.el (rmail-file-coding-system): It's only ever used
9413 in a boolean sense, so just make it a boolean, and fix the doc.
9414 (rmail-show-mime-function, rmail-mime-feature)
9415 (rmail-require-mime-maybe): Doc fixes.
9416 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
9417
9418 * mail/rmailmm.el (rmail-show-mime): Doc fix.
9419
9420 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
9421
9422 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
9423 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
9424 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
9425 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
9426
9427 2011-11-15 Glenn Morris <rgm@gnu.org>
9428
9429 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
9430 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
9431 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
9432 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
9433 (rmail-mime, rmail-show-mime): Doc fixes.
9434
9435 * term/ns-win.el (mode-line-frame-identification):
9436 Leave it alone. (Bug#10051)
9437
9438 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
9439
9440 * mail/rmailout.el (rmail-output-to-rmail-buffer):
9441 Handle empty buffers. (Bug#9978)
9442
9443 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
9444
9445 * international/mule.el (define-charset):
9446 * mail/rmailmm.el (rmail-mime-find-header-encoding):
9447 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
9448 * progmodes/verilog-mode.el (verilog-backward-token):
9449 * textmodes/ispell.el (lookup-words):
9450 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
9451
9452 2011-11-14 Glenn Morris <rgm@gnu.org>
9453
9454 * progmodes/executable.el
9455 (executable-make-buffer-file-executable-if-script-p):
9456 Handle file-modes returning nil.
9457
9458 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
9459 message - not necessary, and causes problems. (Bug#9831)
9460
9461 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
9462
9463 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
9464
9465 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
9466 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
9467 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
9468
9469 2011-11-12 Martin Rudalics <rudalics@gmx.at>
9470
9471 * window.el (window-resize, delete-window): Use window-splits
9472 variable instead of function.
9473 (window-state-get-1, window-state-put-2, window-state-put):
9474 Don't deal with windows' splits status.
9475
9476 2011-11-12 Glenn Morris <rgm@gnu.org>
9477
9478 * apropos.el (apropos-do-all, apropos-library, apropos-value)
9479 (apropos-documentation): Doc fixes.
9480
9481 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
9482
9483 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
9484 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
9485
9486 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
9487
9488 * electric.el (electric-indent-post-self-insert-function): Make it
9489 possible for a char to only indent in some circumstances.
9490 (electric-indent-mode): Simplify.
9491
9492 2011-11-11 Martin Rudalics <rudalics@gmx.at>
9493
9494 * window.el (windows-with-parameter): Remove unused function.
9495 (windows-at-side): Rename to window-at-side-list.
9496 (window-check, window-atom-check, window-atom-check-1)
9497 (window-side-check, window-size-ignore, window-size-fixed-1)
9498 (window-in-direction-2): Prefix with "window--".
9499 (window-tree-1): Rename to window--subtree, fix doc-string.
9500
9501 2011-11-11 Glenn Morris <rgm@gnu.org>
9502
9503 * subr.el (eval-after-load): If FILE is already loaded,
9504 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
9505
9506 2011-11-10 Glenn Morris <rgm@gnu.org>
9507
9508 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
9509 Call svn via vc-svn-command rather than vc-do-command.
9510 (vc-svn-command): Add --non-interactive. (Bug#9993)
9511 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
9512
9513 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9514 Add toggle-read-only. (Bug#7292)
9515 * files.el (toggle-read-only): Mention that it should only
9516 be used interactively. (Bug#10006)
9517
9518 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
9519
9520 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9521 Adjust regexp for OCaml warnings.
9522
9523 * electric.el (electric-pair-post-self-insert-function): Let user
9524 turn it off buffer-locally (bug#9932).
9525
9526 * progmodes/python.el (python-beginning-of-statement):
9527 Rewrite (bug#2703).
9528
9529 * progmodes/compile.el: Better handle TABs (bug#9749).
9530 (compilation-internal-error-properties)
9531 (compilation-next-error-function): Obey the target buffer's
9532 compilation-error-screen-columns.
9533
9534 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
9535
9536 * progmodes/meta-mode.el: Remove obsolete comments.
9537 (meta-right-comment-regexp, meta-ignore-comment-regexp):
9538 Fix typos in docstrings.
9539
9540 2011-11-09 Martin Rudalics <rudalics@gmx.at>
9541
9542 * window.el (window-size-fixed-p): Rewrite doc-string.
9543 (window-resizable-p): Rename to window--resizable-p. Update callers.
9544 (window--resizable): New function. Make all callers of
9545 window-resizable call window--resizable instead.
9546 (window-resizable): Rewrite in terms of window--resizable.
9547
9548 2011-11-08 Glenn Morris <rgm@gnu.org>
9549
9550 * progmodes/delphi.el (delphi-mode-syntax-table):
9551 Let define-derived-mode define a proper syntax table. (Bug#9994)
9552
9553 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
9554
9555 * window.el: Stay away from defsubst.
9556 (window-list-no-nils): Remove.
9557 (window-state-get-1, window-state-get): Use backquote instead.
9558
9559 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9560
9561 * emacs-lisp/find-func.el (find-function-read):
9562 Fix incorrect use of default argument in `completing-read'.
9563
9564 2011-11-08 Martin Rudalics <rudalics@gmx.at>
9565
9566 * window.el (display-buffer-function, special-display-function):
9567 Mention display-buffer-record-window but do not mention
9568 help-setup parameter in doc-strings.
9569 (window-min-delta): Fix doc-string typo.
9570
9571 2011-11-08 Chong Yidong <cyd@gnu.org>
9572
9573 * window.el (window-total-height, window-total-width): Doc fix.
9574 (window-body-size): Move from C.
9575 (window-body-height, window-body-width): Move to C.
9576
9577 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
9578
9579 * window.el: Make special-display like display-buffer-alist (bug#9532).
9580 (display-buffer--special-action): New function, morphed
9581 from display-buffer--special.
9582 (display-buffer): Use it to handle special-display-buffers at higher
9583 priority (just after display-buffer-alist).
9584 (display-buffer-fallback-action, display-buffer--other-frame-action)
9585 (pop-to-buffer-same-window): Remove display-buffer--special.
9586
9587 2011-11-07 Glenn Morris <rgm@gnu.org>
9588
9589 * calendar/cal-menu.el (cal-menu-set-date-title):
9590 Do nothing if not in a calendar. (Bug#9976)
9591
9592 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
9593
9594 * files.el (find-file): Always use selected-window.
9595
9596 2011-11-07 Martin Rudalics <rudalics@gmx.at>
9597
9598 * window.el (window-combinations): Make WINDOW argument
9599 mandatory. Rewrite doc-string.
9600 (walk-window-subtree, window-atom-check, window-min-delta)
9601 (window-max-delta, window--resize-this-window)
9602 (window--resize-root-window-vertically, window-tree)
9603 (balance-windows, window-state-put): Rewrite doc-strings as to
9604 not mention the term "subwindow".
9605 (window--resize-subwindows-skip-p): Rename to
9606 window--resize-child-windows-skip-p.
9607 (window--resize-subwindows-normal): Rename to
9608 window--resize-child-windows-normal.
9609 (window--resize-subwindows): Rename to
9610 window--resize-child-windows.
9611 (window-or-subwindow-p): Rename to window--in-subtree-p.
9612
9613 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9614
9615 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
9616 Ensure that mbox format messages end in two newlines (Bug#9974).
9617
9618 2011-11-06 Chong Yidong <cyd@gnu.org>
9619
9620 * window.el (window-combination-p): Function deleted; its
9621 side-effect is not used in any existing code.
9622 (window-combinations, window-combined-p): Call window-*-child
9623 directly.
9624
9625 2011-11-05 Chong Yidong <cyd@gnu.org>
9626
9627 * window.el (window-valid-p): Rename from window-any-p.
9628 (window-size-ignore, window-state-get): Callers changed.
9629 (window-normalize-window): Rename from window-normalize-any-window.
9630 New arg LIVE-ONLY, replacing window-normalize-live-window.
9631 (window-normalize-live-window): Delete.
9632 (window-combination-p, window-combined-p, window-combinations)
9633 (walk-window-subtree, window-atom-root, window-min-size)
9634 (window-sizable, window-sizable-p, window-size-fixed-p)
9635 (window-min-delta, window-max-delta, window-resizable)
9636 (window-resizable-p, window-full-height-p, window-full-width-p)
9637 (window-current-scroll-bars, window-point-1, set-window-point-1)
9638 (window-at-side-p, window-in-direction, window-resize)
9639 (adjust-window-trailing-edge, maximize-window, minimize-window)
9640 (window-deletable-p, delete-window, delete-other-windows)
9641 (record-window-buffer, unrecord-window-buffer)
9642 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
9643 (quit-window, split-window, window-state-put)
9644 (set-window-text-height, fit-window-to-buffer)
9645 (shrink-window-if-larger-than-buffer): Callers changed.
9646
9647 2011-11-04 Eli Zaretskii <eliz@gnu.org>
9648
9649 * mail/rmail.el (rmail-simplified-subject): Decode subject with
9650 rfc2047-decode-string.
9651 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
9652 warnings.
9653
9654 * window.el (window-body-height, window-body-width): Mention in
9655 the doc string that the return values are in frame's canonical
9656 units. (Bug#9949)
9657
9658 2011-11-03 Alan Mackenzie <acm@muc.de>
9659
9660 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
9661 change in cc-engine.el.
9662
9663 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
9664
9665 * window.el (switch-to-buffer): Use `force-same-window' interactively.
9666
9667 2011-11-02 Martin Rudalics <rudalics@gmx.at>
9668
9669 * window.el (quit-window): Call unrecord-window-buffer after
9670 showing another buffer in the window. (Bug#9937)
9671 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
9672
9673 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
9674
9675 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
9676 Accept status with more than 9 shelves. (Bug#9935)
9677 Reported by Colin D Bennett <colin@gibibit.com>.
9678
9679 2011-11-01 Martin Rudalics <rudalics@gmx.at>
9680
9681 * help.el (with-help-window): Don't reference
9682 temp-buffer-show-specifiers in doc-string.
9683
9684 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
9685
9686 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
9687 menu-item.
9688
9689 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9690
9691 * whitespace.el: New version 13.2.2.
9692 (whitespace-newline-mode): Disable properly. Reported by Sarah
9693 <EmacsWiki>.
9694
9695 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
9696
9697 * net/newst-treeview.el: Remove "Time-stamp".
9698 (newsticker--group-manage-orphan-feeds): Do not call
9699 newsticker--treeview-tree-update.
9700 (newsticker-treeview-update, newsticker-treeview):
9701 Call newsticker--treeview-tree-update if necessary.
9702
9703 2011-10-30 Martin Rudalics <rudalics@gmx.at>
9704
9705 * window.el (window-iso-combination-p, window-iso-combined-p)
9706 (window-iso-combinations): Remove "iso-" infix.
9707 Suggested by Chong Yidong.
9708 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
9709 (window-max-delta-1, window-resize, window--resize-siblings)
9710 (window--resize-this-window, adjust-window-trailing-edge)
9711 (split-window, balance-windows-1)
9712 (shrink-window-if-larger-than-buffer):
9713 * calendar/calendar.el (calendar-generate-window):
9714 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
9715
9716 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
9717
9718 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
9719 in place (bug#9907).
9720 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
9721 (eshell-rewrite-if-command, eshell-rewrite-for-command)
9722 (eshell-structure-basic-command, eshell-rewrite-while-command)
9723 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
9724 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
9725 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
9726 (eshell-do-pipelines-synchronously, eshell-eval-command):
9727 Use backquotes and prefer setq to set.
9728 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
9729 (eshell-macrop): Use functionp.
9730 (eshell-do-eval): Handle multiple expressions in `while' body.
9731
9732 2011-10-30 Chong Yidong <cyd@gnu.org>
9733
9734 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
9735 instead of set-mark (Bug#9810).
9736
9737 2011-10-30 Chong Yidong <cyd@gnu.org>
9738
9739 * window.el (split-window-below, split-window-right): Rename from
9740 split-window-above-each-other and split-window-side-by-side
9741 respectively. All callers changed.
9742 (split-window-sensibly, split-window-sensibly): Use them.
9743 (split-window-keep-point): Doc fix.
9744
9745 * isearch.el: Add isearch-scroll property to split-window-below
9746 and split-window-right.
9747
9748 * follow.el (follow-mode):
9749 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
9750 * progmodes/ada-xref.el (ada-gdb-application):
9751 * emulation/vip.el (vip-buffer-in-two-windows):
9752 * image-dired.el (image-dired-dired-with-window-configuration):
9753 * dired-x.el (dired-do-find-marked-files):
9754 * dired.el (dired-pop-to-buffer):
9755 * bs.el (bs--show-with-configuration):
9756 * vc/emerge.el (emerge-setup-windows):
9757 * textmodes/two-column.el (2C-two-columns):
9758 * textmodes/reftex-toc.el (reftex-toc):
9759 * progmodes/gdb-mi.el (gdb-setup-windows):
9760 * progmodes/fortran.el (fortran-window-create):
9761 * net/newst-treeview.el (newsticker--treeview-window-init):
9762 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
9763 * emulation/tpu-edt.el (tpu-gold-map):
9764 * emulation/crisp.el (crisp-mode-map):
9765 * calendar/calendar.el (calendar-basic-setup): Callers changed.
9766
9767 2011-10-29 Chong Yidong <cyd@gnu.org>
9768
9769 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
9770
9771 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
9772
9773 * textmodes/flyspell.el (flyspell-word): Fix char offset for
9774 forged Ispell output (Bug#7904).
9775
9776 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
9777
9778 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9779
9780 * doc-view.el: Avoid ugly errors about not finding nil.
9781 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
9782 (doc-view-dvipdf-program, doc-view-unoconv-program)
9783 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
9784 Avoid nil or absolute file name as default value.
9785 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
9786
9787 2011-10-28 Alan Mackenzie <acm@muc.de>
9788
9789 * progmodes/cc-defs.el (c-version): -> 5.32.2.
9790
9791 2011-10-28 Alan Mackenzie <acm@muc.de>
9792
9793 Amend the handling of c-beginning/end-of-defun in nested declaration
9794 scopes.
9795
9796 * progmodes/cc-vars.el (c-defun-tactic): Move here from
9797 cc-langs.el. Change it to a defcustom.
9798
9799 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
9800 cc-vars.el.
9801
9802 * progmodes/cc-engine.el (c-beginning-of-statement-1):
9803 Prevent "class foo : bar" being spuriously recognized as a label.
9804
9805 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
9806 Add parameter `inclusive' (to include enclosing braces in the region).
9807 (c-widen-to-enclosing-decl-scope): New function.
9808 (c-while-widening-to-decl-block): New macro.
9809 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
9810 outward for defun boundaries, and correspondingly change symbol
9811 `respect-enclosure' to `go-outward'.
9812 (c-declaration-limits): Change algorithm to report only the "innermost"
9813 defun's boundaries.
9814
9815 2011-10-28 Deniz Dogan <deniz@dogan.se>
9816
9817 * net/rcirc.el (rcirc-mode): Use hard newlines.
9818
9819 2011-10-28 Alan Mackenzie <acm@muc.de>
9820
9821 Amend to indent and fontify macros "which include their own semicolon"
9822 correctly, using the "virtual semicolon" mechanism.
9823
9824 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
9825
9826 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
9827 Recode to scan one line at a time rather than having \n and \r
9828 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
9829 (c-forward-label): Amend for virtual semicolons.
9830 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
9831
9832 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
9833 of the new C macros.
9834
9835 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
9836 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
9837 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
9838 (c-opt-cpp-macro-define): Make into a full language variable.
9839 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
9840 AWK Mode (including \n, \r) removed, no longer needed.
9841
9842 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
9843 Invoke c-make-macro-with-semi-re.
9844
9845 * progmodes/cc-vars.el (c-macro-with-semi-re):
9846 (c-macro-names-with-semicolon): New variables.
9847 (c-make-macro-with-semi-re): New function.
9848
9849 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9850
9851 * vc/log-edit.el: Fill empty field rather than adding new one.
9852 (log-edit-add-field): New function.
9853 (log-edit-insert-changelog): Use it.
9854
9855 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9856
9857 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
9858
9859 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9860
9861 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
9862 (gdb--check-interpreter): New function.
9863 (gdb): Use it.
9864
9865 2011-10-27 Glenn Morris <rgm@gnu.org>
9866
9867 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
9868 (least-positive-float, least-negative-float)
9869 (least-positive-normalized-float, least-negative-normalized-float)
9870 (float-epsilon, float-negative-epsilon):
9871 Remove unnecessary declarations.
9872
9873 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
9874 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
9875 (least-positive-float, least-negative-float)
9876 (least-positive-normalized-float, least-negative-normalized-float)
9877 (float-epsilon, float-negative-epsilon): Add doc-strings,
9878 based on those in cl.texi.
9879
9880 * files.el (set-visited-file-name): If the major-mode changed,
9881 reload the local variables. (Bug#9796)
9882
9883 2011-10-27 Chong Yidong <cyd@gnu.org>
9884
9885 * subr.el (change-major-mode-after-body-hook): New hook.
9886 (run-mode-hooks): Run it.
9887
9888 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9889 Use change-major-mode-before-body-hook.
9890
9891 * simple.el (fundamental-mode):
9892 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
9893 change introducing fundamental-mode-hook.
9894
9895 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
9896
9897 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
9898
9899 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
9900
9901 * ido.el (ido-file-name-all-completions-1): Do not require
9902 tramp.el explicitly. (Bug#7583)
9903
9904 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
9905
9906 * progmodes/octave-mod.el:
9907 * progmodes/octave-inf.el: Update maintainer.
9908
9909 2011-10-26 Chong Yidong <cyd@gnu.org>
9910
9911 * subr.el (with-wrapper-hook): Rewrite doc.
9912
9913 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
9914
9915 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
9916 filenames "/method:foo:". (Bug#9793)
9917
9918 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
9919
9920 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
9921 (bug#9865).
9922
9923 2011-10-24 Glenn Morris <rgm@gnu.org>
9924
9925 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
9926
9927 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
9928
9929 * notifications.el: Add the requirement of a running D-Bus session
9930 bus to the Commentary.
9931
9932 2011-10-24 Juri Linkov <juri@jurta.org>
9933
9934 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9935 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
9936 (Bug#9364)
9937
9938 2011-10-24 Juri Linkov <juri@jurta.org>
9939
9940 * info.el (Info-following-node-name-re): Add newline to the list
9941 of allowed characters for leading space. (Bug#9824)
9942
9943 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
9944
9945 * progmodes/octave-inf.el (inferior-octave-mode-map):
9946 Fix C-c C-h binding.
9947 * progmodes/octave-mod.el (octave-help): Remove.
9948
9949 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
9950
9951 Sync with Tramp 2.2.3.
9952
9953 * net/tramp-cache.el (top): Pacify byte-compiler using
9954 `init-file-user' and `site-run-file'.
9955
9956 * net/trampver.el: Update release number.
9957
9958 2011-10-23 Chong Yidong <cyd@gnu.org>
9959
9960 * files.el (toggle-read-only): Remove obsolete comment about
9961 version control.
9962
9963 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
9964 for toggle-read-only. Note that this hasn't called vc-next-action
9965 since 2008-05-02, though it wasn't documented at the time.
9966
9967 * vc/ediff-init.el (ediff-toggle-read-only-function):
9968 Use toggle-read-only.
9969
9970 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
9971
9972 Fix bug #9560, sporadic wrong indentation; improve instrumentation
9973 of c-parse-state.
9974
9975 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
9976 correct faulty logical expression.
9977 (c-parse-state-state, c-record-parse-state-state):
9978 (c-replay-parse-state-state): New defvar/defuns.
9979 (c-debug-parse-state): Use new functions.
9980
9981 2011-10-22 Martin Rudalics <rudalics@gmx.at>
9982
9983 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
9984 last fix. Use window-in-direction correctly.
9985
9986 2011-10-21 Chong Yidong <cyd@gnu.org>
9987
9988 * progmodes/idlwave.el (idlwave-mode):
9989 * progmodes/vera-mode.el (vera-mode): No need to set
9990 require-final-newline; that's done in prog-mode.
9991 Suggested by Stefan Monnier.
9992
9993 2011-10-21 Martin Rudalics <rudalics@gmx.at>
9994
9995 * mouse.el (mouse-drag-window-above)
9996 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
9997 (mouse-drag-mode-line-1, mouse-drag-header-line)
9998 (mouse-drag-vertical-line-rightward-window): Remove.
9999 (mouse-drag-line): New function.
10000 (mouse-drag-mode-line, mouse-drag-header-line)
10001 (mouse-drag-vertical-line): Call mouse-drag-line.
10002 * window.el (window-at-side-p, windows-at-side): New functions.
10003
10004 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
10005
10006 * tar-mode.el (tar-grind-file-mode):
10007 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
10008
10009 2011-10-21 Chong Yidong <cyd@gnu.org>
10010
10011 * progmodes/idlwave.el (idlwave-mode):
10012 * progmodes/vera-mode.el (vera-mode):
10013 Use mode-require-final-newline.
10014
10015 2011-10-20 Glenn Morris <rgm@gnu.org>
10016
10017 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
10018
10019 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
10020
10021 * emulation/cua-base.el (cua-set-mark): Fix case of string.
10022
10023 2011-10-20 Chong Yidong <cyd@gnu.org>
10024
10025 * emulation/cua-base.el (cua-mode):
10026 * mail/footnote.el (footnote-mode):
10027 * mail/mailabbrev.el (mail-abbrevs-mode):
10028 * net/xesam.el (xesam-minor-mode):
10029 * progmodes/bug-reference.el (bug-reference-mode):
10030 * progmodes/cap-words.el (capitalized-words-mode):
10031 * progmodes/compile.el (compilation-minor-mode)
10032 (compilation-shell-minor-mode):
10033 * progmodes/gud.el (gud-tooltip-mode):
10034 * progmodes/hideif.el (hide-ifdef-mode):
10035 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
10036 * progmodes/subword.el (subword-mode):
10037 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
10038 * progmodes/which-func.el (which-function-mode):
10039 * term/tvi970.el (tvi970-set-keypad-mode):
10040 * term/vt100.el (vt100-wide-mode):
10041 * textmodes/flyspell.el (flyspell-mode):
10042 * textmodes/ispell.el (ispell-minor-mode):
10043 * textmodes/nroff-mode.el (nroff-electric-mode):
10044 * textmodes/paragraphs.el (use-hard-newlines):
10045 * textmodes/refill.el (refill-mode):
10046 * textmodes/reftex.el (reftex-mode):
10047 * textmodes/rst.el (rst-minor-mode):
10048 * textmodes/sgml-mode.el (html-autoview-mode)
10049 (sgml-electric-tag-pair-mode):
10050 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
10051 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
10052 * emulation/crisp.el (crisp-mode):
10053 * emacs-lisp/eldoc.el (eldoc-mode):
10054 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
10055 minor mode behavior.
10056
10057 2011-10-19 Juri Linkov <juri@jurta.org>
10058
10059 * descr-text.el (describe-char): Add #x2010 and #x2011 to
10060 the list of hard-coded chars with escape-glyph face.
10061
10062 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
10063
10064 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
10065
10066 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
10067
10068 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
10069 running process.
10070
10071 2011-10-19 Glenn Morris <rgm@gnu.org>
10072
10073 * vc/vc-bzr.el (vc-bzr-after-dir-status):
10074 Ignore ignored files. (Bug#9726)
10075
10076 2011-10-19 Chong Yidong <cyd@gnu.org>
10077
10078 Doc fix for minor modes, stating that an omitted argument enables
10079 the mode unconditionally when called from Lisp.
10080
10081 * abbrev.el (abbrev-mode):
10082 * allout.el (allout-mode):
10083 * autoinsert.el (auto-insert-mode):
10084 * autoarg.el (autoarg-mode, autoarg-kp-mode):
10085 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
10086 (global-auto-revert-mode):
10087 * battery.el (display-battery-mode):
10088 * composite.el (global-auto-composition-mode)
10089 (auto-composition-mode):
10090 * delsel.el (delete-selection-mode):
10091 * desktop.el (desktop-save-mode):
10092 * dired-x.el (dired-omit-mode):
10093 * dirtrack.el (dirtrack-mode):
10094 * doc-view.el (doc-view-minor-mode):
10095 * double.el (double-mode):
10096 * electric.el (electric-indent-mode, electric-pair-mode):
10097 * emacs-lock.el (emacs-lock-mode):
10098 * epa-hook.el (auto-encryption-mode):
10099 * follow.el (follow-mode):
10100 * font-core.el (font-lock-mode):
10101 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
10102 * help.el (temp-buffer-resize-mode):
10103 * hilit-chg.el (highlight-changes-mode)
10104 (highlight-changes-visible-mode):
10105 * hi-lock.el (hi-lock-mode):
10106 * hl-line.el (hl-line-mode, global-hl-line-mode):
10107 * icomplete.el (icomplete-mode):
10108 * ido.el (ido-everywhere):
10109 * image-file.el (auto-image-file-mode):
10110 * image-mode.el (image-minor-mode):
10111 * iswitchb.el (iswitchb-mode):
10112 * jka-cmpr-hook.el (auto-compression-mode):
10113 * linum.el (linum-mode):
10114 * longlines.el (longlines-mode):
10115 * master.el (master-mode):
10116 * mb-depth.el (minibuffer-depth-indicate-mode):
10117 * menu-bar.el (menu-bar-mode):
10118 * minibuf-eldef.el (minibuffer-electric-default-mode):
10119 * mouse-sel.el (mouse-sel-mode):
10120 * msb.el (msb-mode):
10121 * mwheel.el (mouse-wheel-mode):
10122 * outline.el (outline-minor-mode):
10123 * paren.el (show-paren-mode):
10124 * recentf.el (recentf-mode):
10125 * reveal.el (reveal-mode, global-reveal-mode):
10126 * rfn-eshadow.el (file-name-shadow-mode):
10127 * ruler-mode.el (ruler-mode):
10128 * savehist.el (savehist-mode):
10129 * scroll-all.el (scroll-all-mode):
10130 * scroll-bar.el (scroll-bar-mode):
10131 * server.el (server-mode):
10132 * shell.el (shell-dirtrack-mode):
10133 * simple.el (auto-fill-mode, transient-mark-mode)
10134 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
10135 (line-number-mode, column-number-mode, size-indication-mode)
10136 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
10137 * strokes.el (strokes-mode):
10138 * time.el (display-time-mode):
10139 * t-mouse.el (gpm-mouse-mode):
10140 * tool-bar.el (tool-bar-mode):
10141 * tooltip.el (tooltip-mode):
10142 * type-break.el (type-break-mode-line-message-mode)
10143 (type-break-query-mode):
10144 * view.el (view-mode):
10145 * whitespace.el (whitespace-mode, whitespace-newline-mode)
10146 (global-whitespace-mode, global-whitespace-newline-mode):
10147 * xt-mouse.el (xterm-mouse-mode): Doc fix.
10148
10149 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10150 Fix autogenerated docstring.
10151
10152 2011-10-19 Juri Linkov <juri@jurta.org>
10153
10154 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
10155 by checking environment variables "DESKTOP_SESSION" and
10156 "XDG_CURRENT_DESKTOP". (Bug#9779)
10157
10158 2011-10-19 Juri Linkov <juri@jurta.org>
10159
10160 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
10161 (browse-url-chromium-program, browse-url-chromium-arguments):
10162 New defcustoms.
10163 (browse-url-default-browser): Check for `browse-url-chromium' and
10164 call `browse-url-chromium-program'.
10165 (browse-url-chromium): New command. (Bug#9779)
10166
10167 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
10168
10169 * facemenu.el (list-colors-duplicates): On Windows, detect more
10170 duplicates by assuming that only colors matching "^System" are
10171 special "system colors". (Bug#9722)
10172
10173 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
10174
10175 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
10176 to distinguish the author from the committer.
10177
10178 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
10179
10180 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
10181
10182 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
10183
10184 * international/mule.el (sgml-html-meta-auto-coding-function):
10185 Add support for detecting encoding in HTML5 specified only as
10186 <meta charset="UTF-8">. Implementation just makes http-equiv and
10187 content-type parts from HTML4 encoding string optional. (Bug#9716)
10188
10189 2011-10-18 Glenn Morris <rgm@gnu.org>
10190
10191 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
10192
10193 2011-10-18 Chong Yidong <cyd@gnu.org>
10194
10195 * faces.el (cursor): Doc fix.
10196
10197 2011-10-17 Chong Yidong <cyd@gnu.org>
10198
10199 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
10200
10201 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
10202
10203 * dirtrack.el (dirtrack): Support shell buffers with path
10204 prefixes, e.g. tramp-based remote shells. (Bug#9647)
10205
10206 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
10207
10208 * json.el: Bump version to 1.3 and note change in History.
10209 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
10210
10211 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
10212
10213 * comint.el (comint-insert-input, comint-send-input)
10214 (comint-get-old-input-default, comint-backward-matching-input)
10215 (comint-next-prompt): Use nil instead of `input' for field property of
10216 past user input (bug#114).
10217
10218 * minibuffer.el (completion--replace): Inherit surrounding properties
10219 (bug#114).
10220 (minibuffer-complete-and-exit): Use it.
10221
10222 * comint.el (comint--table-subvert): Quote the all-completions output
10223 (bug#9160).
10224
10225 2011-10-17 Martin Rudalics <rudalics@gmx.at>
10226
10227 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
10228
10229 * menu-bar.el (menu-bar-file-menu): Add entry for making new
10230 window on right of selected. (Bug#9350) Reword other window
10231 entries and separate them from frame entries.
10232
10233 2011-10-15 Glenn Morris <rgm@gnu.org>
10234
10235 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
10236 Doc fixes.
10237
10238 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
10239
10240 * net/network-stream.el (network-stream-open-starttls):
10241 Improve detection of failure due to lack of TLS support.
10242
10243 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
10244 putting the input text in front and in bold.
10245
10246 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
10247
10248 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
10249
10250 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
10251 empty buffer.
10252
10253 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
10254 unread-command-events rather than pushing yet-another event.
10255
10256 2011-10-14 Eli Zaretskii <eliz@gnu.org>
10257
10258 * mail/sendmail.el (sendmail-query-once): Improve the wording of
10259 the explanation of the possible choices. Make the options passed
10260 to completing-read shorter.
10261
10262 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10263
10264 * textmodes/flyspell.el (flyspell-large-region): Make sure
10265 extended character mode is used if defined (Bug#1339).
10266
10267 2011-10-13 Eli Zaretskii <eliz@gnu.org>
10268
10269 * simple.el (what-cursor-position): Fix the display of the
10270 character info for LRE, LRO, RLE, and RLO characters by appending
10271 an invisible PDF.
10272
10273 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
10274
10275 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
10276 even in case of error; add debug spec; simplify data flow.
10277 (with-timeout-handler): Remove.
10278
10279 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
10280
10281 Fix Bug#6019, Bug#9315.
10282
10283 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
10284 complete `buffer-file-name', the local file name part could look
10285 remotely (for example on VMS).
10286
10287 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
10288 `tramp-run-real-handler'.
10289 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
10290 already quoted by '"'.
10291
10292 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
10293 Let `file-name-handler-alist' be nil, the local file name part
10294 could look remotely (for example on VMS).
10295
10296 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
10297
10298 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
10299 from here...
10300 (flyspell-post-command-hook): ...to here.
10301
10302 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10303
10304 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
10305 if not needed.
10306 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
10307 using completion. Protect against "slow" callers.
10308 Remove the "message hack".
10309
10310 2011-10-11 Juri Linkov <juri@jurta.org>
10311
10312 * isearch.el (isearch-lazy-highlight-word): New variable.
10313 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
10314 Use it. (Bug#9727)
10315
10316 2011-10-11 Glenn Morris <rgm@gnu.org>
10317
10318 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
10319 like f90-previous-statement does.
10320
10321 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10322
10323 * eshell/eshell.el (eshell-command): History should be saved
10324 only in interactive use, to avoid error.
10325
10326 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10327
10328 * minibuffer.el (completion-file-name-table): Fix last change,
10329 i.e. ignore normal errors but not the other ones.
10330
10331 2011-10-10 Martin Rudalics <rudalics@gmx.at>
10332
10333 * window.el (special-display-buffer-names)
10334 (special-display-regexps): Remove some remnants of earlier
10335 changes from doc-strings.
10336 (quit-windows-on): New function.
10337
10338 * vc/vc.el (vc-revert, vc-rollback):
10339 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
10340 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
10341 (Bug#6183) (Bug#7074) (Bug#7447)
10342
10343 2011-10-09 Martin Rudalics <rudalics@gmx.at>
10344
10345 * window.el (frame-auto-hide-function): Add version tag.
10346 (Bug#9699)
10347
10348 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
10349
10350 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
10351 condition.
10352
10353 2011-10-09 Leo Liu <sdl.web@gmail.com>
10354
10355 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
10356 (Bug#9701)
10357
10358 2011-10-08 Glenn Morris <rgm@gnu.org>
10359
10360 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
10361 before the first code statement zero indent. (Bug#9690)
10362
10363 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
10364
10365 * simple.el (count-words-region): Always count in the region.
10366 Report the number of lines and characters too.
10367 (count-words): New command, which counts in the buffer if the
10368 region is inactive, as count-words-region used to.
10369 (count-words--message): New function. Handle plurals.
10370 (count-lines-region): Make it an alias for count-words-region.
10371
10372 * bindings.el (esc-map): Replace count-lines-region with
10373 count-words-region.
10374
10375 2011-10-08 Martin Rudalics <rudalics@gmx.at>
10376
10377 * window.el (window--delete): Delete dedicated frame
10378 unconditionally when argument KILL is non-nil. (Bug#9699)
10379 (switch-to-buffer): Fix doc-string typo.
10380
10381 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10382
10383 * eshell/eshell.el (eshell-command): Avoid using hooks.
10384
10385 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
10386
10387 * bindings.el ([M-left],[M-right]): Bind to left-word and
10388 right-word respectively.
10389
10390 2011-10-07 Glenn Morris <rgm@gnu.org>
10391
10392 * cus-start.el (debug-on-quit): Fix custom type.
10393
10394 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10395
10396 * subr.el (define-key-after): Clarify that the function is not
10397 useful for non-menu keymaps.
10398
10399 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
10400
10401 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10402
10403 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
10404 in current minibuffer (Fix bug with recursive minibuffers).
10405
10406 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
10407
10408 * progmodes/gdb-mi.el (gdb): Doc fix.
10409
10410 2011-10-05 Martin Rudalics <rudalics@gmx.at>
10411
10412 * window.el (frame-auto-hide-function): New option replacing
10413 frame-auto-delete. Suggested by Stefan Monnier.
10414 (window--delete): Call frame-auto-hide-function instead of
10415 investigating frame-auto-delete.
10416 (window-point-1, set-window-point-1): New functions.
10417 (window-in-direction, record-window-buffer, window-state-get-1)
10418 (display-buffer-record-window): Use window-point-1 instead of
10419 window-point.
10420 (set-window-buffer-start-and-point): Use set-window-point-1.
10421
10422 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
10423
10424 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
10425
10426 2011-10-05 Glenn Morris <rgm@gnu.org>
10427
10428 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
10429 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
10430
10431 2011-10-05 Leo Liu <sdl.web@gmail.com>
10432
10433 * subr.el (read-char-choice): Fix argument to buffer-live-p which
10434 works with buffer object.
10435
10436 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
10437
10438 * mpc.el (mpc-tool-bar-map): Add labels.
10439
10440 2011-10-04 Glenn Morris <rgm@gnu.org>
10441
10442 * calendar/holidays.el (calendar-check-holidays): Doc fix.
10443
10444 2011-10-04 Martin Rudalics <rudalics@gmx.at>
10445
10446 * window.el (window--delete): New function.
10447 (frame-auto-delete): Resuscitate option.
10448 (bury-buffer, replace-buffer-in-windows)
10449 (quit-window): Rewrite using window--delete.
10450 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10451 Pass display-buffer-mark-dedicated to window--display-buffer-2
10452 (Bug#9639).
10453
10454 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
10455
10456 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
10457 returns a list (bug#9554). Add remote file name completion.
10458 * comint.el (comint--table-subvert): Curry and get quote&unquote
10459 functions as arguments.
10460 (comint--complete-file-name-data): Adjust call accordingly.
10461 * pcomplete.el (pcomplete--table-subvert): Remove.
10462 (pcomplete-completions-at-point): Use comint--table-subvert instead.
10463
10464 * minibuffer.el (completion-table-case-fold): Use currying.
10465 (completion--styles-type, completion--cycling-threshold-type):
10466 New constants.
10467 (completion-styles, completion-category-overrides)
10468 (completion-cycle-threshold): Use them.
10469 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
10470 completion-table-case-fold.
10471
10472 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
10473
10474 * minibuffer.el (completion-category-overrides): Fix type of styles
10475 and add more user friendly tags (bug#9660).
10476
10477 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
10478
10479 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
10480 (mule-input-method-string): New widget.
10481 (default-input-method, language-info-custom-alist): Use it.
10482
10483 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
10484
10485 * pcomplete.el: Require comint.
10486 (pcomplete--common-suffix): Remove.
10487 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
10488 (pcomplete--table-subvert): Sync with comint--table-subvert.
10489 (pcomplete--entries): Use comint-completion-file-name-table.
10490 * comint.el (comint-unquote-filename): Simplify.
10491 (comint-completion-file-name-table): New function (bug#9616).
10492 (comint--complete-file-name-data): Use it.
10493
10494 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
10495 (pcmpl-gnu-tar-buffer): Remove.
10496 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
10497 around. Make sure pcomplete-suffix-list is only changed temporarily.
10498 Don't look inside the tar's file if it's too large.
10499
10500 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
10501
10502 * cus-edit.el (custom-mode-map):
10503 * epa.el (epa-key-list-mode-map):
10504 * man.el (Man-mode-map):
10505 * startup.el (splash-screen-keymap):
10506 * simple.el (special-mode-map): Use scroll-up-command and
10507 scroll-down-command.
10508
10509 * progmodes/idlw-help.el (idlwave-help-mode-map):
10510 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
10511 * net/newst-plainview.el (newsticker-mode-map):
10512 * emulation/ws-mode.el (wordstar-mode-map):
10513 * emulation/vi.el (vi-com-map):
10514 * calc/calc-graph.el (calc-graph-show-dumb):
10515 * term/sun.el (terminal-init-sun):
10516 * term/ns-win.el (global-map):
10517 * progmodes/grep.el (grep-mode-map):
10518 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
10519 * mail/rmail.el (rmail-mode-map):
10520 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
10521
10522 * custom.el (custom-safe-themes, load-theme): Treat value of t for
10523 custom-safe-themes as special.
10524
10525 2011-10-01 Julien Danjou <julien@danjou.info>
10526
10527 * notifications.el (notifications-notify): Fix docstring.
10528
10529 2011-10-01 Per Starbäck <per@starback.se>
10530
10531 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
10532
10533 2011-09-30 Martin Rudalics <rudalics@gmx.at>
10534
10535 * startup.el (command-line-1): Fix last fix by inserting
10536 initial-scratch-message into *scratch* before displaying it.
10537 (Bug#9605) and (Bug#9636)
10538
10539 2011-09-29 Eli Zaretskii <eliz@gnu.org>
10540
10541 * simple.el (line-move): If auto-hscroll-mode is disabled and the
10542 window is hscrolled, move by logical lines. (Bug#9607)
10543 (line-move-visual): Update the doc string to the above effect.
10544
10545 2011-09-29 Martin Rudalics <rudalics@gmx.at>
10546
10547 * window.el (display-buffer-record-window): When WINDOW is the
10548 selected window use `point' instead of `window-point'. (Bug#9626)
10549
10550 * startup.el (command-line-1): Use insert-before-markers when
10551 inserting initial-scratch-message. (Bug#9605)
10552
10553 * help.el (help-window): Remove variable.
10554
10555 2011-09-29 Glenn Morris <rgm@gnu.org>
10556
10557 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
10558
10559 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
10560
10561 * descr-text.el (describe-char-categories): Accept category
10562 descriptions more than one line long.
10563
10564 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
10565
10566 * simple.el (delete-trailing-whitespace): Fix last change.
10567
10568 * progmodes/perl-mode.el (perl-syntax-propertize-function):
10569 Don't confuse "y => 3" as the beginning of a `y' operation.
10570
10571 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
10572 object has more than 4 slots (bug#9613).
10573
10574 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
10575
10576 * subr.el (with-output-to-temp-buffer):
10577 * net/quickurl.el (quickurl, quickurl-browse-url):
10578 Fix typos in docstrings.
10579
10580 2011-09-27 Eli Zaretskii <eliz@gnu.org>
10581
10582 * minibuffer.el (completion-styles)
10583 (completion-category-overrides): Cross reference each other in doc
10584 strings.
10585
10586 2011-09-27 Glenn Morris <rgm@gnu.org>
10587
10588 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
10589 to split-string. (Bug#9606)
10590
10591 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
10592
10593 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
10594 (bug#9615).
10595
10596 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
10597
10598 * emacs-lisp/package.el (list-packages): Fix echo area message.
10599
10600 2011-09-27 Leo Liu <sdl.web@gmail.com>
10601
10602 * ido.el (ido-read-internal): Accept cons cell HIST arg.
10603
10604 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
10605
10606 * net/dbus.el (dbus-unregister-object): Don't release services for
10607 registered signals. (Bug#9581)
10608
10609 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
10610
10611 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
10612 function that picks between cfengine 2 and 3 support
10613 automatically. Update docs accordingly.
10614
10615 2011-09-22 Kenichi Handa <handa@m17n.org>
10616
10617 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
10618 ZERO.
10619 (indian-itrans-v5-table-for-tamil): New variable.
10620 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
10621
10622 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
10623
10624 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
10625 that's true if the current command involved collapsing of text.
10626 It's reset to false at the beginning of the next command.
10627 (allout-post-command-business): Move the cursor to the beginning
10628 of entry if the cursor is hidden and collapsing activity just
10629 happened.
10630
10631 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
10632
10633 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
10634 tracking (Bug#9541).
10635
10636 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
10637
10638 * net/newst-reader.el (newsticker-html-renderer)
10639 (newsticker-show-news): Automatically load html rendering package
10640 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
10641 because w3m-fill-column is let-bound" and the error "Symbol's value
10642 as variable is void: w3m-fill-column".
10643
10644 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
10645
10646 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
10647 Release services only if they are defined. (Bug#9581)
10648
10649 2011-09-23 Richard Stallman <rms@gnu.org>
10650
10651 * textmodes/paragraphs.el (forward-sentence): For backwards case,
10652 distinguish start of paragraph from start of its text.
10653
10654 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
10655
10656 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
10657 (rmail-generate-viewer-buffer): Put that hook on view buffer.
10658 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
10659
10660 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
10661
10662 * international/mule-diag.el (mule-diag): Insert a newline after
10663 each fontset description.
10664
10665 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
10666
10667 * simple.el (delete-trailing-whitespace):
10668 Document last change; simplify.
10669
10670 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
10671
10672 * simple.el (delete-trailing-whitespace): Also delete
10673 extra newlines at the end of the buffer.
10674
10675 * textmodes/picture.el: Make motion commands obey shift-select-mode.
10676 (picture-newline): Use forward-line so as to ignore fields.
10677
10678 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
10679
10680 * subr.el (with-wrapper-hook): Fix edebug spec.
10681
10682 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
10683
10684 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
10685 (bug#4538).
10686
10687 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
10688
10689 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
10690 Fix nasty bug using wrong cached values.
10691
10692 2011-09-23 Alan Mackenzie <acm@muc.de>
10693
10694 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
10695
10696 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
10697
10698 * window.el (pop-to-buffer): Ensure right window is selected if we
10699 chose another frame.
10700
10701 2011-09-22 Eli Zaretskii <eliz@gnu.org>
10702
10703 * simple.el (what-cursor-position): Use get-char-property-change
10704 and next-single-char-property-change, to be able to show display
10705 properties that come from overlays as well as text properties.
10706
10707 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
10708
10709 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
10710
10711 * cmuscheme.el (run-scheme, switch-to-scheme):
10712 * cus-edit.el (customize-group, custom-buffer-create)
10713 (customize-browse):
10714 * info.el (info):
10715 * shell.el (shell):
10716 * mail/sendmail.el (mail):
10717 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
10718
10719 2011-09-22 Richard Stallman <rms@gnu.org>
10720
10721 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
10722 move back only to line beg, don't move back over blank lines.
10723
10724 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
10725
10726 * files.el (copy-directory): Set directory attributes only in case
10727 they could be retrieved from the source directory. (Bug#9565)
10728
10729 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
10730
10731 * progmodes/hideshow.el (hs-looking-at-block-start-p)
10732 (hs-find-block-beginning, hs-hide-level-recursive):
10733 Ignore strings as well as comments. (Bug#9502)
10734
10735 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
10736
10737 * progmodes/sql.el (sql-comint-postgres):
10738 Convert port number to a string. (Bug#9566)
10739
10740 2011-09-22 Martin Rudalics <rudalics@gmx.at>
10741
10742 * window.el (quit-window): Undedicate window when switching to
10743 previous buffer. Reported by Thierry Volpiatto
10744 <thierry.volpiatto@gmail.com>.
10745 (special-display-popup-frame): When popping up a new frame reset
10746 its previous buffers to nil. Simplify code.
10747
10748 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
10749
10750 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
10751 and process filter, as done also in `shell-command'.
10752
10753 2011-09-21 Martin Rudalics <rudalics@gmx.at>
10754
10755 * window.el (set-window-buffer-start-and-point):
10756 Call set-window-start with NOFORCE argument t.
10757 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
10758 (quit-window): Reword doc-string. Handle new format of
10759 quit-restore parameter. Don't delete window if it has a
10760 previous buffer we can show instead of the present one.
10761 (display-buffer-record-window): Rewrite using a new format for
10762 the quit-restore window parameter
10763 (special-display-popup-frame, display-buffer-same-window)
10764 (display-buffer-reuse-window, display-buffer-pop-up-frame)
10765 (display-buffer-pop-up-window, display-buffer-use-some-window):
10766 Adapt symbol passed to display-buffer-record-window.
10767 * help.el (help-window-setup): Handle new format of quit-restore
10768 parameter.
10769
10770 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
10771
10772 * faces.el (face-list): Fix docstring (bug#9564).
10773
10774 * window.el (display-buffer--action-function-custom-type):
10775 Don't include internal functions in the Custom interface.
10776
10777 2011-09-20 Juri Linkov <juri@jurta.org>
10778
10779 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
10780 (Info-forward-node, Info-backward-node, Info-next-preorder)
10781 (Info-last-preorder): Use it. (Bug#9528)
10782
10783 2011-09-20 Juri Linkov <juri@jurta.org>
10784
10785 * info.el (Info-last-preorder): Visit last menu item only when
10786 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
10787
10788 2011-09-20 Julien Danjou <julien@danjou.info>
10789
10790 * password-cache.el (password-cache-remove): Remove entries even if the
10791 value is nil, so that password with a nil value (negative caching) is
10792 possible to invalidate.
10793
10794 2011-09-20 Lawrence Mitchell <wence@gmx.li>
10795
10796 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
10797 all whitespace around breakpoint. (Bug#9553)
10798 (f90-find-breakpoint): Only break at whitespace inside a comment.
10799
10800 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
10801
10802 * minibuffer.el (completion-file-name-table): Keep track of errors.
10803 (completion-table-with-predicate): Handle the case where pred1 is nil.
10804 * pcomplete.el (pcomplete-completions-at-point): Simplify.
10805
10806 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10807
10808 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
10809 (debugger-return-value): Signal an error if the debugging context does
10810 not await any return value.
10811
10812 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
10813 * image-mode.el (image-toggle-display-text)
10814 (image-toggle-display-image): Stay away from evil `intangible'.
10815
10816 2011-09-19 Leo Liu <sdl.web@gmail.com>
10817
10818 * replace.el (occur-revert-arguments): Make it permanent-local.
10819 (occur-mode): Don't call font-lock-defontify.
10820
10821 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
10822
10823 * net/ldap.el (ldap-search-internal): Don't push empty search
10824 result (Bug#9508).
10825
10826 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10827
10828 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
10829
10830 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
10831
10832 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
10833 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
10834
10835 2011-09-18 Juri Linkov <juri@jurta.org>
10836
10837 * buff-menu.el (Buffer-menu-mode-map):
10838 * dired.el (dired-mode-map):
10839 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
10840 (lisp-interaction-mode-map):
10841 * emacs-lisp/package.el (package-menu-mode-map):
10842 * epa.el (epa-key-list-mode-map):
10843 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
10844 (menu-bar-options-menu):
10845 * outline.el (outline-mode-menu-bar-map):
10846 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
10847 * vc/vc-dir.el (vc-dir-menu-map):
10848 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
10849 Capitalize non-function content words in menu item strings.
10850
10851 * dired.el (dired-mode-map): Add menu item for
10852 `image-dired-dired-toggle-marked-thumbs'.
10853
10854 2011-09-18 Juri Linkov <juri@jurta.org>
10855
10856 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
10857 to `isearch-case-fold-search' and restore its original value
10858 after the `isearch-mode' call.
10859
10860 2011-09-18 Juri Linkov <juri@jurta.org>
10861
10862 * progmodes/grep.el (grep-process-setup): Don't check code for 1
10863 because `zgrep' returns 1 for successful matches (bug#9226).
10864
10865 2011-09-18 Juri Linkov <juri@jurta.org>
10866
10867 * info.el (Info-extract-menu-node-name): Check the second match
10868 for empty string (second test-case of bug#9528).
10869 (Info-last-preorder): Let-bind `Info-history' to nil to not add
10870 intermediate nodes to the history (first test-case of bug#9528).
10871
10872 2011-09-18 Juri Linkov <juri@jurta.org>
10873
10874 * info.el (Info-mode-syntax-table): New variable.
10875 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
10876
10877 2011-09-18 Juri Linkov <juri@jurta.org>
10878
10879 * info.el (Info-file-supports-index-cookies):
10880 Increment line-beginning-position's arg from 3 to 4 because makeinfo
10881 outputs one more line for long file names (bug#4142).
10882
10883 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
10884
10885 * newcomment.el (comment-normalize-vars): If prompting for
10886 comment-start, set comment-start-skip too (Bug#8424).
10887
10888 2011-09-18 Johan Bockgård <bojohan@gnu.org>
10889
10890 * icomplete.el: Fix previous fix of Bug#5849.
10891 (icomplete-mode): Don't set completion-show-inline-help.
10892 (icomplete-minibuffer-setup): Set completion-show-inline-help
10893 locally during icompletion.
10894
10895 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
10896
10897 * woman.el (woman2-process-escapes): Don't delete unrecognized
10898 escapes (Bug#7843).
10899
10900 * files.el (inhibit-first-line-modes-regexps): Add image files.
10901 (hack-local-variables-prop-line): Return nil for malformed
10902 prop-lines (Bug#9044).
10903
10904 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
10905
10906 * net/tramp.el (top): Don't require 'shell.
10907 (tramp-methods): Fix docstring.
10908 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
10909 Return complete remote file name. Handle "smb" case.
10910 Use `tramp-tmpdir', if defined for the respective method.
10911 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
10912
10913 * net/tramp-compat.el (top): Require 'shell.
10914
10915 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
10916 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
10917 `tramp-current-host'.
10918 (tramp-get-remote-tmpdir): Remove.
10919
10920 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
10921 `tramp-tmpdir' entries.
10922 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
10923 (tramp-smb-handle-file-attributes): Ignore errors.
10924 (tramp-smb-wait-for-output): Check also for process end.
10925
10926 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10927
10928 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
10929 when sending QUIT (bug#9312).
10930
10931 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
10932
10933 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
10934 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
10935 occur-mode-display-occurrence.
10936 (occur-edit-mode): Add usage message.
10937 (occur-cease-edit): New command.
10938 (occur-after-change-function): Use text properties to find the
10939 position of the prefix text.
10940 (occur-engine): Set stickiness of prefix text properties.
10941
10942 2011-09-17 Glenn Morris <rgm@gnu.org>
10943
10944 * progmodes/etags.el (complete-tag):
10945 Fix call to completion-in-region. (Bug#9526)
10946
10947 2011-09-17 Juri Linkov <juri@jurta.org>
10948
10949 * textmodes/ispell.el (ispell-word): Add to the error message
10950 the word, ispell program name and current dictionary (bug#9121).
10951 (ispell-tex-arg-end): Capitalize "error" in the error message.
10952
10953 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
10954
10955 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
10956 check. (Bug#4251)
10957
10958 2011-09-17 Juri Linkov <juri@jurta.org>
10959
10960 * window.el (window-safe-min-height, window-safe-min-width):
10961 Fix typos (followup to bug#9522).
10962
10963 2011-09-17 Sven Joachim <svenjoac@gmx.de>
10964
10965 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
10966
10967 2011-09-16 Eli Zaretskii <eliz@gnu.org>
10968
10969 * simple.el (line-move): If goal-column is set, move by logical
10970 lines, not by display lines. (Bug#971)
10971 (next-line, previous-line, goal-column, line-move-visual): Doc fix
10972 to reflect the above change.
10973
10974 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10975
10976 * image.el (imagemagick-register-types): Use regexp-opt.
10977
10978 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
10979
10980 * window.el (display-buffer-base-action): Rename from
10981 display-buffer-default-action. Make default value empty.
10982 (display-buffer-overriding-action): Convert to defvar.
10983 (display-buffer-fallback-action): New var.
10984
10985 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
10986
10987 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
10988 declaration.
10989 (package--add-to-archive-contents): If there is a duplicate entry
10990 with an older version, remove it.
10991 (package-menu-mark-delete, package-menu-mark-install)
10992 (package-menu-mark-unmark): Make unused args optional.
10993 (package-menu-mark-obsolete-for-deletion):
10994 Use package-menu-get-status instead of a regexp search.
10995 (package-menu-get-status): Use tabulated-list-entry.
10996 (package-menu-mark-upgrades): New command.
10997 (package-menu-mode-map): Bind it to U. Add it to menu bar.
10998 (package-menu-execute): Do installation before deletion.
10999 (package-menu-refresh, package-menu-execute): Use derived-mode-p
11000 instead of checking major-mode.
11001 (package-menu--find-upgrades): New function.
11002
11003 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11004
11005 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
11006 passwords in the log buffer.
11007 (smtpmail-process-filter): Update the process marker so that the
11008 "broken by peer" status message is inserted in the right place.
11009
11010 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
11011
11012 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
11013 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
11014 bibtex-completion-at-point-function.
11015 (bibtex-completion-at-point-function): Use them.
11016
11017 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
11018
11019 * mpc.el (mpc-constraints-tag-lookup): New function.
11020 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
11021 also to browser "album|playlist".
11022
11023 2011-09-14 Juri Linkov <juri@jurta.org>
11024
11025 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
11026 (isearch-edit-string): Use length of `isearch-string' when
11027 `isearch-fail-pos' returns nil.
11028 (isearch-message): Remove duplicate code and call
11029 `isearch-fail-pos' with arg `t'.
11030
11031 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
11032
11033 * replace.el (occur-mode-goto-occurrence): Don't force using other
11034 window (Bug#9499).
11035
11036 * dired-aux.el (dired-do-chmod): Don't provide initial input.
11037
11038 2011-09-14 Martin Rudalics <rudalics@gmx.at>
11039
11040 * window.el (display-buffer-window): Remove.
11041 (display-buffer-record-window): Use help-setup window parameter
11042 instead of variable display-buffer-window.
11043 (display-buffer-function, special-display-buffer-names)
11044 (special-display-function): Mention help-setup parameter instead
11045 of display-buffer-window in doc-string.
11046 * help.el (help-window-setup): New argument help-window.
11047 Use help-window-setup parameter instead of display-buffer-window.
11048 Reword some messages.
11049 (with-help-window): Pass window used for displaying the buffer
11050 to help-window-setup. Don't set display-buffer-window.
11051
11052 2011-09-13 Glenn Morris <rgm@gnu.org>
11053
11054 * emacs-lisp/debug.el (debugger-make-xrefs):
11055 Preserve point. (Bug#9462)
11056
11057 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11058
11059 * window.el (window-deletable-p): Use next-frame.
11060
11061 2011-09-13 Martin Rudalics <rudalics@gmx.at>
11062
11063 * window.el (window-auto-delete): Remove.
11064 (window-deletable-p): Remove argument FORCE. Don't deal with
11065 dedication and previous buffers.
11066 (switch-to-prev-buffer): Don't delete window.
11067 (delete-windows-on): Delete a window's frame if and only if the
11068 window is dedicated.
11069 (replace-buffer-in-windows): Delete buffer's window or frame if
11070 and only if window is dedicated.
11071 (quit-window): Handle quit-restore as before last change.
11072 (bury-buffer): Delete window only if window-deletable-p returns t.
11073
11074 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11075
11076 * window.el (window-deletable-p): Never delete the last frame on a
11077 given terminal.
11078
11079 2011-09-13 Glenn Morris <rgm@gnu.org>
11080
11081 * help.el (describe-key-briefly): Copy previous standard-output change.
11082
11083 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
11084
11085 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
11086
11087 2011-09-13 Glenn Morris <rgm@gnu.org>
11088
11089 * emacs-lisp/lisp-mode.el (lisp-indent-function):
11090 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
11091
11092 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
11093
11094 * dired-aux.el (dired-mark-read-string): Don't return default
11095 value on empty input (Bug#9361).
11096 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
11097 Omit initial minibuffer contents.
11098 (dired-do-chmod): Signal an error on empty input.
11099 (dired-mark-read-string): Don't return default on empty input.
11100
11101 * files.el (file-modes-symbolic-to-number): Doc fix.
11102
11103 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
11104
11105 * international/mule-cmds.el (ucs-completions): Remove.
11106 (read-char-by-name): Use complete-with-action instead; add metadata.
11107
11108 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11109
11110 * window.el (display-buffer--action-function-custom-type)
11111 (display-buffer--action-custom-type): New vars.
11112 (display-buffer-alist, display-buffer-default-action)
11113 (display-buffer-overriding-action): Add defcustom types.
11114
11115 * frame.el (delete-other-frames): Doc fix (Bug#276).
11116
11117 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11118
11119 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
11120
11121 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11122
11123 Change modes that used same-window-* vars to use switch-to-buffer.
11124
11125 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
11126 Use switch-to-buffer.
11127
11128 * cus-edit.el (customize-group, custom-buffer-create)
11129 (customize-browse, custom-buffer-create-other-window):
11130 Use switch-to-buffer or switch-to-buffer-other-window.
11131
11132 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
11133 (Info-prev, Info-up, Info-speedbar-goto-node)
11134 (info-display-manual): Use switch-to-buffer.
11135 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
11136
11137 * mail/sendmail.el (mail): Use switch-to-buffer.
11138 (mail-recover): Use switch-to-buffer-other-window.
11139
11140 * cmuscheme.el (run-scheme, switch-to-scheme):
11141 * ielm.el (ielm):
11142 * shell.el (shell):
11143 * net/rlogin.el (rlogin):
11144 * net/telnet.el (telnet, rsh):
11145 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
11146
11147 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
11148
11149 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
11150
11151 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11152
11153 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
11154 so don't mention it (bug#9301).
11155 (dired-sort-toggle-or-edit): Clarify string further.
11156
11157 * faces.el (face-spec-set-match-display): Make `(type graphic)'
11158 match `x', `w32' and `ns', like the manual says (bug#9029).
11159
11160 * subr.el (eval-after-load): Doc string clarification (bug#9125).
11161 (process-kill-buffer-query-function): Mention the buffer name in
11162 the query.
11163
11164 * image-mode.el (image-next-line): The line parameter is mandatory
11165 (bug#9258).
11166
11167 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
11168 which can be useful (bug#9301).
11169
11170 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
11171
11172 * subr.el (match-string): Mention that the current buffer should
11173 be the same as the search was done in (bug#9282).
11174
11175 * facemenu.el: Disable the remove-* commands if the mark isn't
11176 active (bug#9162).
11177
11178 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
11179
11180 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
11181 of display-buffer.
11182 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
11183
11184 * replace.el (occur-mode-goto-occurrence)
11185 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
11186 and display-buffer.
11187
11188 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
11189 display-buffer.
11190
11191 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
11192 special-display and same-window variables.
11193 (mail-other-window): Use switch-to-buffer-other-window.
11194 (mail-other-frame): USe switch-to-buffer-other-frame.
11195
11196 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
11197 Use display-buffer-other-frame.
11198 (gdb-display-gdb-buffer): Use pop-to-buffer.
11199
11200 * progmodes/gud.el (gud-goto-info): Use info-other-window.
11201
11202 * progmodes/python.el: Don't set same-window-buffer-names.
11203
11204 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
11205
11206 * window.el (display-buffer-alist): Add *Python*.
11207
11208 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
11209
11210 * window.el (display-buffer-alist): Add entry for buffers
11211 previously handled same-window-*.
11212 (display-buffer-alist, display-buffer-default-action)
11213 (display-buffer-overriding-action): Mark as risky.
11214 (display-buffer-alist): Document action function changes.
11215 (display-buffer--same-window-action)
11216 (display-buffer--other-frame-action): New variables.
11217 (switch-to-buffer, display-buffer-other-frame): Use them.
11218 (display-buffer): Rename reuse-frame entry to reusable-frames.
11219 (display-buffer-reuse-selected-window): Function deleted.
11220 (display-buffer-reuse-window): Handle reusable-frames alist entry.
11221 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
11222 (display-buffer-special): New function.
11223 (display-buffer--maybe-pop-up-frame-or-window): Rename from
11224 display-buffer-reuse-or-pop-window. Split off special-display
11225 part into display-buffer-special.
11226 (display-buffer-use-some-window): Don't perform any special
11227 pop-up-frames handling.
11228 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
11229 (display-buffer--maybe-same-window): Rename from
11230 display-buffer-maybe-same-window.
11231
11232 * info.el: Don't set same-window-regexps.
11233 (info-setup): New function.
11234 (info-other-window, info): Call it.
11235
11236 * cus-edit.el: Don't set same-window-regexps.
11237 (customize-group): New argument.
11238 (customize-group-other-window): Use it.
11239 (customize-face, customize-face-other-window): Likewise.
11240 (custom-buffer-create-other-window): Use pop-to-buffer directly.
11241
11242 * net/rlogin.el:
11243 * net/telnet.el:
11244 * progmodes/gud.el: Don't set same-window-regexps.
11245
11246 * cmuscheme.el:
11247 * ielm.el:
11248 * shell.el:
11249 * mail/sendmail.el:
11250 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
11251
11252 2011-09-10 Juri Linkov <juri@jurta.org>
11253
11254 * isearch.el (isearch-edit-string): Remove obsolete mention of
11255 `C-w' (`isearch-yank-word-or-char') from docstring.
11256 (isearch-query-replace): Fix typo in docstring (bug#9466).
11257
11258 2011-09-10 Juri Linkov <juri@jurta.org>
11259
11260 * paren.el (show-paren-function): Don't show escaped parens.
11261 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
11262
11263 2011-09-10 Eli Zaretskii <eliz@gnu.org>
11264
11265 * mail/sendmail.el (mml-to-mime, mml-attach-file)
11266 (mm-default-file-encoding): Remove autoload forms, they are
11267 replaced with autoload cookies in mml.el and mm-encode.el.
11268 (mail-add-attachment): New command.
11269 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
11270 (mail-mode): Mention mail-insert-file and mail-add-attachment in
11271 the doc string.
11272 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
11273
11274 2011-09-10 Reuben Thomas <rrt@sc3d.org>
11275
11276 * simple.el (count-words-region): Use buffer if there's no region
11277 (bug#9429).
11278
11279 2011-09-09 Juri Linkov <juri@jurta.org>
11280
11281 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
11282 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
11283 (wdired-isearch-filter-read-only): New function. (Bug#6362)
11284
11285 2011-09-09 Alan Mackenzie <acm@muc.de>
11286
11287 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
11288 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
11289
11290 2011-09-09 Eli Zaretskii <eliz@gnu.org>
11291
11292 Fix for Savannah bug#9392.
11293 * simple.el (mail-encode-mml): New defvar.
11294
11295 * mail/rmail.el (mail-encode-mml): Add a defvar.
11296 (rmail-enable-mime-composing): Default to t.
11297 (rmail-forward): Use MIME method of forwarding only if both
11298 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
11299 Set mail-encode-mml non-nil if the MIME method was used.
11300
11301 * mail/sendmail.el (mml-to-mime): Add autoload form.
11302 (mail-encode-mml): Add a defvar.
11303 (mail-mode): Make mail-encode-mml buffer-local and initialize it
11304 to nil.
11305 (mail-send): If mail-encode-mml is non-nil, run the outgoing
11306 message through mml-to-mime, and reset mail-encode-mml to nil.
11307
11308 2011-09-09 Glenn Morris <rgm@gnu.org>
11309
11310 * woman.el (woman-if-body): When processing an .el block,
11311 do not delete the next .el block as well. (Bug#9447)
11312 (woman-special-characters): Add oq, cq, and hy characters.
11313
11314 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11315
11316 * window.el (window-deletable-p): Make sure window is live before
11317 invoking window-prev-buffers.
11318
11319 2011-09-08 Leo Liu <sdl.web@gmail.com>
11320
11321 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
11322
11323 2011-09-08 Juri Linkov <juri@jurta.org>
11324
11325 * progmodes/compile.el (compilation-environment): Make it
11326 a defcustom (bug#8340).
11327
11328 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11329
11330 * window.el (frame-auto-delete): Rename to window-auto-delete.
11331 Make it control auto-deletion of windows and/or frames.
11332 (window-deletable-p): New argument FORCE. Rewrite conditions
11333 for deleting window/frame. (Bug#9419)
11334 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
11335 Rewrite handling of case when window/frame can be deleted.
11336 (delete-windows-on): Call window-deletable-p with new FORCE
11337 argument t. (Bug#9456)
11338
11339 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
11340
11341 * help-mode.el (help-mode): Restore autoload.
11342
11343 2011-09-07 Juri Linkov <juri@jurta.org>
11344
11345 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
11346 `compilation-environment'. Set buffer-local
11347 `compilation-environment' to `thisenv' later after (funcall mode).
11348 (Bug#8340)
11349
11350 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
11351 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
11352 instead of replacing its value. (Bug#8340)
11353
11354 2011-09-07 Juri Linkov <juri@jurta.org>
11355
11356 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
11357 based on text properties put by `grep-filter' instead of matching
11358 escape sequences.
11359 (grep-mode): Set buffer-local `compilation-error-screen-columns'
11360 to the value of `grep-error-screen-columns' (bug#9438).
11361
11362 2011-09-07 Juri Linkov <juri@jurta.org>
11363
11364 * simple.el (next-error-highlight, next-error-highlight-no-select):
11365 Doc fix (bug#9432).
11366
11367 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
11368
11369 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11370 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
11371
11372 2011-09-07 Leo Liu <sdl.web@gmail.com>
11373
11374 * net/rcirc.el (rcirc-mode): Conditionally initialize
11375 rcirc-input-ring.
11376
11377 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
11378
11379 * emacs-lisp/find-func.el (find-function-C-source): Only set
11380 find-function-C-source-directory after checking that we found a source
11381 file there (bug#9440).
11382
11383 2011-09-06 Alan Mackenzie <acm@muc.de>
11384
11385 * isearch.el (isearch-other-meta-char): Wherever a key list is
11386 unread, "unread" the prefix arg, too. This fixes bug #8901.
11387
11388 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
11389
11390 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
11391
11392 2011-09-05 Juri Linkov <juri@jurta.org>
11393
11394 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
11395
11396 2011-09-05 Juri Linkov <juri@jurta.org>
11397
11398 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
11399 keeping point where processing of grep matches begins, and
11400 continue to delete remaining escape sequences from the same point.
11401 (grep-filter): Make leading zero optional in "0?1;31m" because
11402 git-grep emits "\033[1;31m" escape sequences unlike expected
11403 "\033[01;31m" as GNU Grep does (bug#9408).
11404 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
11405
11406 2011-09-05 Juri Linkov <juri@jurta.org>
11407
11408 * subr.el (y-or-n-p): Capitalize "yes".
11409
11410 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
11411
11412 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
11413 `tramp-cache-unload-hook' where appropriate.
11414 (tramp-methods): Rename `tramp-remote-sh' to
11415 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
11416 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
11417
11418 * net/tramp-sh.el (top): Don't require 'shell.
11419 (tramp-methods): Add `tramp-remote-shell' and
11420 `tramp-remote-shell-args' entries.
11421 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
11422 (tramp-sh-handle-shell-command): Remove.
11423 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11424 Use `tramp-remote-shell'.
11425
11426 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
11427
11428 * mail/sendmail.el (sendmail-query-once-function): Delete.
11429 (sendmail-query-once): Save directly to send-mail-function.
11430 Update message-send-mail-function too.
11431
11432 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
11433
11434 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
11435
11436 * progmodes/python.el (python-mode-map): Use correct function to
11437 start python interpreter from menu-bar (as reported by Geert
11438 Kloosterman).
11439 (inferior-python-mode-map): Fix typo.
11440 (python-shell-map): Remove.
11441
11442 2011-09-03 Deniz Dogan <deniz@dogan.se>
11443
11444 * net/rcirc.el (rcirc-print): Simplify code for
11445 rcirc-scroll-show-maximum-output. There is no need to walk
11446 through all windows to find the right one.
11447
11448 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
11449
11450 * help.el (help-return-method): Doc fix.
11451
11452 2011-09-03 Martin Rudalics <rudalics@gmx.at>
11453
11454 * window.el (window-deletable-p): Don't return a non-nil value
11455 when there's a buffer that was shown in the window before.
11456 (Bug#9419)
11457 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11458 Set window's previous buffers to nil.
11459
11460 2011-09-03 Eli Zaretskii <eliz@gnu.org>
11461
11462 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
11463 newline before and after the tag line, so it doesn't interfere
11464 with determining the paragraph direction of bidirectional text.
11465
11466 2011-09-03 Leo Liu <sdl.web@gmail.com>
11467
11468 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
11469
11470 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
11471
11472 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
11473 (pop-to-buffer): Change interactive spec. Pass second argument
11474 directly to display-buffer.
11475 (display-buffer): Fix interactive spec. Use functionp to
11476 distinguish between a function and a list of functions.
11477
11478 * abbrev.el (edit-abbrevs):
11479 * arc-mode.el (archive-extract):
11480 * autoinsert.el (auto-insert):
11481 * bookmark.el (bookmark-bmenu-list):
11482 * files.el (find-file):
11483 * view.el (view-buffer):
11484 * progmodes/compile.el (compilation-goto-locus):
11485 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
11486
11487 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
11488
11489 * window.el (display-buffer-alist): Doc fix.
11490 (display-buffer): Add docstring. Don't treat
11491 display-buffer-default specially.
11492 (display-buffer-reuse-selected-window)
11493 (display-buffer-same-window, display-buffer-maybe-same-window)
11494 (display-buffer-reuse-window, display-buffer-pop-up-frame)
11495 (display-buffer-pop-up-window)
11496 (display-buffer-reuse-or-pop-window)
11497 (display-buffer-use-some-window): New functions.
11498 (display-buffer-default-action): Use them.
11499 (display-buffer-default): Delete.
11500 (pop-to-buffer-1): Fix choice of actions.
11501
11502 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
11503
11504 * minibuffer.el (completion--insert-strings): Don't get confused by
11505 completion entries that end with an LF char.
11506
11507 2011-09-01 Eli Zaretskii <eliz@gnu.org>
11508
11509 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
11510
11511 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
11512
11513 * window.el (display-buffer): Restore interactive spec.
11514 (display-buffer-same-window, display-buffer-other-window):
11515 New functions.
11516 (pop-to-buffer-1): New function. Use the above.
11517 (pop-to-buffer, pop-to-buffer-same-window): Use it.
11518 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
11519
11520 * view.el (view-buffer-other-window, view-buffer-other-frame):
11521 Just use pop-to-buffer.
11522
11523 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11524
11525 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
11526
11527 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
11528
11529 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
11530
11531 2011-08-31 Richard Stallman <rms@gnu.org>
11532
11533 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
11534 of the separation of rmail-view-buffer from rmail-buffer.
11535 If you say no to "replace original", the decrypt is in the
11536 view buffer. If you say yes, the decrypt goes into the
11537 rmail buffer also.
11538
11539 2011-08-31 Martin Rudalics <rudalics@gmx.at>
11540
11541 * window.el (display-buffer-window): Rewrite doc-string.
11542 (display-buffer-record-window): New function.
11543 (display-buffer-macro-specifiers)
11544 (display-buffer-even-window-sizes, display-buffer-set-height)
11545 (display-buffer-set-width, display-buffer-in-window)
11546 (display-buffer-reuse-window, display-buffer-split-specifiers)
11547 (display-buffer-side-specifiers, display-buffer-split-window-1)
11548 (display-buffer-split-window, display-buffer-split-atom-window)
11549 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
11550 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
11551 (display-buffer-other-window-means-other-frame)
11552 (display-buffer-normalize-special)
11553 (display-buffer-normalize-default)
11554 (display-buffer-normalize-argument)
11555 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
11556 (display-buffer-normalize-specifiers, display-buffer-frame)
11557 (display-buffer-same-window, display-buffer-same-frame)
11558 (display-buffer-other-window)
11559 (display-buffer-same-frame-other-window)
11560 (display-buffer-other-frame, pop-to-buffer-same-window)
11561 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
11562 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
11563 (switch-to-buffer-same-frame)
11564 (switch-to-buffer-other-window-same-frame)
11565 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
11566 (display-buffer-alist-set-1, display-buffer-alist-set-2)
11567 (display-buffer-alist-set): Remove.
11568 (display-buffer-function, special-display-buffer-names)
11569 (special-display-regexps, special-display-function):
11570 In doc-string refer to display-buffer-window and quit-restore
11571 parameter.
11572 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
11573 (special-display-frame-alist, special-display-popup-frame)
11574 (same-window-buffer-names, same-window-regexps, same-window-p)
11575 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11576 (split-window-preferred-function, split-height-threshold)
11577 (split-width-threshold, window-splittable-p)
11578 (split-window-sensibly, window--try-to-split-window)
11579 (window--frame-usable-p, even-window-heights)
11580 (window--even-window-heights, window--display-buffer-1)
11581 (window--display-buffer-2, display-buffer-other-frame):
11582 Restore old Emacs 23 code, order and doc-strings where applicable.
11583 (display-buffer-default, display-buffer-assq-regexp): New functions.
11584 (display-buffer-alist): Rewrite doc-string.
11585 (display-buffer-default-action)
11586 (display-buffer-overriding-action): New variables.
11587 (display-buffer, switch-to-buffer): Rewrite.
11588 (pop-to-buffer): Restore Emacs 23 behavior but use
11589 window-normalize-buffer-to-display.
11590 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
11591 Restore Emacs 23 behavior but use
11592 window-normalize-buffer-to-switch-to.
11593 (pop-to-buffer-same-window): Rewrite.
11594 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
11595 Rewrite using Emacs 23 options.
11596
11597 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
11598
11599 * net/tramp.el (tramp-root-regexp): Remove.
11600 (tramp-completion-file-name-regexp-unified)
11601 (tramp-completion-file-name-regexp-separate)
11602 (tramp-completion-file-name-regexp-url): Don't use leading volume
11603 letter on w32 systems. (Bug#5303, Bug#9311)
11604 (tramp-drop-volume-letter): Simplify definition.
11605 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
11606
11607 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
11608
11609 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
11610 (bug#9356).
11611
11612 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
11613
11614 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
11615
11616 2011-08-29 Juri Linkov <juri@jurta.org>
11617
11618 * isearch.el (isearch-done): Don't display message "Mark saved"
11619 when arg `edit' is non-nil to prevent its flicker in the echo area.
11620
11621 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
11622
11623 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
11624 obsolete packages for deletion.
11625
11626 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
11627
11628 * help-mode.el (help-mode-map): Add special-mode-map to parent.
11629 (help-mode): Derive help-mode from special-mode. Don't invoke
11630 view-mode from help-mode.
11631 (help-xref-override-view-map): Remove.
11632 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
11633 view-mode is not used anymore.
11634
11635 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
11636
11637 * server.el (server-port): Doc fix.
11638
11639 * cus-theme.el (custom-theme-choose-mode): Inherit from
11640 special-mode (Bug#9124).
11641 (custom-theme-choose-mode-map): Add special-mode to parent.
11642
11643 2011-08-28 Alan Mackenzie <acm@muc.de>
11644
11645 * progmodes/cc-fonts.el
11646 (c-make-font-lock-BO-decl-search-function): New function.
11647 (c-basic-matchers-after - "Fontify the clauses after various
11648 keywords"): Extract the three keyword lists for the 3 erroneous
11649 constructs from the list of four, and use the new function above
11650 in place of an old one.
11651
11652 2011-08-28 Deniz Dogan <deniz@dogan.se>
11653
11654 * net/rcirc.el (rcirc-insert-prev-input)
11655 (rcirc-insert-next-input): Remove unused argument.
11656
11657 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
11658
11659 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
11660
11661 2011-08-27 Alan Mackenzie <acm@muc.de>
11662
11663 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
11664 handle function pointer parameters properly.
11665
11666 2011-08-27 Martin Rudalics <rudalics@gmx.at>
11667
11668 * window.el (display-buffer-reuse-window): Fix case where
11669 selected window was reused with non-nil OTHER-WINDOW argument.
11670 (Bug#9381)
11671
11672 2011-08-27 Deniz Dogan <deniz@dogan.se>
11673
11674 * net/rcirc.el (rcirc-check-auth-status): Adding support for
11675 oftc's NickServ messages.
11676
11677 2011-08-27 Glenn Morris <rgm@gnu.org>
11678
11679 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
11680
11681 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
11682
11683 * emacs-lisp/package.el (package-install): Call package-initialize
11684 if called interactively.
11685
11686 2011-08-26 Leo Liu <sdl.web@gmail.com>
11687
11688 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
11689
11690 2011-08-25 Juri Linkov <juri@jurta.org>
11691
11692 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
11693 `search-whitespace-regexp' (bug#9364).
11694
11695 2011-08-25 Juri Linkov <juri@jurta.org>
11696
11697 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
11698 `regexp-search-ring' to their global values to protect from
11699 updating by `read-from-minibuffer' (bug#9185).
11700
11701 2011-08-25 Juri Linkov <juri@jurta.org>
11702
11703 * textmodes/ispell.el (ispell-command-loop): Add newline
11704 at the end of the "Use option `i'..." line.
11705
11706 2011-08-25 Juri Linkov <juri@jurta.org>
11707
11708 * battery.el (display-battery-mode): If `battery-status-function'
11709 or `battery-mode-line-format' is nil, display the message and set
11710 `display-battery-mode' to nil (bug#9363).
11711
11712 2011-08-25 Eli Zaretskii <eliz@gnu.org>
11713
11714 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
11715 bidi-string-mark-left-to-right; they are unnecessary now.
11716
11717 2011-08-25 Deniz Dogan <deniz@dogan.se>
11718
11719 * net/quickurl.el: Documentation typo fixes.
11720
11721 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
11722
11723 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
11724
11725 2011-08-25 Glenn Morris <rgm@gnu.org>
11726
11727 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
11728
11729 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
11730 (smtpmail-via-smtp): Handle nil response from smtp.
11731
11732 2011-08-24 Juri Linkov <juri@jurta.org>
11733
11734 * proced.el (proced-marked): Inherit from `error' instead of
11735 `font-lock-warning-face'.
11736
11737 * ibuffer.el (ibuffer-marked-face): Change default face from
11738 `font-lock-warning-face' to `warning'.
11739 (ibuffer-deletion-face): Change default face from
11740 `font-lock-type-face' to `error'.
11741
11742 * battery.el (battery-update): Use the face `error' instead of
11743 `font-lock-warning-face' (bug#6117).
11744
11745 2011-08-24 Juri Linkov <juri@jurta.org>
11746
11747 * faces.el (success): Change face color from "Green3" to
11748 "ForestGreen" on light background (bug#9353).
11749
11750 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
11751
11752 * window.el (quit-window): Rename from quit-restore-window.
11753 Use same arglist as old quit-window.
11754 (frame-auto-delete): Doc fix.
11755
11756 * view.el (view-mode-exit): Use quit-window.
11757
11758 2011-08-24 Juri Linkov <juri@jurta.org>
11759
11760 * isearch.el (isearch-ring-adjust1): Start visiting previous
11761 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
11762 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
11763 for empty search string (when the last search string is reused
11764 automatically) to adjust the isearch ring to the last element and
11765 prepare the correct index for further M-p commands (bug#9185).
11766
11767 2011-08-24 Kenichi Handa <handa@m17n.org>
11768
11769 * international/ucs-normalize.el: If decomposition property of
11770 CHAR is the default one (i.e. a list of CHAR itself), treat it as
11771 nil.
11772 (nfd, nfkd): Likewise.
11773
11774 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
11775
11776 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
11777 from process filters aren't reliably transmitted to the surrounding
11778 accept-process-output.
11779 (mpc-proc-check): New function.
11780 (mpc-proc-sync): Use it (bug#8293)
11781
11782 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11783
11784 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
11785 Add compatibility functions (bug#9313).
11786
11787 2011-08-23 Eli Zaretskii <eliz@gnu.org>
11788
11789 * cus-start.el (all): Add entry for bidi-paragraph-direction.
11790
11791 * international/uni-bidi.el: Regenerate.
11792
11793 2011-08-23 Kenichi Handa <handa@m17n.org>
11794
11795 * international/charprop.el:
11796 * international/uni-bidi.el:
11797 * international/uni-category.el:
11798 * international/uni-combining.el:
11799 * international/uni-comment.el:
11800 * international/uni-decimal.el:
11801 * international/uni-decomposition.el:
11802 * international/uni-digit.el:
11803 * international/uni-lowercase.el:
11804 * international/uni-mirrored.el:
11805 * international/uni-name.el:
11806 * international/uni-numeric.el:
11807 * international/uni-old-name.el:
11808 * international/uni-titlecase.el:
11809 * international/uni-uppercase.el: Regenerate.
11810
11811 2011-08-23 Martin Rudalics <rudalics@gmx.at>
11812
11813 * help.el (help-window-setup): Fix message displayed when other
11814 window is reused. (Bug#9341)
11815
11816 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11817
11818 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
11819 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
11820
11821 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
11822 Mark obsolete.
11823 * shell.el (shell-parse-pcomplete-arguments): New function.
11824 (shell-completion-vars): Use it instead (bug#9160).
11825
11826 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
11827
11828 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
11829 strings and comments (bug#9333).
11830
11831 * emacs-lisp/debug.el (debug-arglist): New function.
11832 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
11833 (debug-on-entry-1): Handle interpreted closures (bug#9120).
11834
11835 2011-08-22 Juri Linkov <juri@jurta.org>
11836
11837 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11838 Revert regexp that highlights output switches to its old
11839 pre-2010-10-28 value and remove one `?' from it (bug#9319).
11840
11841 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
11842 to check for empty output (bug#9226).
11843
11844 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
11845
11846 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
11847 symbol-constituent as the default, as that stops font-lock from
11848 working properly (Bug#8843).
11849
11850 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11851
11852 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
11853 `coding-system-for-*' around the process open call to avoid
11854 auth-source side effects.
11855 (smtpmail-try-auth-methods): Expand the secret password.
11856 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
11857 probe hangs.
11858
11859 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
11860
11861 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
11862
11863 * emacs-lisp/find-func.el (find-function-noselect): New arg
11864 lisp-only.
11865
11866 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
11867 signal an error for built-in functions (Bug#6664).
11868
11869 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11870
11871 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
11872 (smtpmail-try-auth-methods): Use it.
11873
11874 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
11875
11876 * font-lock.el (font-lock-fontify-region)
11877 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
11878 (font-lock-default-unfontify-buffer)
11879 (font-lock-default-fontify-region)
11880 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
11881
11882 * progmodes/compile.el (compilation-error-properties):
11883 Fix confusion between file struct and message struct (Bug#9319).
11884 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
11885 `ant' regexp.
11886
11887 * net/browse-url.el (browse-url-firefox): Don't call
11888 browse-url-firefox-sentinel unless using -remote (Bug#9328).
11889
11890 2011-08-20 Glenn Morris <rgm@gnu.org>
11891
11892 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
11893
11894 * tutorial.el (tutorial--default-keys): Update some default bindings.
11895
11896 * files.el (hack-local-variables): Fully ignore case for "mode:".
11897
11898 2011-08-20 Alan Mackenzie <acm@muc.de>
11899
11900 Resolve invalid use of a regexp in regexp-opt.
11901
11902 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
11903 detection for a java annotation.
11904
11905 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
11906 detection for a java annotation.
11907
11908 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
11909 handling for java.
11910 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
11911
11912 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
11913
11914 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
11915 (Bug#9274).
11916
11917 2011-08-20 Alan Mackenzie <acm@muc.de>
11918
11919 Fontify CPP expressions correctly when starting in the middle of
11920 such a construct. Mainly for when jit-lock etc. starts a chunk
11921 here.
11922
11923 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
11924 variable.
11925 (c-make-font-lock-search-form): New function, extracted from
11926 c-make-font-lock-search-function.
11927 (c-make-font-lock-search-function): Use the above function.
11928 (c-make-font-lock-context-search-function): New function.
11929 (c-cpp-matchers): Enhance the preprocessor expression case with
11930 the above function
11931 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
11932 which takes an expression.
11933
11934 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
11935
11936 2011-08-20 Martin Rudalics <rudalics@gmx.at>
11937
11938 * window.el (display-buffer-reuse-window)
11939 (display-buffer-pop-up-window): Don't reuse or split a side
11940 window.
11941
11942 2011-08-19 Glenn Morris <rgm@gnu.org>
11943
11944 * files.el (hack-local-variables-prop-line, hack-local-variables):
11945 Downcase "Mode:". (Bug#9331)
11946
11947 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
11948
11949 * international/characters.el: Add L and R categories.
11950
11951 * subr.el (bidi-string-mark-left-to-right): Rename from
11952 string-mark-left-to-right. Use category search.
11953
11954 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
11955
11956 2011-08-18 Juri Linkov <juri@jurta.org>
11957
11958 * faces.el (error, warning, success): New faces with definitions
11959 copied from old default values of `font-lock-warning-face',
11960 `compilation-warning', `compilation-info' (bug#6117).
11961
11962 * font-lock.el (font-lock-warning-face): Inherit from `error'.
11963
11964 * progmodes/compile.el (compilation-error): Inherit from `error'.
11965 (compilation-warning): Inherit from `warning'.
11966 (compilation-info): Inherit from `success'.
11967
11968 * dired.el (dired-marked): Inherit from `warning'.
11969 (dired-flagged): Inherit from `error'.
11970
11971 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11972
11973 * mail/smtpmail.el (auth-source): Require to avoid problems with
11974 binding variables (bug#9298). Also clean up some unused
11975 autoloads.
11976
11977 * net/network-stream.el (network-stream-open-starttls):
11978 Support using starttls.el without using gnutls-cli.
11979
11980 2011-08-17 Juri Linkov <juri@jurta.org>
11981
11982 * progmodes/grep.el (rgrep): Handle the case when
11983 `grep-find-command' is a cons cell (bug#9278).
11984
11985 2011-08-17 Martin Rudalics <rudalics@gmx.at>
11986
11987 * window.el (display-buffer-pop-up-frame): Run frame creation
11988 function with BUFFER current (as special-display-popup-frame
11989 does). Reported by Drew Adams.
11990
11991 2011-08-17 Daiki Ueno <ueno@unixuser.org>
11992
11993 * epa-mail.el: Simplify GnuPG group expansion using
11994 epg-expand-group.
11995 (epa-mail-group-alist, epa-mail-group-modtime)
11996 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
11997 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
11998 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
11999 Remove.
12000
12001 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
12002
12003 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
12004
12005 2011-08-16 Alan Mackenzie <acm@muc.de>
12006
12007 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
12008 Correct, to avoid the inside of macros.
12009
12010 2011-08-16 Richard Stallman <rms@gnu.org>
12011
12012 * epa-mail.el: Handle GnuPG group definitions.
12013 (epa-mail-group-alist, epa-mail-group-modtime)
12014 (epa-mail-gnupg-conf-file): New variables.
12015 (epa-mail-parse-groups, epa-mail-sync-groups)
12016 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
12017 (epa-mail-expand-recipients): New functions.
12018 (epa-mail-encrypt): Call epa-mail-expand-recipients.
12019
12020 * mail/rmail.el (rmail-epa-decrypt): New command.
12021
12022 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
12023 Don't bind buffer-read-only, just inhibit-read-only.
12024 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
12025 (epa-decrypt-armor-in-region): Make error message clearer.
12026
12027 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
12028
12029 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
12030 and "a2b" to "ab" for `prefix'.
12031
12032 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
12033
12034 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
12035 filter groups.
12036 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
12037 Fourquet (Bug#8804).
12038
12039 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
12040
12041 * startup.el (argi): Declare as global variable (bug#9275).
12042
12043 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
12044
12045 * subr.el (string-mark-left-to-right): Search the entire string
12046 for RTL script, not just the terminating character. Doc fix.
12047
12048 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
12049
12050 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
12051 New function.
12052 (js--regexp-literal, js-syntax-propertize-function): Remove.
12053 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
12054 (js-mode-map): Don't rebind electric keys.
12055 (js-insert-and-indent): Remove.
12056 (js-mode): Setup electric-layout and electric-indent instead.
12057
12058 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
12059
12060 2011-08-12 Daiki Ueno <ueno@unixuser.org>
12061
12062 * epa.el (epa-progress-callback-function): Fix the logic of
12063 displaying progress.
12064 * epa-file.el (epa-file-insert-file-contents): Make progress
12065 display more user-friendly.
12066 (epa-file-write-region): Ditto.
12067
12068 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
12069
12070 * subr.el (string-mark-left-to-right): New function.
12071
12072 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
12073 Use string-mark-left-to-right.
12074 (list-buffers-noselect): Caller changed.
12075
12076 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
12077 Use string-mark-left-to-right.
12078 (tabulated-list-print): Recenter after moving point.
12079
12080 2011-08-10 Juri Linkov <juri@jurta.org>
12081
12082 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
12083 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
12084 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
12085
12086 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
12087
12088 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
12089 (Bug#7554).
12090
12091 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
12092
12093 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
12094 character. (Bug#6594)
12095
12096 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
12097
12098 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
12099 (image-dired--with-db-file): New macro.
12100 (image-dired-write-tags, image-dired-remove-tag)
12101 (image-dired-create-gallery-lists, image-dired-write-comments)
12102 (image-dired-get-comment, image-dired-mark-tagged-files)
12103 (image-dired-list-tags, image-dired-gallery-generate): Use it.
12104 (image-dired-gallery-generate): Use insert-file-contents.
12105
12106 * time.el (display-time-world-list, display-time-world-display):
12107 * time-stamp.el (time-stamp-string):
12108 * vc/add-log.el (add-change-log-entry): Use setenv instead of
12109 set-time-zone-rule (Bug#7337).
12110
12111 2011-08-08 Daiki Ueno <ueno@unixuser.org>
12112
12113 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
12114 (epg-error-to-string, epg-errors-to-string): New function.
12115 (epg-wait-for-completion): Reverse errors list.
12116 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
12117 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
12118 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
12119 (epg-sign-keys, epg-generate-key-from-file)
12120 (epg-generate-key-from-string): Format errors by using
12121 epg-errors-to-string (bug#9255).
12122 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
12123
12124 2011-08-07 Juri Linkov <juri@jurta.org>
12125
12126 * faces.el (list-faces-display): Remove extra angle bracket
12127 from `help-mode-map'.
12128
12129 * info.el (Info-history-toc-nodes): Doc fix.
12130
12131 * longlines.el (longlines-mode): Doc fix.
12132
12133 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
12134
12135 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
12136 of statements and in a few more cases (bug#9183).
12137
12138 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
12139 New functions.
12140 (cl-transform-lambda): Use them (bug#9239).
12141
12142 2011-08-05 Martin Rudalics <rudalics@gmx.at>
12143
12144 * window.el (display-buffer-same-window)
12145 (display-buffer-same-frame, display-buffer-other-window)
12146 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12147 (pop-to-buffer-other-window)
12148 (pop-to-buffer-same-frame-other-window)
12149 (pop-to-buffer-other-frame): Make them defuns.
12150 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
12151
12152 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12153
12154 * subr.el (make-composed-keymap): Move from C. Change calling
12155 convention, and improve docstring to bring attention to a subtle point.
12156 * minibuffer.el (completing-read-default): Adjust accordingly.
12157
12158 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
12159
12160 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
12161 (tramp-open-shell): Use `tramp-shell-quote-argument'.
12162
12163 * net/trampver.el: Update release number.
12164
12165 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12166
12167 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
12168 "in" (bug#9190).
12169
12170 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12171
12172 * mail/sendmail.el (sendmail-query-once): Restore the current
12173 buffer after querying (bug#9074).
12174
12175 * dired.el (dired-flagged): Use different faces for marked and
12176 flagged files (bug#6117).
12177
12178 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
12179 (bug#4433).
12180
12181 * ido.el (ido-mode): Switch off the message if called
12182 non-interactively.
12183
12184 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
12185 before 587, since it appears that that's more likely to work for
12186 more people.
12187
12188 * cus-edit.el (custom-file): When running under emacs -q, always
12189 refuse to save the customizations, even if the .emacs file doesn't
12190 exist.
12191
12192 * info.el: Remove the `Info-beginning-of-buffer' function
12193 (bug#8325).
12194
12195 * net/network-stream.el (network-stream-open-starttls):
12196 Use `starttls-available-p' to see whether starttls.el can be used.
12197
12198 2011-08-01 Martin Rudalics <rudalics@gmx.at>
12199
12200 * window.el (display-buffer-in-window): Don't set dedicated status
12201 of window here (Bug#9215).
12202 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
12203 (display-buffer-pop-up-side-window)
12204 (display-buffer-in-side-window): Set dedicated status of window here.
12205
12206 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
12207
12208 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
12209 before binding generated-autoload-file.
12210
12211 2011-08-01 Deniz Dogan <deniz@dogan.se>
12212
12213 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
12214
12215 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
12216
12217 Sync with Tramp 2.2.2.
12218
12219 * net/trampver.el: Update release number.
12220
12221 2011-07-30 Juri Linkov <juri@jurta.org>
12222
12223 * dired-aux.el (dired-touch-initial): Remove function.
12224 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
12225 current time, and `default' to the last modification time of the
12226 current marked file (bug#6887).
12227
12228 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
12229
12230 * simple.el (goto-line): Use string-to-number to provide a
12231 numeric argument to read-number (bug#9163).
12232
12233 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
12234
12235 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
12236 connection process, it could be nil.
12237
12238 2011-07-27 Leo Liu <sdl.web@gmail.com>
12239
12240 Simplify url handling in rcirc-mode.
12241
12242 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
12243 (rcirc-browse-url-at-mouse): Remove.
12244 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
12245
12246 2011-07-26 Alan Mackenzie <acm@muc.de>
12247
12248 Fontify bitfield declarations properly.
12249
12250 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
12251 (c-symbol-chars): Now exported as a lang variable.
12252 (c-not-primitive-type-keywords): New lang variable.
12253
12254 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
12255 QT keyword "more" to prevent "more slots: ...." being spuriously
12256 parsed as a bitfield declaration.
12257
12258 * progmodes/cc-engine.el (c-beginning-of-statement-1):
12259 Refactor and enhance to handle bitfield declarations.
12260 (c-punctuation-in): New function.
12261 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
12262 declarations properly.
12263
12264 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
12265
12266 * calendar/icalendar.el (icalendar--all-events): Take care of
12267 multiple vcalendars in a single file.
12268 (icalendar--convert-float-to-ical): Checkdoc fixes.
12269
12270 2011-07-25 Deniz Dogan <deniz@dogan.se>
12271
12272 * image.el (insert-image): Clarifying docstring.
12273
12274 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
12275
12276 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
12277 `tramp-send-command-and-check' if there is no error.
12278 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
12279
12280 2011-07-22 Alan Mackenzie <acm@muc.de>
12281
12282 Prevent cc-langs.elc being loaded at run time.
12283
12284 * progmodes/cc-mode.el: Remove two autoload forms which loaded
12285 cc-langs.
12286
12287 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
12288 "(require 'cc-langs)". Quote a form so it will evaluate at
12289 (cc-mode's) compilation time.
12290
12291 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
12292
12293 * net/tramp.el (tramp-file-name-handler): Avoid recursive
12294 loading. (Bug#9114)
12295
12296 2011-07-21 Martin Rudalics <rudalics@gmx.at>
12297
12298 * window.el (display-buffer-pop-up-window)
12299 (display-buffer-pop-up-side-window)
12300 (display-buffer-in-side-window): Call display-buffer-set-height
12301 and display-buffer-set-width after setting the new window's
12302 buffer so `fit-window-to-buffer' and friends work on the right buffer.
12303
12304 2011-07-20 Sam Steingold <sds@gnu.org>
12305
12306 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
12307 (etags-tags-included-tables): Call `convert-standard-filename' on
12308 the file names contained in TAGS so that windows Emacs can handle
12309 TAGS files created by cygwin ctags.
12310
12311 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12312
12313 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
12314 which apparently didn't work.
12315
12316 2011-07-19 Roland Winkler <winkler@gnu.org>
12317
12318 * proced.el (proced-send-signal): For *Marked Processes* buffer
12319 put point at beginning of buffer.
12320
12321 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
12322
12323 * proced.el (proced-format): Make header lines align with the text
12324 (bug#1779).
12325
12326 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12327
12328 * view.el (view-buffer): Allow running in `special' modes if we're
12329 visiting a file (bug#8615).
12330
12331 2011-07-19 Martin Rudalics <rudalics@gmx.at>
12332
12333 * window.el (display-buffer-alist-of-strings-p)
12334 (display-buffer-alist-set-1, display-buffer-alist-set-2):
12335 New functions.
12336 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
12337 more accurately.
12338
12339 2011-07-18 Alan Mackenzie <acm@muc.de>
12340
12341 Fontify declarators properly when, e.g., a jit-lock chunk begins
12342 inside a declaration.
12343
12344 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
12345
12346 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
12347 New function.
12348 (c-complex-decl-matchers): Insert reference to
12349 c-font-lock-enclosing-decls.
12350
12351 * progmodes/cc-engine.el (c-backward-single-comment):
12352 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
12353 to nil around calls to (forward-comment -1).
12354
12355 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12356
12357 * image.el (put-image): Doc typo fix.
12358
12359 * progmodes/etags.el (tags-search): Doc typo fix.
12360
12361 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
12362 password if we get errors 550 to 554.
12363
12364 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
12365
12366 * net/gnutls.el (gnutls-log-level): Remove.
12367
12368 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
12369 indentation character (bug#6380).
12370
12371 * files.el (buffer-offer-save): Made permanently local (bug#6241).
12372
12373 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
12374 to clarify what the problem is (bug#4291).
12375
12376 * simple.el (current-kill): Clarify what
12377 `interprogram-paste-function' does (bug#7500).
12378 (auto-fill-mode): Document `auto-fill-function' in relation to
12379 `auto-fill-mode' (bug#2470).
12380
12381 2011-07-16 Lawrence Mitchell <wence@gmx.li>
12382
12383 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
12384 method if slot is read-only (bug#9035).
12385
12386 2011-07-16 Martin Rudalics <rudalics@gmx.at>
12387
12388 * frame.el (select-frame-set-input-focus): New argument NORECORD.
12389 * window.el (pop-to-buffer): Select window used even if it was
12390 selected before, see discussion of (Bug#8615), (Bug#6954).
12391 Pass argument NORECORD on to select-frame-set-input-focus.
12392
12393 2011-07-15 Glenn Morris <rgm@gnu.org>
12394
12395 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
12396 Respect help-form.
12397
12398 2011-07-09 Lawrence Mitchell <wence@gmx.li>
12399
12400 * net/gnutls.el (gnutls-min-prime-bits): New variable.
12401 (gnutls-negotiate): Use it.
12402
12403 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12404
12405 * net/gnutls.el (gnutls-negotiate):
12406 Upcase `gnutls-algorithm-priority'.
12407
12408 2011-07-15 Glenn Morris <rgm@gnu.org>
12409
12410 * jka-compr.el (jka-compr-verbose): Move from here...
12411 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
12412 Add missing :version tag.
12413 * info.el: No need to require jka-compr when compiling.
12414
12415 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12416
12417 * net/gnutls.el (gnutls-algorithm-priority): New variable.
12418 (gnutls-negotiate): Use it.
12419
12420 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
12421
12422 * info.el (Info-beginning-of-buffer): New command.
12423 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
12424 announcing `b' as the key (bug#8325).
12425 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
12426
12427 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
12428
12429 * international/mule-cmds.el
12430 (describe-specified-language-support): Make the error message
12431 clearer (bug#8905).
12432
12433 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
12434
12435 * isearch.el (isearch-barrier): Add a doc string, since it's
12436 mentioned in a function doc string (bug#8678).
12437
12438 2011-07-15 Martin Rudalics <rudalics@gmx.at>
12439
12440 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
12441 buffer argument (Bug#9083) and self-identifying label argument.
12442
12443 2011-07-15 Glenn Morris <rgm@gnu.org>
12444
12445 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
12446
12447 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12448
12449 * man.el (Man-fontify-manpage): Fix message when formatting the
12450 man page (bug#7929).
12451
12452 2011-07-14 Eli Zaretskii <eliz@gnu.org>
12453
12454 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
12455 argument LRM; if non-nil, append an invisible LRM character to the
12456 buffer name.
12457 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
12458 last argument non-nil, when formatting buffer names.
12459 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
12460 paragraph direction.
12461
12462 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12463
12464 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
12465 the man page name (bug#7929).
12466
12467 * image.el (put-image): Mention the `put-image' overlay property
12468 (bug#7834).
12469
12470 * scroll-bar.el (set-scroll-bar-mode): Mention that
12471 `scroll-bar-mode' lists the values (bug#7772).
12472
12473 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
12474 command (bug#7729).
12475
12476 * rect.el (apply-on-rectangle): Return the point after the last
12477 operation.
12478 (string-rectangle): Go to the point after the last operation
12479 (bug#7522).
12480
12481 * printing.el (pr-toggle-region): Clarify the documentation
12482 slightly (bug#7493).
12483
12484 * time.el (display-time-update):
12485 Allow `display-time-mail-function' to return nil (bug#7158).
12486 Fix suggested by Detlev Zundel.
12487
12488 * vc/diff.el (diff): Clarify the order the file names are read
12489 (bug#7111).
12490
12491 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
12492 the doc string (bug#7015).
12493
12494 * font-lock.el (font-lock-maximum-decoration): Mention what
12495 numeric levels mean (bug#6935).
12496
12497 * startup.el (initial-buffer-choice): Don't mention the `none'
12498 selection, which is against policy.
12499
12500 2011-07-14 Martin Rudalics <rudalics@gmx.at>
12501
12502 * window.el (display-buffer-normalize-special):
12503 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
12504
12505 2011-07-14 Eli Zaretskii <eliz@gnu.org>
12506
12507 * subr.el (version<, version<=, version=): Mention "-CVS" and
12508 "-12345" alpha version numbers.
12509
12510 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
12511
12512 * bindings.el: Add advertised binding for set-mark-command
12513 (Bug#5772).
12514
12515 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
12516
12517 * bindings.el (mode-line-other-buffer):
12518 * bookmark.el (bookmark-bmenu-2-window):
12519 * bs.el (bs-cycle-next, bs-cycle-previous):
12520 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
12521 switch-to-buffer.
12522
12523 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
12524 Delete.
12525
12526 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
12527
12528 * follow.el (follow-debug-message, follow-redisplay):
12529 * jka-cmpr-hook.el (with-auto-compression-mode):
12530 Fix typos in docstrings.
12531
12532 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12533
12534 * subr.el (with-silent-modifications): Clarify somewhat what the
12535 macro inhibits (bug#6525).
12536
12537 * simple.el (eval-expression): Note what it does if called
12538 interactively (bug#6495).
12539
12540 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
12541
12542 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
12543 Use pop-to-buffer buffer-or-name if it is nil.
12544
12545 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12546 Remove switch-to-buffer.
12547
12548 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12549
12550 * files.el (make-directory): Clarify that an error will be raised
12551 if there's an error (bug#6397).
12552
12553 * startup.el (initial-buffer-choice): Add `none' as a choice
12554 (bug#6234).
12555
12556 * subr.el (add-hook): Clarify section about buffer-local hooks
12557 (bug#6218).
12558
12559 * dired.el (dired-flagged): Clarify doc string (bug#6117).
12560
12561 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
12562
12563 * tabify.el (untabify): Preserve the current column so that point
12564 doesn't move (bug#6032).
12565
12566 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12567
12568 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
12569 Rewrite to avoid awkward possessive "s" (bug#5986).
12570
12571 2011-07-13 Glenn Morris <rgm@gnu.org>
12572
12573 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
12574 (dired-insert-directory): Give a message the first time
12575 if ls is found not to support --dired.
12576
12577 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12578
12579 * simple.el (toggle-truncate-lines): Clarify what is toggled
12580 (bug#5580). Text by Drew Adams.
12581
12582 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
12583
12584 * simple.el (blink-matching-open): Make the error message from the
12585 last change less verbose.
12586
12587 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
12588
12589 * font-lock.el (font-lock-comment-face): Use the high contrast
12590 "yellow" color for font-lock-comment-face on low color terminals
12591 using a dark background color (bug#4221).
12592
12593 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12594
12595 * dired.el (dired-insert-set-properties): Make the doc string
12596 reflect what it does now (bug#5325).
12597
12598 * simple.el (blink-matching-open): Say that we were unable to find
12599 the match within the limit, if we're limited (bug#5122).
12600
12601 * international/mule-cmds.el (prefer-coding-system): Add an
12602 example (bug#4869).
12603
12604 * progmodes/etags.el (tags-search): Document `file-list-form'
12605 (bug#4731).
12606
12607 2011-07-13 Lawrence Mitchell <wence@gmx.li>
12608
12609 * net/browse-url.el (browse-url-default-browser)
12610 (browse-url-browser-function): Make the default browser choice a
12611 bit more logical (bug#4300). Also clean up the doc string.
12612
12613 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
12614
12615 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
12616 binary endings (bug#4440).
12617
12618 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12619
12620 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
12621 which can be pretty annoying (bug#8971).
12622
12623 * jka-compr.el (jka-compr-verbose): New variable, and use
12624 throughout (bug#8971).
12625
12626 * info.el (Info-find-file): Fall back on the installation
12627 directory if we can't find the info node anywhere else.
12628
12629 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
12630
12631 * vc/vc.el (vc-revert-file):
12632 Don't set file time-stamp in the past. (Bug#5181)
12633
12634 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12635
12636 * files.el (after-find-file): Give a better error message when
12637 trying to find a symlink that points to a file that doesn't exist
12638 (bug#4398).
12639
12640 * progmodes/cc-vars.el: Remove (probably) misleading comment
12641 (bug#4396).
12642
12643 2011-07-12 Johan Bockgård <bojohan@gnu.org>
12644
12645 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
12646
12647 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
12648
12649 * mouse-sel.el: Hack restoring functionality, while keeping
12650 compatibility with 2010-07-03 changes to mouse selection.
12651 (mouse-sel-primary-overlay): New var.
12652 (mouse-sel-selection-alist): Use it.
12653 (mouse-sel-mode): Doc fix; remove points that are default features
12654 of mouse.el.
12655
12656 2011-07-12 Johan Bockgård <bojohan@gnu.org>
12657
12658 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12659 Fix previous fix (bug#2490).
12660
12661 2011-07-12 Roland Winkler <winkler@gnu.org>
12662
12663 * textmodes/bibtex.el (bibtex-initialize):
12664 Use pop-to-buffer-same-window.
12665 (bibtex-search-entries): Fix interactive call.
12666
12667 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12668
12669 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12670 Fontise bytecomp Error lines more correctly (bug#2490).
12671 Fix suggested by Johan Bockgård.
12672
12673 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
12674
12675 * dired-x.el (dired-guess-default): Use `delete-dups'.
12676
12677 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
12678
12679 * dired.el (dired-mark-prompt):
12680 * dired-aux.el (dired-read-shell-command): Doc fix.
12681
12682 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12683
12684 * mail/sendmail.el (sendmail-query-once):
12685 Use `customize-save-variable' unconditionally, now that it works under
12686 emacs -Q.
12687
12688 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
12689
12690 * cus-edit.el (custom-file): Take an optional no-error variable.
12691 (customize-save-variable): Set the variable, and give a warning if
12692 running under "emacs -q".
12693
12694 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
12695
12696 * loadhist.el (unload-feature-special-hooks):
12697 Add `auto-coding-functions', `fill-nobreak-predicate' and
12698 `find-directory-functions' (bug#5327).
12699
12700 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12701
12702 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
12703
12704 * cus-edit.el (custom-guess-name-alist): -alist variables should
12705 use the `alist' type (bug#3120). Suggested by Drew Adams.
12706
12707 * printing.el: Add documentation to all the `pr-toggle-' commands.
12708
12709 2011-07-11 Leo Liu <sdl.web@gmail.com>
12710
12711 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
12712 backends where it makes sense (bug#2623).
12713
12714 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12715
12716 * dired-x.el (dired-guess-default): Remove duplicate shell command
12717 entries (bug#2028).
12718 (dired-guess-default): Fix grammar in doc string (bug#2028).
12719 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
12720
12721 * subr.el (remove-duplicates): New conveniency function.
12722
12723 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12724
12725 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
12726 (bug#1526).
12727
12728 2011-07-10 Martin Rudalics <rudalics@gmx.at>
12729
12730 * window.el (display-buffer-normalize-default): Don't invert
12731 meaning of even-window-heights. Reported by Eli Zaretskii
12732 <eliz@gnu.org>.
12733
12734 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
12735
12736 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
12737
12738 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
12739
12740 * window.el (display-buffer): Fix arguments to
12741 display-buffer-reuse-window in last change.
12742
12743 * faces.el (link): Use a less saturated blue on light backgrounds.
12744
12745 * startup.el (fancy-startup-text, fancy-about-text)
12746 (fancy-startup-tail): Use font-lock faces, for background safety.
12747
12748 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
12749
12750 * emulation/viper-cmd.el (viper-change-state-to-vi):
12751 Limit triggering of abbrev expansion (Bug#9038).
12752
12753 2011-07-09 Martin Rudalics <rudalics@gmx.at>
12754
12755 * window.el (display-buffer-default-specifiers): Remove.
12756 (display-buffer-macro-specifiers): Remove default specifiers.
12757 (display-buffer-alist): Default to nil.
12758 (display-buffer-reuse-window): New optional argument other-window.
12759 (display-buffer-pop-up-window): Allow splitting internal
12760 windows. Check whether a live window was created.
12761 (display-buffer-other-window-means-other-frame)
12762 (display-buffer-normalize-arguments): Rename to
12763 display-buffer-normalize-argument and rewrite. Set the
12764 other-window specifier.
12765 (display-buffer-normalize-special): New function.
12766 (display-buffer-normalize-options): Rename to
12767 display-buffer-normalize-default and rewrite.
12768 (display-buffer-normalize-options-inhibit): Remove.
12769 (display-buffer-normalize-specifiers): Rewrite.
12770 (display-buffer): Process other-window specifier and call
12771 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
12772 more faithfully.
12773 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
12774 (display-buffer-alist-set): Don't handle 'unset default values.
12775 (display-buffer-in-window, display-buffer-alist-set):
12776 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
12777 <tassilo@member.fsf.org>.
12778
12779 2011-07-09 Leo Liu <sdl.web@gmail.com>
12780
12781 * register.el (insert-register): Restore accidental change on
12782 2011-06-26. (Bug#9028)
12783
12784 2011-07-09 Glenn Morris <rgm@gnu.org>
12785
12786 * subr.el (remq): Handle the empty list. (Bug#9024)
12787
12788 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
12789
12790 * mail/sendmail.el (send-mail-function): No longer delay custom
12791 initialization.
12792 * custom.el (custom-initialize-delay): Doc fix.
12793
12794 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12795
12796 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
12797
12798 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
12799
12800 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
12801 human-friendly prompt.
12802
12803 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12804
12805 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
12806 provided by a particular plugin.
12807
12808 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
12809
12810 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
12811 save customizations (with "emacs -Q"), just set the variable
12812 instead of erroring out.
12813
12814 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
12815
12816 2011-07-08 Juri Linkov <juri@jurta.org>
12817
12818 * arc-mode.el (archive-zip-expunge, archive-zip-update)
12819 (archive-zip-update-case): Use 7z if found by `executable-find'.
12820 The order of searching the available programs is the same as in
12821 `archive-zip-extract' (bug#8968).
12822
12823 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12824
12825 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
12826 (menu-bar-options-menu): Tweak descriptions.
12827
12828 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12829
12830 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
12831 menu items into verb phrases (bug#1421). Also refill to fit under
12832 80 columns.
12833
12834 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12835
12836 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
12837 (Info-read-node-name): Doc fix (Bug#1084).
12838
12839 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
12840 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
12841 (end-of-sexp, beginning-of-sexp)
12842 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
12843 (forward-symbol, forward-same-syntax, word-at-point)
12844 (sentence-at-point): Doc fix (Bug#1144).
12845
12846 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12847
12848 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
12849 should cover it (bug#1281).
12850
12851 * cus-edit.el (custom-show): Mark as obsolete.
12852
12853 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12854 negotiation fails, then possibly try again with a non-encrypted
12855 connection (bug#9017).
12856
12857 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
12858 be used.
12859
12860 2011-07-07 Richard Stallman <rms@gnu.org>
12861
12862 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
12863 property, and handle its changed format.
12864 Look for the correct line number.
12865 Use file's line contents (but not past first =) to find
12866 correct line in message.
12867
12868 2011-07-07 Kenichi Handa <handa@m17n.org>
12869
12870 * international/characters.el (build-unicode-category-table):
12871 Delete it.
12872 (unicode-category-table): Set it by unicode-property-table-internal.
12873
12874 * international/mule-cmds.el (char-code-property-alist): Move to
12875 to src/chartab.c.
12876 (get-char-code-property): Call unicode-property-table-internal to
12877 load a file. Call get-unicode-property-internal where necessary.
12878 (put-char-code-property): Call unicode-property-table-internal to
12879 load a file. Call put-unicode-property-internal where necessary.
12880 put-unicode-property-internal where necessary.
12881 (char-code-property-description):
12882 Call unicode-property-table-internal to load a file.
12883
12884 * international/charprop.el:
12885 * international/uni-bidi.el:
12886 * international/uni-category.el:
12887 * international/uni-combining.el:
12888 * international/uni-comment.el:
12889 * international/uni-decimal.el:
12890 * international/uni-decomposition.el:
12891 * international/uni-digit.el:
12892 * international/uni-lowercase.el:
12893 * international/uni-mirrored.el:
12894 * international/uni-name.el:
12895 * international/uni-numeric.el:
12896 * international/uni-old-name.el:
12897 * international/uni-titlecase.el:
12898 * international/uni-uppercase.el: Regenerate.
12899
12900 * loadup.el: Load international/charprop.el before
12901 international/characters.
12902
12903 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12904
12905 * window.el (next-buffer, previous-buffer): Signal an error if
12906 called from a minibuffer window.
12907
12908 * bindings.el: Revert 2011-07-04 change.
12909
12910 2011-07-06 Richard Stallman <rms@gnu.org>
12911
12912 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
12913 (rmail-mime-insert-bulk, rmail-mime-insert-text):
12914 Treat markers like ints.
12915 (rmail-mime-entity): Doc fix.
12916
12917 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12918
12919 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
12920 defcustom again for backwards compatibility.
12921
12922 * simple.el (shell-command-on-region): Fill.
12923
12924 * dired-aux.el (dired-kill-line): Add a doc string.
12925
12926 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
12927 to "\\sw\\|\\s_" (bug#358).
12928
12929 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
12930 (dired-unmark-backward): Ditto.
12931 (dired-flag-backup-files): Ditto.
12932
12933 * dired-x.el (dired-mark-sexp): Ditto.
12934
12935 2011-07-06 Richard Stallman <rms@gnu.org>
12936
12937 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
12938 (rmail-mime-entity): New arg TRUNCATED.
12939 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
12940 New functions.
12941 (rmail-mime-save): Warn if entity is truncated.
12942 (rmail-mime-toggle-hidden): Likewise, for showing.
12943 (rmail-mime-process-multipart): Record when an entity is truncated.
12944
12945 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
12946 if ENTITY is a string.
12947
12948 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12949
12950 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
12951 of faces when `M-C-x'-ing their definitions (bug#8378).
12952 Also clean up the code slightly.
12953
12954 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
12955 because that makes the colors go away.
12956
12957 * mail/sendmail.el (send-mail-function): Change the default to
12958 `sendmail-query-once'.
12959 (sendmail-query-once): Add an autoload cookie.
12960
12961 * net/network-stream.el (network-stream-open-starttls): Try using
12962 a plain connection even if the server offered STARTTLS, and we
12963 kinda wanted to use it, if Emacs doesn't have any STARTTLS
12964 capability. This should make smtpmail.el work in slightly more
12965 configurations.
12966
12967 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
12968
12969 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
12970 New defun.
12971 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
12972
12973 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
12974
12975 * progmodes/sql.el: Version 3.0
12976 (sql-product-alist): Add product :completion-object,
12977 :completion-column, and :statement attributes.
12978 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
12979 (sql-mode-syntax-table): Mark all punctuation.
12980 (sql-font-lock-keywords-builder): Temporarily remove fallback on
12981 ansi keywords.
12982 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
12983 (sql-mode-oracle-font-lock-keywords): Improve.
12984 (sql-oracle-show-reserved-words): New function for development.
12985 (sql-product-font-lock): Simplify for source code buffers.
12986 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
12987 New functions.
12988 (sql-highlight-product): Set product specific syntax table.
12989 (sql-mode-map): Add statement movement functions.
12990 (sql-ansi-statement-starters, sql-oracle-statement-starters):
12991 New variable.
12992 (sql-statement-regexp, sql-beginning-of-statement)
12993 (sql-end-of-statement, sql-signum): New functions.
12994 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
12995 (sql-show-sqli-buffer): Bug fix.
12996 (sql-interactive-mode): Store connection data as buffer local.
12997 (sql-connect): Add NEW-NAME parameter. Redesign interaction
12998 with sql-interactive-mode.
12999 (sql-save-connection): Save buffer local settings.
13000 (sql-connection-menu-filter): Change menu entry name.
13001 (sql-product-interactive): Bug fix.
13002 (sql-preoutput-hold): New variable.
13003 (sql-interactive-remove-continuation-prompt): Bug fixes.
13004 (sql-debug-redirect): New variable.
13005 (sql-str-literal): New function.
13006 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
13007 Redesign.
13008 (sql-oracle-save-settings, sql-oracle-restore-settings)
13009 (sql-oracle-list-all, sql-oracle-list-table): New functions.
13010 (sql-completion-object, sql-completion-column)
13011 (sql-completion-sqlbuf): New variables.
13012 (sql-build-completions-1, sql-build-completions)
13013 (sql-try-completion): New functions.
13014 (sql-read-table-name): Use them.
13015 (sql-contains-names): New buffer local variable.
13016 (sql-list-all, sql-list-table): Use it.
13017 (sql-oracle-completion-types): New variable.
13018 (sql-oracle-completion-object, sql-sqlite-completion-object)
13019 (sql-postgres-completion-object): New functions.
13020
13021 2011-07-06 Glenn Morris <rgm@gnu.org>
13022
13023 * window.el (pop-to-buffer): Doc fix.
13024
13025 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
13026
13027 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
13028
13029 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
13030
13031 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
13032
13033 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
13034
13035 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
13036
13037 * button.el (button): Inherit from link face. Suggested by Dan
13038 Nicolaescu.
13039
13040 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13041
13042 * progmodes/gdb-mi.el: Fit in 80 columns.
13043 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
13044 switch-to-buffer.
13045
13046 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
13047 if imenu is simply not configured (bug#8941).
13048
13049 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
13050
13051 * allout.el (allout-post-undo-hook): New allout outline-change
13052 event hook to signal undo activity.
13053 (allout-post-command-business): Run allout-post-undo-hook if an
13054 undo just occurred.
13055 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
13056 * allout-widgets.el (allout-widgets-after-undo-function):
13057 Ensure the integrity of the current item's decoration after it has been
13058 in the vicinity of an undo.
13059 (allout-widgets-mode): Include allout-widgets-after-undo-function
13060 on the new allout-post-undo-hook.
13061
13062 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13063
13064 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
13065 Let define-derived-mode define it.
13066 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
13067 cycles of abbrev-table inheritance (bug#8998).
13068
13069 2011-07-05 Roland Winkler <winkler@gnu.org>
13070
13071 * textmodes/bibtex.el: Add support for biblatex.
13072 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
13073 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
13074 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
13075 (bibtex-entry-alist, bibtex-field-alist): New variables.
13076 (bibtex-entry-field-alist): Obsolete alias for
13077 bibtex-BibTeX-entry-alist.
13078 (bibtex-entry-alist, bibtex-field-alist): New widgets.
13079 (bibtex-set-dialect): New command.
13080 (bibtex-entry-type, bibtex-entry-head)
13081 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
13082 Bind via bibtex-set-dialect.
13083 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
13084 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
13085 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
13086 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
13087 Define via bibtex-set-dialect.
13088 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
13089 Obey bibtex-no-opt-remove-re.
13090 (bibtex-vec-push, bibtex-vec-incr): New functions.
13091 (bibtex-format-entry, bibtex-field-list)
13092 (bibtex-print-help-message, bibtex-validate)
13093 (bibtex-search-entries): Use new format of bibtex-entry-alist.
13094
13095 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13096
13097 * progmodes/compile.el (compilation-goto-locus):
13098 * net/tramp-cmds.el (tramp-append-tramp-buffers):
13099 * bs.el (bs-cycle-next, bs-cycle-previous):
13100 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
13101 * bindings.el (mode-line-other-buffer):
13102 * autoinsert.el (auto-insert):
13103 * arc-mode.el (archive-extract):
13104 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
13105
13106 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13107
13108 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
13109 Fix check of `emacs-lock-unlockable-modes'.
13110 Coerce true values of `emacs-lock--try-unlocking' to t.
13111
13112 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13113
13114 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
13115 * emacs-lock.el: New file.
13116
13117 2011-07-05 Julien Danjou <julien@danjou.info>
13118
13119 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
13120 than `boundp' to check if face is set.
13121
13122 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13123
13124 * register.el (registerv-make):
13125 * window.el (window-min-height): Fix typos in docstrings.
13126
13127 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
13128
13129 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
13130 Update doc string.
13131
13132 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13133
13134 * server.el (server-execute): Catch quit and call
13135 `server-return-error' to pass the error back to emacsclient and
13136 close the connection (bug#8942).
13137
13138 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
13139
13140 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
13141 insecure exception for current topic. Also note that auto-saves
13142 are handled differently.
13143
13144 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13145 State variables for tracking auto-save inhibition situation.
13146
13147 (allout-write-contents-hook-handler): Rename from
13148 'allout-write-file-hook-handler', and describe how it depends on
13149 write-contents-functions sensitivity to non-nil value to prevent
13150 file write.
13151
13152 (allout-auto-save-hook-handler): Remove. auto-save does not check
13153 this in individual buffers, only in the starting buffer, so this
13154 is not the right way for us to inhibit auto-save in a buffer
13155 according to its condition.
13156
13157 (allout-mode): Use new allout-write-contents-hook-handler, and
13158 only with write-contents-functions. Remove auto-save provisions -
13159 they're implemented elsewhere.
13160
13161 (allout-before-change-handler): If undo is in progress, note that
13162 for attention of allout-post-command-business.
13163
13164 (allout-post-command-business): If the command we're following was
13165 an undo, check for change in the status of encrypted items and
13166 adjust auto-save inhibitions accordingly.
13167
13168 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
13169 according to whether there are or aren't any plain-text topics
13170 pending encryption.
13171
13172 (allout-inhibit-auto-save-info-for-decryption):
13173 Adjust buffer-saved-size and some allout state to inhibit auto-saves
13174 if there are plain-text topics pending encryption.
13175
13176 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
13177 buffer-saved-size and some allout state to not inhibit auto-saves
13178 if there are no longer any plain-text topics pending encryption.
13179
13180 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
13181 No longer provide for exemption of the current topic.
13182
13183 2011-07-04 Juri Linkov <juri@jurta.org>
13184
13185 Add 7z operations to delete and save changed members (bug#8968).
13186 * arc-mode.el (archive-7z-expunge, archive-7z-update):
13187 New defcustoms.
13188 (archive-7z-write-file-member): New function.
13189 (archive-7z-summarize): Fix the number of dashes in the
13190 listing output.
13191
13192 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13193
13194 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
13195 (bug#8958).
13196
13197 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
13198
13199 * bindings.el: Ignore next-buffer and previous-buffer in
13200 minibuffer-local-map.
13201
13202 * font-lock.el (font-lock-builtin-face): Change light background
13203 color to dark slate blue (Bug#6693).
13204
13205 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
13206
13207 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
13208
13209 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13210
13211 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
13212 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13213 Add switch-to-buffer.
13214
13215 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13216
13217 * isearch.el (isearch-search-fun-function): Clarify further the
13218 meaning of the function returned.
13219
13220 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
13221
13222 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
13223
13224 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
13225 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
13226 Use it.
13227 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
13228 `tramp-default-remote-path' does not exist.
13229 (tramp-send-command-and-read): New optional argument NOERROR.
13230 (tramp-open-connection-setup-interactive-shell)
13231 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
13232 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
13233 (tramp-process-sentinel): Flush also process' connection property.
13234 (tramp-sh-handle-start-file-process): Do not set process
13235 sentinel. It is done now ...
13236 (tramp-maybe-open-connection): ... here. (Bug#8929)
13237
13238 2011-07-04 MON KEY <monkey@sandpframing.com>
13239
13240 * play/animate.el (animate-string): Doc fixes and allow changing
13241 the buffer name (bug#5417).
13242
13243 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13244
13245 * play/animate.el (animation-buffer-name): Rename from *animate*.
13246
13247 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
13248
13249 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
13250 This is simpler and helps future-proof the code.
13251 (timer-until): Use time-subtract and float-time.
13252 (timer--time-less-p): Use time-less-p.
13253
13254 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13255
13256 * type-break.el (timep): Use the value of `float-time' to avoid a
13257 byte-compiler warning.
13258
13259 * server.el (server-eval-and-print): Return any result, even nil.
13260
13261 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
13262
13263 * type-break.el: Accept time formats that the builtins accept.
13264 (timep, type-break-time-difference): Accept any format that
13265 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
13266 This is simpler and helps future-proof the code.
13267 (type-break-time-difference): Round rather than ignoring
13268 subseconds components.
13269
13270 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13271
13272 * info.el (Info-apropos-matches): Make non-interactive, since it
13273 doesn't seem to do anything useful as a command (bug#8829).
13274
13275 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
13276
13277 * frame.el (frame-background-mode, frame-set-background-mode):
13278 Move from faces.el.
13279 (frame-default-terminal-background): New function.
13280
13281 * custom.el (custom-push-theme): Don't record faces in `changed'
13282 theme; this doesn't work correctly for per-frame face settings.
13283 (disable-theme): Use face-set-after-frame-default to reset faces.
13284 (custom--frame-color-default): New function.
13285
13286 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13287
13288 * dired.el (dired-flagging-regexp): Remove unused variable
13289 (bug#8769).
13290
13291 2011-03-29 Kevin Ryde <user42@zip.com.au>
13292
13293 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13294 `perl-Test2' extend to match possible "fail #N" rep count
13295 (bug#8377).
13296
13297 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13298
13299 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
13300 `smtpmail-via-smtp' now returns the error instead of nil.
13301
13302 * isearch.el (isearch-search-fun-function): Clarify the doc string
13303 (bug#8101).
13304
13305 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
13306
13307 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
13308 unnecessary spaces (bug#8987).
13309
13310 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13311
13312 * net/network-stream.el (open-network-stream): Use the
13313 :end-of-capability command thoughout.
13314
13315 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
13316
13317 * net/network-stream.el (open-network-stream): Add the
13318 :end-of-capability command parameter, used by pop3.el.
13319
13320 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13321
13322 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
13323
13324 * fringe.el (fringe-query-style): Remove redundant text " (type ?
13325 for list)" (bug#6475).
13326
13327 * files.el (file-expand-wildcards): Ignore non-readable
13328 sub-directories while trying to find matches instead of signaling
13329 an error (bug#6297).
13330
13331 * man.el (Man-reference-regexp): Allow matching possible
13332 word-wrapped references (bug#6289).
13333
13334 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
13335 for consistency with the other vc buffers (bug#6197).
13336 (vc-checkin): Ditto.
13337
13338 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
13339
13340 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
13341
13342 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13343
13344 * custom.el (defcustom): Clarify that :set is only used in the
13345 Customize user interface (bug#6089).
13346
13347 * progmodes/flymake.el (flymake-mode): If the buffer isn't
13348 associated with a file, refuse to run instead of erroring out
13349 (bug#6084).
13350
13351 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
13352 the doc string, since it appears that using `fill-column' always
13353 controls the width (bug#7845).
13354
13355 * simple.el (shell-command-on-region): Say where the error output
13356 went if `shell-command-default-error-buffer' is set (bug#6857).
13357
13358 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
13359
13360 * allout.el (allout-yank-processing): Adjust cursor position for
13361 backwards-deleted space.
13362
13363 (allout-rebullet-heading): Register changes with
13364 allout-exposure-changed-hook, so the modified topic is properly
13365 decorated.
13366
13367 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13368
13369 * minibuffer.el (completion-in-region): Document PREDICATE
13370 (bug#7136).
13371
13372 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
13373 of keyword/argument pairs (bug#6904).
13374
13375 * replace.el (multi-occur):
13376 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
13377
13378 2011-07-02 Drew Adams <drew.adams@oracle.com>
13379
13380 * dired.el (dired-mark-if): Make the message about whether it's
13381 marking or unmarking clearer (bug#8523).
13382
13383 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13384
13385 * disp-table.el (display-table-print-array): New function.
13386 (describe-display-table): Use it to print the vectors more pretty
13387 (Bug#8859).
13388
13389 2011-07-02 Martin Rudalics <rudalics@gmx.at>
13390
13391 * window.el (window-state-get-1): Don't assign clone numbers.
13392 Add clone-of item to list of window parameters.
13393 (window-state-put-2): Don't process clone numbers.
13394 (display-buffer-alist): Fix doc-string.
13395
13396 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
13397
13398 * subr.el (remq): Don't allocate if it's not needed.
13399 (keymap--menu-item-binding, keymap--menu-item-with-binding)
13400 (keymap--merge-bindings): New functions.
13401 (keymap-canonicalize): Use them to refine the canonicalization.
13402 * minibuffer.el (minibuffer-local-completion-map)
13403 (minibuffer-local-must-match-map): Move initialization from C.
13404 (minibuffer-local-filename-completion-map): Move initialization from C;
13405 don't inherit from anything here.
13406 (minibuffer-local-filename-must-match-map): Make obsolete.
13407 (completing-read-default): Use make-composed-keymap to combine
13408 minibuffer-local-filename-completion-map with either
13409 minibuffer-local-must-match-map or
13410 minibuffer-local-filename-completion-map.
13411
13412 2011-07-01 Glenn Morris <rgm@gnu.org>
13413
13414 * type-break.el (type-break-time-sum): Use dolist.
13415
13416 * textmodes/flyspell.el (flyspell-word-search-backward):
13417 Replace CL function.
13418
13419 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
13420
13421 * mouse.el (mouse--strip-first-event): New function.
13422 (function-key-map): Use it to map fringe clicks to normal clicks
13423 by default.
13424
13425 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
13426 (vc-bzr-revision-completion-table): Add support for annotate and date.
13427
13428 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
13429 inherit from parent.
13430
13431 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13432
13433 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
13434 (dired-show-file-type): Doc fixup (bug#8818).
13435
13436 * dired.el (dired-mode): Fix up the doc string as suggested by
13437 Drew Adams (bug#8817).
13438
13439 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
13440 cookie, since the manual says that it should be possible to add
13441 this function to `find-file-hook' (bug#8709).
13442
13443 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
13444
13445 * progmodes/cfengine.el: Moved all cfengine3.el functionality
13446 here. Noted Ted Zlatanov as the maintainer.
13447 (cfengine-common-settings, cfengine-common-syntax): New functions
13448 to set up common things between `cfengine-mode' and
13449 `cfengine3-mode'.
13450 (cfengine3-mode): New mode.
13451 (cfengine3-defuns cfengine3-defuns-regex
13452 (cfengine3-class-selector-regex cfengine3-category-regex)
13453 (cfengine3-vartypes cfengine3-font-lock-keywords)
13454 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
13455 (cfengine3-indent-line): Add from cfengine3.el.
13456
13457 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
13458
13459 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
13460
13461 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
13462
13463 2011-07-01 Martin Rudalics <rudalics@gmx.at>
13464
13465 * window.el (same-window-buffer-names, same-window-regexps)
13466 (same-window-p, special-display-frame-alist)
13467 (special-display-popup-frame, special-display-function)
13468 (special-display-buffer-names, special-display-regexps)
13469 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
13470 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
13471 (split-window-preferred-function, split-height-threshold)
13472 (split-width-threshold, even-window-heights)
13473 (display-buffer-mark-dedicated, window-splittable-p)
13474 (split-window-sensibly, window-safely-shrinkable-p):
13475 Un-obsolete.
13476 (display-buffer): Don't spread args with function specifier
13477 because special-display-popup-frame won't like it.
13478
13479 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
13480
13481 Time-stamp simplifications and fixes.
13482 These improve accuracy slightly, and future-proof the code
13483 against some potential changes to current-time format.
13484
13485 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
13486 by using time-since and float-time.
13487
13488 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
13489 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
13490 + NNN microseconds".
13491
13492 * type-break.el (type-break-time-sum): Rewrite using time-add.
13493
13494 * play/hanoi.el (hanoi-current-time-float): Remove.
13495 All uses replaced by float-time.
13496
13497 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
13498 This yields a more-accurate answer.
13499 (rng-time-to-float): Remove; no longer needed.
13500
13501 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
13502
13503 * calendar/timeclock.el (timeclock-seconds-to-time):
13504 Defalias to seconds-to-time, since they're the same thing.
13505
13506 * emacs-lisp/elp.el (elp-elapsed-time):
13507 * emacs-lisp/benchmark.el (benchmark-elapse):
13508 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
13509
13510 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
13511
13512 * window.el (bury-buffer): Don't iconify the only frame.
13513 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
13514 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
13515
13516 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
13517
13518 * eshell/em-smart.el (eshell-smart-display-navigate-list):
13519 Add mouse-yank-primary.
13520
13521 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
13522
13523 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
13524
13525 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
13526
13527 * emacs-lisp/find-func.el (find-library--load-name): New fun.
13528 (find-library-name): Use it to find relative load names when provided
13529 absolute file name (bug#8803).
13530
13531 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
13532
13533 * textmodes/flyspell.el (flyspell-word): Consider words that
13534 differ only in case as potential doublons (bug#5687).
13535
13536 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
13537 Remove two rather uninteresting debugging-like messages to make
13538 debbugs.el more silent.
13539
13540 * comint.el (comint-password-prompt-regexp): Accept "Response" as
13541 a password-like phrase.
13542
13543 2011-06-30 Masatake YAMATO <yamato@redhat.com>
13544
13545 * progmodes/cc-guess.el: New file.
13546
13547 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
13548
13549 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
13550 derived from `c-basic-common-init'.
13551
13552 * progmodes/cc-mode.el (top-level): Require cc-guess.
13553 (c-basic-common-init): Use `cc-choose-style-for-mode'.
13554
13555 2011-06-30 Lawrence Mitchell <wence@gmx.li>
13556
13557 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
13558
13559 2011-06-30 Alan Mackenzie <acm@muc.de>
13560
13561 * progmodes/cc-engine.el (c-guess-continued-construct):
13562 Correct the handling of template-args-cont, particularly for when font
13563 lock is disabled. Name this case as "CASE G".
13564
13565 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
13566
13567 * allout.el (allout-yank-processing): Fix injection of extra space
13568 between bullet and non-whitespace character in first topic when
13569 pasting, ensuring that the actual spacing in the pasted topic
13570 following the bullet char is preserved. This extra space was
13571 causing pasted encrypted topics to get a decrypted status even
13572 when the content was actually still encrypted. Now the decryption
13573 status from before the paste is preserved.
13574
13575 (allout-flag-region): Set all allout overlays so they evaporate
13576 when reduced to zero length (evanescent), to prevent overlay
13577 leakage.
13578
13579 2011-06-30 Glenn Morris <rgm@gnu.org>
13580
13581 * w32-fns.el (w32-charset-info-alist): Declare.
13582
13583 * find-dired.el (find-grep-options): Simplify.
13584
13585 * term/ns-win.el (ns-set-resource): Declare.
13586
13587 * ses.el (row, col): Declare dynamic variables honestly.
13588
13589 * textmodes/reftex-parse.el (index-tags): Declare.
13590
13591 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
13592
13593 * cus-edit.el (customize-push-and-save): New function.
13594
13595 * files.el (hack-local-variables-confirm): Use it.
13596
13597 * custom.el (load-theme): New arg NO-CONFIRM.
13598 Use customize-push-and-save (Bug#8720).
13599 (custom-enabled-themes): Doc fix.
13600
13601 * cus-theme.el (customize-create-theme)
13602 (custom-theme-merge-theme): Callers to load-theme changed.
13603
13604 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
13605
13606 * thingatpt.el (thing-at-point-short-url-regexp): Require that
13607 short URLs have at least one dot in them (bug #7614).
13608
13609 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
13610 nil, because using a pty is apparently too slow (bug #895).
13611
13612 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
13613
13614 * mail/sendmail.el (sendmail-query-once): New function.
13615 (sendmail-query-once-function): New variable.
13616
13617 2011-06-29 Glenn Morris <rgm@gnu.org>
13618
13619 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
13620
13621 * ses.el (top-level): Require cl when compiling.
13622 (ses-set-localvars): Fix error statement.
13623 Call it at compile time to silence a storm of warnings.
13624
13625 2011-06-29 Martin Rudalics <rudalics@gmx.at>
13626
13627 * window.el (normalize-live-buffer): Rename to
13628 window-normalize-buffer.
13629 (normalize-live-frame): Rename to window-normalize-frame.
13630 (normalize-any-window): Rename to window-normalize-any-window.
13631 (normalize-live-window): Rename to window-normalize-live-window.
13632 (make-window-atom): Rename to window-make-atom.
13633 (window-resize-reset): Rename to window--resize-reset.
13634 (window-resize-reset-1): Rename to window--resize-reset-1.
13635 (resize-mini-window): Rename to window--resize-mini-window.
13636 (resize-subwindows-skip-p): Rename to
13637 window--resize-subwindows-skip-p.
13638 (resize-subwindows-normal): Rename to
13639 window--resize-subwindows-normal.
13640 (resize-subwindows): Rename to window--resize-subwindows.
13641 (resize-other-windows): Rename to window--resize-siblings.
13642 (resize-this-window): Rename to window--resize-this-window.
13643 (resize-root-window): Rename to window--resize-root-window.
13644 (resize-root-window-vertically): Rename to
13645 window--resize-root-window-vertically.
13646 (normalize-buffer-to-display): Rename to
13647 window-normalize-buffer-to-display.
13648 (normalize-buffer-to-switch-to): Rename to
13649 window-normalize-buffer-to-switch-to.
13650 Correspondingly update all callers of the functions listed
13651 above.
13652 (display-buffer-alist, display-buffer-normalize-arguments)
13653 (display-buffer-normalize-options, display-buffer)
13654 (display-buffer-alist-set): Use "function" instead of
13655 "fun-with-args".
13656
13657 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
13658
13659 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
13660 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
13661 debbugs.gnu.org. Mention acknowledgment email.
13662
13663 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
13664
13665 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
13666 buffer multibyteness, since it shouldn't matter.
13667
13668 2011-06-28 Martin Rudalics <rudalics@gmx.at>
13669
13670 * window.el (display-buffer-in-side-window): Handle dedicated
13671 windows as in display-buffer-reuse-window.
13672 (display-buffer-normalize-alist): Use value of override
13673 specifier.
13674 (display-buffer-normalize-specifiers): Use value of
13675 other-window-means-other-frame specifier.
13676 (display-buffer-alist): Rewrite some texts in widgets.
13677 (display-buffer): Spread arguments when calling function
13678 specified by fun-with-args.
13679
13680 2011-06-28 Deniz Dogan <deniz@dogan.se>
13681
13682 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13683 Unnest `let'.
13684
13685 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
13686 selectors (Bug#5732).
13687 (css-proprietary-nmstart-re): Use `regexp-opt'.
13688
13689 2011-06-27 Jari Aalto <jari.aalto@cante.net>
13690
13691 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
13692 (eshell-ls-date-format): New defcustom.
13693 (eshell-ls-file): Use it.
13694
13695 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
13696
13697 * help-fns.el (describe-variable): Fix message for terminal-local vars.
13698
13699 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
13700
13701 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
13702 (ange-ftp-make-tmp-name): New arg.
13703 (ange-ftp-file-local-copy): Use it.
13704
13705 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
13706
13707 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
13708 no-conversion (Bug#8870).
13709
13710 2011-06-27 Martin Rudalics <rudalics@gmx.at>
13711
13712 * window.el (window-right, window-left, window-child)
13713 (window-child-count, window-last-child)
13714 (window-iso-combination-p, walk-window-tree-1)
13715 (window-atom-check-1, window-tree-1, delete-window)
13716 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
13717 new naming conventions - window-vchild, window-hchild,
13718 window-next and window-prev are now called window-top-child,
13719 window-left-child, window-next-sibling and window-prev-sibling
13720 respectively.
13721 (resize-window-reset): Rename to window-resize-reset.
13722 (resize-window-reset-1): Rename to window-resize-reset-1.
13723 (resize-window): Rename to window-resize.
13724 (window-min-height, window-min-width)
13725 (resize-mini-window, resize-this-window, resize-root-window)
13726 (resize-root-window-vertically, adjust-window-trailing-edge)
13727 (enlarge-window, shrink-window, maximize-window)
13728 (minimize-window, delete-window, quit-restore-window)
13729 (split-window, balance-windows, balance-windows-area-adjust)
13730 (balance-windows-area, window-state-put-2)
13731 (display-buffer-even-window-sizes, display-buffer-set-height)
13732 (display-buffer-set-width, set-window-text-height)
13733 (fit-window-to-buffer): Rename all "resize-window" prefixed
13734 calls to use the "window-resize" prefix convention.
13735 (display-buffer-alist): Fix symbol for label specifier.
13736 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
13737 corresponding specifier.
13738 Reported by Juanma Barranquero <lekktu@gmail.com>.
13739
13740 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
13741
13742 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
13743 convention.
13744 (ses-call-printer): Does not pass an empty string to formatter when the
13745 cell is empty to keep from barking printer Calc math-format-value.
13746
13747 2011-06-27 Richard Stallman <rms@gnu.org>
13748
13749 * battery.el (battery-mode-line-limit): New variable.
13750 (battery-update): Handle it.
13751
13752 * mail/rmailmm.el (rmail-mime-process-multipart):
13753 Handle truncated messages.
13754
13755 2011-06-27 Glenn Morris <rgm@gnu.org>
13756
13757 * progmodes/flymake.el (flymake-err-line-patterns):
13758 Allow for column numbers in the ant/javac pattern. (Bug#8866)
13759
13760 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
13761
13762 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
13763 (ses--clean-!, ses--clean-_): New functions.
13764 (ses-range): Add configurability of readout order, and conversion
13765 to Calc vector.
13766
13767 * ses.el (ses-repair-cell-reference-all): New function.
13768 (ses-cell-symbol): Set macro as safe, so that it can be used in
13769 formulas.
13770
13771 * ses.el: Update cycle detection algorithm.
13772 (ses-localvars): Add ses--Dijkstra-attempt-nb and
13773 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
13774 (ses-set-localvars): New function.
13775 (ses-make-cell): Add property-list as a cell element.
13776 (ses-cell-property-get-fun, ses-cell-property-get)
13777 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
13778 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
13779 New functions.
13780 (ses-cell-property-set, ses-cell-property-pop)
13781 (ses-cell-property-get-handle): New macro.
13782 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
13783 New aliases, used for code readability.
13784 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
13785 cycle detection.
13786 (ses-self-reference-early-detection): New defcustom.
13787 (ses-formula-references): Robustify against self-referring cells.
13788 (ses-mode): Use ses-set-localvars.
13789 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
13790 before lauching the update processing.
13791 (ses-initialize-Dijkstra-attempt): New function.
13792 (ses-recalculate-cell): Update for cycle detection based on
13793 Dijkstra algorithm.
13794
13795 * ses.el: Fix commenting and indenting convention.
13796
13797 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
13798
13799 * bs.el (bs-cycle-next): Complete last change.
13800
13801 2011-06-27 Drew Adams <drew.adams@oracle.com>
13802
13803 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
13804
13805 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
13806
13807 * net/network-stream.el (network-stream-open-starttls):
13808 Don't re-get capabilities unless we've reestablished connection.
13809 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
13810
13811 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
13812 to binary to possibly avoid line encoding issues on Windows (among
13813 other things).
13814
13815 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13816
13817 * net/network-stream.el (open-network-stream): Return an :error
13818 saying what the problem was, if possible.
13819
13820 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
13821 server.
13822
13823 * net/network-stream.el (network-stream-open-starttls): If we
13824 wanted to use STARTTLS, and the server offered it, but we weren't
13825 able to because we had no STARTTLS support, then close the connection.
13826 (open-network-stream): Return an :error element, if present.
13827
13828 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
13829
13830 * hl-line.el (hl-line-sticky-flag): Doc fix.
13831 (global-hl-line-sticky-flag): New option (Bug#8323).
13832 (global-hl-line-highlight): Obey it.
13833
13834 * vc/vc.el (vc-revert-show-diff): Default to t.
13835
13836 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
13837
13838 * allout-widgets.el (allout-widgets-post-command-business):
13839 Stop decorating intermediate isearch matches. They're not being
13840 undecorated when an isearch is continued past, and isearch
13841 automatically collapses them. This leads to "widget leaks", where
13842 decorated items accumulate in collapsed areas. Lines with lots of
13843 hidden widgets can slow down cursor travel, substantially.
13844 Too much complicated machinery would be needed to ensure undecoration,
13845 so we're doing without this nicety.
13846
13847 (allout-widgets-tally-string): Don't try to do a hash-table-count
13848 of allout-widgets-tally when it's nil. This eliminates spurious "Error
13849 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
13850 *Messages* when allout-widgets-maintain-tally is t.
13851
13852 2011-06-26 Martin Rudalics <rudalics@gmx.at>
13853
13854 * window.el (display-buffer-normalize-argument): Rename to
13855 display-buffer-normalize-arguments. Handle special meaning of
13856 LABEL argument. Respect special-display-function when popping up
13857 a new frame. Fix code searching for a window showing the buffer
13858 on another frame.
13859 (display-buffer-normalize-specifiers):
13860 Call display-buffer-normalize-arguments.
13861 (display-buffer-in-window): Don't undedicate the window if its
13862 buffer remains the same.
13863 Reported by Drew Adams <drew.adams@oracle.com>.
13864 (display-buffer-alist): Add choice for same-window macro
13865 specfier.
13866 (display-buffer): Mention special meaning of LABEL argument in
13867 doc-string. Fix quoting. Don't pop up a new frame even as
13868 fallback.
13869
13870 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
13871
13872 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
13873 avoid deleting the current window in some cases (bug#8911).
13874
13875 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
13876
13877 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
13878 (Bug#8934)
13879
13880 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13881
13882 * net/network-stream.el (network-stream-open-starttls):
13883 Use built-in TLS support if `gnutls-available-p' is true.
13884 (network-stream-open-tls): Ditto.
13885
13886 2011-06-26 Leo Liu <sdl.web@gmail.com>
13887
13888 * register.el (registerv): New struct.
13889 (registerv-make): New function.
13890 (jump-to-register, describe-register-1, insert-register):
13891 Support the jump-func, print-func and insert-func slot of a registerv
13892 struct. (Bug#8415)
13893
13894 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
13895
13896 * vc/vc.el (vc-revert-show-diff): New defcustom.
13897 (vc-diff-internal): New arg specifying diff buffer.
13898 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
13899 reuse an existing *vc-diff* buffer (Bug#8927).
13900
13901 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
13902
13903 2011-06-26 Glenn Morris <rgm@gnu.org>
13904
13905 * progmodes/f90.el (f90-critical-indent): New option.
13906 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
13907 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
13908 (f90-mode): Doc fix.
13909 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
13910 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
13911 (f90-beginning-of-block, f90-next-block, f90-indent-region)
13912 (f90-match-end): Handle block, critical.
13913
13914 2011-06-25 Glenn Morris <rgm@gnu.org>
13915
13916 * calendar/diary-lib.el (diary-included-files): Doc fix.
13917 (diary-include-files): New function, extracted from
13918 diary-include-other-diary-files and diary-mark-included-diary-files.
13919 (diary-include-other-diary-files, diary-mark-included-diary-files):
13920 Just call diary-include-files.
13921 (diary-mark-entries): Reset diary-included-files on first call.
13922
13923 * calendar/diary-lib.el (diary-mark-entries)
13924 (diary-mark-included-diary-files):
13925 Visit included diary-files in temp buffers.
13926
13927 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
13928 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
13929 (f90-start-block-re, f90-imenu-generic-expression)
13930 (f90-looking-at-program-block-start, f90-no-block-limit):
13931 Add support for submodules.
13932
13933 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
13934 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
13935
13936 2011-06-25 Eli Zaretskii <eliz@gnu.org>
13937
13938 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
13939 buffer-file-type before setting its value, to avoid disastrous
13940 global effects on decoding files for DOS/Windows systems. (Bug#8780)
13941
13942 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
13943
13944 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
13945
13946 * ses.el (ses-unload-function):
13947 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
13948
13949 * proced.el (proced-unload-function):
13950 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
13951
13952 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
13953
13954 * server.el (server-create-window-system-frame): Add parameters arg.
13955 (server-process-filter): Doc fix. Handle frame-parameters.
13956
13957 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
13958
13959 Fix bug#8730, bug#8781.
13960
13961 * loadhist.el (unload--set-major-mode): New function.
13962 (unload-feature): Use it.
13963
13964 * progmodes/python.el (python-after-info-look): Add autoload cookie.
13965 (python-unload-function): New function.
13966
13967 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
13968
13969 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
13970
13971 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
13972
13973 * net/browse-url.el (browse-url-firefox-program): Add icecat to
13974 the candidates list.
13975
13976 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
13977
13978 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
13979
13980 2011-06-23 Richard Stallman <rms@gnu.org>
13981
13982 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
13983 (rmail-variables): Set next-error-move-function.
13984 (rmail-what-message): Take argument POS.
13985 (rmail-next-error-move): New function.
13986
13987 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
13988
13989 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
13990 messages for adjacent non-terminals.
13991
13992 2011-06-23 Richard Stallman <rms@gnu.org>
13993
13994 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
13995 (rmail-show-message-1): Preserve buffer modified flag.
13996 (rmail-start-mail): Don't specify use of rmail-mail-return;
13997 that's done by mail-bury now.
13998 (rmail-mail-return): Handle arg NEWBUF.
13999
14000 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
14001
14002 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
14003 SIZE is a number.
14004
14005 2011-06-23 Martin Rudalics <rudalics@gmx.at>
14006
14007 * window.el (get-lru-window, get-mru-window)
14008 (get-largest-window): Never return a minibuffer window.
14009 (display-buffer-pop-up-window): Fix a bug that could lead to
14010 reusing the minibuffer window.
14011 (display-buffer): Pass original specifier argument to
14012 display-buffer-function instead of the normalized one.
14013 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14014
14015 2011-06-22 Leo Liu <sdl.web@gmail.com>
14016
14017 * minibuffer.el (completing-read-function)
14018 (completing-read-default): Move from minibuf.c
14019
14020 2011-06-22 Richard Stallman <rms@gnu.org>
14021
14022 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
14023 to Rmail even if not started by a special Rmail command.
14024
14025 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
14026 Copy the buffer currently showing just one message.
14027
14028 2011-06-22 Roland Winkler <winkler@gnu.org>
14029
14030 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
14031 (bibtex-clean-entry): First delete the old key so that a
14032 customized algorithm for generating the new key does not get
14033 confused by the old key.
14034 (bibtex-url): Obey regexp of first step.
14035 (bibtex-search-entries): Do not use add-to-list with local
14036 list-var.
14037
14038 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14039
14040 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
14041 stored a user name, then query for the password first, instead of
14042 waiting for SMTP to give an error message and the trying again.
14043
14044 2011-06-22 Lawrence Mitchell <wence@gmx.li>
14045
14046 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
14047 BUFFER in call-process.
14048
14049 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14050
14051 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
14052 QUIT twice.
14053 (smtpmail-try-auth-methods): Require user name and password from
14054 auth-source.
14055
14056 2011-06-22 Martin Rudalics <rudalics@gmx.at>
14057
14058 * window.el (display-buffer-default-specifiers)
14059 (display-buffer-alist): Remove entries for pop-up-frame-alist.
14060 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
14061 (split-window): Normalize SIDE argument (Bug#8916).
14062
14063 * frame.el (pop-up-frame-alist, pop-up-frame-function)
14064 (special-display-frame-alist, special-display-popup-frame):
14065 Remove duplicate declarations. These are now in window.el.
14066
14067 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14068
14069 * mail/smtpmail.el (smtpmail-via-smtp):
14070 Set :use-starttls-if-possible so that we always use STARTTLS if the
14071 server supports it. SMTP servers that support STARTTLS commonly
14072 require it.
14073
14074 * net/network-stream.el (network-stream-open-starttls): Support
14075 upgrading to STARTTLS always, even if we don't have built-in support.
14076 (open-network-stream): Add the :always-query-capabilities keyword.
14077
14078 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
14079 upgrades with `open-network-stream', and rely solely on
14080 auth-source for all credentials. Big changes throughout the file,
14081 but in particular:
14082 (smtpmail-auth-credentials): Remove.
14083 (smtpmail-starttls-credentials): Remove.
14084 (smtpmail-via-smtp): Check for servers saying they want AUTH after
14085 MAIL FROM, too.
14086
14087 * net/network-stream.el (network-stream-open-starttls):
14088 Provide support for client certificates both for external and built-in
14089 STARTTLS.
14090 (auth-source): Require.
14091 (open-network-stream): Document the :client-certificate keyword.
14092 (network-stream-certificate): Change cert-cert to cert and
14093 cert-key to key.
14094
14095 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
14096
14097 * net/tramp-cache.el (top): Don't load the persistency file when
14098 "emacs -Q" has been called.
14099
14100 2011-06-21 Tim Harper <timcharper@gmail.com>
14101
14102 * term/ns-win.el (ns-initialize-window-system):
14103 Set application-specific `ApplePressAndHoldEnabled' system
14104 resource to NO as it is not yet supported by the NS port.
14105
14106 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
14107
14108 * misc.el (list-dynamic-libraries--refresh): Compute header here...
14109 (list-dynamic-libraries): ...not here.
14110
14111 2011-06-21 Leo Liu <sdl.web@gmail.com>
14112
14113 * subr.el (sha1): Implement sha1 using secure-hash.
14114
14115 2011-06-21 Martin Rudalics <rudalics@gmx.at>
14116
14117 * window.el (display-buffer-alist): In default value do not
14118 enforce searching a window on any but the selected frame.
14119 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
14120 (display-buffer-select-window): Remove function.
14121 (display-buffer-in-window): When a window on another frame gets
14122 reused, do not select it any more but just raise its frame if
14123 necessary (Bug#8851) and (Bug#8856).
14124 (display-buffer-normalize-options): Handle pop-up-frames related
14125 options more faithfully.
14126 (pop-to-buffer): Don't rely on `display-buffer' selecting the
14127 window if it is on another frame.
14128 (display-buffer-alist, display-buffer-default-specifiers):
14129 Don't make new frame unsplittable by default.
14130 (display-buffer-normalize-argument): Fix doc-string typo and use
14131 'same-frame-other-window instead of 'other-window when associating
14132 with display-buffer-macro-specifiers.
14133
14134 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
14135
14136 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
14137 New functions.
14138 (5x5-mode-map, 5x5-mode-menu): Bind them.
14139 (5x5-draw-grid): Tweak the solver's rendering.
14140
14141 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
14142
14143 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
14144 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
14145
14146 2011-06-21 Drew Adams <drew.adams@oracle.com>
14147
14148 * menu-bar.el: Use function variable instead of switch-to-buffer.
14149 (menu-bar-select-buffer-function): New variable.
14150 (menu-bar-update-buffers): Use it (bug#8876).
14151
14152 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
14153
14154 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
14155 variable's status.
14156
14157 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
14158
14159 * x-dnd.el (x-dnd-version-from-flags)
14160 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
14161 and long as number (Bug#8899).
14162 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
14163
14164 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
14165
14166 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
14167 (completion-try-completion, completion-all-completions): Compute the
14168 metadata argument if it's missing; make it optional (bug#8795).
14169
14170 * wid-edit.el: Use lex-bind and move towards completion-at-point.
14171 (widget-complete): Use new :completion-function property.
14172 (widget-completions-at-point): New function.
14173 (default): Use :completion-function instead of :complete.
14174 (widget-default-completions): Rename from widget-default-complete;
14175 Rewrite.
14176 (widget-string-complete, widget-file-complete, widget-color-complete):
14177 Remove functions.
14178 (file, symbol, function, variable, coding-system, color):
14179 * international/mule-cmds.el (default-input-method, charset)
14180 (language-info-custom-alist):
14181 * cus-edit.el (face): Use new property :completions.
14182
14183 * progmodes/pascal.el (pascal-completions-at-point): New function.
14184 (pascal-mode): Use it.
14185 (pascal-mode-map): Use completion-at-point.
14186 (pascal-toggle-completions): Make obsolete.
14187 (pascal-complete-word, pascal-show-completions):
14188 * progmodes/octave-mod.el (octave-complete-symbol):
14189 Redefine as obsolete alias.
14190 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
14191 Signal absence of completion info for old Octave,
14192 (inferior-octave-complete): Redefine as obsolete alias.
14193 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
14194 (meta-completions-at-point): Rename from meta-complete-symbol and
14195 adapt it for use on completion-at-point-functions.
14196 (meta-common-mode): Use it.
14197 (meta-looking-at-backward, meta-match-buffer): Remove.
14198 (meta-complete-symbol): Redefine as obsolete alias.
14199 (meta-common-mode-map): Use completion-at-point.
14200 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
14201 (makefile-mode-map): Use completion-at-point.
14202 (makefile-completions-at-point): Rename from makefile-complete and
14203 adapt it for use on completion-at-point-functions.
14204 (makefile-mode): Use it.
14205 (makefile-complete): Redefine as obsolete alias.
14206
14207 2011-06-20 Deniz Dogan <deniz@dogan.se>
14208
14209 * net/rcirc.el: Delete trailing whitespaces once and for all.
14210
14211 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
14212
14213 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
14214
14215 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
14216
14217 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
14218
14219 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
14220
14221 2011-06-19 Martin Rudalics <rudalics@gmx.at>
14222
14223 * window.el (display-buffer-other-window-means-other-frame):
14224 Call display-buffer-normalize-alist.
14225 (display-buffer-normalize-specifiers-1): Rename to
14226 display-buffer-normalize-argument. New argument other-frame.
14227 Rewrite.
14228 (display-buffer-normalize-specifiers-2): Rename to
14229 display-buffer-normalize-options.
14230 (display-buffer-normalize-alist-1): New function.
14231 (display-buffer-normalize-specifiers-3): Rename to
14232 display-buffer-normalize-alist.
14233 Call display-buffer-normalize-alist-1.
14234 (display-buffer-normalize-options-inhibit): New variable.
14235 (display-buffer-normalize-specifiers): Rewrite calling
14236 display-buffer-normalize-alist,
14237 display-buffer-normalize-argument, and
14238 display-buffer-normalize-options. Don't call the latter if
14239 display-buffer-normalize-options-inhibit is non-nil.
14240 (frame-auto-delete): New option.
14241 (window-deletable-p): Use frame-auto-delete.
14242 (window-list-no-nils, window-state-ignored-parameters)
14243 (window-state-get-1, window-state-get, window-state-put-list)
14244 (window-state-put-1, window-state-put-2, window-state-put):
14245 New functions.
14246 (display-buffer-normalize-options): Move special-display-p group
14247 after pop-up-frame group (Bug#8851) and (Bug#8856).
14248
14249 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
14250
14251 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
14252 groups (Bug#8776).
14253 (rx-submatch-n): New function.
14254 (rx): Document it.
14255
14256 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
14257 (Bug#8768).
14258
14259 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
14260
14261 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
14262
14263 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
14264 anytime existing face settings are present (Bug#8889).
14265
14266 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
14267 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
14268 Remove unused argument.
14269
14270 2011-06-18 Martin Rudalics <rudalics@gmx.at>
14271
14272 * window.el (display-buffer-default-specifiers):
14273 Remove pop-up-frame. Add pop-up-window-min-height,
14274 pop-up-window-min-width, and another reuse-window specifier
14275 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
14276 (display-buffer-normalize-specifiers-2):
14277 Handle split-height-threshold and split-width-threshold also when
14278 pop-up-windows is unset. Add a reuse-window specifier for the
14279 case popping up a new window fails.
14280 (special-display-popup-frame): Remove double quoting.
14281 (display-buffer-normalize-specifiers-1): Fix thinko.
14282
14283 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
14284
14285 * shell.el (shell-completion-vars): Set pcomplete-termination-string
14286 according to comint-completion-addsuffix.
14287
14288 * pcomplete.el: Convert to lexical binding and fix bug#8819.
14289 (pcomplete-suffix-list): Mark as obsolete.
14290 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
14291 pcomplete-seen in the closure.
14292 (pcomplete-comint-setup): Setup completion-at-point as well.
14293 (pcomplete--entries): New function.
14294 (pcomplete--env-regexp): New var.
14295 (pcomplete-entries): Rewrite to work with partial-completion and
14296 without relying on pcomplete-suffix-list.
14297 (pcomplete-pare-list): Remove, unused.
14298
14299 2011-06-17 Martin Rudalics <rudalics@gmx.at>
14300
14301 * window.el (display-buffer-alist): Set pop-up-window-min-height
14302 and pop-up-window-min-width in default value. Reported by
14303 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
14304 other-window-means-other-frame.
14305 (display-buffer-macro-specifiers): Comment out entry for
14306 other-window specifier.
14307 (display-buffer-other-window-means-other-frame): New function.
14308 (display-buffer-normalize-specifiers-1): New arguments
14309 buffer-name and label. Treat other-window case specially.
14310 (display-buffer-normalize-specifiers-2): Treat other-window case
14311 specially.
14312 (display-buffer-normalize-specifiers-3): New function.
14313 (display-buffer-normalize-specifiers):
14314 Call display-buffer-normalize-specifiers-3.
14315
14316 2011-06-17 Martin Rudalics <rudalics@gmx.at>
14317
14318 * window.el (same-window-p): Fix two typos introduced when
14319 adding with-no-warnings.
14320 (display-buffer-normalize-specifiers-1): Don't check
14321 pop-up-frames for 'unset initialization.
14322 (display-buffer-normalize-specifiers-2): Major rewrite using
14323 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
14324 (pop-up-frames, display-buffer-reuse-frames)
14325 (display-buffer-mark-dedicated): Don't initialize to 'unset.
14326 Suggested by David Engster <deng@randomsample.de>.
14327 (even-window-heights): Initialize to 'unset.
14328 (display-buffer-alist-set): Handle new 'unset initializations.
14329 (display-buffer-macro-specifiers): Don't pop up a new frame in the
14330 other window case.
14331
14332 2011-06-16 Martin Rudalics <rudalics@gmx.at>
14333
14334 * window.el (display-buffer-normalize-specifiers-1):
14335 Respect current value of pop-up-frames for most reasonable values of
14336 second argument of display-buffer (Bug#8865).
14337 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
14338 (switch-to-buffer-other-window-same-frame)
14339 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
14340 Adams (Bug#8875).
14341 (display-buffer): Don't check noninteractive when calling
14342 display-buffer-pop-up-frame.
14343 (display-buffer-pop-up-frame): Never pop up a frame in
14344 noninteractive mode (Bug#8857).
14345 (enlarge-window, shrink-window): Don't report an error when the
14346 window can't be resized as requested (Bug#8862).
14347
14348 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14349
14350 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
14351
14352 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
14353
14354 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
14355
14356 2011-06-15 Alan Mackenzie <acm@muc.de>
14357
14358 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
14359 for declarators, disable knr checking to speed up for normal files.
14360 2: Refactor, replacing a sequence of nested if forms by a cond form.
14361
14362 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
14363
14364 * net/network-stream.el (open-network-stream): Add the keyword
14365 :always-query-capabilities for the case where you want to force a
14366 `plain' network connection, but the protocol still requires the
14367 capabilitiy command (i.e., SMTP and EHLO).
14368
14369 * subr.el (process-live-p): Rename from `process-alive-p' for
14370 consistency with other `-live-p' functions.
14371
14372 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14373
14374 * window.el (same-window-buffer-names, same-window-regexps)
14375 (special-display-frame-alist, special-display-popup-frame)
14376 (special-display-function, special-display-buffer-names)
14377 (special-display-regexps, pop-up-frame-alist)
14378 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
14379 (pop-up-windows, split-window-preferred-function)
14380 (split-height-threshold, split-width-threshold, even-window-heights)
14381 (display-buffer-mark-dedicated): Don't encourage the use of
14382 display-buffer-alist from Elisp code.
14383
14384 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
14385
14386 * progmodes/python.el (python-mode): Derive from prog-mode.
14387 * progmodes/ps-mode.el (ps-mode):
14388 * progmodes/mixal-mode.el (mixal-mode):
14389 * progmodes/cfengine.el (cfengine-mode):
14390 * progmodes/ld-script.el (ld-script-mode): Likewise.
14391
14392 2011-06-15 Martin Rudalics <rudalics@gmx.at>
14393
14394 * window.el (display-buffer-alist): Trim default value to avoid
14395 popping up a new frame (Bug#8857) or reusing an arbitrary window
14396 on another frame.
14397 (display-buffer): Do not fall back on popping up a new frame in
14398 batch mode (Bug#8857).
14399
14400 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
14401
14402 * cus-theme.el (describe-theme-1): Use custom-theme-p.
14403 (custom-theme-summary): New function.
14404 (customize-themes): Use it.
14405
14406 2011-06-13 Glenn Morris <rgm@gnu.org>
14407
14408 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
14409
14410 2011-06-13 Martin Rudalics <rudalics@gmx.at>
14411
14412 * help.el (help-window): Remove variable.
14413 (help-window-point-marker, temp-buffer-max-height)
14414 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
14415 (help-print-return-message): Don't set help-window.
14416 (resize-temp-buffer-window): Rewrite cod eand doc-string.
14417 (help-window-setup-finish): Remove.
14418 (help-window-display-message, help-window-setup)
14419 (with-help-window): Major rewrite based on new
14420 display-buffer-window variable.
14421
14422 * help-mode.el (help-mode-finish): Remove help-window related
14423 code.
14424
14425 * view.el (view-exits-all-viewing-windows): Remove reference to
14426 view-return-to-alist in doc-string.
14427 (view-return-to-alist): Make obsolete.
14428 (view-buffer): Call pop-to-buffer-same-window and remove
14429 undo-window code.
14430 (view-buffer-other-window): Call pop-to-buffer-other-window and
14431 simplify code. Ignore second argument.
14432 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
14433 simplify code. Ignore second argument.
14434 (view-return-to-alist-update): Make obsolete.
14435 (view-mode-enter): Rename second argument to QUIT-RESTORE.
14436 Rewrite using quit-restore window parameters.
14437 (view-mode-exit): Rename second argument to EXIT-ONLY.
14438 Rewrite using quit-restore-window.
14439 (View-exit, View-exit-and-edit, View-leave, View-quit)
14440 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
14441 appropriate arguments.
14442 (view-end-message): Use quit-restore window parameter.
14443
14444 * window.el (display-buffer-function): Rewrite doc-string.
14445 (display-buffer-window, display-buffer-alist): New variables.
14446 (display-buffer-split-specifiers)
14447 (display-buffer-side-specifiers)
14448 (display-buffer-macro-specifiers): New constants.
14449 (display-buffer-even-window-sizes, display-buffer-set-height)
14450 (display-buffer-set-width, display-buffer-select-window)
14451 (display-buffer-in-window, display-buffer-reuse-window)
14452 (display-buffer-split-window-1, display-buffer-split-window)
14453 (display-buffer-split-atom-window, display-buffer-pop-up-window)
14454 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
14455 (display-buffer-in-side-window, normalize-buffer-to-display)
14456 (display-buffer-normalize-specifiers-1)
14457 (display-buffer-normalize-specifiers-2)
14458 (display-buffer-normalize-specifiers, display-buffer-frame):
14459 New functions.
14460 (display-buffer): Major rewrite.
14461 (display-buffer-other-window, display-buffer-other-frame)
14462 (pop-to-buffer, switch-to-buffer-other-window)
14463 (switch-to-buffer-other-frame): Rewrite.
14464 (display-buffer-same-window, display-buffer-same-frame)
14465 (display-buffer-same-frame-other-window)
14466 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
14467 (pop-to-buffer-other-window)
14468 (pop-to-buffer-same-frame-other-window)
14469 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
14470 (switch-to-buffer-other-window-same-frame): New functions.
14471 (same-window-p, special-display-p): Rewrite disabling warnings.
14472 Make obsolete.
14473 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
14474 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
14475 Make obsolete
14476 (same-window-buffer-names, same-window-regexps)
14477 (special-display-frame-alist, special-display-popup-frame)
14478 (special-display-function, special-display-buffer-names)
14479 (special-display-regexps, pop-up-frame-alist)
14480 (pop-up-frame-function, split-window-preferred-function)
14481 (split-height-threshold, split-width-threshold)
14482 (even-window-heights): Make obsolete.
14483
14484 2011-06-12 Glenn Morris <rgm@gnu.org>
14485
14486 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
14487 Misc simplifications.
14488
14489 2011-06-12 Martin Rudalics <rudalics@gmx.at>
14490
14491 * window.el (window-safely-shrinkable-p): Restore function which
14492 was inadvertently removed in change from 2011-06-11. Declare as
14493 obsolete.
14494
14495 * calendar/calendar.el (calendar-generate-window):
14496 Use window-iso-combined-p instead of combination of one-window-p and
14497 window-safely-shrinkable-p.
14498
14499 2011-06-12 Glenn Morris <rgm@gnu.org>
14500
14501 * progmodes/fortran.el (fortran-mode-syntax-table):
14502 * progmodes/f90.el (f90-mode-syntax-table):
14503 Set % to punctuation. (Bug#8820)
14504 (f90-find-tag-default): Remove, no longer needed.
14505
14506 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
14507
14508 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
14509
14510 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
14511
14512 * image.el (image-animated-p): Return animation delay in seconds.
14513 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
14514 (image-animate-timeout): Remove DELAY argument. Don't assume
14515 every subimage has the same delay; get it from image-animated-p.
14516 (image-animate): Caller changed.
14517
14518 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
14519
14520 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
14521 to ignored backtrace functions.
14522
14523 2011-06-11 Glenn Morris <rgm@gnu.org>
14524
14525 * calendar/appt.el (appt-disp-window-function): Doc fix.
14526 (appt-check): Handle overlapping appointments. (Bug#8337)
14527
14528 2011-06-11 Martin Rudalics <rudalics@gmx.at>
14529
14530 * window.el (window-tree-1, window-tree): New functions, moving
14531 the latter to window.el.
14532 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
14533 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
14534 (bw-refresh-edges): Remove.
14535 (balance-windows-1, balance-windows-2): New functions.
14536 (balance-windows): Rewrite in terms of window tree functions,
14537 balance-windows-1 and balance-windows-2.
14538 (bw-adjust-window): Remove.
14539 (balance-windows-area-adjust): New function with functionality of
14540 bw-adjust-window but using resize-window.
14541 (set-window-text-height): Rewrite doc-string.
14542 Use normalize-live-window and resize-window.
14543 (enlarge-window-horizontally, shrink-window-horizontally):
14544 Rename argument to DELTA.
14545 (window-buffer-height): New function.
14546 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
14547 Rewrite using new window resize routines.
14548 (kill-buffer-and-window, mouse-autoselect-window-select):
14549 Use ignore-errors instead of condition-case.
14550 (quit-window): Call delete-frame instead of delete-windows-on
14551 for the only buffer on frame.
14552
14553 2011-06-10 Martin Rudalics <rudalics@gmx.at>
14554
14555 * loadup.el (top-level): Load window before files for the sake
14556 of replace-buffer-in-windows.
14557
14558 * files.el (read-buffer-to-switch)
14559 (switch-to-buffer-other-window)
14560 (switch-to-buffer-other-frame, display-buffer-other-frame):
14561 Move to window.el.
14562
14563 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
14564 (previous-buffer): Move to window.el.
14565
14566 * bindings.el (unbury-buffer): Move to window.el.
14567
14568 * window.el (delete-other-windows-vertically): Move after
14569 definition of delete-other-windows.
14570 (other-window, delete-windows-on, replace-buffer-in-windows):
14571 Move here from window.c.
14572 (record-window-buffer, unrecord-window-buffer)
14573 (set-window-buffer-start-and-point, switch-to-prev-buffer)
14574 (switch-to-next-buffer): New functions.
14575 (get-next-valid-buffer, last-buffer, next-buffer): Move here
14576 from simple.el. Call switch-to-next-buffer.
14577 (previous-buffer): Move here from simple.el.
14578 Call switch-to-prev-buffer.
14579 (bury-buffer): Move here from buffer.c. Switch to previous
14580 buffer when window cannot be deleted.
14581 (unbury-buffer): Move here from bindings.el.
14582 (ctl-x-map): Move binding for other-window from window.c to
14583 here.
14584 (read-buffer-to-switch, switch-to-buffer-other-window)
14585 (switch-to-buffer-other-frame): Move here from files.el.
14586 (normalize-buffer-to-switch-to): New functions.
14587 (switch-to-buffer): Move here from buffer.c.
14588 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
14589
14590 2011-06-10 Martin Rudalics <rudalics@gmx.at>
14591
14592 * window.el (window-min-height, window-min-width): Move here
14593 from window.c. Add defcustoms and rewrite doc-strings.
14594 (resize-mini-window, resize-window): New functions.
14595 (adjust-window-trailing-edge, enlarge-window, shrink-window):
14596 Move here from window.c.
14597 (maximize-window, minimize-window): New functions.
14598 (delete-window, delete-other-windows, split-window): Move here
14599 from window.c.
14600 (window-split-min-size): New function.
14601 (split-window-keep-point): Mention split-window-above-each-other
14602 instead of split-window-vertically.
14603 (split-window-above-each-other, split-window-vertically):
14604 Rename split-window-vertically to split-window-above-each-other
14605 and provide defalias for old definition.
14606 (split-window-side-by-side, split-window-horizontally):
14607 Rename split-window-horizontally to split-window-side-by-side
14608 and provide defalias for the old definition.
14609 (ctl-x-map): Move bindings for delete-window,
14610 delete-other-windows and enlarge-window here from window.c.
14611 Replace bindings for split-window-vertically and
14612 split-window-horizontally by bindings for
14613 split-window-above-each-other and split-window-side-by-side.
14614
14615 * cus-start.el (all): Remove entries for window-min-height and
14616 window-min-width. Add entries for window-splits and
14617 window-nest.
14618
14619 2011-06-09 Glenn Morris <rgm@gnu.org>
14620
14621 * calendar/appt.el (appt-mode-line): New function.
14622 (appt-check, appt-disp-window): Use it.
14623
14624 * files.el (hack-one-local-variable-eval-safep):
14625 Allow minor-modes with explicit +/-1 arguments.
14626
14627 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
14628
14629 * term/xterm.el (xterm): Add defgroup.
14630 (xterm-extra-capabilities): Add defcustom to supply known xterm
14631 capabilities, skip querying them, or query them (default).
14632 (terminal-init-xterm): Use it.
14633 (terminal-init-xterm-modify-other-keys): New function to set up
14634 modifyOtherKeys support to simplify `terminal-init-xterm'.
14635
14636 2011-06-09 Martin Rudalics <rudalics@gmx.at>
14637
14638 * window.el (resize-window-reset, resize-window-reset-1)
14639 (resize-subwindows-skip-p, resize-subwindows-normal)
14640 (resize-subwindows, resize-other-windows, resize-this-window)
14641 (resize-root-window, resize-root-window-vertically)
14642 (window-deletable-p, window-or-subwindow-p)
14643 (frame-root-window-p): New functions.
14644
14645 2011-06-09 Glenn Morris <rgm@gnu.org>
14646
14647 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
14648 (ange-ftp-get-files): Use it.
14649
14650 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
14651
14652 * mail/sendmail.el (mail-recover-1, mail-recover):
14653 * files.el (recover-file, recover-session):
14654 Handle dired-listing-switches not being just a single short option.
14655
14656 2011-06-09 Glenn Morris <rgm@gnu.org>
14657
14658 * calendar/appt.el (appt-display-message, appt-disp-window):
14659 Handle lists of appointments.
14660
14661 2011-06-08 Martin Rudalics <rudalics@gmx.at>
14662
14663 * window.el (one-window-p): Move down in code.
14664 Rewrite doc-string.
14665 (window-current-scroll-bars): Rewrite doc-string.
14666 Normalize live window argument.
14667 (walk-windows, get-window-with-predicate, count-windows):
14668 Rewrite doc-string. Use window-list-1.
14669 (window-in-direction-2, window-in-direction, get-mru-window):
14670 New functions.
14671
14672 2011-06-08 Reuben Thomas <rrt@sc3d.org>
14673
14674 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
14675 Doc fix (Bug#8713).
14676
14677 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
14678
14679 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
14680
14681 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
14682
14683 * loadhist.el (unload-feature-special-hooks):
14684 Add `comint-output-filter-functions'.
14685
14686 2011-06-08 Ivan Kanis <gnu@kanis.fr>
14687
14688 * calendar/appt.el (appt-check): Move some initializations into the let.
14689
14690 2011-06-08 Martin Rudalics <rudalics@gmx.at>
14691
14692 * window.el (window-height): Defalias to window-total-height.
14693 (window-width): Defalias to window-body-width.
14694
14695 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
14696
14697 * image-mode.el (image-toggle-animation): New command.
14698 (image-mode-map): Bind it to RET.
14699 (image-mode): Update message.
14700 (image-toggle-display-image): Avoid a spurious cache flush.
14701 (image-transform-rotation): Doc fix.
14702 (image-transform-properties): Return quickly in the normal case.
14703 (image-animate-loop): Rename from image-animate-max-time.
14704
14705 * image.el (image-animate-max-time): Move to image-mode.el.
14706 (create-animated-image): Remove unnecessary function.
14707 (image-animate): Rename from image-animate-start. New arg.
14708 (image-animate-stop): Remove; just use image-animate-timer.
14709 (image-animate-timer): Use car-safe.
14710 (image-animate-timeout): Rename argument.
14711
14712 2011-06-07 Martin Rudalics <rudalics@gmx.at>
14713
14714 * window.el (get-lru-window, get-largest-window): Move here from
14715 window.c. Rename first argument to ALL-FRAMES.
14716 Rephrase doc-strings.
14717 (get-buffer-window-list): Rewrite using window-list-1.
14718 Rephrase doc-string.
14719 (window-safe-min-height, window-safe-min-width): New constants.
14720 (window-size-ignore, window-min-size, window-min-size-1)
14721 (window-sizable, window-sizable-p, window-size-fixed-1)
14722 (window-size-fixed-p, window-min-delta-1, window-min-delta)
14723 (window-max-delta-1, window-max-delta, window-resizable)
14724 (window-resizable-p, window-total-height, window-total-width)
14725 (window-body-width): New functions.
14726 (window-full-height-p, window-full-width-p): Rewrite using
14727 window-total-size.
14728 (window-body-height): Rewrite using window-body-size.
14729
14730 2011-06-06 Martin Rudalics <rudalics@gmx.at>
14731
14732 * window.el (window-right, window-left, window-child)
14733 (window-child-count, window-last-child, window-any-p)
14734 (normalize-live-buffer, normalize-live-frame)
14735 (normalize-any-window, normalize-live-window)
14736 (window-iso-combination-p, window-iso-combined-p)
14737 (window-iso-combinations)
14738 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
14739 (windows-with-parameter, window-with-parameter)
14740 (window-atom-root, make-window-atom, window-atom-check-1)
14741 (window-atom-check, window-side-check, window-check):
14742 New functions.
14743 (ignore-window-parameters, window-sides, window-sides-vertical)
14744 (window-sides-slots): New variables.
14745 (window-size-fixed): Move down in code. Minor doc-string fix.
14746
14747 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
14748
14749 * comint.el (comint-dynamic-complete-as-filename)
14750 (comint-dynamic-complete-filename): Correctly call
14751 completion-in-region.
14752
14753 2011-06-05 Deniz Dogan <deniz@dogan.se>
14754
14755 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
14756 in last change.
14757
14758 2011-06-05 Deniz Dogan <deniz@dogan.se>
14759
14760 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
14761 (rcirc): Use it to prompt for encryption.
14762
14763 2011-06-05 Roland Winkler <winkler@gnu.org>
14764
14765 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
14766 (bibtex-search-entries): New command bound to C-c C-a.
14767 (bibtex-display-entries): New function.
14768
14769 2011-06-05 Roland Winkler <winkler@gnu.org>
14770
14771 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
14772 (bibtex-insert-kill): After yanking insert newline if necessary.
14773 (bibtex-initialize): Call bibtex-string-files-init only once.
14774 (bibtex-mode): Do not call easy-menu-add.
14775 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
14776 (bibtex-yank): Set arg properly if nil.
14777
14778 2011-06-05 Roland Winkler <winkler@gnu.org>
14779
14780 * textmodes/bibtex.el (bibtex-search-entry-globally):
14781 New variable.
14782 (bibtex-search-entry): Use it.
14783
14784 2011-06-05 Roland Winkler <winkler@gnu.org>
14785
14786 * textmodes/bibtex.el (bibtex-entry-format): New option
14787 sort-fields.
14788 (bibtex-format-entry, bibtex-reformat): Honor this option.
14789 (bibtex-parse-entry): Return fields in proper order.
14790
14791 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
14792
14793 * doc-view.el (doc-view-remove-if): Move computation of result out
14794 of `dolist' to silence misleading lexical-binding warning.
14795
14796 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
14797
14798 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
14799 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
14800
14801 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
14802
14803 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
14804 "SunOS 5.10".
14805
14806 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
14807
14808 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
14809 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
14810 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
14811 (tramp-parse-putty):
14812 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
14813 (tramp-completion-function-alist-ssh)
14814 (tramp-completion-function-alist-telnet)
14815 (tramp-completion-function-alist-su)
14816 (tramp-completion-function-alist-putty): Set `tramp-autoload'
14817 cookie.
14818
14819 * net/tramp-ftp.el:
14820 * net/tramp-sh.el:
14821 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
14822 load "tramp.el" `tramp-set-completion-function'.
14823
14824 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
14825
14826 * shell.el: Require and use pcomplete.
14827 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
14828 (shell-completion-vars): Set pcomplete-default-completion-function.
14829
14830 2011-06-04 Deniz Dogan <deniz@dogan.se>
14831
14832 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
14833 `memq' (Bug#8799).
14834
14835 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14836
14837 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
14838
14839 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
14840
14841 * bs.el (bs--mark-unmark, bs--nth-wrapper):
14842 * mpc.el (mpc-select-extend, mpc-songpointer-context):
14843 * vc/log-view.el (log-view-beginning-of-defun):
14844 * vc/smerge-mode.el (smerge-apply-resolution-patch)
14845 (smerge-refine-forward, smerge-refine-chopup-region):
14846 Silence warning for unused `dotimes' counter variables.
14847
14848 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14849
14850 * net/tramp.el (tramp-with-progress-reporter): Rename from
14851 with-progress-reporter. Use `declare'.
14852 * net/tramp-smb.el:
14853 * net/tramp-sh.el:
14854 * net/tramp-gvfs.el: Update all uses.
14855
14856 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
14857
14858 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
14859 buffer isn't killed before making it current.
14860
14861 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14862
14863 Silence various byte-compiler warnings.
14864 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
14865 `access-type' and new obsolescence format.
14866 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
14867 new format.
14868 (byte-compile-check-variable): New `access-type' argument.
14869 Only warn if the access-type is obsolete.
14870 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
14871 (byte-compile-variable-set): Adjust callers.
14872 * help-fns.el (describe-variable): Adjust to new obsolescence format.
14873 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
14874 setting it as obsolete.
14875 * simple.el (minibuffer-completing-symbol):
14876 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
14877 access as obsolete.
14878 * minibuffer.el (minibuffer-completing-file-name): Don't make it
14879 obsolete yet.
14880 * international/quail.el (quail-mouse-choose-completion): Remove unused
14881 code referring to obsolete var.
14882 (quail-choose-completion-string): Remove.
14883 * server.el (server-clients-with, server-kill-buffer-query-function)
14884 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
14885 * proced.el (proced-send-signal):
14886 * emacs-lisp/lisp.el (lisp-complete-symbol):
14887 Replace completion-annotate-function with completion-extra-properties.
14888
14889 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14890
14891 * simple.el (goto-line): Use read-number.
14892 (overriding-map-is-bound): Remove.
14893 (saved-overriding-map): Change default.
14894 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
14895 Take the map as argument.
14896 (universal-argument, negative-argument, digit-argument): Use it.
14897 (restore-overriding-map): Adjust.
14898 (do-auto-fill): Use fill-forward-paragraph.
14899 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
14900
14901 * minibuffer.el (minibuffer-inactive-mode-map): New var.
14902 (minibuffer-inactive-mode): New major mode.
14903 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
14904 the *Messages* buffer" hack.
14905 (mouse-popup-menubar): Don't burp if the event is a normal key.
14906
14907 Miscellaneous tweaks.
14908 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
14909 lexical scoping as in subr.el's dolist and dotimes.
14910 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
14911 Silence compiler warning.
14912 * thingatpt.el (forward-whitespace): Trivial coding style fix.
14913 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
14914 * international/ccl.el (ccl-compile): Trivial simplification.
14915 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
14916 * emacs-lisp/testcover.el (testcover-end): Remove spurious
14917 `printflag' argument.
14918 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
14919 Purecopy the whole obsolescence data.
14920
14921 2011-06-01 Leo Liu <sdl.web@gmail.com>
14922
14923 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
14924 improve doc-string as suggested by Marco Pessotto
14925 <melmothx@gmail.com>.
14926 (rcirc-print): Fix last change.
14927
14928 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14929
14930 * minibuffer.el (complete-with-action): Return nil for the metadata and
14931 boundaries of non-functional tables.
14932 (completion-table-dynamic): Return nil for the metadata.
14933 (completion-table-with-terminator): Add default case, using
14934 complete-with-action.
14935 (completion--metadata): New function.
14936 (completion-all-sorted-completions, minibuffer-completion-help): Use it
14937 to try and avoid pathological performance problems.
14938 (completion--embedded-envvar-table): Return `category' metadata.
14939
14940 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
14941
14942 * subr.el (process-alive-p): New tiny convenience function.
14943
14944 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14945
14946 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
14947 content but also its previous major mode.
14948
14949 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
14950
14951 * emacs-lisp/debug.el (debug): Restore the previous content of the
14952 *Backtrace* buffer when we exit with C-M-c.
14953
14954 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14955
14956 * minibuffer.el: Add metadata method to completion tables.
14957 (completion-category-overrides): New defcustom.
14958 (completion-metadata, completion--field-metadata)
14959 (completion-metadata-get, completion--styles)
14960 (completion--cycle-threshold): New functions.
14961 (completion-try-completion, completion-all-completions):
14962 Add `metadata' argument to choose completion-styles.
14963 (completion--do-completion): Use metadata to choose cycling.
14964 (completion-all-sorted-completions): Use metadata for sorting.
14965 Remove :completion-cycle-penalty which is not needed any more.
14966 (completion--try-word-completion): Add `metadata' argument.
14967 (minibuffer-completion-help): Check metadata for annotation function
14968 and sorting.
14969 (completion-file-name-table): Return `category' metadata.
14970 (minibuffer-completing-file-name): Make obsolete.
14971 * simple.el (minibuffer-completing-symbol): Make obsolete.
14972 * icomplete.el (icomplete-completions): Pass new `metadata' param to
14973 completion-try-completion.
14974
14975 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14976
14977 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
14978
14979 2011-05-30 Leo Liu <sdl.web@gmail.com>
14980
14981 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
14982 (rcirc-print): Decode all incoming messages (bug#8744).
14983 (rcirc-decode-coding-system): Allow value nil for automatic coding
14984 system detection.
14985
14986 2011-06-01 Glenn Morris <rgm@gnu.org>
14987
14988 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
14989
14990 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
14991
14992 * image.el (image-animate-max-time): Allow nil and t values.
14993 Default to nil.
14994 (create-animated-image): Doc fix.
14995 (image-animate-start): Remove second arg; just use
14996 image-animate-max-time.
14997 (image-animate-timeout): Doc fix. Args changed.
14998
14999 * image-mode.el (image-toggle-display-image): Ensure that the
15000 image spec passed to the animate timer is the same object as in
15001 the buffer's display property (Bug#6981).
15002 (image-transform-properties): Doc fix.
15003
15004 * image.el (image-animate-max-time): Default to nil.
15005
15006 2011-05-29 Martin Rudalics <rudalics@gmx.at>
15007
15008 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
15009 entire buffer list (Bug#8184).
15010
15011 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15012
15013 * image.el (imagemagick-types-inhibit)
15014 (imagemagick-register-types): Doc fix.
15015
15016 2011-05-29 Deniz Dogan <deniz@dogan.se>
15017
15018 * net/rcirc.el (rcirc): Use the user's stored encryption method by
15019 default.
15020
15021 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15022
15023 * select.el: Don't perform clipboard-manager saving in hooks;
15024 leave the hooks empty.
15025
15026 2011-05-28 Leo Liu <sdl.web@gmail.com>
15027
15028 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
15029 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
15030 (occur-edit-mode): New major mode (Bug#8463).
15031 (occur-after-change-function): New function.
15032 (occur-engine): Give Occur tags a read-only property.
15033
15034 2011-05-28 Kevin Ryde <user42@zip.com.au>
15035
15036 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
15037
15038 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15039
15040 * bindings.el (help-echo): Make the initial non-indicator dash
15041 empty on graphical terminals (Bug#7295).
15042
15043 * files.el (auto-mode-alist): Move config rule after the
15044 in-stripping one (Bug#8547).
15045
15046 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
15047
15048 * startup.el (normal-splash-screen): Remove gratuitous mode-line
15049 setting (Bug#8740).
15050
15051 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
15052
15053 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
15054 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
15055 (Bug#8539).
15056
15057 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15058
15059 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
15060
15061 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
15062
15063 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
15064 (hs-hide-block-at-point, hs-find-block-beginning)
15065 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
15066 (Bug#8279).
15067
15068 2011-05-28 Glenn Morris <rgm@gnu.org>
15069
15070 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
15071
15072 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15073
15074 * help-fns.el (describe-function-1): If the function is a derived
15075 major mode, print the parent mode.
15076
15077 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
15078 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
15079
15080 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
15081
15082 * minibuffer.el (completion--capf-wrapper): Check applicability before
15083 returning non-nil for non-exclusive completion data.
15084 * progmodes/etags.el (tags-completion-at-point-function):
15085 * info-look.el (info-lookup-completions-at-point): Mark as
15086 non-exclusive.
15087 (info-complete): Adjust accordingly.
15088
15089 * info-look.el: Convert to lexical-binding and completion-at-point.
15090 (info-lookup-completions-at-point): New function.
15091 (info-complete): Use it and completion-in-region.
15092
15093 2011-05-28 Drew Adams <drew.adams@oracle.com>
15094
15095 * isearch.el: Let M-e start with point at the first mismatched char.
15096 (isearch-fail-pos): New function.
15097 (isearch-edit-string): Use it.
15098
15099 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
15100
15101 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
15102
15103 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
15104
15105 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
15106 traversal functions for avl-trees.
15107 (avl-tree--stack): New struct.
15108 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
15109 (avl-tree-enter): Add optional `updatefun' arg.
15110 (avl-tree--do-enter): Add optional `updatefun' arg.
15111 Change return value.
15112 (avl-tree-delete): Add optional `test' and `nilflag' args.
15113 (avl-tree--do-delete): Add `test' and `nilflag' args.
15114 Change return value.
15115 (avl-tree-member): Add optional `nilflag'
15116 (avl-tree-member-p): New function.
15117 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
15118 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
15119 (avl-tree-stack-empty-p): New functions.
15120
15121 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
15122 avl-tree--del-balance1 and make it work both ways.
15123 (avl-tree--del-balance2): Remove.
15124 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
15125 make it work both ways.
15126 (avl-tree--enter-balance2): Remove.
15127 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
15128 New macros.
15129 (avl-tree--mapc, avl-tree-map): Add direction argument.
15130
15131 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
15132
15133 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
15134
15135 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
15136
15137 * select.el: Support clipboard managers with built-in function
15138 x-clipboard-manager-save, via delete-frame-functions and
15139 kill-emacs-hook.
15140 (xselect-convert-to-targets): Add MULTIPLE target to list.
15141 (xselect-convert-to-save-targets): New function.
15142
15143 2011-05-27 Kenichi Handa <handa@m17n.org>
15144
15145 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
15146 let-binding rfc2047-encode-encoded-words to nil.
15147
15148 2011-05-27 Glenn Morris <rgm@gnu.org>
15149
15150 * mail/emacsbug.el: Don't require url-util.
15151
15152 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
15153
15154 * files.el (set-auto-mode):
15155 Also respect mode: entries at the end of the file. (Bug#8586)
15156
15157 2011-05-26 Glenn Morris <rgm@gnu.org>
15158
15159 * files.el (hack-local-variables-prop-line, hack-local-variables):
15160 Downcase mode names, as seems to be traditional.
15161 (hack-local-variables, hack-local-variables-apply): Doc fixes.
15162
15163 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
15164 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
15165
15166 2011-05-25 Julien Danjou <julien@danjou.info>
15167
15168 * textmodes/rst.el (rst-define-level-faces): Do not define face
15169 symbol if it is already defined.
15170
15171 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
15172
15173 * play/5x5.el (5x5-new-game, 5x5-randomize):
15174 Reset 5x5-solver-output to nil when a new grid is cast.
15175 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
15176 these debugging traces, as defmacro breaks the compiled code.
15177
15178 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
15179
15180 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
15181
15182 2011-05-24 Leo Liu <sdl.web@gmail.com>
15183
15184 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
15185 (vc-bzr-sha1): Adapt.
15186
15187 * sha1.el: Remove. Function `sha1' is now builtin.
15188
15189 * bindings.el: Provide sha1 feature.
15190
15191 2011-05-24 Kenichi Handa <handa@m17n.org>
15192
15193 * mail/sendmail.el: Require `rfc2047'.
15194 (mail-insert-from-field): Do not perform RFC2047 encoding.
15195 (mail-encode-header): New function.
15196 (sendmail-send-it): Set buffer-file-coding-system of the work
15197 buffer to the return value of select-message-coding-system.
15198 Call mail-encode-header.
15199
15200 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
15201
15202 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
15203
15204 * mail/supercite.el (sc-default-cite-frame):
15205 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
15206
15207 2011-05-24 Glenn Morris <rgm@gnu.org>
15208
15209 * progmodes/python.el (brm-menu): Declare.
15210
15211 * emulation/viper.el (viper-set-hooks): Declare.
15212
15213 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
15214 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
15215 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
15216 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
15217 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
15218 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
15219
15220 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
15221
15222 Add an :exit-function for completion-at-point.
15223
15224 * minibuffer.el (completion--done): New fun.
15225 (completion--do-completion): Use it. New arg `expect-exact'.
15226 (minibuffer-complete, minibuffer-complete-word): Don't output message,
15227 since completion--do-completion does it for us now.
15228 (minibuffer-force-complete): Use completion--done and
15229 completion--replace. Handle sole-completion case with more care.
15230 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
15231 (completion-extra-properties): New var.
15232 (completion-annotate-function): Make obsolete.
15233 (minibuffer-completion-help): Adjust accordingly.
15234 Use completion-list-insert-choice-function.
15235 (completion-at-point, completion-help-at-point):
15236 Bind completion-extra-properties.
15237 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
15238 * simple.el (completion-list-insert-choice-function): New var.
15239 (completion-setup-function): Preserve it.
15240 (choose-completion): Pay attention to it, shuffle the code a bit.
15241 (choose-completion-string): New arg `insert-function'.
15242
15243 * textmodes/bibtex.el: Convert to lexical binding.
15244 (bibtex-mode-map): Use completion-at-point.
15245 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
15246 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
15247 (bibtex-complete): Define as obsolete alias.
15248 (bibtex-complete-internal): Remove.
15249 (bibtex-format-entry): Remove unused sub-group in regexp.
15250 * shell.el (shell--command-completion-data)
15251 (shell-environment-variable-completion):
15252 * pcomplete.el (pcomplete-completions-at-point):
15253 * comint.el (comint--complete-file-name-data): Use :exit-function
15254 instead of completion-table-with-terminator so it also works for
15255 choose-completion.
15256
15257 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
15258
15259 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
15260
15261 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
15262 (bug#8710).
15263
15264 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
15265
15266 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
15267
15268 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
15269 customization variable and implement: If non-nil, auto-fill will
15270 be inhibited while on topic's header line.
15271
15272 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
15273
15274 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
15275 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
15276 always have a solution in grid size = 5 cases.
15277 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
15278 (5x5-solver-output, 5x5-log-buffer): New vars.
15279 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
15280 Make these variables buffer local to achieve 5x5 multi-session-ness.
15281 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
15282 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
15283 (5x5-solve-suggest): New funs.
15284 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
15285 randomize a grid so that we ensure that there is always a solution.
15286 (5x5-make-random-grid): Allow other movement than flipping.
15287
15288 2011-05-23 Kevin Ryde <user42@zip.com.au>
15289
15290 * emacs-lisp/advice.el (ad-read-advised-function):
15291 Use `function-called-at-point' as the default, if it has
15292 advice and passes PREDICATE.
15293
15294 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
15295
15296 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
15297 byte-compile-lambda if it's actually a lambda.
15298
15299 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
15300 Fix function quoting. Use backquote better.
15301
15302 2011-05-22 Yuanle Song <sylecn@gmail.com>
15303
15304 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
15305 matching (Bug#8516).
15306
15307 2011-01-22 Jari Aalto <jari.aalto@cante.net>
15308
15309 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
15310 different face (Bug#8178).
15311
15312 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
15313
15314 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
15315 defface (Bug#8144).
15316
15317 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
15318
15319 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
15320 funcall as well (bug#8712). Warn when performing those conversions.
15321 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
15322
15323 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
15324
15325 2011-05-22 Glenn Morris <rgm@gnu.org>
15326
15327 * files.el (hack-local-variables-prop-line): Small simplifications.
15328 (hack-local-variables, hack-local-variables-prop-line):
15329 If MODE-ONLY, return the mode, rather than just `t'.
15330
15331 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
15332
15333 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
15334
15335 2011-05-21 Glenn Morris <rgm@gnu.org>
15336
15337 * files.el (hack-local-variables-prop-line, hack-local-variables):
15338 If only interested in the mode, don't bother doing the other stuff.
15339
15340 * image-mode.el (image-after-revert-hook):
15341 Redraw all frames on which the image is visible. (Bug#8567)
15342
15343 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
15344
15345 * wid-edit.el (widget-checklist-match-inline):
15346 Fix 2011-04-19 change. (Bug#8649)
15347
15348 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
15349
15350 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
15351 Also allow singlespace after single-letter capitals followed by a dot.
15352
15353 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
15354 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
15355
15356 2011-05-20 Nix <nix@esperi.org.uk>
15357
15358 * files.el (basic-save-buffer-2):
15359 Fix handling of break-hardlink-on-save with non-existent files.
15360
15361 2011-05-19 Deniz Dogan <deniz@dogan.se>
15362
15363 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
15364 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
15365
15366 2011-05-19 Glenn Morris <rgm@gnu.org>
15367
15368 * progmodes/f90.el (f90-type-def-re):
15369 Handle "type, bind(c)". (Bug#8691)
15370
15371 * emacs-lisp/autoload.el (batch-update-autoloads):
15372 Set autoload-excludes by parsing loadup.el rather than Makefiles.
15373
15374 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
15375
15376 * net/tramp.el (tramp-process-actions): Set "first-password-request"
15377 property for the correct connection in case of multihops.
15378
15379 2011-05-18 Glenn Morris <rgm@gnu.org>
15380
15381 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
15382 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
15383
15384 Rationalize calendar handling of day and month abbrev-arrays.
15385 * calendar/calendar.el (calendar-customized-p): New function.
15386 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
15387 (calendar-day-name-array, calendar-month-name-array): Doc fix.
15388 Add :set function.
15389 (calendar-abbrev-length, calendar-day-abbrev-array)
15390 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
15391 (calendar-day-abbrev-array, calendar-month-abbrev-array):
15392 Elements may no longer be nil.
15393 (calendar-day-name, calendar-month-name):
15394 Update for changed nature of abbrev arrays.
15395 * calendar/diary-lib.el (diary-name-pattern):
15396 Update for changed nature of abbrev arrays.
15397 (diary-mark-entries-1): Update calendar-make-alist calls.
15398 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
15399 * calendar/cal-html.el (cal-html-day-abbrev-array):
15400 Simply inherit from calendar-day-abbrev-array.
15401
15402 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
15403
15404 * progmodes/grep.el (grep-mode): Disable default
15405 compilation-directory-matcher setting (bug#8684).
15406
15407 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
15408
15409 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
15410 instead of "head" and "tail". There were problems with SunOS 5.9,
15411 and it performs better.
15412
15413 2011-05-17 Glenn Morris <rgm@gnu.org>
15414
15415 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
15416
15417 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
15418 Replace obsolete function.
15419
15420 * shell.el (pcomplete-parse-arguments-function): Declare.
15421
15422 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
15423 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
15424 (appt-check): Doc fixes.
15425 (appt-disp-window-function, appt-delete-window-function):
15426 Remove needless special case in custom :type.
15427 (appt-display-count): Default to 0, not nil.
15428 (appt-check): Reset appt-display-count to 0, not nil.
15429
15430 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
15431
15432 * progmodes/python.el (python-font-lock-keywords):
15433 Add the Python 3.X keyword "nonlocal" (bug#8639).
15434
15435 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
15436
15437 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
15438
15439 2011-05-16 Kevin Ryde <user42@zip.com.au>
15440
15441 * info-look.el (makefile-automake-mode): New setups, looking in
15442 automake manual, then makefile-mode.
15443 (makefile-mode): Remove automake manual, have it just in
15444 makefile-automake-mode since there's various things different or
15445 not relevant to plain make.
15446 (makefile-mode): Remove "other-modes" non-existent automake-mode,
15447 believe a hypothetical automake-mode would go to makefile-mode,
15448 not the other way around.
15449
15450 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
15451
15452 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
15453 hunk-end tags (Bug#8672).
15454
15455 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
15456 vc-annotate-show-diff-revision-at-line (Bug#8671).
15457
15458 2011-05-14 Glenn Morris <rgm@gnu.org>
15459
15460 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
15461 in the middle of an existing one with multiple authors. (Bug#8645)
15462 (change-log-font-lock-keywords): Also handle multiple author lines
15463 with leading tabs. (Bug#8644)
15464
15465 * calendar/appt.el (appt-check): Rename some local variables.
15466 Some simplification/reordering.
15467
15468 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
15469 (feedmail-sendmail-f-doesnt-sell-me-out)
15470 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
15471 (feedmail-debug-sit-for, feedmail-queue-express-hook)
15472 (feedmail-queue-runner-message-sender): Set :version.
15473 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
15474 (bbdb-dwim-net-address, vm-mail): Declare.
15475 (feedmail-binmail-gnulinuxish-template):
15476 Rename from feedmail-binmail-linuxish-template.
15477 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
15478 Use insert-buffer-substring.
15479
15480 2011-05-14 Bill Carpenter <bill@carpenter.org>
15481
15482 * mail/feedmail.el (feedmail-patch-level): Increase.
15483 (feedmail-debug): New custom group.
15484 (feedmail-confirm-outgoing-timeout)
15485 (feedmail-sendmail-f-doesnt-sell-me-out)
15486 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
15487 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
15488 (feedmail-sender-line, feedmail-from-line)
15489 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
15490 (feedmail-spray-this-address)
15491 (feedmail-spray-address-fiddle-plex-list)
15492 (feedmail-queue-use-send-time-for-date)
15493 (feedmail-queue-use-send-time-for-message-id)
15494 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
15495 (feedmail-buffer-eating-function):
15496 Doc fixes.
15497 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
15498 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
15499 (feedmail-message-action-scroll-down): New functions.
15500 (feedmail-queue-directory, feedmail-queue-draft-directory):
15501 Use expand-file-name.
15502 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
15503 Remove C-v help entry.
15504 (feedmail-queue-buffer-file-name): New variable.
15505 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
15506 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
15507 (feedmail-message-action-send-strong, feedmail-message-action-edit)
15508 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
15509 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
15510 (feedmail-message-action-toggle-spray)
15511 (feedmail-run-the-queue-no-prompts)
15512 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
15513 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
15514 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
15515 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
15516 (feedmail-envelope-deducer, feedmail-fiddle-from)
15517 (feedmail-fiddle-sender, feedmail-default-date-generator)
15518 (feedmail-fiddle-date, feedmail-fiddle-message-id)
15519 (feedmail-fiddle-spray-address)
15520 (feedmail-fiddle-list-of-spray-fiddle-plexes)
15521 (feedmail-fiddle-list-of-fiddle-plexes)
15522 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
15523 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
15524 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
15525 Change default. Doc fix.
15526 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
15527 (feedmail-binmail-linuxish-template): New constant.
15528 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
15529 Respect feedmail-sendmail-f-doesnt-sell-me-out.
15530 (feedmail-send-it): Add debug call.
15531 Use feedmail-queue-buffer-file-name, and
15532 feedmail-send-it-immediately-wrapper.
15533 (feedmail-message-action-send): Add debug call.
15534 Use feedmail-send-it-immediately-wrapper.
15535 (feedmail-queue-express-to-queue): Add debug call.
15536 Run feedmail-queue-express-hook.
15537 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
15538 (feedmail-message-action-help-blat):
15539 Rename from feedmail-queue-send-edit-prompt-help-first.
15540 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
15541 Check line-endings. Handle errors better.
15542 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
15543 Doc fix. Add debug call.
15544 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
15545 Use feedmail-queue-send-edit-prompt-inner.
15546 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
15547 (feedmail-queue-send-edit-prompt-inner): New function, extracted
15548 from feedmail-queue-send-edit-prompt.
15549 (feedmail-queue-send-edit-prompt-help)
15550 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
15551 (feedmail-tidy-up-slug): Add debug call.
15552 Respect feedmail-queue-slug-suspect-regexp.
15553 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
15554 (feedmail-dump-message-to-queue): Add debug call.
15555 Expand queue-directory.
15556 (feedmail-dump-message-to-queue): Change message slightly.
15557 Use feedmail-say-chatter.
15558 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
15559 (feedmail-send-it-immediately-wrapper): New function.
15560 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
15561 Insert empty string rather than newline. Handle full-frame case.
15562 Use catch/throw. Use feedmail-say-chatter.
15563 (feedmail-fiddle-from): Try mail-host-address.
15564 (feedmail-default-message-id-generator): Doc fix.
15565 Bind system-time-locale. Handle missing end.
15566 (feedmail-fiddle-x-mailer): Add debug call.
15567 Handle feedmail-x-mailer-line being nil.
15568 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
15569 Add debug call. Use buffer-substring-no-properties.
15570 (feedmail-say-debug, feedmail-say-chatter): New functions.
15571 (feedmail-find-eoh): Give an explicit error.
15572
15573 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
15574
15575 * net/newst-treeview.el (newsticker-treeview-face): Change default
15576 family from helvetica to sans.
15577 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
15578 etc/images/newsticker.
15579
15580 * net/newst-reader.el (newsticker-feed-face): Change default
15581 family from helvetica to sans.
15582
15583 * net/newst-plainview.el (newsticker-new-item-face)
15584 (newsticker-old-item-face, newsticker-immortal-item-face)
15585 (newsticker-obsolete-item-face, newsticker-date-face)
15586 (newsticker-statistics-face): Change default family from
15587 helvetica to sans.
15588 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
15589 etc/images/newsticker.
15590
15591 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
15592 (newsticker--process-auto-mark-filter-match): Tell user about
15593 auto-marking.
15594
15595 2011-05-13 Didier Verna <didier@xemacs.org>
15596
15597 Common Lisp indentation improvements on defmethod and lambda-lists.
15598 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
15599 TODO entries.
15600 (lisp-lambda-list-keyword-parameter-indentation)
15601 (lisp-lambda-list-keyword-parameter-alignment)
15602 (lisp-lambda-list-keyword-alignment): New customizable user options.
15603 (lisp-indent-defun-method): Improve docstring.
15604 (extended-loop-p): Fix comment.
15605 (lisp-indent-lambda-list-keywords-regexp): New variable.
15606 (lisp-indent-lambda-list): New function.
15607 (lisp-indent-259): Use it.
15608 (lisp-indent-defmethod): Support for more than one
15609 method qualifier and properly indent methods lambda-lists.
15610 (defgeneric): Provide a missing common-lisp-indent-function property.
15611
15612 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
15613
15614 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
15615 bounds for the empty string (bug#8667).
15616
15617 2011-05-13 Glenn Morris <rgm@gnu.org>
15618
15619 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
15620
15621 * mail/sendmail.el (sendmail-program): Try executable-find first.
15622 (sendmail-send-it): `sendmail-program' cannot be unbound.
15623
15624 * calendar/appt.el (appt-make-list): Simplify.
15625 (appt-time-msg-list): Doc fix.
15626 (appt-check): Change mode-line message at the time of the appointment.
15627
15628 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
15629
15630 * progmodes/ld-script.el (ld-script-keywords)
15631 (ld-script-builtins): Update keywords list.
15632
15633 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
15634
15635 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
15636
15637 * shell.el (shell-completion-vars): New function.
15638 (shell-mode):
15639 * simple.el (read-shell-command): Use it.
15640 (blink-matching-open): No need for " [...]" in minibuffer-message.
15641
15642 2011-05-12 Glenn Morris <rgm@gnu.org>
15643
15644 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
15645 (appt-check): Simplify.
15646
15647 2011-05-12 Eli Zaretskii <eliz@gnu.org>
15648
15649 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
15650 literal "/dev/null".
15651
15652 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
15653
15654 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
15655 Fix typo.
15656
15657 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
15658
15659 * progmodes/which-func.el (which-function):
15660 Use add-log-current-defun instead of add-log-current-defun-function,
15661 which might not be defined (Bug#8260).
15662
15663 2011-05-12 Glenn Morris <rgm@gnu.org>
15664
15665 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
15666 Let byte-compile-initial-macro-environment always take precedence.
15667
15668 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
15669
15670 * net/rcirc.el: Add support for SSL/TLS connections.
15671 (rcirc-server-alist): New field `encryption'.
15672 (rcirc): Check `encryption' settings.
15673 (rcirc-connect): New arg `encryption'. Use open-network-stream.
15674 Merge make-local-variable into `set'.
15675 (rcirc--connection-open-p): New function.
15676 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
15677 the process is not a network process (e.g. running gnutls-cli).
15678 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
15679 Make rcirc-(en|de)code-coding-system local here.
15680 (rcirc-mode): Merge make-local-variable into `set'.
15681 (rcirc-parent-buffer): Make permanent buffer-local.
15682 (rcirc-multiline-minor-mode): Don't do it here.
15683 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
15684 there's no server buffer.
15685
15686 2011-05-11 Glenn Morris <rgm@gnu.org>
15687
15688 * newcomment.el (comment-kill): Prefix "unused" local.
15689
15690 * term/w32console.el (get-screen-color): Declare.
15691
15692 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
15693 Handle symbol elements of byte-compile-initial-macro-environment.
15694
15695 2011-05-10 Leo Liu <sdl.web@gmail.com>
15696
15697 * bookmark.el (bookmark-bmenu-mode-map):
15698 Bind bookmark-bmenu-search to `/'.
15699
15700 * mail/footnote.el: Convert to utf-8 encoding.
15701 (footnote-unicode-string, footnote-unicode-regexp): New variable.
15702 (Footnote-unicode): New function.
15703 (footnote-style-alist): Add unicode style to the list.
15704 (footnote-style): Doc fix.
15705
15706 2011-05-10 Jim Meyering <meyering@redhat.com>
15707
15708 Fix doubled-word typos.
15709 * international/quail.el (quail-insert-kbd-layout): and and -> and
15710 * kermit.el: and and -> and
15711 * net/ldap.el (ldap-search-internal): to to -> to
15712 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
15713 * progmodes/js.el (js-mode): and and -> and
15714 * textmodes/artist.el (artist-move-to-xy): at at -> at
15715 (artist-draw-region-trim-line-endings): if if -> if
15716 And Safetyc -> Safety.
15717 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
15718
15719 2011-05-10 Glenn Morris <rgm@gnu.org>
15720 Stefan Monnier <monnier@iro.umontreal.ca>
15721
15722 * files.el (hack-one-local-variable-eval-safep):
15723 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
15724
15725 2011-05-10 Glenn Morris <rgm@gnu.org>
15726
15727 * calendar/diary-lib.el (diary-list-entries-hook)
15728 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
15729 (diary-nongregorian-marking-hook, diary-list-entries)
15730 (diary-include-other-diary-files, diary-mark-entries)
15731 (diary-mark-included-diary-files): Doc fixes.
15732
15733 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
15734
15735 * misc.el: Require tabulated-list.el during compilation.
15736
15737 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
15738
15739 * progmodes/compile.el (compilation-start):
15740 Run compilation-filter-hook for the async case too.
15741 (compilation-filter-hook): Doc fix.
15742
15743 2011-05-09 Deniz Dogan <deniz@dogan.se>
15744
15745 * wdired.el: Remove outdated installation comment. Fix usage
15746 comment.
15747
15748 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
15749
15750 * misc.el: Implement new command `list-dynamic-libraries'.
15751 (list-dynamic-libraries--loaded-only-p): New variable.
15752 (list-dynamic-libraries--refresh): New function.
15753 (list-dynamic-libraries): New command.
15754
15755 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
15756
15757 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15758 Fix the ant regexp to handle end-line and end-column info from jikes.
15759 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
15760 higher priority to avoid clobbering by gnu.
15761
15762 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
15763
15764 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
15765 if the face has existing theme settings (Bug#8454).
15766
15767 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
15768
15769 * progmodes/perl-mode.el (perl-imenu-generic-expression):
15770 Only match variables declared via `my' or `our' (Bug#8261).
15771
15772 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
15773 special file names `.' and `..' (Bug#8259).
15774
15775 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
15776
15777 * progmodes/grep.el (grep-mode-font-lock-keywords):
15778 Remove buffer-changing entries.
15779 (grep-filter): New function.
15780 (grep-mode): Add it to compilation-filter-hook.
15781
15782 * progmodes/compile.el (compilation-filter-hook)
15783 (compilation-filter-start): New defvars.
15784 (compilation-filter): Call compilation-filter-hook prior to
15785 updating the process mark.
15786
15787 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15788
15789 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
15790
15791 2011-05-07 Eli Zaretskii <eliz@gnu.org>
15792
15793 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
15794 mailclient-send-it even if window-system is nil. (Bug#8595)
15795
15796 * term/w32console.el (terminal-init-w32console):
15797 Call get-screen-color and use its output to set the frame
15798 background-mode. (Bug#8597)
15799
15800 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15801
15802 Make bytecomp.el understand that defmethod defines funs (bug#8631).
15803 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
15804 New functions.
15805 (defgeneric, eieio--defmethod): Use them.
15806 (eieio-defgeneric): Remove.
15807 (defmethod): Call defgeneric in a way visible to the byte-compiler.
15808
15809 2011-05-07 Glenn Morris <rgm@gnu.org>
15810
15811 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
15812 Use let rather than let*.
15813 (timeclock-find-discrep): Remove unused local.
15814
15815 * calendar/diary-lib.el (diary-comment-start): Doc fix.
15816
15817 * calendar/appt.el (appt-time-msg-list): Doc fix.
15818
15819 2011-05-06 Noah Friedman <friedman@splode.com>
15820
15821 * apropos.el (apropos-print-doc): Only use
15822 emacs-lisp-docstring-fill-column when it is bound to an integer,
15823 per that variable's documentation.
15824
15825 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15826
15827 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
15828 and warnings are not silently discarded (e.g. use -d instead of -P).
15829
15830 2011-05-06 Glenn Morris <rgm@gnu.org>
15831
15832 * calendar/appt.el (appt-message-warning-time): Doc fix.
15833 (appt-warning-time-regexp): New option.
15834 (appt-make-list): Respect appt-message-warning-time.
15835
15836 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
15837 New options.
15838 (diary-add-to-list): Strip comments from the displayed string.
15839 (diary-mode): Set comment-start and comment-end.
15840
15841 * vc/diff-mode.el (smerge-refine-subst): Declare.
15842 (diff-refine-hunk): Don't require smerge-mode when compiling.
15843
15844 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
15845
15846 * simple.el (list-processes): Return nil as the docstring says.
15847
15848 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
15849
15850 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
15851 to "".
15852 (ange-ftp-write-region, ange-ftp-insert-file-contents)
15853 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
15854 determining of binary transfer. (Bug#7383)
15855
15856 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
15857
15858 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15859 Fix port computation bug. (Bug#8618)
15860
15861 2011-05-05 Glenn Morris <rgm@gnu.org>
15862
15863 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
15864
15865 * simple.el (shell-dynamic-complete-functions)
15866 (comint-dynamic-complete-functions): Declare.
15867
15868 * net/network-stream.el (gnutls-negotiate):
15869 * simple.el (tabulated-list-print): Fix declarations.
15870
15871 * progmodes/gud.el (syntax-symbol, syntax-point):
15872 Remove unnecessary and incorrect declarations.
15873
15874 * emacs-lisp/check-declare.el (check-declare-scan):
15875 Handle byte-compile-initial-macro-environment in bytecomp.el
15876
15877 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15878
15879 Fix earlier half-done eieio-defmethod change (bug#8338).
15880 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
15881 Streamline and change calling convention.
15882 (defmethod): Adjust accordingly and simplify.
15883 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
15884 new eieio--defmethod.
15885 (slot-boundp): Minor CSE simplification.
15886
15887 2011-05-05 Milan Zamazal <pdm@zamazal.org>
15888
15889 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
15890 (glasses-make-readable): Use glasses-separate-capital-groups.
15891
15892 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
15893
15894 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
15895 (warning-series): Doc fix.
15896 (display-warning): Don't try to create the buffer if we just found it.
15897
15898 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
15899
15900 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
15901 (autoload-find-generated-file): New function.
15902 (generate-file-autoloads): Bind generated-autoload-file to
15903 buffer-file-name.
15904 (update-file-autoloads, update-directory-autoloads):
15905 Use autoload-find-generated-file. If called interactively, prompt for
15906 output file (Bug#7989).
15907 (batch-update-autoloads): Doc fix.
15908
15909 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
15910
15911 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
15912
15913 2011-05-04 Glenn Morris <rgm@gnu.org>
15914
15915 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
15916 function, so it follows changes in calendar-date-style.
15917 (diary-fancy-date-matcher): New function.
15918 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
15919 (diary-fancy-font-lock-fontify-region-function):
15920 Use diary-fancy-date-pattern as a function.
15921
15922 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
15923 non-numbers for `year' etc pseudo-variables. (Bug#8583)
15924
15925 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
15926
15927 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
15928 instead of positional arguments. Allow :keylist and :crlfiles
15929 arguments.
15930 (open-gnutls-stream): Call it.
15931
15932 * net/network-stream.el (network-stream-open-starttls): Adjust to
15933 call `gnutls-negotiate' with :process and :hostname arguments.
15934
15935 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15936
15937 * minibuffer.el (completion--message): New function.
15938 (completion--do-completion, minibuffer-complete)
15939 (minibuffer-force-complete, minibuffer-complete-word): Use it.
15940 (completion--do-completion): Don't ignore completion-auto-help when in
15941 icomplete-mode.
15942
15943 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
15944 internal encoding (e.g. tibetan zero is not whitespace).
15945 (global-whitespace-mode): Prefer save-current-buffer.
15946 (whitespace-trailing-regexp): Remove useless save-match-data.
15947 (whitespace-empty-at-bob-regexp): Minor simplification.
15948
15949 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
15950
15951 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
15952
15953 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
15954
15955 * textmodes/ispell.el (ispell-add-per-file-word-list):
15956 Use `concat' to create string for insertion.
15957
15958 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15959
15960 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
15961 Avoid open-line which runs post-self-insert-hook.
15962 (bibtex-fill-entry): Remove unused `end' var.
15963
15964 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
15965
15966 * textmodes/ispell.el (ispell-add-per-file-word-list):
15967 Protect against `nil' value of `comment-start' (Bug#8579).
15968
15969 2011-05-03 Leo Liu <sdl.web@gmail.com>
15970
15971 * isearch.el (isearch-yank-pop): New command.
15972 (isearch-mode-map): Bind it to `M-y'.
15973 (isearch-forward): Mention it.
15974
15975 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15976
15977 * simple.el (minibuffer-complete-shell-command): Remove.
15978 (minibuffer-local-shell-command-map): Use completion-at-point.
15979 (read-shell-command): Setup completion vars here instead.
15980 (read-expression-map): Bind TAB to symbol completion.
15981
15982 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
15983 error directly rather via storing it into `results'.
15984
15985 2011-05-02 Leo Liu <sdl.web@gmail.com>
15986
15987 * vc/diff.el: Fix description.
15988
15989 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15990
15991 * server.el (server-eval-at): New function.
15992
15993 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15994
15995 * net/network-stream.el (open-network-stream): Take a :nowait
15996 parameter and pass it on to `make-network-process'.
15997 (network-stream-open-plain): Ditto.
15998
15999 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
16000
16001 * faces.el (face-spec-set-match-display): Don't match toolkit
16002 options on terminal frames.
16003
16004 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
16005
16006 * progmodes/pascal.el: Use lexical binding.
16007 (pascal-mode-map): Remove author preferences.
16008
16009 * pcomplete.el (pcomplete-std-complete): Don't abuse
16010 completion-at-point.
16011
16012 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16013
16014 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
16015 removing code that has been dead since 1991 or so.
16016
16017 * startup.el (command-line): When warning about "_emacs", use a
16018 delayed warning to allow the user to filter it out.
16019
16020 2011-04-28 Deniz Dogan <deniz@dogan.se>
16021
16022 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
16023 user has not joined.
16024
16025 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16026
16027 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
16028 aren't any completions at point.
16029
16030 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16031
16032 * subr.el (display-delayed-warnings): New function.
16033 (delayed-warnings-hook): New variable.
16034
16035 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16036
16037 * minibuffer.el (completion-at-point, completion-help-at-point):
16038 Don't presume that a given completion-at-point-function will always
16039 use the same calling convention.
16040
16041 * pcomplete.el (pcomplete-completions-at-point):
16042 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
16043 pcomplete-seen is non-nil.
16044 (pcomplete-comint-setup): Also recognize the new comint/shell
16045 completion functions.
16046 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
16047 pcomplete-seen is non-nil.
16048
16049 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
16050
16051 * calendar/icalendar.el (diary-lib): Add require statement.
16052 (icalendar--create-uid): Read out a uid from a text-property on
16053 the first character in the entry. This allows for code to add its
16054 own uid to the entry.
16055 (icalendar--convert-float-to-ical): Add export of
16056 `diary-float'-entries save for those with the optional DAY
16057 argument.
16058
16059 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
16060
16061 * subr.el (shell-quote-argument): Use alternate escaping strategy
16062 when we spot a variable reference in a string.
16063
16064 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16065
16066 * cus-start.el (all): Define customization for debug-on-event.
16067
16068 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16069
16070 * subr.el (shell-quote-argument): Escape correctly under Windows.
16071
16072 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16073
16074 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
16075
16076 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
16077
16078 * net/tramp.el (tramp-process-actions): Add POS argument.
16079 Delete region between POS and (pos).
16080
16081 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16082 Use `nil' position in `tramp-process-actions' call.
16083 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
16084
16085 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
16086 position in `tramp-process-actions' call.
16087
16088 * net/trampver.el: Update release number.
16089
16090 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16091
16092 * custom.el (defcustom): Obey lexical-binding.
16093
16094 Fix octave-inf completion problems reported by Alexander Klimov.
16095 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
16096 Inherit from octave-mode-syntax-table.
16097 (inferior-octave-mode): Set info-lookup-mode.
16098 (inferior-octave-completion-at-point): New function.
16099 (inferior-octave-complete): Use it and completion-in-region.
16100 (inferior-octave-dynamic-complete-functions): Use it as well, and use
16101 comint-filename-completion.
16102 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
16103 symbol elements which shouldn't be word elements.
16104 (octave-font-lock-keywords, octave-beginning-of-defun)
16105 (octave-function-header-regexp): Adjust regexps accordingly.
16106 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
16107
16108 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
16109
16110 * net/gnutls.el (gnutls-errorp): Declare before first use.
16111
16112 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
16113
16114 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
16115 verify-error, and verify-hostname-error parameters. Check whether
16116 default trustfile exists before going to use it. Add missing
16117 argument to gnutls-message-maybe call. Return value.
16118 Reported by Claudio Bley <claudio.bley@gmail.com>.
16119 (open-gnutls-stream): Add usage example.
16120
16121 * net/network-stream.el (network-stream-open-starttls): Give host
16122 parameter to `gnutls-negotiate'.
16123 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
16124 * subr.el (shell-quote-argument): Escape correctly under Windows.
16125
16126 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
16127
16128 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
16129 Use correct match group (bug#8438).
16130
16131 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
16132
16133 * emacs-lisp/package.el (package-built-in-p): Fix typo.
16134 (package-menu--generate): New arg specifying packages to show.
16135 (package-menu-refresh, package-menu-execute, list-packages):
16136 Callers changed.
16137 (package-show-package-list): New function, replacing deleted
16138 package--list-packages (renamed because it is non-internal).
16139
16140 * finder.el (finder-list-matches): Use package-show-package-list
16141 instead of deleted package--list-packages.
16142
16143 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
16144 Based on a previous implementation by Juanma Barranquero (Bug#8366).
16145 (vc-annotate-mode-map): Bind it to RET.
16146
16147 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
16148
16149 * progmodes/etags.el (next-file): Don't use set-buffer to change
16150 buffers (Bug#8478).
16151
16152 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
16153
16154 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
16155
16156 * apropos.el (apropos-label-face): Avoid variable-pitch face.
16157 (apropos-accumulator): Doc fix.
16158 (apropos-function, apropos-macro, apropos-command)
16159 (apropos-variable, apropos-face, apropos-group, apropos-widget)
16160 (apropos-plist): Add face property.
16161 (apropos-symbols-internal): Fix indentation.
16162 (apropos-print): Simplify help, and recognize apropos-multi-type.
16163 (apropos-print-doc): Use button-type-get to extract the button's
16164 face property. Fill docstring (Bug#8352).
16165
16166 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
16167
16168 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
16169
16170 * play/mpuz.el (mpuz-silent): Doc fix.
16171 (mpuz-mode-map): Use mapc.
16172 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
16173 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
16174 Fix typos in docstrings.
16175
16176 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
16177 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
16178
16179 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
16180
16181 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
16182
16183 * minibuffer.el (completion--do-completion): Avoid the "Next char
16184 not unique" prompt if icomplete-mode is enabled (Bug#5849).
16185
16186 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
16187 mouse-2 into unread-command-events, it is interpreted correctly.
16188
16189 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
16190 (image-toggle-display): Doc fix.
16191
16192 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
16193
16194 * textmodes/page.el (what-page): Use line-number-at-pos to
16195 calculate line number (Bug#6825).
16196
16197 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
16198
16199 * eshell/esh-mode.el (find-tag-interactive): Declare function.
16200 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
16201 Pass argument NO-DEFAULT to `find-tag-interactive'.
16202
16203 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
16204
16205 Lexical-binding cleanup.
16206
16207 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
16208 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
16209 * progmodes/ada-prj.el (ada-prj-initialize-values)
16210 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
16211 (ada-prj-show-value):
16212 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
16213 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
16214 (antlr-invalidate-context-cache, antlr-options-menu-filter)
16215 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
16216 * progmodes/bug-reference.el (bug-reference-push-button):
16217 * progmodes/fortran.el (fortran-line-length):
16218 * progmodes/glasses.el (glasses-change):
16219 * progmodes/octave-mod.el (octave-fill-paragraph):
16220 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
16221 (python-pdbtrack-grub-for-buffer, python-sentinel):
16222 * progmodes/sql.el (sql-save-connection):
16223 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
16224 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
16225 Mark unused parameters.
16226
16227 * progmodes/compile.el (compilation--flush-directory-cache)
16228 (compilation--flush-parse, compile-internal): Mark unused parameters.
16229 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
16230 (compilation-next-error-function): Remove unused variable `timestamp'.
16231
16232 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
16233 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
16234
16235 * progmodes/dcl-mode.el (dcl-end-of-command):
16236 Remove unused variable `start'.
16237 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
16238 (dcl-option-value-basic, dcl-option-value-offset)
16239 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
16240 Mark unused parameters.
16241 (dcl-save-local-variable): Remove unused variable `val'.
16242 (mode): Declare.
16243
16244 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
16245 Mark unused parameters.
16246 (delphi-ignore-changes): Move before first use.
16247 (delphi-charset-token-at): Remove unused variable `start'.
16248 (delphi-else-start): Remove unused variable `if-count'.
16249 (delphi-comment-block-start, delphi-comment-block-end):
16250 Remove unused variable `kind'.
16251 (delphi-indent-line): Remove unused variable `new-point'.
16252
16253 * progmodes/ebrowse.el (ebrowse-files-list)
16254 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
16255 Mark unused parameters. Don't quote `lambda'.
16256 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
16257 Don't quote `lambda'.
16258 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
16259 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
16260 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
16261 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
16262 Use `ignore-errors'.
16263 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
16264 (ebrowse-view/find-file-and-search-pattern)
16265 (ebrowse-view/find-member-declaration/definition):
16266 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
16267 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
16268 Rename parameter PREFIX-ARG to PREFIX.
16269 (ebrowse-tags-read-name): Remove unused variables `start' and
16270 `member-info'.
16271 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
16272 to `tags-file'.
16273
16274 * progmodes/etags.el (local-find-tag-hook): Declare.
16275 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
16276 Mark unused parameters.
16277
16278 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
16279 (executable-interpret): Mark unused parameter.
16280
16281 * progmodes/flymake.el (flymake-process-sentinel)
16282 (flymake-after-change-function)
16283 (flymake-create-temp-with-folder-structure)
16284 (flymake-get-include-dirs-dot): Mark unused parameters.
16285 (flymake-safe-delete-directory): Remove unused variable `err'.
16286
16287 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
16288 (speedbar-timer-fn, speedbar-line-text)
16289 (speedbar-change-expand-button-char, speedbar-delete-subblock)
16290 (speedbar-center-buffer-smartly): Declare functions.
16291 (gdb-find-watch-expression): Remove unused variable `array'.
16292 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
16293 (gdb-starting): Mark unused parameters.
16294 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
16295 (gdb-table-string): Remove unused variable `res'.
16296 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
16297 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
16298 (gdb-display-buffer): Remove unused variable `cur-size'.
16299
16300 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
16301 allow lexical-binding compilation.
16302 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
16303 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
16304 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
16305 Mark unused parameters.
16306 (gud-gdb-marker-filter): Remove unused variable `match'.
16307 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
16308 lambda expressions and funcall them, instead of using `fset'.
16309
16310 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
16311 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
16312
16313 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
16314 variable `header-beg'; use `let'.
16315
16316 * progmodes/icon.el (indent-icon-exp): Remove unused variables
16317 `restart', `last-sexp' and `at-do'.
16318
16319 * progmodes/js.el (js--debug): Mark unused parameter.
16320 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
16321 (js--splice-into-items): Remove unused variable `item'.
16322 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
16323
16324 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
16325 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
16326 (makefile-complete): Remove unused variable `try'.
16327 (makefile-fill-paragraph, makefile-match-function-end):
16328 Mark unused parameters.
16329
16330 * progmodes/octave-inf.el (inferior-octave-complete):
16331 Remove unused variable `proc'.
16332 (inferior-octave-output-digest): Mark unused parameter.
16333
16334 * progmodes/perl-mode.el (perl-calculate-indent):
16335 Remove unused variable `err'.
16336
16337 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
16338 (prolog-indent-line): Mark unused parameters.
16339 (prolog-indent-line): Remove unused variable `beg'.
16340
16341 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
16342 (reporter-dont-compact-list): Declare.
16343
16344 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
16345 Remove unused variable `char'.
16346 (sh-debug): Mark unused parameter.
16347 (sh-get-indent-info): Remove unused variable `start'.
16348 (sh-calculate-indent): Remove unused variable `var'.
16349
16350 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
16351 (simula-electric-keyword): Remove unused variable `null'.
16352 (simula-search-backward, simula-search-forward): Remove unused
16353 variables `begin' and `end'.
16354
16355 * progmodes/vera-mode.el (vera-guess-basic-syntax):
16356 Remove unused variable `pos'.
16357 (vera-electric-tab, vera-comment-uncomment-region):
16358 Mark unused parameters.
16359 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
16360
16361 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
16362
16363 * emacs-lisp/package.el (package--builtins, package-alist)
16364 (package-load-descriptor, package-built-in-p, package-activate)
16365 (define-package, package-installed-p)
16366 (package-compute-transaction, package-buffer-info)
16367 (package--push): Doc fix. Distinguish more clearly between
16368 version strings and version lists.
16369
16370 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
16371
16372 Lexical-binding cleanup.
16373
16374 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
16375 (5x5-make-mutate-best):
16376 * play/fortune.el (fortune-in-buffer):
16377 * play/gomoku.el (gomoku-init-display):
16378 * play/solitaire.el (solitaire, solitaire-do-check):
16379 * play/tetris.el (tetris-default-update-speed-function):
16380 Mark unused parameters.
16381
16382 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
16383 (bubbles--shift): Remove unused variable `char-org'.
16384 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
16385 (bubbles--show-images): Remove unused variable `char'.
16386
16387 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
16388 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
16389 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
16390 (decipher-analyze-buffer): Use ?\s.
16391 (decipher-make-checkpoint): Remove unused variable `mapping'.
16392
16393 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
16394
16395 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
16396 Remove unused variable `result'; use `let'.
16397
16398 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
16399 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
16400 (gametree-children-shown-p, gametree-compute-reduced-score):
16401 Use `ignore-errors'.
16402
16403 * play/handwrite.el (ps-lpr-switches): Declare.
16404 (handwrite): Remove unused variables `pmin' and `lastp'.
16405
16406 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
16407
16408 * play/landmark.el (landmark-init-display)
16409 (landmark-update-naught-weights): Mark unused parameters.
16410 (landmark-y): Remove unused variable `noise'. Simplify.
16411 (landmark-human-plays): Remove unused variable `score'.
16412
16413 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
16414 (mpuz-try-proposal): Remove unused variable `game'.
16415
16416 * play/zone.el (life-patterns): Declare.
16417
16418 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
16419
16420 * vc/vc.el (ediff-vc-internal): Declare function.
16421
16422 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16423
16424 * shell.el: Use lexical-binding and std completion UI.
16425 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
16426 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
16427 comint-preoutput-filter-functions rather than on
16428 comint-output-filter-functions.
16429 (shell-command-completion, shell--command-completion-data)
16430 (shell-filename-completion, shell-environment-variable-completion)
16431 (shell-c-a-p-replace-by-expanded-directory): New functions.
16432 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
16433 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
16434 (shell-dynamic-complete-environment-variable): Use them.
16435 (shell-dynamic-complete-as-environment-variable)
16436 (shell-dynamic-complete-as-command): Remove.
16437 (shell-match-partial-variable): Match past point.
16438 * comint.el: Clean up use of completion-at-point-functions.
16439 (comint-completion-at-point): New function.
16440 (comint-mode): Use it completion-at-point-functions.
16441 (comint-dynamic-complete): Make it obsolete.
16442 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
16443 (comint-c-a-p-replace-by-expanded-history): New function.
16444 (comint-dynamic-complete-functions)
16445 (comint-replace-by-expanded-history): Use it.
16446 * minibuffer.el (completion-table-with-terminator): Allow dynamic
16447 termination strings. Try harder to avoid second try-completion.
16448 (completion-in-region-mode-map): Disable bindings that don't work yet.
16449
16450 * comint.el: Use lexical-binding. Require CL.
16451 (comint-dynamic-complete-functions): Use comint-filename-completion.
16452 (comint-completion-addsuffix): Tweak custom type.
16453 (comint-filename-completion, comint--common-suffix)
16454 (comint--common-quoted-suffix, comint--table-subvert)
16455 (comint--complete-file-name-data): New functions.
16456 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
16457 (comint-dynamic-list-filename-completions): Use them.
16458 (comint-dynamic-simple-complete): Make obsolete.
16459
16460 * minibuffer.el (completion-in-region-mode):
16461 Keep completion-in-region-mode--predicate global.
16462 (completion-in-region--postch):
16463 Assume completion-in-region-mode--predicate is not null.
16464
16465 * progmodes/flymake.el (flymake-start-syntax-check-process):
16466 Obey `dir'. Simplify.
16467
16468 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
16469 we're in VC after all.
16470
16471 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
16472
16473 * vc/vc.el (vc-diff-build-argument-list-internal)
16474 (vc-version-ediff, vc-ediff): New commands.
16475 (vc-version-diff): Use vc-diff-build-argument-list-internal.
16476
16477 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16478
16479 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
16480 add sanity check.
16481
16482 * obsolete/erc-hecomplete.el: Make obsolete.
16483 * obsolete/: Standardize obsolescence info in the header.
16484
16485 2011-04-20 Glenn Morris <rgm@gnu.org>
16486
16487 * calendar/solar.el (solar-horizontal-coordinates):
16488 Use the longitude argument rather than `calendar-longitude'.
16489 (solar-date-next-longitude): Remove unused locals.
16490
16491 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16492
16493 * whitespace.el: New version 13.2.1.
16494
16495 2011-04-20 felix <EmacsWiki> (tiny change)
16496
16497 * whitespace.el (global-whitespace-mode): Keep highlight when
16498 switching between major modes on a file.
16499
16500 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
16501
16502 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
16503 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
16504 multi-line comments as well.
16505
16506 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
16507
16508 Lexical-binding cleanup.
16509
16510 * arc-mode.el (archive-mode-revert):
16511 * cmuscheme.el (scheme-interactively-start-process):
16512 * custom.el (custom-initialize-delay):
16513 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
16514 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
16515 * emacs-lock.el (emacs-lock-clear-sentinel):
16516 * ezimage.el (defezimage):
16517 * follow.el (follow-avoid-tail-recenter):
16518 * fringe.el (set-fringe-mode-1):
16519 * generic-x.el (bat-generic-mode-compile):
16520 * help-mode.el (help-info-variable, help-do-xref)
16521 (help-mode-revert-buffer):
16522 * help.el (view-emacs-todo):
16523 * iswitchb.el (iswitchb-completion-help):
16524 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
16525 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
16526 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
16527 * locate.el (locate-update):
16528 * longlines.el (longlines-encode-region)
16529 (longlines-after-change-function):
16530 * outline.el (outline-isearch-open-invisible):
16531 * ps-def.el (declare-function, charset-dimension, char-width)
16532 (encode-char):
16533 * ps-mule.el (ps-mule-plot-string):
16534 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
16535 (recentf-edit-list-select, recentf-edit-list-validate)
16536 (recentf-open-files-action):
16537 * rect.el (delete-whitespace-rectangle-line)
16538 (rectangle-number-line-callback):
16539 * register.el (window-configuration-to-register)
16540 (frame-configuration-to-register):
16541 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
16542 * select.el (xselect-convert-to-string, xselect-convert-to-length)
16543 (xselect-convert-to-targets, xselect-convert-to-delete)
16544 (xselect-convert-to-filename, xselect-convert-to-charpos)
16545 (xselect-convert-to-lineno, xselect-convert-to-colno)
16546 (xselect-convert-to-os, xselect-convert-to-host)
16547 (xselect-convert-to-user, xselect-convert-to-class)
16548 (xselect-convert-to-name, xselect-convert-to-integer)
16549 (xselect-convert-to-atom, xselect-convert-to-identity):
16550 * subr.el (declare, ignore, process-kill-without-query)
16551 (text-clone-maintain):
16552 * terminal.el (te-get-char, te-tic-sentinel):
16553 * tool-bar.el (tool-bar-make-keymap):
16554 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
16555 * type-break.el (type-break-mode, type-break-noninteractive-query):
16556 * view.el (View-back-to-mark):
16557 * wid-browse.el (widget-browse-action, widget-browse-widget)
16558 (widget-browse-widgets, widget-browse-sexp):
16559 * widget.el (define-widget-keywords):
16560 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
16561 Mark unused parameters.
16562
16563 * align.el (align-adjust-col-for-rule): Mark unused parameter.
16564 (align-areas): Remove unused variable `look'.
16565 (align-region): Remove unused variables `real-end' and `pos-list'.
16566
16567 * apropos.el (apropos-score-doc): Remove unused variable `i'.
16568
16569 * bindings.el (mode-line-modified, mode-line-remote):
16570 Mark unused parameters.
16571 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
16572
16573 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
16574 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
16575
16576 * comint.el (comint-history-isearch-pop-state)
16577 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
16578 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
16579 (comint-substitute-in-file-name): Doc fix.
16580
16581 * completion.el (cmpl-statistics-block): Mark unused parameter.
16582 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
16583 (save-completions-to-file, load-completions-from-file):
16584 Remove unused local variable `e'.
16585
16586 * composite.el (compose-chars): Remove unused variable `len'.
16587 (lgstring-insert-glyph): Remove unused variable `g'.
16588 (compose-glyph-string): Remove unused variables `ascent',
16589 `descent', `lbearing' and `rbearing'.
16590 (compose-glyph-string-relative): Remove unused variables
16591 `lbearing', `rbearing' and `wadjust'.
16592 (compose-gstring-for-graphic): Remove unused variables `header',
16593 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
16594 (compose-gstring-for-terminal): Remove unused variables `header'
16595 and `nchars'. Use `let', not `let*'.
16596
16597 * cus-edit.el (Custom-set, Custom-save, custom-reset)
16598 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
16599 (Custom-buffer-done, custom-buffer-create-internal)
16600 (custom-browse-visibility-action, custom-browse-group-tag-action)
16601 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
16602 (widget-magic-mouse-down-action, custom-toggle-parent)
16603 (custom-add-parent-links, custom-toggle-hide-variable)
16604 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
16605 (custom-toggle-hide-face, face, hook, custom-group-link-action)
16606 (custom-face-menu-create, custom-variable-menu-create, get)
16607 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
16608 (custom-reset-standard-save-and-update): Remove unused variable `value'.
16609 (customize-apropos): Remove unused variable `tests'.
16610 (custom-group-value-create): Remove unused variable `hidden-p'.
16611 (sort-fold-case): Declare.
16612
16613 * cus-theme.el (custom-reset-standard-faces-list)
16614 (custom-reset-standard-variables-list): Declare.
16615 (customize-create-theme, custom-theme-revert, custom-theme-write)
16616 (custom-theme-choose-mode, customize-themes, custom-theme-save):
16617 Mark unused parameters.
16618
16619 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
16620
16621 * delim-col.el (delimit-columns-max): Move defvar before first use.
16622
16623 * descr-text.el (describe-char-categories): Don't quote `lambda'.
16624 (describe-char): Don't quote `lambda'. Mark unused parameter.
16625
16626 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
16627 (auto-insert): Declare.
16628 (desktop-restore-file-buffer): Rename desktop-* parameters;
16629 mark unused ones.
16630 (desktop-create-buffer): Rename desktop-* parameters and bind them.
16631 (desktop-buffer): Rename desktop-* parameters.
16632
16633 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
16634 (dframe-reposition-frame-xemacs, dframe-help-echo)
16635 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
16636 Mark unused parameters.
16637
16638 * dired-aux.el (backup-extract-version-start, overwrite-query)
16639 (overwrite-backup-query, rename-regexp-query)
16640 (rename-non-directory-query): Declare.
16641 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
16642 (dired-add-entry): Remove unused variable `orig-file-name'.
16643 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
16644 Use parameter PRESERVE-TIME instead of accessing dynamic variable
16645 `dired-copy-preserve-time' directly.
16646 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
16647 (dired-insert-subdir-newpos): Rename unused variable `pos'.
16648
16649 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
16650 (dired-virtual-revert, dired-make-relative-symlink):
16651 Mark unused parameters.
16652 (manual-program): Declare.
16653 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
16654 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
16655 wrapped in `with-no-warnings' to avoid replacing one warning by another.
16656
16657 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
16658
16659 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
16660
16661 * echistory.el (electric-history-in-progress, Helper-return-blurb):
16662 Declare.
16663
16664 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
16665
16666 * electric.el (Electric-command-loop): Rename parameter
16667 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
16668
16669 * expand.el (expand-in-literal): Remove unused variable `here'.
16670
16671 * facemenu.el (facemenu-add-new-color):
16672 Remove unused variable `docstring'.
16673
16674 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
16675 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
16676 (face-attr-construct): Mark unused parameter. Doc fix.
16677 (read-color): Remove unused variable `hex-string'.
16678
16679 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
16680 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
16681 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
16682 (display-buffer-other-frame): Remove unused variable `old-window'.
16683 (kill-buffer-hook): Declare.
16684 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
16685 Mark unused parameters.
16686 (after-find-file): Pass 1 to `auto-save-mode', not t.
16687
16688 * files-x.el (auto-insert): Declare.
16689 (modify-file-local-variable-prop-line): Remove unused variable `val'.
16690
16691 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
16692 variable `buf'. Mark unused parameter.
16693 (find-lisp-insert-directory): Mark unused parameter.
16694
16695 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
16696 (format-encode-region): Remove unused variables `cur-buf' and `result'.
16697 (format-common-tail): Remove, unused.
16698 (format-deannotate-region): Remove unused variable `loc'.
16699 (format-annotate-region): Remove unused variable `p'.
16700 (format-annotate-single-property-change): Remove unused variables
16701 `default' and `tail'.
16702
16703 * forms.el (read-file-filter): Declare.
16704 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
16705
16706 * frame.el (frame-creation-function-alist): Mark unused parameter.
16707 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
16708
16709 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
16710 Remove unused parameters.
16711 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
16712 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
16713
16714 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
16715 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
16716 (hfy-prepare-tag-map): Mark unused parameters.
16717 (htmlfontify-buffer): Use `called-interactively-p'.
16718
16719 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
16720 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
16721 (ibuffer-do-occur): Mark unused parameters.
16722 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
16723 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
16724
16725 * ibuffer.el: Don't quote `lambda'.
16726 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
16727 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
16728 Mark unused parameters.
16729
16730 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
16731 (ido-completing-read): Mark unused parameters.
16732 (ido-copy-current-word): Mark unused parameters;
16733 remove unused variable `name'.
16734 (ido-sort-merged-list): Remove unused parameter `dirs'.
16735
16736 * ielm.el (ielm-input-sender): Mark unused parameter.
16737 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
16738 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
16739 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
16740 `ielm-string' as a dynamic variable accessible from the IELM prompt.
16741 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
16742
16743 * image-dired.el (image-dired-display-thumbs): Remove unused
16744 variables `curr-file' and `count'.
16745 (image-dired-remove-tag): Remove unused variable `start'.
16746 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
16747 variable `curr-file'
16748 (image-dired-rotate-original): Remove unused variable `temp-file'.
16749 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
16750 Remove unused variable `file'.
16751 (image-dired-gallery-generate): Remove unused variable `curr'.
16752 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
16753
16754 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
16755
16756 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
16757
16758 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
16759
16760 * isearch.el (minibuffer-history-symbol): Declare.
16761 (isearch-edit-string): Remove unused variable `err'.
16762 (isearch-message-prefix, isearch-message-suffix):
16763 Mark unused parameters.
16764
16765 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
16766
16767 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
16768
16769 * makesum.el (double-column): Remove unused variable `cnt'.
16770
16771 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
16772 (ido-ignore-item-temp-list): Declare.
16773
16774 * mouse-drag.el (mouse-drag-throw): Remove unused variables
16775 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
16776 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
16777 (mouse-drag-drag): Remove unused variables `mouse-delta' and
16778 `mouse-col-delta'.
16779
16780 * mouse-sel.el (mouse-extend-internal):
16781 Remove unused variable `orig-window-frame'.
16782
16783 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
16784 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
16785 Move declarations before first use.
16786 (pcomplete-opt): Mark unused parameters; doc fix.
16787
16788 * proced.el (proced-revert): Mark unused parameter.
16789 (proced-send-signal): Remove unused variable `err'.
16790
16791 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
16792 Rename parameter PREFIX-ARG to ARG.
16793 (ps-basic-plot-string, ps-basic-plot-whitespace):
16794 Mark unused parameters.
16795
16796 * replace.el (replace-count): Define.
16797 (occur-revert-function): Mark unused parameters.
16798 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
16799 (isearch-case-fold-search, isearch-string): Declare.
16800 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
16801 bind `case-fold-search'. Remove unused variables `beg' and `end',
16802 and simplify.
16803 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
16804 COUNT and bind `replace-count'.
16805 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
16806 to COUNT.
16807
16808 * savehist.el (print-readably, print-string-length): Declare.
16809
16810 * shadowfile.el (shadow-expand-cluster-in-file-name):
16811 Remove unused variable `cluster'.
16812 (shadow-copy-file): Remove unused variable `i'.
16813 (shadow-noquery, shadow-clusters, shadow-site-cluster)
16814 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
16815 (shadow-define-literal-group, shadow-define-regexp-group)
16816 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
16817
16818 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
16819 (shell): Use `called-interactively-p'.
16820 (shell-directory-tracker): Remove unused variable `chdir-failure'.
16821
16822 * simple.el (compilation-context-lines, comint-file-name-quote-list)
16823 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
16824 (delete-backward-char): Remove unused variable `ocol'.
16825 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
16826 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
16827 (event-apply-hyper-modifier, event-apply-shift-modifier)
16828 (event-apply-control-modifier, event-apply-meta-modifier):
16829 Mark unused parameters.
16830 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
16831 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
16832
16833 * speedbar.el (speedbar-ignored-directory-expressions)
16834 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
16835 (speedbar-find-file, speedbar-dir-follow)
16836 (speedbar-directory-buttons-follow, speedbar-tag-find)
16837 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
16838 (speedbar-buffers-line-directory, speedbar-buffer-click):
16839 Mark unused parameters.
16840 (speedbar-tag-file): Remove unused variable `mode'.
16841 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
16842
16843 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
16844
16845 * talk.el (talk): Remove unused variable `display'.
16846
16847 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
16848 (tar-write-region-annotate): Mark unused parameter.
16849
16850 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
16851 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
16852 Declare them, wrapped in `with-no-warnings' to avoid replacing one
16853 warning by another.
16854
16855 * time-stamp.el (time-stamp-string-preprocess):
16856 Remove unused variable `require-padding'.
16857
16858 * tree-widget.el (widget-glyph-enable): Declare.
16859 (tree-widget-action): Mark unused parameter.
16860
16861 * w32-fns.el (x-get-selection): Mark unused parameter.
16862 (autoload-make-program, generated-autoload-file): Declare.
16863
16864 * wdired.el (wdired-revert): Mark unused parameters.
16865 (wdired-xcase-word): Remove unused variable `err'.
16866
16867 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
16868 (whitespace-help-scroll): Remove unused variable `data-help'.
16869
16870 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
16871 (widget-image-insert, widget-after-change, default)
16872 (widget-default-format-handler, widget-default-notify)
16873 (widget-default-prompt-value, widget-info-link-action)
16874 (widget-url-link-action, widget-function-link-action)
16875 (widget-variable-link-action, widget-file-link-action)
16876 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
16877 (widget-field-prompt-internal, widget-field-action, widget-field-match)
16878 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
16879 (widget-insert-button-action, widget-delete-button-action, visibility)
16880 (widget-documentation-link-action, widget-documentation-string-action)
16881 (widget-const-prompt-value, widget-regexp-match, symbol)
16882 (widget-coding-system-prompt-value)
16883 (widget-key-sequence-value-to-external, sexp)
16884 (widget-sexp-value-to-internal, character, vector, cons)
16885 (widget-choice-prompt-value, widget-boolean-prompt-value)
16886 (widget-color--choose-action): Mark unused parameters.
16887 (widget-item-match-inline, widget-choice-match-inline)
16888 (widget-checklist-match, widget-checklist-match-inline)
16889 (widget-group-match): Rename parameter VALUES to VALS.
16890 (widget-field-value-set): Remove unused variable `size'.
16891 (widget-color-action): Remove unused variables `value' and `start'.
16892
16893 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
16894 variable `dir'. Doc fix.
16895 (windmove-find-other-window): Don't pass it.
16896
16897 * window.el (count-windows): Mark unused parameter.
16898 (bw-adjust-window): Remove unused variable `err'.
16899
16900 * woman.el (woman-file-name): Remove unused variable `default'.
16901 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
16902 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
16903 (global-font-lock-mode): Declare.
16904 (woman-decode-region): Mark unused parameter.
16905 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
16906
16907 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
16908 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
16909 (x-dnd-handle-moz-url): Remove unused variable `title'.
16910 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
16911
16912 * xml.el (xml-parse-tag, xml-parse-attlist):
16913 Remove unused variable `pos'.
16914
16915 2011-04-19 Glenn Morris <rgm@gnu.org>
16916
16917 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
16918 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
16919 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
16920 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
16921 * calendar/cal-html.el (cal-html-insert-minical):
16922 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
16923 (calendar-mark-date-pattern):
16924 Prefix "unused" locals.
16925
16926 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
16927 optional argument `style'.
16928
16929 * calendar/appt.el (appt-make-list):
16930 * calendar/cal-china.el (calendar-chinese-date-string):
16931 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
16932 (diary-hebrew-yahrzeit):
16933 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
16934 * calendar/calendar.el (calendar-generate-window):
16935 * calendar/time-date.el (time-to-days):
16936 Remove unused local variables.
16937
16938 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
16939
16940 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
16941 glyphless-char-display table.
16942 (tabulated-list-glyphless-char-display): New var.
16943
16944 2011-04-18 Sam Steingold <sds@gnu.org>
16945
16946 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
16947 to acknowledgments.
16948
16949 2011-04-17 Glenn Morris <rgm@gnu.org>
16950
16951 * calendar/diary-lib.el (diary-sexp-entry):
16952 * calendar/holidays.el (holiday-sexp):
16953 Set debug-on-error rather than the removed stack-trace-on-error.
16954
16955 2011-04-16 Glenn Morris <rgm@gnu.org>
16956
16957 * progmodes/f90.el: Use lexical-binding.
16958 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
16959
16960 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16961
16962 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
16963 (mail-mode): Setup mailalias completion here instead.
16964 * mail/mailalias.el: Use lexical-binding.
16965 (pattern, mailalias-done): Declare dynamic.
16966 (mail-completion-at-point-function): New function, from mail-complete.
16967 (mail-complete): Use it.
16968 (mail-completion-expand): New function.
16969 (mail-get-names): Use it.
16970 (mail-directory, mail-directory-process, mail-directory-stream):
16971 Don't use `pattern' for lexically bound arg.
16972
16973 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
16974
16975 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
16976 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
16977 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
16978
16979 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
16980 (byte-save-window-excursion, byte-temp-output-buffer-setup)
16981 (byte-interactive-p): Define them again, for use when inlining
16982 old code.
16983
16984 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
16985
16986 * loadup.el: Use `string-to-number', not `string-to-int'.
16987
16988 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16989
16990 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
16991 gud-gdb-complete-command.
16992 (gud-gdb-completions): New function, from gud-gdb-complete-command.
16993 (gud-gdb-completion-at-point): New function.
16994 (gud-gdb-completions): Remove.
16995
16996 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
16997
16998 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
16999 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
17000 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
17001 whether `executable-find' is bound.
17002
17003 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
17004
17005 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
17006
17007 * minibuffer.el (completion-in-region-mode-predicate)
17008 (completion-in-region-mode--predicate): New vars.
17009 (completion-in-region, completion-in-region--postch)
17010 (completion-in-region-mode): Use them.
17011 (completion--capf-wrapper): Also return the hook function.
17012 (completion-at-point, completion-help-at-point):
17013 Adjust and provide a predicate.
17014
17015 Preserve arg names for advice of subr and lexical functions (bug#8457).
17016 * help-fns.el (help-function-arglist): Consolidate the subr and
17017 new-byte-code cases. Add argument `preserve-names' to extract names
17018 from the docstring when needed.
17019 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
17020 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
17021 (ad-arglist): Use help-function-arglist's new arg.
17022 (ad-definition-type): Use cond.
17023
17024 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
17025
17026 * autorevert.el (auto-revert-handler):
17027 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
17028 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
17029 Don't quote lambda.
17030
17031 * image-mode.el (image-transform-set-scale):
17032 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
17033
17034 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17035
17036 * net/network-stream.el (network-stream-open-starttls): Only do
17037 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
17038 Upgrades via gnutls-cli are too slow to be done opportunistically.
17039
17040 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
17041
17042 * dframe.el (dframe-current-frame): Remove spurious quote.
17043
17044 2011-04-12 Glenn Morris <rgm@gnu.org>
17045
17046 * calendar/cal-tex.el (cal-tex-end-document):
17047 Try to automatically use latin1 input if needed.
17048
17049 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
17050 Don't try to cons a mark onto an empty element.
17051
17052 2011-04-11 Leo Liu <sdl.web@gmail.com>
17053
17054 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
17055 buffers.
17056 (ido-kill-buffer-at-head): Support killing virtual buffers.
17057
17058 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
17059
17060 * minibuffer.el (completion-show-inline-help): New var.
17061 (completion--do-completion, minibuffer-complete)
17062 (minibuffer-force-complete, minibuffer-complete-word):
17063 Inhibit minibuffer messages if completion-show-inline-help is nil.
17064
17065 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
17066 to avoid interference from inline help (Bug#5849).
17067
17068 2011-04-10 Leo Liu <sdl.web@gmail.com>
17069
17070 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
17071 Fix typo.
17072
17073 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
17074
17075 * image-mode.el (image-toggle-display-image): Signal an error if
17076 not in Image mode.
17077 (image-transform-mode, image-transform-resize)
17078 (image-transform-set-rotation): Doc fix.
17079 (image-transform-set-resize): Delete.
17080 (image-transform-set-scale, image-transform-fit-to-height)
17081 (image-transform-fit-to-width): Handle image-toggle-display-image
17082 and image-transform-resize directly.
17083
17084 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
17085
17086 * doc-view.el (doc-view-fit-width-to-window)
17087 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
17088 New functions for fitting the shown image to the Emacs window size.
17089 (doc-view-mode-map): Add bindings for the new functions.
17090
17091 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
17092
17093 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
17094 Fix typo in docstring.
17095
17096 2011-04-08 Eli Zaretskii <eliz@gnu.org>
17097
17098 * files.el (file-size-human-readable): Produce one digit after
17099 decimal, like "ls -lh" does.
17100
17101 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
17102 the file size representation.
17103
17104 * simple.el (list-processes): If async subprocesses are not
17105 available, error out with a clear error message.
17106
17107 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
17108
17109 * help.el (help-form-show): New function, to be called from C.
17110 Put help-form output in a buffer named differently than *Help*.
17111
17112 2011-04-08 Eli Zaretskii <eliz@gnu.org>
17113
17114 * files.el (file-size-human-readable): New function.
17115
17116 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
17117 computing the representation inline. Don't require `cl'.
17118
17119 2011-04-08 Glenn Morris <rgm@gnu.org>
17120
17121 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
17122
17123 * net/browse-url.el (browse-url-firefox):
17124 Test system-type, not system-configuration.
17125
17126 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
17127 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
17128 Use log-edit-empty-buffer-p. (Bug#7598)
17129
17130 * net/rlogin.el (rlogin-process-connection-type): Simplify.
17131 (rlogin-mode-map): Initialize in the defvar.
17132 (rlogin): Use ignore-errors.
17133
17134 * replace.el (occur-mode-map): Some fixes for menu items.
17135
17136 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
17137
17138 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
17139
17140 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17141
17142 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
17143 issuing unused warnings.
17144
17145 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
17146 macro directly.
17147
17148 * simple.el: Lisp reimplement of list-processes. Based on an
17149 earlier reimplementation by Leo Liu, but using tabulated-list.el.
17150 (process-menu-mode): New major mode.
17151 (list-processes--refresh, list-processes):
17152 (process-menu-visit-buffer): New functions.
17153
17154 * files.el (save-buffers-kill-emacs): Don't assume any return
17155 value of list-processes, which is undocumented anyway.
17156
17157 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17158
17159 * emacs-lisp/tabulated-list.el: New file.
17160
17161 * emacs-lisp/package.el: Use Tabulated List mode.
17162 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
17163 (package-menu-mode): Derive from tabulated-list-mode. Set up the
17164 table format using Tabulated List mode variables.
17165 (package--push): New macro, replacing package-list-maybe-add.
17166 (package-menu--generate): Use package--push. Renamed from
17167 package--generate-package-list.
17168 (package-menu-refresh, list-packages): Use it.
17169 (package-menu--print-info): Rename from package-print-package.
17170 Return insertion data instead of inserting it directly.
17171 (package-menu-describe-package, package-menu-execute):
17172 Use tabulated-list-get-id.
17173 (package-menu-mark-delete, package-menu-mark-install)
17174 (package-menu-mark-unmark, package-menu-backup-unmark)
17175 (package-menu-mark-obsolete-for-deletion):
17176 Use tabulated-list-put-tag.
17177 (package--list-packages, package-menu-revert)
17178 (package-menu-get-package, package-menu-get-version)
17179 (package-menu-sort-by-column): Functions deleted.
17180 (package-menu-package-list, package-menu-sort-key): Vars deleted.
17181 (package-menu--status-predicate, package-menu--version-predicate)
17182 (package-menu--name-predicate)
17183 (package-menu--description-predicate): Handle arguments in the
17184 Tabulated List format.
17185 (package-list-packages-no-fetch): Call list-packages.
17186
17187 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
17188
17189 * files.el (after-find-file-from-revert-buffer): Remove variable.
17190 (after-find-file): Don't bind it.
17191 (revert-buffer-in-progress-p): New variable.
17192 (revert-buffer): Bind it.
17193 Pass nil for `after-find-file-from-revert-buffer'.
17194
17195 * saveplace.el (save-place-find-file-hook): Use new variable
17196 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
17197
17198 2011-04-06 Glenn Morris <rgm@gnu.org>
17199
17200 * Makefile.in (AUTOGEN_VCS): New variable.
17201 (autoloads): Use $AUTOGEN_VCS.
17202
17203 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
17204 * calendar/calendar.el (calendar-mode-map):
17205 Check for toolkit scroll bars. (Bug#8305)
17206
17207 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
17208
17209 * minibuffer.el (completion-in-region--postch)
17210 (completion-in-region-mode): Remove unnecessary messages.
17211
17212 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
17213
17214 * font-lock.el (font-lock-refresh-defaults):
17215 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
17216 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
17217
17218 * info.el (Info-directory-list, Info-read-node-name-2)
17219 (Info-split-parameter-string): Doc fixes.
17220 (Info-virtual-nodes): Reflow docstring.
17221 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
17222 (Info-apropos-toc-nodes, info-finder, Info-get-token)
17223 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
17224 Fix typos in docstrings.
17225 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
17226 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
17227 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
17228 (Info-restore-desktop-buffer): Mark unused parameters.
17229 (Info-directory-find-file, Info-directory-find-node)
17230 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
17231 (Info-virtual-index-find-node, Info-apropos-find-file)
17232 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
17233 Mark unused parameters; fix typos in docstrings.
17234 (Info-virtual-index): Remove unused local variable `nodename'.
17235
17236 2011-04-05 Deniz Dogan <deniz@dogan.se>
17237
17238 * net/rcirc.el: Update my e-mail address.
17239 (rcirc-mode-map): Remove M-o binding.
17240
17241 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
17242
17243 * startup.el (command-line): Save the cursor's theme-face
17244 directly, instead of using face-override-spec.
17245
17246 * custom.el (load-theme): Minor optimization in assigning faces.
17247
17248 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
17249
17250 * help-fns.el (describe-variable): Complete all variables having
17251 documentation, including keywords.
17252 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
17253
17254 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
17255
17256 Convert to lexical-binding.
17257
17258 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
17259 (bs--get-marked-string, bs--get-modified-string)
17260 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
17261 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
17262 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
17263
17264 * ehelp.el (electric-help-execute-extended)
17265 (electric-help-ctrl-x-prefix):
17266 * hexl.el (hexl-revert-buffer-function):
17267 * linum.el (linum-after-change, linum-after-scroll):
17268 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
17269
17270 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
17271
17272 2011-04-04 Daiki Ueno <ueno@unixuser.org>
17273
17274 * epa-dired.el:
17275 * epa-mail.el:
17276 * epa-hook.el:
17277 * epa-file.el:
17278 * epa.el:
17279 * epg.el: Use lexical binding.
17280
17281 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
17282
17283 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
17284
17285 * textmodes/flyspell.el (flyspell-word): Recognize default
17286 dictionary case for flyspell-mark-duplications-exceptions.
17287 Use regexp matching for languages.
17288 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
17289 default dictionary (Bug#7926).
17290
17291 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
17292
17293 * emacs-lisp/package.el (package--with-work-buffer):
17294 Recognize https URLs.
17295
17296 * net/network-stream.el: Move from gnus/proto-stream.el.
17297 Change prefix to network-stream throughout.
17298 (open-protocol-stream): Merge into open-network-stream, leaving
17299 open-protocol-stream as an alias. Handle nil BUFFER args.
17300
17301 * subr.el (open-network-stream): Move to net/network-stream.el.
17302
17303 2011-04-02 Glenn Morris <rgm@gnu.org>
17304
17305 * find-dired.el (find-exec-terminator): New option.
17306 (find-ls-option): Test for -ls support.
17307 (find-ls-subdir-switches): Test for -b in find-ls-option.
17308 (find-dired, find-grep-dired): Doc fixes.
17309 (find-dired): Use find-exec-terminator.
17310
17311 * find-dired.el (find-ls-option, find-ls-subdir-switches)
17312 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
17313 (find-name-arg): Remove purecopy.
17314
17315 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
17316 (grep-compute-defaults): Check for `-exec COMMAND +' support.
17317 Set grep-find-use-xargs, grep-find-command, and grep-find-template
17318 accordingly. Don't add the null-device if not needed.
17319
17320 * files.el (save-some-buffers): Doc fix.
17321
17322 2011-04-02 Eli Zaretskii <eliz@gnu.org>
17323
17324 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
17325
17326 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
17327
17328 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
17329 Use `dolist' rather than `mapcar'.
17330
17331 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
17332
17333 Add lexical binding.
17334
17335 * subr.el (apply-partially): Use new closures rather than CL.
17336 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
17337 (dolist, dotimes): Use slightly different expansion for lexical code.
17338 (functionp): Move to C.
17339 (letrec): New macro.
17340 (with-wrapper-hook): Use it and apply-partially instead of CL.
17341 (eval-after-load): Preserve lexical-binding.
17342 (save-window-excursion, with-output-to-temp-buffer): Turn them
17343 into macros.
17344
17345 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
17346
17347 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
17348 than the arglist.
17349 (help-add-fundoc-usage): Don't add `Not documented'.
17350 (help-function-arglist): Handle closures, subroutines, and new
17351 byte-code-functions.
17352 (help-make-usage): Remove leading underscores.
17353 (describe-function-1): Handle closures.
17354 (describe-variable): Use special-variable-p for completion.
17355
17356 * files.el (lexical-binding): Declare safe.
17357
17358 * emacs-lisp/pcase.el: Don't use destructuring-bind.
17359 (pcase--memoize): Rename from pcase-memoize. Change weakness.
17360 (pcase): Add `let' pattern.
17361 Change memoization so it actually works.
17362 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
17363 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
17364 <let>: New case.
17365
17366 * emacs-lisp/macroexp.el: Use lexical binding.
17367 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
17368 Don't convert ' to #' without checking that it's indeed quoting
17369 a lambda.
17370
17371 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
17372 Use eval-sexp-add-defvars.
17373 (eval-sexp-add-defvars): New fun.
17374
17375 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
17376
17377 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
17378 Don't autoload.
17379 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
17380 than the internal `byte-compile-lambda'.
17381 (defmethod): Don't hide code under quotes.
17382 (eieio-defmethod): New `code' argument.
17383
17384 * emacs-lisp/eieio-comp.el: Remove.
17385
17386 * emacs-lisp/edebug.el (edebug-eval-defun)
17387 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
17388 (edebug-toggle): Avoid `eval'.
17389
17390 * emacs-lisp/disass.el (disassemble-internal): Handle new
17391 `closure' objects.
17392 (disassemble-1): Handle new byte codes.
17393
17394 * emacs-lisp/cl.el (pushnew): Silence warning.
17395
17396 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
17397 (cl-byte-compile-throw): Remove.
17398 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
17399
17400 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
17401 closures.
17402
17403 * emacs-lisp/cconv.el: New file.
17404
17405 * emacs-lisp/bytecomp.el: Use lexical binding instead of
17406 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
17407 (byte-compile-initial-macro-environment):
17408 Handle declare-function here.
17409 (byte-compile--lexical-environment): New var.
17410 (byte-stack-ref, byte-stack-set, byte-discardN)
17411 (byte-discardN-preserve-tos): New lap codes.
17412 (byte-interactive-p): Don't use any more.
17413 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
17414 New macros.
17415 (byte-compile-lapcode): Use them and handle new lap codes.
17416 (byte-compile-obsolete): Remove.
17417 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
17418 (byte-compile-arglist-warn): Check late def of inlinable funs.
17419 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
17420 since they should have been expanded by now.
17421 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
17422 (byte-compile-from-buffer): Remove unused second arg.
17423 (byte-compile-preprocess): New function.
17424 (byte-compile-toplevel-file-form): New function to distinguish
17425 file-form calls from outside from file-form calls from hunk-handlers.
17426 (byte-compile-file-form): Simplify.
17427 (byte-compile-file-form-defsubst): Remove.
17428 (byte-compile-file-form-defmumble): Simplify now that
17429 byte-compile-lambda always returns a byte-code-function.
17430 (byte-compile): Preprocess.
17431 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
17432 Remove, not used any more.
17433 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
17434 (byte-compile-make-args-desc): New funs.
17435 (byte-compile-lambda): Handle lexical functions. Always return
17436 a byte-code-function.
17437 (byte-compile-reserved-constants): New var, to make up room for
17438 closed-over variables.
17439 (byte-compile-constants-vector): Obey it.
17440 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
17441 (byte-compile-macroexpand-declare-function): New function.
17442 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
17443 byte-code-functions.
17444 (byte-compile-form): Check obsolescence here.
17445 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
17446 (byte-compile-variable-ref): Remove.
17447 (byte-compile-dynamic-variable-op): New fun.
17448 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
17449 (byte-compile-variable-set): New funs.
17450 (byte-compile-discard): Add 2 args.
17451 (byte-compile-stack-ref, byte-compile-stack-set)
17452 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
17453 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
17454 macroexpand-all instead.
17455 (byte-compile-quote-form): Remove.
17456 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
17457 (byte-compile-bind, byte-compile-unbind): New funs.
17458 (byte-compile-let): Handle let* and lexical binding.
17459 (byte-compile-let*): Remove.
17460 (byte-compile-catch, byte-compile-unwind-protect)
17461 (byte-compile-track-mouse, byte-compile-condition-case):
17462 Handle a new :fun-body form, used for lexical scoping.
17463 (byte-compile-save-window-excursion)
17464 (byte-compile-with-output-to-temp-buffer): Remove.
17465 (byte-compile-defun): Simplify.
17466 (byte-compile-stack-adjustment): New fun.
17467 (byte-compile-out): Use it.
17468 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
17469
17470 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
17471 handler any more.
17472
17473 * emacs-lisp/byte-opt.el: Use lexical binding.
17474 (byte-inline-lapcode): Remove (to bytecomp).
17475 (byte-compile-inline-expand): Pay attention to inlining to/from
17476 lexically bound code.
17477 (byte-compile-unfold-lambda): Don't handle byte-code-functions
17478 any more.
17479 (byte-optimize-form-code-walker): Don't handle save-window-excursion
17480 any more and don't call compiler-macros.
17481 (byte-compile-splice-in-already-compiled-code): Remove.
17482 (byte-code): Don't inline any more.
17483 (disassemble-offset): Receive `bytes' as argument rather than via
17484 dynamic scoping.
17485 (byte-compile-tag-number): Declare before first use.
17486 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
17487 `return' even if make-spliceable.
17488 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
17489 obsolete interactive-p.
17490 (byte-optimize-lapcode): Optimize new lap-codes.
17491 Don't trip up on new form of `byte-constant' lap code.
17492
17493 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
17494
17495 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
17496
17497 * custom.el (custom-initialize-default, custom-declare-variable):
17498 Use `defvar'.
17499
17500 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
17501 New variables.
17502 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
17503 (COMPILE_FIRST): Add macroexp and cconv.
17504 * makefile.w32-in: Mirror changes in Makefile.in.
17505
17506 * vc/cvs-status.el:
17507 * vc/diff-mode.el:
17508 * vc/log-edit.el:
17509 * vc/log-view.el:
17510 * vc/smerge-mode.el:
17511 * textmodes/bibtex-style.el:
17512 * textmodes/css-mode.el:
17513 * startup.el:
17514 * uniquify.el:
17515 * minibuffer.el:
17516 * newcomment.el:
17517 * reveal.el:
17518 * server.el:
17519 * mpc.el:
17520 * emacs-lisp/smie.el:
17521 * doc-view.el:
17522 * dired.el:
17523 * abbrev.el: Use lexical binding.
17524
17525 2011-04-01 Eli Zaretskii <eliz@gnu.org>
17526
17527 * info.el (info-display-manual): New function.
17528
17529 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
17530
17531 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
17532
17533 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
17534
17535 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
17536 an entry for that server in rcirc-authinfo. (Bug#8385)
17537
17538 2011-03-31 Glenn Morris <rgm@gnu.org>
17539
17540 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
17541
17542 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
17543
17544 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
17545
17546 * progmodes/python.el (python-default-interpreter)
17547 (python-python-command-args, python-jython-command-args)
17548 (python-which-shell, python-which-args, python-which-bufname)
17549 (python-file-queue, python-comint-output-filter-function)
17550 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
17551 variables and functions.
17552
17553 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
17554
17555 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
17556 (completion-in-region-mode): New minor mode.
17557 (completion-in-region): Use it.
17558 (completion-in-region--data, completion-in-region-mode-map): New vars.
17559 (completion-in-region--postch): New function.
17560 (completion--capf-misbehave-funs, completion--capf-safe-funs):
17561 New vars.
17562 (completion--capf-wrapper): New function.
17563 (completion-at-point): Use it to track well-behavedness of
17564 hook functions.
17565 (completion-help-at-point): New command.
17566
17567 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
17568
17569 * vc/add-log.el (add-change-log-entry): Don't use whitespace
17570 syntax class to search for whitespace on a single line
17571 (Message-ID: <4D938140.4030905@redhat.com>).
17572
17573 2011-03-30 Leo Liu <sdl.web@gmail.com>
17574
17575 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
17576 New commands.
17577 (edit-abbrevs-map): Bind them here.
17578 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
17579
17580 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
17581
17582 * allout.el (allout-hide-by-annotation, allout-flag-region):
17583 Reduce possibility of overlay leakage by making them volatile.
17584
17585 * allout-widgets.el (allout-widgets-tally): Define as nil so the
17586 hash is not shared between buffers. Mode initialization is
17587 responsible for giving it a useful starting value.
17588 (allout-item-span): Reduce possibility of overlay leakage by
17589 making them volatile.
17590 (allout-widgets-count-buttons-in-region): Add diagnostic function
17591 for tracking down button overlay leaks.
17592
17593 2011-03-29 Leo Liu <sdl.web@gmail.com>
17594
17595 * ido.el (ido-read-internal): Use the default history var
17596 minibuffer-history if no HISTORY is specified.
17597
17598 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
17599
17600 * net/imap.el (imap-shell-open, imap-process-connection-type):
17601 Use imap-process-connection-type for 'shell' streams as well as
17602 Kerberos, SSL, other subprocesses.
17603
17604 2011-03-28 Leo Liu <sdl.web@gmail.com>
17605
17606 * abbrev.el (abbrev-table-empty-p): New function.
17607 (prepare-abbrev-list-buffer): Place empty abbrev tables after
17608 nonempty ones. (Bug#5937)
17609
17610 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
17611
17612 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
17613
17614 2011-03-27 Leo Liu <sdl.web@gmail.com>
17615
17616 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
17617 for foreground and background colors.
17618 (ansi-color-make-color-map): Adapt.
17619
17620 2011-03-25 Leo Liu <sdl.web@gmail.com>
17621
17622 * midnight.el (midnight-time-float): Remove. Note it calculates
17623 the microsecond component incorrectly and seconds-to-time does the
17624 same job.
17625 Remove redundant (require 'timer).
17626
17627 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
17628 (ido-completions): Remove unused arguments. (Bug#8329)
17629
17630 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
17631
17632 * minibuffer.el (completion--flush-all-sorted-completions):
17633 Remove itself from hook.
17634 (completion-at-point): Let the functions perform the completion
17635 immediately and return nil or t.
17636 * comint.el (comint-dynamic-complete-functions): Now identical to
17637 completion-at-point-functions.
17638 (comint-dynamic-list-input-ring): Remove unused var `index'.
17639 (comint--match-partial-filename, comint--unquote&expand-filename):
17640 New funs, split from comint-match-partial-filename.
17641 (comint-dynamic-complete): Use completion-at-point.
17642 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
17643
17644 2011-03-24 Drew Adams <drew.adams@oracle.com>
17645
17646 * thingatpt.el: Support `defun'.
17647
17648 2011-03-23 Leo Liu <sdl.web@gmail.com>
17649
17650 * abbrevlist.el: Move to obsolete/abbrevlist.el.
17651
17652 * help-mode.el (help-mode-finish): Tweak regexp.
17653
17654 2011-03-23 Glenn Morris <rgm@gnu.org>
17655
17656 * eshell/esh-opt.el (eshell-eval-using-options):
17657 Do not bind unused local variable `eshell-option-stub'.
17658
17659 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
17660
17661 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
17662
17663 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
17664 keymap variable in `with-no-warnings' to avoid a warning when the
17665 keymap has been already `defconst'ed.
17666
17667 2011-03-22 Leo Liu <sdl.web@gmail.com>
17668
17669 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
17670 encode all chars in abbrevs; otherwise use emacs-mule or
17671 utf-8-emacs. (Bug#8308)
17672
17673 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
17674
17675 * simple.el (backward-delete-char-untabify):
17676 Avoid warning about using `delete-backward-char'.
17677
17678 * image.el (image-type-file-name-regexps): Make it variable.
17679 `imagemagick-register-types' modifies it, and the user may want
17680 to add new extensions for known image types.
17681 (imagemagick-register-types): Throw error if not using ImageMagick.
17682
17683 2011-03-22 Leo Liu <sdl.web@gmail.com>
17684
17685 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
17686 located before rcirc-prompt-end-marker.
17687 (rcirc-complete): Error if point is not after rcirc prompt.
17688 Handle the case when table is nil.
17689 (rcirc-user-authenticated): Define to fix compiler warning.
17690
17691 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
17692
17693 * custom.el (custom--inhibit-theme-enable): Make it affect only
17694 custom-theme-set-variables and custom-theme-set-faces.
17695 (provide-theme): Ignore custom--inhibit-theme-enable.
17696 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
17697 (custom-enabling-themes): Delete variable.
17698 (enable-theme): Accept only loaded themes as arguments.
17699 Ignore the special custom-enabled-themes variable.
17700 (custom-enabled-themes): Forbid themes from setting this.
17701 Eliminate use of custom-enabling-themes.
17702 (custom-push-theme): Quote "changed" custom var entry.
17703
17704 2011-03-21 Leo Liu <sdl.web@gmail.com>
17705
17706 * ido.el (ido-read-internal): Add ido-selected to history instead
17707 of user input.
17708
17709 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
17710
17711 * subr.el (deferred-action-list, deferred-action-function):
17712 Mark obsolete.
17713
17714 2011-03-21 Leo Liu <sdl.web@gmail.com>
17715
17716 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
17717 change on 2011-02-13 (bug#8309).
17718
17719 * minibuffer.el (read-file-name-function): Change default value.
17720 (read-file-name--defaults): Rename from read-file-name-defaults.
17721 (read-file-name-default): Rename from read-file-name.
17722 (read-file-name): Call read-file-name-function.
17723
17724 2011-03-21 Glenn Morris <rgm@gnu.org>
17725
17726 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
17727 Doc fixes.
17728
17729 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
17730
17731 * cus-theme.el: Add missing provide statement.
17732 (customize-create-theme): Extract theme value correctly.
17733 (custom-theme-visit-theme): Autoload.
17734 (customize-create-theme): Prompt before inserting default faces.
17735
17736 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
17737
17738 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
17739 units and musical notes.
17740
17741 2011-03-20 Leo Liu <sdl.web@gmail.com>
17742
17743 * ido.el (ido-read-internal): Use completing-read-default.
17744 (ido-completing-read): Fix compatibility with completing-read.
17745
17746 2011-03-20 Christian Ohler <ohler@gnu.org>
17747
17748 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
17749 (ert-delete-all-tests): Use `called-interactively-p' rather than
17750 `interactive-p'.
17751 (ert--make-xrefs-region): Respect END.
17752
17753 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
17754
17755 * dired-aux.el (dired-create-directory): Signal an error if the
17756 directory already exists (Bug#8246).
17757
17758 * facemenu.el (list-colors-display): Call list-faces-display
17759 inside with-help-window.
17760 (list-colors-print): Use display property to align the final
17761 column, instead of checking window-width.
17762
17763 2011-03-19 Eli Zaretskii <eliz@gnu.org>
17764
17765 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
17766 windows-nt systems.
17767 (emerge-protect-metachars): Quote correctly for ms-dos and
17768 windows-nt systems.
17769
17770 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
17771
17772 * info.el (info-initialize): Replace all uses of `:' with
17773 path-separator for compatibility with non-Unix systems.
17774 Cache quoting of path-separator. (Bug#8258)
17775
17776 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
17777
17778 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
17779 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
17780 (mouse-avoidance-mode): Fix typos in docstrings.
17781
17782 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
17783
17784 * startup.el (package-subdirectory-regexp): Move from package.el.
17785 Omit \\` and \\', and let callers add them.
17786
17787 * emacs-lisp/package.el (package-strip-version)
17788 (package-load-all-descriptors): Add \\` and \\' to
17789 package-subdirectory-regexp before using it.
17790 (package-untar-buffer): New arg DIR; ensure that file untars only
17791 into this expected directory. Remove superfluous delete-region.
17792 (package-unpack): Caller changed.
17793 (package-tar-file-info): Use package-subdirectory-regexp.
17794
17795 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
17796
17797 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
17798 diff-mode-shared-map (bug#8284).
17799 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
17800
17801 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
17802
17803 * calendar/time-date.el (format-seconds): Use assoc instead of
17804 assoc-string, since assoc-string doesn't exist in XEmacs.
17805
17806 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
17807
17808 * custom.el (custom-known-themes): Reflow docstring.
17809 (custom-theme-load-path): Fix typo in docstring.
17810 (load-theme): Fix typo in error message.
17811 (custom-available-themes, custom-variable-theme-value):
17812 Use `let', not `let*'.
17813
17814 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
17815
17816 * calc/README: Mention inclusion of musical notes.
17817
17818 * calc/calc-units.el (calc-lu-quant): Rename from
17819 `calc-logunits-quantity'.
17820 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
17821 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
17822 (calc-db): Rename from `calc-dblevel'.
17823 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
17824 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
17825 (calc-np): Rename from `calc-nplevel'.
17826 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
17827 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
17828 (calc-lu-plus): Rename from `calc-logunits-add'.
17829 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
17830 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
17831 (calc-lu-minus): Rename from `calc-logunits-sub'.
17832 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
17833 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
17834 (calc-lu-times): Rename from `calc-logunits-mul'.
17835 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
17836 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
17837 (calc-lu-divide): Rename from `calc-logunits-div'.
17838 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
17839 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
17840
17841 * calc/calc-ext.el (calc-init-extensions): Update the names of the
17842 functions being autoloaded.
17843
17844 * calc/calc.el (calc-lu-power-reference): Rename from
17845 `calc-logunits-power-reference'.
17846 (calc-lu-field-reference): Rename from
17847 `calc-logunits-field-reference'.
17848
17849 * calc/calc-help.el (calc-l-prefix-help):
17850 Mention musical note functions.
17851
17852 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
17853
17854 * minibuffer.el (completion-all-sorted-completions):
17855 Use :completion-cycle-penalty text property if present.
17856
17857 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
17858
17859 * allout.el (allout-yank-processing): Adjust for new rebulleting
17860 regime so bullet being yanked is used without prompting the user
17861 for a choice.
17862
17863 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
17864
17865 * startup.el (command-line): Warn the user that _emacs is deprecated.
17866
17867 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
17868
17869 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
17870 (delphi-verbose, delphi-comment-face, delphi-string-face)
17871 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
17872 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
17873 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
17874 (delphi-new-comment-line, delphi-font-lock-defaults)
17875 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
17876 Fix typos in docstrings.
17877
17878 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
17879
17880 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
17881 Invert the roles of character and string values for INSTEAD, so a
17882 string is used for the more common case of a defaulting prompt.
17883
17884 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17885
17886 * progmodes/ruby-mode.el (ruby-backward-sexp):
17887 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
17888 * play/gamegrid.el (gamegrid-make-face):
17889 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
17890 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
17891 * notifications.el (notifications-notify):
17892 * net/xesam.el (xesam-search-engines):
17893 * net/quickurl.el (quickurl-list-insert):
17894 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
17895
17896 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
17897
17898 * startup.el (command-line): Update package subdirectory regexp.
17899
17900 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17901
17902 * allout.el (allout-abbreviate-flattened-numbering)
17903 (allout-mode-deactivate-hook): Fix up obsolescence "date".
17904
17905 * subr.el (read-char-choice): Only show the cursor after the prompt,
17906 not after the answer.
17907
17908 2011-03-15 Kevin Ryde <user42@zip.com.au>
17909
17910 * help-fns.el (variable-at-point): Skip leading quotes, if any
17911 (bug#8253).
17912
17913 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17914
17915 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
17916 warning message.
17917
17918 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
17919
17920 * shell.el (shell): When called interactively, offer to change the
17921 shell file name on remote hosts.
17922
17923 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
17924
17925 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
17926 integration for LDAP parameters. The host, base, user or binddn,
17927 and secret tokens can be specified in a netrc file, for instance.
17928 This is optional because an `auth-source' parameter must be
17929 specified in the search attributes.
17930
17931 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
17932
17933 * help.el (describe-mode): Link to the mode's definition (bug#8185).
17934
17935 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17936
17937 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
17938 into declaration. Remove redundant and harmful binding.
17939
17940 2011-03-12 Eli Zaretskii <eliz@gnu.org>
17941
17942 * files.el (file-ownership-preserved-p): Pass `integer' as an
17943 explicit 2nd argument to `file-attributes'. If the file's owner
17944 is the Administrators group on Windows, and the current user is
17945 Administrator, consider that a match.
17946
17947 * server.el (server-ensure-safe-dir): Consider server directory
17948 safe on MS-Windows if its owner is the Administrators group while
17949 the current Emacs user is Administrator. Use `=' to compare
17950 numerical UIDs, since they could be integers or floats.
17951
17952 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
17953
17954 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
17955
17956 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
17957
17958 Sync with Tramp 2.2.1.
17959
17960 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
17961
17962 * net/trampver.el: Update release number.
17963
17964 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17965
17966 * progmodes/compile.el (compilation--previous-directory): Fix up
17967 various nil/dead-marker mismatches (bug#8014).
17968 (compilation-directory-properties, compilation-error-properties):
17969 Don't call it at a position past the one we're about to change.
17970
17971 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
17972 Disable obsolescence warnings in the file that declares it.
17973
17974 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
17975
17976 * allout-widgets.el (allout-widgets-tally):
17977 Initialize allout-widgets-tally as a hash table rather than nil to
17978 prevent mode-line redisplay warnings. Also, clarify the module
17979 description and fix a comment typo.
17980
17981 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
17982
17983 * help-fns.el (describe-variable): Don't complete keywords.
17984 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
17985
17986 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
17987
17988 * emacs-lisp/package.el (package-version-join): Impose a standard
17989 string representation for pre/alpha/beta version lists.
17990 (package-unpack-single): Standardize the directory name by passing
17991 it through package-version-join.
17992 (package-strip-rcs-id): Accept any version string that does not
17993 signal an error in version-to-list.
17994
17995 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
17996
17997 * simple.el (delete-trailing-whitespace): Return nil for the
17998 benefit of `write-file-functions'.
17999
18000 2011-03-10 Glenn Morris <rgm@gnu.org>
18001
18002 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
18003
18004 * vc/vc-git.el (vc-git-program): New option.
18005 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
18006 (vc-git--call): Use it.
18007
18008 * eshell/esh-util.el (eshell-condition-case): Doc fix.
18009
18010 * cus-edit.el (Custom-newline): If no button at point, look
18011 for a subgroup button at start-of-line. (Bug#2298)
18012
18013 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
18014
18015 2011-03-10 Julien Danjou <julien@danjou.info>
18016
18017 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
18018 `cursor-type' is nil.
18019
18020 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
18021
18022 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
18023
18024 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
18025
18026 * allout.el: Change so yank of distinctive-bullet items
18027 preserves the existing header prefix, rebulleting it if necessary,
18028 rather than replacing it. This is necessary for proper operation
18029 of cooperative addons like allout-widgets.
18030 (allout-make-topic-prefix, allout-rebullet-heading):
18031 Change SOLICIT arg to INSTEAD, and interpret additionally a string
18032 value as alternate bullet to be used, instead of prompting the user
18033 for a bullet character.
18034
18035 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
18036
18037 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
18038 Do not use `tramp-file-name-port', because this returns also
18039 `tramp-default-port'.
18040
18041 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
18042
18043 * net/rcirc.el (rcirc-handler-001): Remove useless
18044 with-rcirc-process-buffer.
18045 (rcirc-check-auth-status): Swap arguments to string-match.
18046
18047 2011-03-09 Glenn Morris <rgm@gnu.org>
18048
18049 * shell.el (shell-mode):
18050 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
18051
18052 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
18053 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
18054
18055 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
18056
18057 * emacs-lisp/package.el (package-refresh-contents)
18058 (package-menu-execute): Use condition-case-no-debug.
18059
18060 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
18061
18062 * simple.el (shell-command-to-string): Use `process-file'.
18063
18064 * emacs-lisp/package.el (package-tar-file-info): Handle also
18065 remote files.
18066
18067 * emacs-lisp/package-x.el (package-upload-buffer-internal):
18068 Use `equal' for upload base check.
18069
18070 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
18071
18072 * textmodes/texinfo.el (texinfo-environments):
18073 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
18074
18075 2011-03-08 Glenn Morris <rgm@gnu.org>
18076
18077 * cus-start.el (cursor-in-non-selected-windows):
18078 Fix :set quoting oddness. (Bug#8192)
18079
18080 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
18081 in some setf expressions. (Bug#2159)
18082
18083 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
18084
18085 * custom.el (custom-available-themes): Return themes in
18086 alphabetical order.
18087
18088 See ChangeLog.15 for earlier changes.
18089
18090 ;; Local Variables:
18091 ;; coding: utf-8
18092 ;; End:
18093
18094 Copyright (C) 2011-2012 Free Software Foundation, Inc.
18095
18096 This file is part of GNU Emacs.
18097
18098 GNU Emacs is free software: you can redistribute it and/or modify
18099 it under the terms of the GNU General Public License as published by
18100 the Free Software Foundation, either version 3 of the License, or
18101 (at your option) any later version.
18102
18103 GNU Emacs is distributed in the hope that it will be useful,
18104 but WITHOUT ANY WARRANTY; without even the implied warranty of
18105 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18106 GNU General Public License for more details.
18107
18108 You should have received a copy of the GNU General Public License
18109 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.