]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Have smtpmail.el prefer the From: header for the MAIL FROM envelope
[gnu-emacs] / lisp / ChangeLog
1 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
4 over `user-mail-address' for the SMTP MAIL FROM envelope.
5 (smtpmail-via-smtp): Ditto.
6
7 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
8
9 * progmodes/ruby-mode.el: Clean up keybindings.
10 (ruby-mode-map): Don't bind ruby-electric-brace,
11 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
12 backward-kill-word, reindent-then-newline-and-indent.
13 (ruby-mark-defun): Remove.
14 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
15 (ruby-mode): Set local beginning-of-defun-function and
16 end-of-defun-function values.
17
18 2012-09-03 Martin Rudalics <rudalics@gmx.at>
19
20 * window.el (temp-buffer-window-setup-hook)
21 (temp-buffer-window-show-hook): New hooks.
22 (temp-buffer-window-setup, temp-buffer-window-show)
23 (with-temp-buffer-window): New functions.
24 (fit-window-to-buffer): Remove unused optional argument
25 OVERRIDE.
26 (special-display-popup-frame): Make sure the window used shows
27 BUFFER.
28
29 * help.el (temp-buffer-resize-mode): Fix doc-string.
30 (resize-temp-buffer-window): New optional argument WINDOW.
31
32 * files.el (recover-file, save-buffers-kill-emacs):
33 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
34
35 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
36
37 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
38 remote definition of `default-directory', ensure we can connect.
39
40 2012-09-02 Juri Linkov <juri@jurta.org>
41
42 Toggle whitespace matching mode with M-s SPC.
43 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
44
45 * isearch.el (search-whitespace-regexp): Doc fix.
46 Remove cons cell customization.
47 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
48 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
49 New variables.
50 (isearch-forward, isearch-forward-regexp): Doc fix.
51 (isearch-toggle-lax-whitespace): New command.
52 (search-forward-lax-whitespace, search-backward-lax-whitespace)
53 (re-search-forward-lax-whitespace)
54 (re-search-backward-lax-whitespace): New functions.
55 (isearch-whitespace-regexp): Remove function.
56 (isearch-query-replace): Let-bind replace-search-function and
57 replace-re-search-function.
58 (isearch-occur): Let-bind search-spaces-regexp according to the
59 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
60 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
61 condition for C-q SPC.
62 (isearch-search-fun-default): Use new functions mentioned above.
63 (isearch-search-forward, isearch-search-backward): Remove functions.
64 (isearch-search): Don't let-bind search-spaces-regexp.
65 (isearch-lazy-highlight-space-regexp): Remove variable.
66 (isearch-lazy-highlight-lax-whitespace)
67 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
68 (isearch-lazy-highlight-new-loop): Use them.
69 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
70
71 2012-09-02 Chong Yidong <cyd@gnu.org>
72
73 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
74
75 2012-09-02 Glenn Morris <rgm@gnu.org>
76
77 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
78
79 2012-09-01 Glenn Morris <rgm@gnu.org>
80
81 * term.el: Tidy up menu definitions.
82 (term-mode-map): Use easymenu for In/Out, Complete menus.
83 (term-pager-break-map): Initialize in the defvar.
84 (term-terminal-menu, term-signals-menu): Define with easymenu.
85 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
86 (term-pager-menu): New, extracted from term-process-pager.
87 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
88 (term-update-mode-line): Propertize line/char and page items.
89 (term-process-pager): Move keymap initialization elsewhere.
90
91 2012-09-01 Martin Rudalics <rudalics@gmx.at>
92
93 * window.el (switch-to-prev-buffer): Handle additional values of
94 BURY-OR-KILL argument. Don't switch in minibuffer window.
95 (switch-to-next-buffer): Don't switch in minibuffer window.
96 (quit-restore-window): New function based on quit-window.
97 Handle additional values of former KILL argument.
98 (quit-window): Call quit-restore-window with appropriate
99 interpretation of KILL argument.
100 (display-buffer-below-selected): New buffer display action
101 function.
102
103 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
104
105 * minibuffer.el (completion-at-point-functions): Complete docstring
106 (bug#12254).
107
108 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
109
110 Better seed support for (random).
111 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
112 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
113 * play/mpuz.el, play/tetris.el, play/zone.el:
114 * calc/calc-comb.el (math-init-random-base):
115 * play/blackbox.el (bb-init-board):
116 * play/life.el (life):
117 * server.el (server-use-tcp):
118 * type-break.el (type-break):
119 Remove unnecessary call to (random t).
120 * net/sasl.el (sasl-unique-id-function):
121 Change (random t) to (random), now that the latter is more random.
122 * play/life.el (life-initialized): Remove no-longer-needed var.
123
124 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
125
126 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
127 Consider frame's buffer predicate when choosing the buffer.
128 (Bug#12081)
129
130 2012-08-30 Richard Stallman <rms@gnu.org>
131
132 * simple.el (special-mode-map): Delete binding for `z'.
133
134 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
135
136 * progmodes/compile.el (compilation-always-kill): Doc fix.
137
138 2012-08-30 Chong Yidong <cyd@gnu.org>
139
140 * window.el (display-buffer-reuse-frames): Make the obsolescence
141 message more informative.
142
143 2012-08-30 Glenn Morris <rgm@gnu.org>
144
145 * paren.el (show-paren-delay):
146 Add a :set function. Doc fix. (Bug#12297)
147
148 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
149
150 * progmodes/compile.el (compilation-always-kill): New var.
151 (compilation-start): Use it.
152
153 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
154
155 * simple.el (read-only-mode): Move from files.el for bootstrapping.
156 * files.el (read-only-mode): Move to simple.el.
157
158 * files.el (read-only-mode): New minor mode.
159 (toggle-read-only): Use it and mark obsolete.
160 (find-file--read-only):
161 * vc/vc.el (vc-next-action, vc-checkout):
162 * vc/vc-cvs.el (vc-cvs-checkout):
163 * obsolete/vc-mcvs.el (vc-mcvs-update):
164 * ffap.el (ffap--toggle-read-only): Update callers.
165
166 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
167
168 * eshell/esh-ext.el (eshell-external-command): Do not examine
169 remote shell scripts. See
170 <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
171
172 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
173 "/usr/local/sbin".
174
175 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
176
177 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
178
179 2012-08-28 Leo Liu <sdl.web@gmail.com>
180
181 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
182 completion-at-point. (Bug#12220)
183
184 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
185
186 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
187
188 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
189
190 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
191 be buffer-local; add delete-trailing-whitespace (bug#12259).
192
193 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
194
195 * progmodes/hideif.el (hif-compress-define-list):
196 Fix typo. (Bug#11951)
197
198 2012-08-28 Dan Nicolaescu <dann@gnu.org>
199
200 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
201 buffer local setting.
202
203 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
204 rcirc-encode-coding-system.
205
206 2012-08-28 Leo Liu <sdl.web@gmail.com>
207
208 * net/rcirc.el (rcirc-split-message): New function.
209 (rcirc-send-message): Use it. (Bug#12051)
210
211 2012-08-28 Juri Linkov <juri@jurta.org>
212
213 * info.el (Info-fontify-node): Hide empty lines at the end of
214 the node. (Bug#12272)
215
216 2012-08-27 Drew Adams <drew.adams@oracle.com>
217
218 * dired.el (dired-pop-to-buffer): Make window start at beginning
219 of buffer (Bug#12281).
220
221 2012-08-26 Chong Yidong <cyd@gnu.org>
222
223 * window.el (special-display-regexps, special-display-frame-alist)
224 (special-display-buffer-names, special-display-function)
225 (display-buffer-reuse-frames): Mark as obsolete.
226
227 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
228
229 * help.el (help-print-return-message): Don't treat
230 display-buffer-reuse-frames specially.
231
232 2012-08-26 Chong Yidong <cyd@gnu.org>
233
234 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
235 New variable, replacing gdb-frame-parameters.
236 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
237 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
238 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
239 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
240 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
241 the functions directly with gdb-display-buffer-other-frame-action.
242 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
243 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
244 (gdb-display-stack-buffer, gdb-display-locals-buffer)
245 (gdb-display-registers-buffer): Define directly.
246 (def-gdb-display-buffer): Macro deleted.
247 (gdb-display-buffer): Remove second and third args, callers don't
248 use them. Defer to the default display-buffer behavior, apart
249 from making windows dedicated.
250 (gdb-setup-windows): Don't call display-buffer unnecessarily.
251
252 * progmodes/gud.el (gud-display-line): Just use display-buffer.
253
254 * window.el (display-buffer-pop-up-frame): Handle a
255 pop-up-frame-parameters alist entry.
256 (display-buffer): Document it.
257
258 2012-08-26 Chong Yidong <cyd@gnu.org>
259
260 * isearch.el (search-whitespace-regexp): Make string and nil
261 values apply to both ordinary and regexp search. Allow a cons
262 cell value to distinguish between the two.
263 (isearch-whitespace-regexp, isearch-search-forward)
264 (isearch-search-backward): New functions.
265 (isearch-occur, isearch-search-fun-default, isearch-search)
266 (isearch-lazy-highlight-new-loop): Use them.
267 (isearch-forward, isearch-forward-regexp): Doc fix.
268
269 2012-08-26 Chong Yidong <cyd@gnu.org>
270
271 * faces.el (help-argument-name): Always inherit from italic
272 (Bug#12213).
273
274 2012-08-25 Martin Rudalics <rudalics@gmx.at>
275
276 * window.el (window--even-window-heights): Even heights when
277 WINDOW and the selected window form a vertical combination.
278 (display-buffer-use-some-window): Provide that window used gets
279 sized back by quit-window. (Bug#11880) and (Bug#12091)
280
281 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
282
283 Fix file time stamp problem with bzr and CVS (Bug#12001).
284 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
285 in the file's time stamp, since the version control system loses
286 that information.
287
288 2012-08-22 Juri Linkov <juri@jurta.org>
289
290 * info.el (Info-fontify-node): Hide the suffix of the
291 Info file name in the header line. (Bug#12187)
292
293 2012-08-22 Glenn Morris <rgm@gnu.org>
294
295 * calendar/cal-tex.el (cal-tex-weekly-common):
296 Restore leading blank page.
297
298 2012-08-22 Le Wang <l26wang@gmail.com> (tiny change)
299
300 * misc.el (forward-to-word, backward-to-word): Activate or extend
301 the region under `shift-select-mode'. (Bug#12231)
302
303 2012-08-22 Bastien Guerry <bzg@gnu.org>
304
305 * progmodes/executable.el (executable-prefix): Set to "#!" instead
306 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
307 gives details on why the space is never needed.
308
309 2012-08-22 Martin Rudalics <rudalics@gmx.at>
310
311 * window.el (walk-window-tree, window-with-parameter):
312 New optional argument MINIBUF to control whether these functions
313 should run on the minibuffer window.
314 (window-at-side-list): Don't operate on minibuffer window.
315 (window-in-direction): Simplify and rewrite doc-string.
316 (window--size-ignore): Rename to window--size-ignore-p.
317 Update callers.
318 (display-buffer-in-atom-window, window--major-non-side-window)
319 (window--major-side-window, display-buffer-in-major-side-window)
320 (delete-side-window, display-buffer-in-side-window):
321 New functions.
322 (window--side-check, window-deletable-p, delete-window)
323 (delete-other-windows, split-window): Handle side windows and
324 atomic windows appropriately.
325 (window--display-buffer): Call display-buffer-record-window also
326 when the window buffer did not change.
327
328 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
329
330 * help-fns.el (help-fns--key-bindings):
331 Abbreviate non-symbol remap targets. (Bug#12174)
332
333 2012-08-22 Martin Rudalics <rudalics@gmx.at>
334
335 * dired.el (dired-mark-remembered): Don't clobber point.
336 (Bug#11795)
337
338 2012-08-22 Glenn Morris <rgm@gnu.org>
339
340 * progmodes/bug-reference.el (bug-reference): New custom group.
341 (bug-reference-bug-regexp): Make it a defcustom.
342
343 2012-08-22 Daiki Ueno <ueno@unixuser.org>
344
345 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
346 (js-paren-indent-offset, js-square-indent-offset)
347 (js-curly-indent-offset): Add :safe (Bug#12257).
348
349 2012-08-22 Edward O'Connor <hober0@gmail.com>
350
351 * json.el (json-key-format): Add error properties.
352 (json-encode-key): New function.
353 (json-encode-hash-table, json-encode-alist, json-encode-plist):
354 Use json-encode-key.
355
356 2012-08-22 Glenn Morris <rgm@gnu.org>
357
358 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
359 (cal-tex-leftday, cal-tex-rightday): Remove functions.
360 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
361 Update for above change.
362
363 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
364
365 * cus-face.el (custom-face-attributes): Fix customize type for the
366 :underline attribute. (Bug#11805)
367
368 2012-08-21 Martin Rudalics <rudalics@gmx.at>
369
370 * window.el (window-point-1, set-window-point-1): Remove.
371 (window-in-direction, record-window-buffer)
372 (set-window-buffer-start-and-point, split-window-below)
373 (window--state-get-1, display-buffer-record-window):
374 Replace calls to window-point-1 and set-window-point-1 by calls to
375 window-point and set-window-point respectively.
376
377 2012-08-21 Glenn Morris <rgm@gnu.org>
378
379 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
380 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
381 Use it.
382
383 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
384 (cal-tex-shortday): New function.
385 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
386 (cal-tex-cursor-filofax-daily): Use the above.
387
388 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
389 New functions.
390 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
391 (cal-tex-cursor-filofax-week): Use them.
392
393 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
394 New constants.
395 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
396 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
397
398 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
399 (cal-tex-end-document): Don't rely on buffer name.
400
401 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
402 Use cal-tex-vspace.
403 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
404 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
405 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
406 Use cal-tex-arg.
407
408 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
409 (cal-tex-cursor-week, cal-tex-cursor-week2)
410 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
411 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
412 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
413 (cal-tex-insert-preamble, cal-tex-b-document)
414 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
415 Improve cal-tex-cmd usage.
416
417 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
418 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
419 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
420 (cal-tex-weekly-paper): New function.
421 (cal-tex-cursor-week, cal-tex-cursor-week2)
422 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
423 (cal-tex-cursor-day): Use it.
424
425 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
426 (cal-tex-cursor-filofax-week): Remove leading blank page.
427
428 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
429 Add autoload cookie. For now at least, don't use color, since
430 no other cal-tex function does.
431
432 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
433 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
434 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
435
436 2012-08-21 Juri Linkov <juri@jurta.org>
437
438 * info.el (Info-file-attributes): New variable.
439 (info-insert-file-contents): Add file attributes to
440 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
441 `Info-toc-nodes' when previous modtime of the Info file is less
442 than new modtime.
443 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
444 of info.el. (Bug#12230)
445
446 2012-08-20 Glenn Morris <rgm@gnu.org>
447
448 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
449 * calendar/holidays.el (calendar-holiday-list):
450 Report errors with display-warning rather than beep'n'sleep.
451
452 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
453
454 * net/tramp.el (tramp-accept-process-output): Accept only output
455 from PROC. Otherwise, process filters and sentinels might be
456 confused. (Bug#12145)
457
458 2012-08-20 Chong Yidong <cyd@gnu.org>
459
460 * descr-text.el (describe-text-properties-1): Use overlays-in to
461 report on empty overlays (Bug#3322).
462
463 2012-08-20 Glenn Morris <rgm@gnu.org>
464
465 * mail/rmailout.el (rmail-output-read-file-name):
466 Trap and report errors in rmail-output-file-alist elements.
467
468 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
469 since most non-font-lock faces are not also variables).
470
471 2012-08-20 Edward Reingold <reingold@iit.edu>
472
473 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
474 New function. (Bug12160)
475
476 2012-08-19 Glenn Morris <rgm@gnu.org>
477
478 * mail/rmailout.el (rmail-output-read-file-name):
479 Fix previous change (when the alist is nil or does not match).
480
481 2012-08-19 Chong Yidong <cyd@gnu.org>
482
483 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
484 (Bug#12228).
485
486 2012-08-18 Chong Yidong <cyd@gnu.org>
487
488 * simple.el (yank-handled-properties): New defcustom.
489 (yank-excluded-properties): Add font-lock-face and category.
490 (yank): Doc fix.
491
492 * subr.el (remove-yank-excluded-properties):
493 Obey yank-handled-properties. The special handling of font-lock-face
494 and category is now done this way, instead of being hard-coded.
495 (insert-for-yank-1): Remove font-lock-face handling.
496 (yank-handle-font-lock-face-property)
497 (yank-handle-category-property): New function.
498
499 2012-08-17 Glenn Morris <rgm@gnu.org>
500
501 * mail/rmailout.el (rmail-output-read-file-name):
502 Check rmail-output-file-alist against the full message body
503 in the correct rmail buffer. (Bug#12214)
504
505 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
506
507 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
508 Eliminate superfluous prompt. (Bug#12203)
509
510 2012-08-17 Chong Yidong <cyd@gnu.org>
511
512 * mouse.el (mouse-appearance-menu): If x-select-font returns a
513 font spec, set the font directly (Bug#3228).
514
515 2012-08-17 Martin Rudalics <rudalics@gmx.at>
516
517 * window.el (delete-window): Fix last fix.
518
519 2012-08-16 Martin Rudalics <rudalics@gmx.at>
520
521 * window.el (window-valid-p): Move to window.c.
522 (window-child, window-child-count, window-last-child)
523 (window-normalize-window, window-combined-p)
524 (window-combinations, window-atom-root, window-min-size)
525 (window-sizable, window-sizable-p, window-size-fixed-p)
526 (window-min-delta, window-max-delta, window--resizable)
527 (window--resizable-p, window-resizable, window-total-size)
528 (window-full-height-p, window-full-width-p, window-body-size)
529 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
530 (minimize-window, window-deletable-p, delete-window)
531 (delete-other-windows, set-window-buffer-start-and-point)
532 (next-buffer, previous-buffer, split-window, balance-windows-2)
533 (set-window-text-height, window-buffer-height)
534 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
535 (truncated-partial-width-window-p): Minor code adjustments.
536 In doc-strings state whether the argument window has to denote a
537 live, valid or any window.
538
539 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
540
541 * progmodes/subword.el (subword-forward-function)
542 (subword-backward-function, subword-forward-regexp)
543 (subword-backward-regexp): New variables.
544 (subword-forward, subword-forward-internal, subword-backward-internal):
545 Use new variables, eg so that different "word" definitions
546 can be easily used. (Bug#11411)
547
548 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
549
550 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
551 for composite selectors.
552 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
553 operation just because we can't find a previous revision.
554
555 2012-08-15 Chong Yidong <cyd@gnu.org>
556
557 * frame.el (set-frame-font): Accept font objects.
558
559 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
560
561 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
562
563 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
564
565 * man.el (Man-overstrike-face, Man-underline-face)
566 (Man-reverse-face): Remove variables.
567 (Man-overstrike, Man-underline, Man-reverse): New faces.
568 (Man-fontify-manpage): Use them instead of the variables.
569 (Man-cleanup-manpage): Comment change.
570 (Man-ansi-color-map): New variable.
571 (Man-fontify-manpage): Use it.
572 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
573
574 Implement ANSI SGR parameters 22-27 (bug#12146).
575 * ansi-color.el (ansi-colors): Doc fix.
576 (ansi-color-context, ansi-color-context-region): Doc fix.
577 (ansi-color--find-face): New function.
578 (ansi-color-apply, ansi-color-apply-on-region): Use it.
579 Rename the local variable `face' to `codes' since it is now a list of
580 ansi codes. Doc fix.
581 (ansi-color-get-face): Remove.
582 (ansi-color-parse-sequence): New function, derived from
583 ansi-color-get-face.
584 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
585 codes 22-27.
586
587 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
588
589 * subr.el (read-passwd): Allow use from a minibuffer.
590
591 2012-08-14 Eli Zaretskii <eliz@gnu.org>
592
593 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
594 inside comments and strings as identifiers.
595
596 * progmodes/gud.el (gud-tooltip-print-command): Quote the
597 expression to evaluate. This allows to evaluate expressions with
598 embedded whitespace.
599 (gud-tooltip-tips): Add a blank before the newline in the
600 message-box text, for the benefit of message-box emulation on
601 MS-Windows.
602
603 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
604 messages from GDB, pop them up in a tooltip to give feedback to
605 user.
606 (gdb-tooltip-print-1): Quote the expression to evaluate.
607 This allows to evaluate expressions with embedded whitespace.
608 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
609 if the TTY name is nil or empty (which happens when communicating
610 with the inferior via pipes, e.g. on MS-Windows).
611 (gdb-internals): If GDB sends a "&\n" empty debugging message,
612 don't send that to the GUD buffer.
613
614 2012-08-14 Glenn Morris <rgm@gnu.org>
615
616 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
617 Optimize away setq-default with no args, as for setq. (Bug#12195)
618
619 2012-08-14 Chong Yidong <cyd@gnu.org>
620
621 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
622
623 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
624 (Bug#12085).
625
626 2012-08-14 Glenn Morris <rgm@gnu.org>
627
628 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
629
630 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
631
632 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
633 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
634 Use cached shell name.
635
636 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
637
638 * progmodes/python.el (python-shell-send-string):
639 (python-shell-send-setup-code): Do not use `format' with `message'.
640
641 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
642
643 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
644 (ruby-percent-literal-beg-re): New constant.
645 (ruby-syntax-general-delimiters-goto-beg): Rename to
646 `ruby-syntax-enclosing-percent-literal', improve literal type check.
647 (ruby-syntax-propertize-general-delimiters): Rename to
648 `ruby-syntax-propertize-percent-literal', it's a shorter and more
649 popular term. Adjust comments everywhere.
650 (ruby-syntax-propertize-percent-literal): Only propertize when not
651 inside a simple string or comment. When the literal is unclosed,
652 leave the text after it unpropertized.
653 (ruby-syntax-methods-before-regexp): New constant.
654 (ruby-syntax-propertize-function): Use it to recognize regexps.
655 Don't look at the text after regexp, just use the whitelist.
656
657 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
658
659 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
660 non-nil always load the compiled file if it exists. (Bug#12197)
661
662 2012-08-14 Chong Yidong <cyd@gnu.org>
663
664 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
665 (hi-lock-set-pattern): When deciding whether to use font lock or
666 overlays, look at font-lock-mode instead of font-lock-fontified
667 (Bug#12168).
668 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
669 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
670
671 2012-08-14 Daiki Ueno <ueno@unixuser.org>
672
673 * subr.el (internal--after-with-selected-window): Fix typo
674 (Bug#12193).
675
676 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
677
678 Use `completion-table-dynamic' for completion functions.
679 * progmodes/python.el
680 (python-shell-completion--do-completion-at-point)
681 (python-shell-completion--get-completions):
682 Remove functions.
683 (python-shell-completion-complete-at-point): New function.
684 (python-completion-complete-at-point): Use it.
685
686 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
687
688 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
689 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
690
691 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
692
693 * subr.el (function-get): Refine `autoload' arg so it can also
694 autoload functions for gv.el (bug#12191).
695 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
696 autoloads macros.
697
698 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
699 Prefer pcase-let over destructuring-bind.
700 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
701 Also, remove whitespace as we go, rather than after accumulating the
702 various places.
703
704 * subr.el (internal--before-with-selected-window)
705 (internal--after-with-selected-window): Fix typo seleted->selected.
706 (with-selected-window): Adjust callers.
707 Reported by Dmitry Gutov <dgutov@yandex.ru>.
708
709 2012-08-13 Bastien Guerry <bzg@gnu.org>
710
711 * window.el (special-display-popup-frame): Minor docstring
712 enhancement. (Bug#12172)
713
714 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
715
716 * tar-mode.el (tar-header-data-end): Only ignore size for files of
717 type 1-6.
718 (tar-header-block-summarize, tar-get-descriptor): Handle pax
719 extended headers.
720
721 * files.el (hack-local-variables-filter): Remove useless eval.
722
723 2012-08-13 Martin Rudalics <rudalics@gmx.at>
724
725 * subr.el (with-selected-window): Fix last change.
726
727 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
728
729 * subr.el (internal--before-with-seleted-window)
730 (internal--after-with-seleted-window): New functions.
731 (with-selected-window): Use them, to replace dependency on
732 tty-top-frame.
733
734 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
735
736 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
737 binding for `newline'.
738 (ruby-move-to-block): When moving backward, stop at block opening,
739 not indentation.
740 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
741 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
742 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
743 `ruby-toggle-block'.
744
745 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
746
747 * ibuffer.el (ibuffer-do-toggle-read-only):
748 * dired.el (dired-toggle-read-only):
749 * buff-menu.el (Buffer-menu-toggle-read-only):
750 * bindings.el (mode-line-toggle-read-only):
751 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
752
753 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
754
755 * descr-text.el (describe-char): Put the overlays over the
756 "displayed as" character.
757
758 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
759
760 * calc/calc-units.el (math-default-units-table): Give an
761 initial value.
762 (math-put-default-units): Add options to put composite units and
763 unit systems in the default units table.
764 (calc-convert-units): Send composite units to
765 `math-put-default-units' when appropriate.
766
767 2012-08-11 Glenn Morris <rgm@gnu.org>
768
769 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
770
771 * tutorial.el (help-with-tutorial):
772 * emacs-lisp/copyright.el (copyright-update-directory):
773 * emacs-lisp/autoload.el (autoload-find-generated-file)
774 (autoload-find-file): Disable local eval: (for insurance).
775
776 * files.el (hack-local-variables-filter): If an eval: form is not
777 known to be safe, and enable-local-variables is :safe, then ignore
778 the form totally, as is done for non-eval forms. (Bug#12155)
779 This is CVE-2012-3479.
780
781 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
782
783 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
784 (rx-form): Simplify.
785
786 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
787
788 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
789 ?, _, and : are symbol constituents, ! is not (but kinda should be).
790 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
791 (ruby-syntax-propertize-function): Adjust for changes in
792 `ruby-syntax-propertize-heredoc'.
793
794 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
795
796 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
797 binding (use `M-;' instead).
798 (ruby-singleton-class-p): New function.
799 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
800
801 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
802
803 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
804
805 2012-08-10 Chong Yidong <cyd@gnu.org>
806
807 * progmodes/python.el (python-shell-get-process-name): Don't mess
808 with same-window-buffer-names.
809
810 * eshell/eshell.el (eshell-add-to-window-buffer-names)
811 (eshell-remove-from-window-buffer-names): Make obsolete.
812 (eshell-buffer-name, eshell-unload-hook): Don't use them.
813 (eshell): Just use pop-to-buffer-same-window instead.
814
815 2012-08-10 Chong Yidong <cyd@gnu.org>
816
817 * bindings.el: Bind M-= back to count-words-region.
818
819 * simple.el (count-words-region): Accept a prefix arg for acting
820 on the entire buffer.
821 (count-words--buffer-message): New helper function.
822
823 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
824
825 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
826 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
827 (event-start, event-end): Use posn-at-point to return a more
828 informative posn.
829 (posnp): New function.
830 * mouse.el (popup-menu-normalize-position): Use it.
831
832 2012-08-10 Masatake YAMATO <yamato@redhat.com>
833
834 * mouse.el (popup-menu-normalize-position): New function.
835 (popup-menu): Use `popup-menu-normalize-position' to normalize
836 the form for POSITION argument.
837
838 * term/x-win.el (x-menu-bar-open):
839 Use the value returend from (posn-at-point) as position
840 passed to `popup-menu'.
841
842 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
843
844 * calc/calccomp.el (math-compose-expr): Add extra argument
845 indicating that parentheses should be put around products in
846 denominators. Give multiplication precedence over division during
847 composition.
848
849 2012-08-09 Chong Yidong <cyd@gnu.org>
850
851 * man.el (Man-switches, Man-sed-command, Man-awk-command)
852 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
853 (Man-untabify-command, manual-program): Convert to defcustom
854 (Bug#10429).
855
856 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
857
858 * descr-text.el (describe-char): Don't insert extra newlines
859 (Bug#10127).
860
861 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
862 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
863
864 * align.el (align-region): Delete temporary markers (Bug#10047).
865 Plus some code cleanups.
866
867 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
868
869 * progmodes/python.el (python-pdbtrack-tracked-buffer)
870 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
871 (python-shell-internal-last-output): Use make-local-variable
872 instead of make-variable-buffer-local.
873
874 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
875
876 * progmodes/python.el: Enhancements to forward-sexp.
877 (python-nav-forward-sexp): Rename from
878 python-nav-forward-sexp-function.
879 (python-nav--forward-sexp, python-nav--backward-sexp):
880 New functions.
881
882 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
883
884 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
885 modes and simplification modes.
886
887 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
888
889 * delsel.el (delete-selection-pre-hook): Don't propagate the
890 file-supersession signals (bug#12161).
891
892 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
893
894 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
895 (cl-map-extents): Add compatibility aliases (bug#12135).
896
897 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
898
899 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
900 tests by `ignore-error'.
901 (tramp-find-shell): Open also a new shell, when cache is already
902 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
903
904 2012-08-08 Juri Linkov <juri@jurta.org>
905
906 * bookmark.el: Add `defaults' property to the bookmark record.
907 (bookmark-current-buffer): Doc fix.
908 (bookmark-make-record): Add `defaults' property with default values
909 to the bookmark record.
910 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
911 with `bookmark-insert-current-bookmark'.
912 (bookmark-set): Get `defaults' property from the bookmark record
913 and use it in `read-from-minibuffer'.
914 (bookmark-insert-current-bookmark): Remove function.
915
916 * info.el (Info-bookmark-make-record): Add `defaults' property
917 with values of canonical Info node name, the current Info file
918 name and the current Info node name. (Bug#12107)
919
920 2012-08-08 Juri Linkov <juri@jurta.org>
921
922 * files.el (basic-save-buffer): Use `buffer-name' as the default
923 of `read-file-name' when buffer is not visiting a file (bug#12128).
924
925 2012-08-08 Juri Linkov <juri@jurta.org>
926
927 * info.el (Info-isearch-search): Doc fix.
928 (Info-search): Change search-failed message from "initial node" to
929 "end of node" (bug#12078).
930 (Info-isearch-search): Change `isearch-string-state' to
931 `isearch--state-string'.
932
933 2012-08-08 Glenn Morris <rgm@gnu.org>
934
935 * language/persian.el: Remove file.
936 * language/misc-lang.el: Move unique part of persian.el here.
937 * loadup.el: Remove language/persian.
938
939 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
940
941 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
942
943 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
944
945 * progmodes/python.el Fixed defsubst warning.
946 (python-syntax-context) Rename from python-info-ppss-context.
947 (python-syntax-context-type): Rename from
948 python-info-ppss-context-type.
949 (python-syntax-comment-or-string-p): Rename from
950 python-info-ppss-comment-or-string-p.
951
952 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
953
954 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
955
956 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
957
958 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
959 a defcustom that is quoted with backquote.
960
961 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
962 Fix handling of interactive spec when the body uses return.
963 (math-do-arg-check, math-define-function-body): Use backquote forms.
964 * calc/calc-ext.el (math-defcache): Likewise.
965 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
966 * allout.el (allout-new-exposure): Likewise.
967 * calc/calcalg2.el (math-tracing-integral): Likewise.
968 * info.el (Info-last-menu-item): Likewise.
969 * emulation/vip.el (vip-loop): Likewise.
970 * textmodes/artist.el (artist-funcall): Likewise.
971 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
972 Construct menu-item directly.
973
974 * progmodes/autoconf.el (font-lock-syntactic-keywords):
975 Don't declare.
976
977 2012-08-07 Chong Yidong <cyd@gnu.org>
978
979 * simple.el (deactivate-mark): Preserve text properties when
980 saving the primary selection (Bug#8384).
981
982 2012-08-07 Kevin Ryde <user42@zip.com.au>
983
984 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
985 (woman-parse-numeric-value): On a bad .IP line, issue a warning
986 and continue processing (Bug#12110).
987
988 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
989
990 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
991 syntax-propertize-function (bug#10095).
992
993 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
994
995 * help-fns.el (help-fns--key-bindings, help-fns--signature)
996 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
997 describe-function-1.
998 (describe-function-1): Use them. Move compiler macro after sig.
999 (help-fns--compiler-macro): Use function-get. Assume we're already in
1000 standard-output. Adjust layout to new call order.
1001
1002 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
1003 re-binding a symbol that has a symbol-macro (bug#12119).
1004
1005 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
1006
1007 * language/persian.el: New file. (Bug#11812)
1008 * loadup.el: Add language/persian.el.
1009
1010 2012-08-06 Chong Yidong <cyd@gnu.org>
1011
1012 * window.el (window--maybe-raise-frame): New function.
1013 (window--display-buffer): Split off from here.
1014 (display-buffer-reuse-window, display-buffer-pop-up-frame)
1015 (display-buffer-pop-up-window, display-buffer-use-some-window):
1016 Obey an inhibit-switch-frame action alist entry.
1017 (display-buffer): Update doc.
1018
1019 * replace.el (occur-after-change-function): Avoid losing focus by
1020 using the inhibit-switch-frame display parameter (Bug#12139).
1021
1022 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
1023
1024 Make internal shell process buffer names start with space.
1025 * progmodes/python.el (python-shell-make-comint): Add optional
1026 argument INTERNAL.
1027 (run-python-internal): Use it.
1028 (python-shell-internal-get-or-create-process): Check for new
1029 internal buffer names.
1030
1031 2012-08-06 Glenn Morris <rgm@gnu.org>
1032
1033 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
1034 Do less getting and setting of environment variables.
1035
1036 2012-08-05 Chong Yidong <cyd@gnu.org>
1037
1038 * proced.el (proced): Add substitution string to docstring to
1039 trigger autoloading of the proced library on C-h f (Bug#1768).
1040
1041 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
1042 Don't show defvars which have no second argument (Bug#8638).
1043
1044 * imenu.el (imenu-generic-expression): Move documentation here
1045 from imenu--generic-function.
1046 (imenu--generic-function): Refer to imenu-generic-expression.
1047
1048 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
1049
1050 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
1051 indentation declaration.
1052 (viper-loop): Add indentation declaration (Bug#7025).
1053
1054 2012-08-05 Chong Yidong <cyd@gnu.org>
1055
1056 * help-fns.el (describe-variable): Add hyperlink for
1057 directory-local variables files. Improve buffer-local and
1058 permanent-local reporting; suggested by MON KEY (Bug#6644).
1059
1060 * help-mode.el (help-dir-local-var-def): New button type.
1061
1062 * files.el (kill-buffer-hook): Provide a defvar.
1063
1064 2012-08-05 Glenn Morris <rgm@gnu.org>
1065
1066 * eshell/esh-ext.el (eshell/addpath):
1067 Also update eshell-path-env. (Bug#12013)
1068
1069 2012-08-05 Chong Yidong <cyd@gnu.org>
1070
1071 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
1072
1073 * fringe.el (fringe-styles): Add docstring.
1074 (fringe--check-mode): New function.
1075 (set-fringe-mode, set-fringe-style): Use it.
1076 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
1077
1078 * files.el (set-auto-mode): Fix invalid setq call.
1079
1080 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
1081
1082 * isearch.el: Misc simplification; use defstruct.
1083 (isearch-mode-map): Dense maps now work like sparse ones.
1084 (isearch--state): New defstruct.
1085 (isearch-string-state, isearch-message-state, isearch-point-state)
1086 (isearch-success-state, isearch-forward-state)
1087 (isearch-other-end-state, isearch-word-state, isearch-error-state)
1088 (isearch-wrapped-state, isearch-barrier-state)
1089 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
1090 replaced by defstruct's accessors.
1091 (isearch--set-state): Rename from isearch-top-state and change
1092 calling convention.
1093 (isearch-push-state): Use new isearch--get-state.
1094 (isearch-toggle-word): Disable regexp when enabling word.
1095 (isearch-message-prefix): Remove unused arg _c-q-hack.
1096 (isearch-message-suffix): Remove unused arg _ellipsis.
1097
1098 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
1099
1100 * simple.el (list-processes--refresh): For a server use :host or
1101 :local as the address.
1102 (list-processes): Doc fix.
1103
1104 2012-08-04 Michal Nazarewicz <mina86@mina86.com> (tiny change)
1105
1106 * lisp/mpc.el: Support password in host argument.
1107 (mpc--proc-connect): Parse and use new password element.
1108 Set mpc-proc variable instead of returning process.
1109 (mpc-proc): Adjust accordingly.
1110
1111 2012-08-03 Eli Zaretskii <eliz@gnu.org>
1112
1113 * whitespace.el (whitespace-display-mappings): Use Unicode
1114 codepoints, instead of emacs-mule codepoints. See
1115 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
1116 for the details.
1117
1118 * files.el (file-truename): Don't skip symlink-chasing part on
1119 windows-nt. Incorporate the resolution of 8+3 short aliases on
1120 Windows into the loop that recursively chases symlinks.
1121 Compare directory and its parent case-insensitively on MS-Windows and
1122 MS-DOS.
1123
1124 2012-08-03 Chong Yidong <cyd@gnu.org>
1125
1126 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
1127
1128 * sort.el (sort-regexp-fields): Doc fix.
1129
1130 2012-08-03 Tassilo Horn <tsdh@gnu.org>
1131
1132 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
1133 labels regex position point at the expected place.
1134
1135 2012-08-03 MON KEY <monkey@sandpframing.com>
1136
1137 * net/imap.el (imap-interactive-login, imap-authenticate)
1138 (imap-mailbox-lsub, imap-mailbox-list)
1139 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
1140 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
1141 (imap-parse-response): Doc fix.
1142
1143 2012-08-03 João Távora <joaotavora@gmail.com>
1144
1145 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
1146 if sexp scanning does not move point (Bug#5734).
1147
1148 2012-08-02 Tassilo Horn <tsdh@gnu.org>
1149
1150 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
1151 Add listings, minted, and ctable packages.
1152 (reftex-label-alist-builtin): Move listings, minted, and ctable
1153 entries before LaTeX.
1154 (reftex-label-alist): Docfix.
1155
1156 2012-08-02 Bastien Guerry <bzg@gnu.org>
1157
1158 * replace.el (occur): Fix docstring (bug#12122).
1159
1160 2012-08-02 Glenn Morris <rgm@gnu.org>
1161
1162 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
1163
1164 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
1165
1166 Obsolete alias inactivate-current-input-method-function (Bug#10150).
1167 * international/mule-cmds.el: Create
1168 inactivate-current-input-method-function as an obsolete alias for
1169 deactivate-current-input-method-function. See Katsumi Yamaoka in
1170 <http://bugs.gnu.org/10150#46>.
1171
1172 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
1173
1174 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
1175 of nested `if's.
1176
1177 2012-08-01 Glenn Morris <rgm@gnu.org>
1178
1179 * progmodes/autoconf.el (autoconf-definition-regexp):
1180 Add AH_TEMPLATE, adjust submatch numbering.
1181 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
1182 (autoconf-current-defun-function): Update for above change.
1183 (autoconf-current-defun-function): First skip to end of current word.
1184
1185 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
1186
1187 * calendar/cal-html.el (cal-html-insert-agenda-days):
1188 Fix typo. (Bug#12018)
1189
1190 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
1191
1192 Shell processes: enhancements to startup and CEDET compatibility.
1193 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
1194 (python-shell-make-comint): accept-process-output at startup.
1195 (run-python-internal): Set inferior-python-mode-hook to nil.
1196 (python-shell-internal-get-or-create-process): call sit-for.
1197 (python-preoutput-result): Add obsolete alias.
1198 (python-shell-internal-send-string): Use it.
1199 (python-shell-send-setup-code): Remove call to
1200 accept-process-output.
1201
1202 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
1203
1204 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
1205 (Bug#12108)
1206
1207 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
1208
1209 * calc-mode.el (calc-basic-simplification-mode): Rename from
1210 `calc-limited-simplification-mode'.
1211 (calc-alg-simplification-mode): New function.
1212 (calc-set-simplify-mode): Adjust message.
1213
1214 * calc.el (calc-set-mode-line): Adjust mode line display for
1215 basic simplification mode.
1216
1217 * calc-help.el (calc-m-prefix-help): Update help message.
1218
1219 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
1220 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
1221
1222 2012-07-31 Bastien Guerry <bzg@gnu.org>
1223
1224 * man.el (man): Fix comment. (bug#12101)
1225
1226 2012-07-31 Martin Rudalics <rudalics@gmx.at>
1227
1228 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
1229 Don't return a non-nil value when no suitable buffer was found.
1230
1231 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
1232
1233 * progmodes/python.el (run-python-internal): Disable font lock for
1234 internal shells.
1235
1236 2012-07-30 Stefan Merten <smerten@oekonux.de>
1237
1238 * rst.el: Silence `checkdoc-ispell'.
1239 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
1240 (rst-official-version, rst-official-cvs-rev)
1241 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
1242 (rst-mode-map): New key binding.
1243
1244 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
1245
1246 Update .PHONY listings in makefiles.
1247 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
1248 autoloads, update-subdirs, updates, bzr-update, update-authors,
1249 compile-onefile, compile-calc, backup-compiled-files,
1250 compile-after-backup, compile-one-process, mh-autoloads,
1251 bootstrap-clean, distclean, maintainer-clean.
1252
1253 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
1254
1255 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
1256 (calc-set-mode-line): Don't display "AlgSimp ".
1257
1258 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
1259 (calc-lim-simplify-mode): New function.
1260 (calc-set-simplify-mode): Default to 'alg.
1261 (calc-default-simplify-mode): Make algebraic simplifications
1262 the default.
1263
1264 * calc/calc-ext.el (calc-init-extensions): Remove binding for
1265 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
1266
1267 * calc/calc-help.el (calc-m-prefix-help): Change messages to
1268 indicate new simplification modes.
1269
1270 * calc/README: Mention new default simplification mode.
1271
1272 * calc/calc.el (math-normalize-error): New variable.
1273 (math-normalize): Set `math-normalize-error' to t
1274 when there's an error.
1275
1276 * calc/calc-alg.el (math-simplify): Don't simplify when
1277 `math-normalize' returns an error.
1278
1279 2012-07-29 Eli Zaretskii <eliz@gnu.org>
1280
1281 * international/mule-cmds.el (set-locale-environment): Revert last
1282 change, since display-graphic-p returns nil when this function is
1283 called during startup. Instead...
1284
1285 * term/w32console.el (terminal-init-w32console): ...setup the
1286 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
1287
1288 2012-07-29 Juri Linkov <juri@jurta.org>
1289
1290 * simple.el (goto-line): Don't display default line number in the
1291 prompt because it should be displayed by `read-number' (bug#9952).
1292 Add the current line number to the defaults of `goto-line' to
1293 allow its easier modification by users with `M-n' (bug#9201).
1294
1295 * subr.el (read-number): Support multiple default values like in
1296 other minibuffer reading functions. Replace `read' with
1297 `string-to-number' for consistency with `number-to-string'.
1298
1299 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
1300
1301 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
1302 * emulation/viper-init.el (viper-deactivate-input-method-action):
1303 Rename from viper-inactivate-input-method-action.
1304 (viper-deactivate-input-method):
1305 Rename from viper-inactivate-input-method.
1306 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
1307 * international/mule-cmds.el (deactivate-input-method):
1308 Rename from inactivate-input-method.
1309 Also run input-method-deactivate-hook.
1310 (deactivate-current-input-method-function):
1311 Rename from inactivate-current-input-method-function.
1312 (input-method-deactivate-hook): New hook.
1313 (input-method-inactivate-hook): Mark obsolete.
1314 (inactivate-input-method): Mark obsolete.
1315
1316 * international/quail.el (quail-activate):
1317 Also run quail-deactivate-hook.
1318 (quail-deactivate): Rename from quail-inactivate.
1319 * international/robin.el (robin-activate):
1320 Also run robin-deactivate-hook.
1321 (robin-deactivate): Rename from robin-inactivate.
1322
1323 2012-07-29 Chong Yidong <cyd@gnu.org>
1324
1325 * simple.el (indicate-copied-region): New function.
1326 (kill-ring-save): Split off from here.
1327
1328 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
1329 (kill-rectangle): Set deactivate-mark to t on read-only error.
1330
1331 * register.el (copy-to-register, copy-rectangle-to-register):
1332 Deactivate the mark, and use indicate-copied-region (Bug#10056).
1333 (append-to-register, prepend-to-register):
1334 Call 2012-07-29 Juri Linkov <juri@jurta.org>
1335
1336 * simple.el (async-shell-command-buffer): New defcustom.
1337 (shell-command): Use it. (Bug#4719)
1338
1339 2012-07-28 Eli Zaretskii <eliz@gnu.org>
1340
1341 * international/mule-cmds.el (set-locale-environment): In a
1342 console session on MS-Windows, set up keyboard and terminal
1343 encoding from the OEM codepage, not the ANSI codepage.
1344 (Bug#12055)
1345
1346 2012-07-28 Chong Yidong <cyd@gnu.org>
1347
1348 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
1349 gdb-get-location.
1350
1351 2012-07-28 Leo Liu <sdl.web@gmail.com>
1352
1353 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
1354 the alist (bug#12029).
1355
1356 2012-07-28 Eli Zaretskii <eliz@gnu.org>
1357
1358 * makefile.w32-in (custom-deps, finder-data, updates, compile)
1359 (compile-always, compile-first)
1360 ($(lisp)/calendar/cal-loaddefs.el)
1361 ($(lisp)/calendar/diary-loaddefs.el)
1362 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
1363 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
1364 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
1365 instead of on update-subdirs.
1366 (bootstrap-clean): Delete $(lisp)/subdirs.el.
1367
1368 2012-07-28 Chong Yidong <cyd@gnu.org>
1369
1370 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
1371 directory if vc-deduce-backend returns nil (Bug#7350).
1372
1373 * simple.el (delete-trailing-lines): New option.
1374 (delete-trailing-whitespace): Obey it (Bug#11879).
1375
1376 2012-07-28 David Engster <deng@randomsample.de>
1377
1378 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
1379 Explanation of new 'symbol-qnames feature in doc-strings.
1380 (xml-maybe-do-ns): Return expanded names as plain symbols if
1381 'symbol-qnames was provided in XML-NS argument (Bug#11916).
1382 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
1383
1384 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
1385
1386 Consistent completion in inferior python with emacs -nw.
1387 * progmodes/python.el (inferior-python-mode): replace "<tab>"
1388 binding in inferior-python-mode-map with "\t".
1389 (python-shell-completion-complete-at-point)
1390 (python-completion-complete-at-point): Remove interactive spec.
1391
1392 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
1393
1394 * calc/calccomp.el (math-compose-expr): Undo previous change.
1395
1396 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
1397
1398 * progmodes/python.el (python-mode-map): Add keybinding for
1399 run-python.
1400 (python-shell-make-comint): Fix pop-to-buffer call.
1401 (run-python): Autoload. New arg SHOW.
1402 (python-shell-get-or-create-process): Do not pop python process
1403 buffer.
1404
1405 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
1406
1407 * notifications.el (notifications-on-action-signal)
1408 (notifications-on-closed-signal): Use also the bus address for the map.
1409 (notifications-notify, notifications-close-notification)
1410 (notifications-get-capabilities): Add optional argument BUS.
1411
1412 2012-07-27 Tassilo Horn <tsdh@gnu.org>
1413
1414 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
1415 Add support for the lstlisting and minted environments, and for the
1416 ctable macro.
1417 * textmodes/reftex.el (reftex-compile-variables): Also recognize
1418 labels written in keyvals syntax.
1419
1420 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
1421
1422 * calc/calccomp.el (math-compose-expr): Use parentheses when
1423 there is a product in the denominator of a fraction.
1424
1425 2012-07-26 Eli Zaretskii <eliz@gnu.org>
1426
1427 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
1428 ($(lisp)/calendar/diary-loaddefs.el)
1429 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
1430 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
1431 Fixes failures in parallel bootstrap because subdirs.el is being
1432 rewritten while the autoload files are built at the same time,
1433 which needs to load subdirs.el.
1434
1435 2012-07-26 Martin Rudalics <rudalics@gmx.at>
1436
1437 * mouse.el (popup-menu): Fix doc-string and re-indent code.
1438 (mouse-drag-line): Don't exit tracking when a switch-frame or
1439 switch-window event occurs (Bug#12006).
1440
1441 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
1442
1443 * mouse.el (popup-menu): Fix last change.
1444
1445 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
1446
1447 Autoload from Lisp with more care. Follow aliases when looking for
1448 function properties.
1449 * subr.el (autoloadp): New function.
1450 (symbol-file): Use it.
1451 (function-get): New function.
1452 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
1453 autoload-do-load.
1454 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
1455 (lisp-indent-function):
1456 * emacs-lisp/gv.el (gv-get):
1457 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
1458 * emacs-lisp/byte-opt.el (byte-optimize-form):
1459 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
1460 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
1461 Use function-get.
1462 * emacs-lisp/cl.el: Don't propagate function properties any more.
1463
1464 * speedbar.el (speedbar-add-localized-speedbar-support):
1465 * emacs-lisp/disass.el (disassemble-internal):
1466 * desktop.el (desktop-load-file):
1467 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
1468 (describe-function-1):
1469 * emacs-lisp/find-func.el (find-function-noselect):
1470 * emacs-lisp/elp.el (elp-instrument-function):
1471 * emacs-lisp/advice.el (ad-has-proper-definition):
1472 * apropos.el (apropos-safe-documentation, apropos-macrop):
1473 * emacs-lisp/debug.el (debug-on-entry):
1474 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
1475 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
1476 * calc/calc.el (name): Use autoloadp & autoload-do-load.
1477
1478 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
1479
1480 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
1481 function, not an obsolete variable (Bug#12046).
1482
1483 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
1484
1485 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
1486
1487 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
1488
1489 * emacs-lisp/pp.el (pp-display-expression): Select old selected
1490 window only if it is still live (Bug#12034).
1491
1492 2012-07-25 Martin Rudalics <rudalics@gmx.at>
1493
1494 * subr.el (redirect-frame-focus): Add advertised calling
1495 convention (Bug#12030).
1496
1497 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
1498
1499 Prefer typical American spelling for "acknowledgment".
1500 * vc/add-log.el (change-log-acknowledgment): Rename from
1501 change-log-acknowledgement, with an alias for the old name.
1502
1503 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
1504
1505 * calc-alg.el (math-simplify-divide): Don't cross multiply
1506 in an equation when the lhs is a variable.
1507
1508 2012-07-24 Julien Danjou <julien@danjou.info>
1509
1510 * net/netrc.el (netrc-find-service-number, netrc-store-data):
1511 Remove, unused.
1512
1513 2012-07-23 Eli Zaretskii <eliz@gnu.org>
1514
1515 * startup.el (command-line): Don't display an empty user name in
1516 the error message about non-existent home directory, when
1517 init-file-user was set to an empty string. See
1518 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
1519 for the details and context.
1520
1521 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
1522
1523 * ses.el (ses-cell-formula-aset): New macro.
1524 (ses-cell-references-aset): New macro.
1525 (ses-cell-p): New function.
1526 (ses-rename-cell): Do no longer rely on complex operations like
1527 ses-cell-set-formula or ses-set-cell to change the cell and handle
1528 the undo at the same time, but rather use lower level new macros
1529 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
1530 the undo directly. Refresh the mode line.
1531
1532 2012-07-21 Leo Liu <sdl.web@gmail.com>
1533
1534 * progmodes/cc-cmds.el (c-defun-name):
1535 Use match-string-no-properties instead for consistency.
1536
1537 2012-07-20 Leo Liu <sdl.web@gmail.com>
1538
1539 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
1540 (Bug#7879)
1541
1542 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
1543
1544 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
1545
1546 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
1547 * progmodes/bug-reference.el, misearch.el: Provide themselves
1548 (bug#11915).
1549
1550 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
1551 of narrowed buffer (bug#11966).
1552
1553 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
1554
1555 * ses.el (ses-rename-cell): Set new name also in reference list of
1556 cells of which the renamed cell depends.
1557
1558 2012-07-20 Masatake YAMATO <yamato@redhat.com>
1559
1560 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
1561 to check whether menu-bar is shown or not. If not shown,
1562 show the menu-bar as a popup menu instead of using tmm.
1563 * mouse.el (popup-menu): Accept `point' as `position' argument.
1564
1565 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
1566
1567 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
1568 up inside string symbol literal (bug#11923).
1569
1570 2012-07-20 Eli Zaretskii <eliz@gnu.org>
1571
1572 * startup.el (fancy-startup-text): Read the whole tutorial, not
1573 just its first 256 bytes. Prevents gibberish in display of the
1574 tutorial title.
1575
1576 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
1577
1578 Drop idle buffer compaction due to an absence of the
1579 proved efficiency.
1580 * compact.el: Remove.
1581
1582 2012-07-19 Sam Steingold <sds@gnu.org>
1583
1584 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
1585 vc-bzr-pull & vc-bzr-merge-branch.
1586 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
1587 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
1588 for consistency with compilation-error-regexp-alist.
1589 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
1590 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
1591 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
1592 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
1593
1594 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1595
1596 * emacs-lisp/chart.el: Use lexical-binding.
1597 (chart-emacs-storage): Don't hardcode the list of entries.
1598
1599 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
1600
1601 Next round of tweaks caused by Fgarbage_collect changes.
1602 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
1603
1604 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
1605
1606 Compact buffers when idle.
1607 * compact.el: New file.
1608
1609 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1610
1611 * subr.el (eventp): Presume that if it looks vaguely like an event,
1612 it's an event (bug#10190).
1613
1614 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
1615
1616 Enhancements to ppss related code (thanks Stefan).
1617 * progmodes/python.el (python-indent-context)
1618 (python-indent-calculate-indentation, python-indent-dedent-line)
1619 (python-indent-electric-colon, python-nav-forward-block)
1620 (python-mode-abbrev-table)
1621 (python-info-assignment-continuation-line-p): Simplify checks
1622 for ppss context.
1623 (python-info-continuation-line-p): Cleanup.
1624 (python-info-ppss-context): Do not catch 'quote.
1625 (python-info-ppss-context-type)
1626 (python-info-ppss-comment-or-string-p): Simplify.
1627
1628 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
1629
1630 * progmodes/python.el: Enhancements to eldoc support.
1631 (python-info-current-symbol): New function.
1632 (python-eldoc-at-point): Use python-info-current-symbol.
1633 (python-info-current-defun): Fix cornercase on first defun scan.
1634 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
1635 and signal error when no inferior python process is available.
1636
1637 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
1638
1639 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
1640 assume it's always t.
1641 (vc-git-registered): Remove caching, the function is only called
1642 once.
1643 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
1644
1645 2012-07-18 Chong Yidong <cyd@gnu.org>
1646
1647 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
1648
1649 * simple.el (count-words): Report on narrowing (Bug#9959).
1650
1651 * bindings.el: Bind M-= to count-words.
1652
1653 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
1654
1655 2012-07-18 Masatake YAMATO <yamato@redhat.com>
1656
1657 * progmodes/sh-script.el (sh-imenu-generic-expression):
1658 Capture a function with `function' keyword and without parentheses
1659 like "function FOO" (bug#11856).
1660
1661 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
1662
1663 * window.el (split-window-sensibly): Make WINDOW argument
1664 optional.
1665
1666 2012-07-18 Chong Yidong <cyd@gnu.org>
1667
1668 * subr.el (keyboard-translate): Doc fix (Bug#7261).
1669
1670 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
1671 and make C-x 8 RET exit isearch (Bug#11439).
1672
1673 * international/iso-transl.el: Move isearch-mode-map key
1674 definitions to isearch.el.
1675
1676 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1677
1678 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
1679 (eieio-defclass): Use gv-define-setter when possible.
1680
1681 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
1682
1683 Reflect recent changes in Fgarbage_collect.
1684 * emacs-lisp/chart.el (chart-emacs-storage): Change to
1685 reflect new format of data returned by Fgarbage_collect.
1686
1687 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
1688
1689 New utility functions + python-info-ppss-context fix (Bug#11910).
1690 * progmodes/python.el (python-info-beginning-of-block-statement-p)
1691 (python-info-ppss-comment-or-string-p): New functions.
1692 (python-info-ppss-context): Small fix for string check.
1693
1694 2012-07-17 Juri Linkov <juri@jurta.org>
1695
1696 * dired-aux.el (dired-do-async-shell-command): Doc fix.
1697 (dired-do-async-shell-command): Don't add `*' at the end of the
1698 command (Bug#11815).
1699 (dired-do-shell-command): Doc fix.
1700 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
1701 Join the individual commands using either "&" or ";" as the
1702 separator depending on the values of these trailing characters.
1703 At the end re-add the trailing "&". (Bug#10598)
1704
1705 * simple.el (async-shell-command): Sync the interactive spec with
1706 `shell-command'. Doc fix.
1707 (shell-command): Doc fix.
1708
1709 2012-07-17 Juri Linkov <juri@jurta.org>
1710
1711 * descr-text.el (describe-char): Fix format args. (Bug#10129)
1712
1713 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
1714
1715 Final renames and doc fixes for movement commands (bug#11899).
1716 * progmodes/python.el (python-nav-beginning-of-statement):
1717 Rename from python-nav-statement-start.
1718 (python-nav-end-of-statement): Rename from
1719 python-nav-statement-end.
1720 (python-nav-beginning-of-block): Rename from
1721 python-nav-block-start.
1722 (python-nav-end-of-block): Rename from python-nav-block-end.
1723
1724 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
1725
1726 * progmodes/python.el (python-shell-send-string-no-output):
1727 Allow accept-process-output to quit, keeping shell process ready for
1728 future interactions (Bug#11868).
1729
1730 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1731
1732 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
1733
1734 * emacs-lisp/elint.el (elint-find-args-in-code):
1735 Use help-function-arglist, so as to handle lexical byte-code.
1736
1737 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
1738 change (bug#11826).
1739
1740 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1741
1742 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
1743 Avoid spuriously marking the buffer as modified because of c-is-sws.
1744
1745 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
1746 as not-a-comment (bug#11946).
1747
1748 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
1749 for uninterned vars.
1750
1751 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
1752 Use read-event since we don't really want to read chars but bytes.
1753
1754 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
1755 $$..$$ but also $..$ using regexps (bug#11953).
1756 Use tex-verbatim for \url and \path.
1757 (tex-font-lock-keywords): Define as defconst like the others.
1758 (tex-common-initialization): Don't use font-lock-syntax-table any more.
1759
1760 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
1761
1762 * international/mule-cmds.el (ucs-insert): Make it an obsolete
1763 alias for insert-char.
1764
1765 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
1766
1767 * progmodes/python.el: Simplified imenu implementation.
1768 (python-nav-jump-to-defun): Remove command.
1769 (python-mode-map): Use `imenu' instead.
1770 (python-nav-list-defun-positions-cache)
1771 (python-imenu-include-defun-type, python-imenu-make-tree)
1772 (python-imenu-subtree-root-label, python-imenu-index-alist):
1773 Remove vars.
1774 (python-nav-list-defun-positions, python-nav-read-defun)
1775 (python-imenu-tree-assoc, python-imenu-make-element-tree)
1776 (python-imenu-make-tree, python-imenu-create-index):
1777 Remove functions.
1778 (python-mode): Update to interact with imenu by setting
1779 `imenu-extract-index-name-function' only.
1780
1781 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
1782
1783 * progmodes/python.el: Enhancements to navigation commands.
1784 (python-nav-backward-sentence)
1785 (python-nav-forward-sentence): Remove.
1786 (python-nav-backward-statement, python-nav-forward-statement)
1787 (python-nav-statement-start, python-nav-statement-end)
1788 (python-nav-backward-block, python-nav-forward-block)
1789 (python-nav-block-start, python-nav-block-end)
1790 (python-nav-forward-sexp-function)
1791 (python-info-current-line-comment-p)
1792 (python-info-current-line-empty-p): New functions.
1793 (python-indent-context): Use `python-nav-statement-start'.
1794
1795 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
1796
1797 * eshell/em-ls.el (eshell/ls): Use `apply'.
1798
1799 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
1800 multi-hops, instead of Tramp internals.
1801
1802 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
1803
1804 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
1805 when F1 and F2 are located on different hosts.
1806
1807 2012-07-14 Chong Yidong <cyd@gnu.org>
1808
1809 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
1810 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
1811 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
1812 (xterm-mouse--read-event-sequence-1000)
1813 (xterm-mouse--read-event-sequence-1006): New functions. For old
1814 mouse protocol, handle M-mouse-X events correctly.
1815 (xterm-mouse-event): New arg specifying mouse protocol.
1816 (turn-on-xterm-mouse-tracking-on-terminal)
1817 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
1818 sequence to toggle extended coordinates on newer XTerms.
1819 This appears to be harmless on terminals which do not support this.
1820
1821 2012-07-14 Leo Liu <sdl.web@gmail.com>
1822
1823 Add fringe bitmap indicators for flymake. (Bug#11253)
1824 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
1825 (flymake-make-overlay): New arg BITMAP.
1826 (flymake-error-bitmap, flymake-warning-bitmap)
1827 (flymake-fringe-indicator-position): New user variables.
1828
1829 * fringe.el: New bitmap exclamation-mark.
1830
1831 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
1832
1833 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
1834 also (Bug#7879).
1835
1836 2012-07-14 Chong Yidong <cyd@gnu.org>
1837
1838 * electric.el (electric-pair-post-self-insert-function): Fix pair
1839 insertion in empty-region case (Bug#11520).
1840
1841 2012-07-14 Chong Yidong <cyd@gnu.org>
1842
1843 * bindings.el: Consolidate ctl-x-r-map bindings.
1844 Bind copy-rectangle-as-kill to C-x r w.
1845
1846 * rect.el, register.el: Move bindings to bindings.el.
1847
1848 2012-07-14 Reuben Thomas <rrt@sc3d.org>
1849
1850 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
1851
1852 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
1853
1854 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
1855
1856 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
1857
1858 * bindings.el (top): Use `mapc' instead of `mapcar'.
1859
1860 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
1861
1862 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
1863
1864 * progmodes/sql.el (sql-comint): Suppress the check for program on
1865 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
1866 (Bug#11908)
1867
1868 2012-07-13 Chong Yidong <cyd@gnu.org>
1869
1870 * bindings.el: Assign a non-nil permanent-local property to
1871 per-buffer variables which lack a default value (Bug#11930).
1872
1873 * help-fns.el (describe-variable): In the "automatically becomes
1874 local" notice, take note of permanent-local variables.
1875
1876 2012-07-13 Chong Yidong <cyd@gnu.org>
1877
1878 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
1879 to allow printing the message when called from Lisp.
1880
1881 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1882 Remove toggle-read-only.
1883
1884 * bs.el (bs-toggle-readonly):
1885 * buff-menu.el (Buffer-menu-toggle-read-only):
1886 Remove with-no-warnings around toggle-read-only.
1887
1888 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
1889 Remove with-no-warnings around toggle-read-only.
1890 (ffap-read-only, ffap-read-only-other-window)
1891 (ffap-read-only-other-frame): Callers changed.
1892
1893 * help-mode.el: Don't require view package.
1894 (help-mode-finish): Set buffer-read-only instead of calling
1895 toggle-read-only.
1896
1897 * bindings.el (mode-line-toggle-read-only):
1898 * dired.el (dired-toggle-read-only):
1899 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
1900 with non-nil second arg.
1901
1902 * emacs-lisp/eieio-custom.el (eieio-customize-object):
1903 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
1904 directly.
1905
1906 2012-07-12 Eli Zaretskii <eliz@gnu.org>
1907
1908 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
1909 not incf.
1910
1911 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
1912
1913 More CL cleanups and reduction of use of cl.el.
1914 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
1915 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
1916 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
1917 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
1918 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
1919 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
1920 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
1921 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
1922 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
1923 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
1924 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
1925 * eshell/em-cmpl.el, eshell/em-banner.el:
1926 * calendar/parse-time.el: Use cl-lib.
1927 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
1928 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
1929 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
1930 * term/ns-win.el, term.el, shell.el, ps-samp.el:
1931 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
1932 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
1933 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
1934 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
1935 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
1936 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
1937 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
1938 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
1939 `lambda' rather than with `quote'.
1940 (eshell-do-opt): Adjust accordingly.
1941 (eshell-process-option): Simplify.
1942 * eshell/esh-var.el:
1943 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
1944 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
1945 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
1946 to `pcase--dontcare'.
1947 * emacs-lisp/cl.el (labels): Mark obsolete.
1948 (cl--letf, letf): Move to cl-lib.
1949 (cl--letf*, letf*): Remove.
1950 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
1951 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
1952 (cl-progv): Rewrite.
1953 (cl--letf, cl-letf): Move from cl.el.
1954 (cl-letf*): New macro.
1955 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
1956
1957 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
1958
1959 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
1960
1961 2012-07-11 Chong Yidong <cyd@gnu.org>
1962
1963 * vc/log-edit.el (log-edit-vc-backend): New variable.
1964 (log-edit): Doc fix.
1965
1966 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
1967 argument of log-edit to set up all local variables.
1968 (vc-start-logentry): New optional arg specifying VC backend.
1969
1970 * vc/vc.el (vc-checkin): Use it.
1971 (vc-deduce-fileset): Handle Log Edit buffers.
1972 (vc-diff): Make first argument optional too.
1973
1974 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
1975
1976 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
1977
1978 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
1979 command, just in case. The function is not needed anymore.
1980 (eshell-external-command): Do not call `eshell-remote-command'.
1981
1982 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
1983
1984 Reduce use of (require 'cl).
1985 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
1986 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
1987 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
1988 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
1989 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
1990 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
1991 * battery.el, avoid.el, abbrev.el: Use cl-lib.
1992 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
1993 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
1994 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
1995 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
1996 * calculator.el, autorevert.el, apropos.el: Don't require CL.
1997 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
1998 (byte-compile-unfold-bcf, byte-compile-check-variable):
1999 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
2000 (byte-compile-nilconstp):
2001 * emacs-lisp/autoload.el (make-autoload): Use pcase.
2002 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
2003
2004 * emacs-lisp/gv.el (cond): Make it a valid place.
2005 (if): Simplify slightly.
2006
2007 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
2008 (pcase--self-quoting-p): New function.
2009 (pcase--u1): Use it.
2010
2011 2012-07-10 Glenn Morris <rgm@gnu.org>
2012
2013 * emacs-lisp/authors.el (authors-fixed-entries):
2014 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
2015
2016 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
2017
2018 Rename configure.in to configure.ac (Bug#11603).
2019 * emacs-lisp/authors.el (authors-canonical-file-name):
2020 * progmodes/autoconf.el (autoconf-mode):
2021 Prefer configure.ac to configure.in.
2022
2023 2012-07-08 Chong Yidong <cyd@gnu.org>
2024
2025 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
2026 Implement the mouse-1-click-follows-link handling properly.
2027
2028 * info.el (Info-link-keymap): Use follow-link mechanism for
2029 header-line links (Bug#374).
2030
2031 * simple.el (deactivate-mark): Do not set the primary selection
2032 if another program has acquired it (Bug#11772).
2033
2034 2012-07-07 Kevin Ryde <user42@zip.com.au>
2035
2036 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
2037 (woman-decode-region): Replace escaped-escapes without destroying
2038 bold or underline (Bug#11552).
2039 (woman2-process-escapes): Handle nofill regions (Bug#11591).
2040
2041 2012-07-07 Chong Yidong <cyd@gnu.org>
2042
2043 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
2044 (interprogram-cut-function, interprogram-paste-function):
2045 Mention that we typically mean the clipboard.
2046
2047 2012-07-06 Glenn Morris <rgm@gnu.org>
2048
2049 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
2050
2051 * files.el (toggle-read-only): Restrict message to interactive use.
2052
2053 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
2054
2055 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
2056
2057 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
2058
2059 2012-07-06 Glenn Morris <rgm@gnu.org>
2060
2061 * Makefile.in (compile-one-process): Rename from "recompile".
2062
2063 * Makefile.in (bzr-update): "compile" is the same as "recompile
2064 autoloads", but parallelizable, so use that instead.
2065
2066 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
2067
2068 * window.el (quit-window): Always restore window height when
2069 it's saved in quit-restore parameter (Bug#11810).
2070
2071 2012-07-06 Glenn Morris <rgm@gnu.org>
2072
2073 * simple.el (kill-whole-line): Doc tweak.
2074
2075 2012-07-06 Eli Zaretskii <eliz@gnu.org>
2076
2077 * files.el (file-relative-name): Compare file names
2078 case-insensitively if on MS-Windows or MS-DOS, or if
2079 read-file-name-completion-ignore-case is non-nil. Don't use
2080 case-fold-search for this purpose. (Bug#11827)
2081
2082 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
2083
2084 * calendar/cal-dst.el (calendar-current-time-zone):
2085 Return calendar-current-time-zone-cache if non-nil.
2086
2087 2012-07-17 Masatake YAMATO <yamato@redhat.com>
2088 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
2089
2090 * calendar/cal-dst.el (calendar-current-time-zone):
2091 Return calendar-current-time-zone-cache if non-nil.
2092
2093 2012-07-06 Glenn Morris <rgm@gnu.org>
2094
2095 * Makefile.in (cvs-update): Remove old alias.
2096
2097 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
2098
2099 Sync with Tramp 2.2.6-pre.
2100
2101 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
2102 compatible declaration.
2103
2104 * net/tramp-cmds.el (tramp-append-tramp-buffers):
2105 Protect `list-load-path-shadows' call.
2106
2107 * net/tramp-compat.el (top): Require packages, which aren't
2108 autoloaded anymore for XEmacs. Protect call of
2109 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
2110 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
2111 it hurts at least for SXEmacs.
2112 (tramp-compat-temporary-file-directory): In XEmacs, there is no
2113 standard-value for `temporary-file-directory'.
2114
2115 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
2116 Redirect stderr to /dev/null.
2117 (tramp-sh-handle-write-region): uid and gid can be floats.
2118 Reported by Russell Sim <russell.sim@gmail.com>.
2119 (tramp-sh-handle-vc-registered): Hide errors.
2120 (tramp-vc-file-name-handler): Use dummy results for `process-file'
2121 and `start-file-process'.
2122 (tramp-maybe-open-connection): Check also whether `non-essential'
2123 is bound.
2124
2125 2012-07-04 Chong Yidong <cyd@gnu.org>
2126
2127 * xml.el (xml--parse-buffer): Use xml-syntax-table.
2128 (xml-parse-tag): Likewise, and avoid changing entity tables.
2129 (xml-syntax-table): Define from scratch, making sure not to give
2130 x2000 and other Unicode spaces whitespace syntax, since those are
2131 not spaces in XML.
2132 (xml-parse-fragment): Delete unused function.
2133 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
2134 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
2135 (xml-entity-ref, xml-pe-reference-re)
2136 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
2137 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
2138 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
2139 (xml-entity-value-re): Use syntax references in regexps where
2140 possible; no need to define inside a let-binding.
2141 (xml-parse-dtd): Use xml-pe-reference-re.
2142 (xml-entity-or-char-ref-re): New defconst.
2143 (xml-parse-string, xml-substitute-special): Use it.
2144
2145 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2146
2147 * files.el (locate-dominating-file): Allow `name' to be a predicate.
2148 (find-file--read-only): New function.
2149 (find-file-read-only, find-file-read-only-other-window)
2150 (find-file-read-only-other-frame): Use it.
2151 (insert-file-contents-literally): Don't `fset'.
2152 (get-free-disk-space): Use locate-dominating-file.
2153
2154 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
2155 function is already compiled.
2156
2157 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
2158
2159 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
2160
2161 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
2162 files on the same host.
2163
2164 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
2165
2166 * help-fns.el (describe-function-1): Only call
2167 help-fns--autoloaded-p when we have a file name. (Bug#11848)
2168
2169 2012-07-03 Chong Yidong <cyd@gnu.org>
2170
2171 * xml.el: Protect parser against XML bombs.
2172 (xml-entity-expansion-limit): New variable.
2173 (xml-parse-string, xml-substitute-special): Use it.
2174 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
2175
2176 2012-07-03 Glenn Morris <rgm@gnu.org>
2177
2178 * progmodes/bug-reference.el (bug-reference-bug-regexp):
2179 Allow linking to specific messages in debbugs reports (eg 123#5).
2180
2181 2012-07-02 Chong Yidong <cyd@gnu.org>
2182
2183 * xml.el: Fix entity and character reference expansion, allowing
2184 them to expand into markup as per XML spec.
2185 (xml-default-ns): New variable.
2186 (xml-entity-alist): Use XML spec definitions for lt and amp.
2187 (xml-parse-region): Make first two arguments optional.
2188 Discard text properties.
2189 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
2190 All callers changed.
2191 (xml-parse-tag): Call xml-parse-tag-1. For backward
2192 compatibility, this function should not modify buffer contents.
2193 (xml-parse-tag-1): Fix opening-tag regexp.
2194 (xml-parse-string): Rewrite, handling entity and character
2195 references properly.
2196 (xml--entity-replacement-text): Signal an error if a parameter
2197 entity is undefined.
2198
2199 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2200
2201 * comint.el (comint-output-filter): Filter out repeated prompts.
2202
2203 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
2204 and file-name-absolute-p.
2205 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
2206 internal calls.
2207
2208 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
2209
2210 Spelling fixes.
2211 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
2212 Rename from byte-compile--refiy-function. All uses changed.
2213
2214 2012-07-01 Chong Yidong <cyd@gnu.org>
2215
2216 * xml.el (xml--parse-buffer): New function. Move most of
2217 xml-parse-region here.
2218 (xml-parse-region): Copy region into a temporary buffer, since
2219 parameter entity substitution requires changing buffer contents.
2220 Use xml--parse-buffer.
2221 (xml-parse-file): Use xml--parse-buffer.
2222 (xml-parse-dtd): Make parameter entity substitution work right.
2223 Use proper regexps for ELEMENT declarations (Bug#7172).
2224
2225 2012-06-30 Glenn Morris <rgm@gnu.org>
2226
2227 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
2228
2229 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
2230 Remove outdated and unnecessary dbus declarations.
2231
2232 2012-06-30 Eli Zaretskii <eliz@gnu.org>
2233
2234 * emacs-lisp/timer.el (timer-until): Subtract results of
2235 float-time, instead of taking float-time of the result of
2236 time-subtract, since float-time signals an error for negative time
2237 arguments.
2238
2239 2012-06-30 Chong Yidong <cyd@gnu.org>
2240
2241 * xml.el (xml-*-re): Convert defvars into defconsts, and
2242 eval-and-compile them so eval-and-compile works on derivatives.
2243 (xml--entity-replacement-text): Use eval-and-comple.
2244
2245 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
2246
2247 * vc/vc-git.el (vc-git-registered): Use cache property
2248 `git-registered'.
2249 (vc-git-mode-line-string): Call `vc-working-revision' instead of
2250 `vc-git-working-revision' in order to benefit from the cache.
2251 (vc-git-root): Use cache property `git-root'. (Bug#11757)
2252
2253 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
2254
2255 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
2256 removed (likely outside Emacs). (Bug#11757)
2257
2258 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
2259
2260 * emacs-lisp/cl-lib.el: Require macroexp.
2261
2262 2012-06-30 Chong Yidong <cyd@gnu.org>
2263
2264 * xml.el: Implement XML parameter entities.
2265 (xml-parameter-entity-alist): New variable.
2266 (xml-parse-region, xml-parse-fragment): Preserve previous values
2267 of xml-entity-alist and xml-parameter-entity-alist, so that
2268 repeated calls on different documents do not change them.
2269 (xml-parse-tag): Fix doctype regexp.
2270 (xml--entity-replacement-text): New function.
2271 (xml-parse-dtd): Use it. Don't handle system entities; doing that
2272 properly requires url retrieval which is unimplemented.
2273 (xml-escape-string): Doc fix.
2274
2275 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
2276
2277 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
2278
2279 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
2280
2281 * fringe.el (fringe-mode): Doc fix.
2282
2283 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
2284
2285 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
2286 is non-nil.
2287 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
2288 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
2289
2290 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
2291
2292 * calendar/cal-dst.el (calendar-current-time-zone):
2293 Return calendar-current-time-zone-cache if non-nil.
2294
2295 2012-06-29 Masatake YAMATO <yamato@redhat.com>
2296
2297 * progmodes/which-func.el (which-func-format):
2298 Add mouse-face. (Bug#11698)
2299
2300 2012-06-29 Leo Liu <sdl.web@gmail.com>
2301
2302 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
2303
2304 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2305
2306 * minibuffer.el (minibuffer-confirm-exit-commands):
2307 Add completion-at-point (bug#11725).
2308
2309 2012-06-29 Glenn Morris <rgm@gnu.org>
2310
2311 * progmodes/f90.el (f90-font-lock-keywords-2):
2312 Add some preprocessor elements. (Bug#10499)
2313
2314 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2315
2316 * progmodes/cperl-mode.el (cperl-update-syntaxification):
2317 Use syntax-propertize (bug#11739).
2318
2319 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
2320
2321 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
2322
2323 2012-06-28 Julien Danjou <julien@danjou.info>
2324
2325 * term.el (term-handle-colors-array): Use a set of new faces to
2326 color the terminal. Also uses :inverse-video property.
2327 (term-default-fg-color): Set to nil by default, deprecate in favor
2328 of `term-face'.
2329 (term-default-bg-color): Set to nil by default, deprecate in favor
2330 of `term-face'.
2331 (term-current-face): Use `term-face' by default.
2332 (term-bold-attribute): Variable deleted.
2333
2334 2012-06-28 Glenn Morris <rgm@gnu.org>
2335
2336 * simple.el (completion-list-mode-finish):
2337 Don't use toggle-read-only. (Since completion-list-mode has
2338 a special mode-class, it wasn't doing anything extra anyway.)
2339
2340 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
2341
2342 Make inlining of other-mode interpreted functions work (bug#11799).
2343 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
2344 (byte-compile): Use it to fix compilation of lexical-binding closures.
2345 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
2346 function, if needed.
2347
2348 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
2349
2350 * help-mode.el (help-make-xrefs): Don't just withstand
2351 cyclic-variable-indirection but any error in documentation-property.
2352
2353 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
2354 memory use.
2355 * bindings.el (bindings--define-key): New function.
2356 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
2357 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
2358 * bindings.el: Use it to purecopy define-key bindings.
2359
2360 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
2361
2362 * emacs-lisp/cl.el (flet): Mark obsolete.
2363 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
2364 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
2365 * progmodes/js.el (js-c-fill-paragraph):
2366 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
2367 (ebrowse-switch-member-buffer-to-derived-class):
2368 * play/5x5.el (5x5-solver): Use cl-flet.
2369
2370 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
2371 (cl--symbol-function): New macro.
2372 (cl--letf, cl--letf*): Use it.
2373
2374 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
2375 Strip "toggle-" if any.
2376
2377 2012-06-27 Glenn Morris <rgm@gnu.org>
2378
2379 * info.el (Info-default-directory-list): Move here from paths.el.
2380 * paths.el: Remove file, which is now empty.
2381 * loadup.el: No longer load "paths".
2382
2383 * custom.el (custom-initialize-delay): Doc fix.
2384
2385 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
2386 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
2387 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
2388 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
2389 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
2390 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
2391 * eshell/eshell.el (eshell-defgroup): Remove alias.
2392
2393 2012-06-27 Chong Yidong <cyd@gnu.org>
2394
2395 * help.el (help-enable-auto-load): New variable.
2396
2397 * help-fns.el (help-fns--autoloaded-p): New function.
2398 (describe-function-1): Refer to a function as "autoloaded" if it
2399 was autoloaded at any time in the past. Perform autoloading if
2400 help-enable-auto-load is non-nil.
2401
2402 2012-06-26 Eli Zaretskii <eliz@gnu.org>
2403
2404 * makefile.w32-in (compile, compile-always): Depend on
2405 update-subdirs, not on subdirs.el. Otherwise, several different
2406 sub-targets of 'bootstrap' running in parallel could
2407 simultaneously write to subdirs.el, producing a garbled file.
2408
2409 2012-06-26 Sam Steingold <sds@gnu.org>
2410
2411 * files.el (file-name-base): New convenience function.
2412 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
2413 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
2414 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
2415 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
2416 * textmodes/ispell.el, textmodes/reftex-ref.el:
2417 * textmodes/tex-mode.el: Use it.
2418 Did not touch cedet and org because they are maintained elsewhere.
2419
2420 2012-06-26 Martin Rudalics <rudalics@gmx.at>
2421
2422 * calendar/calendar.el (calendar-exit): Don't try to delete or
2423 iconify last frame. See:
2424 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
2425
2426 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
2427
2428 * server.el (server-process-filter): Remember dir in the
2429 process's `server-client-directory' properties.
2430
2431 2012-06-24 Chong Yidong <cyd@gnu.org>
2432
2433 * xml.el (xml-parse-tag): Correctly handle comment embedded in
2434 non-tag text.
2435
2436 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
2437
2438 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
2439
2440 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2441
2442 * help-fns.el (describe-variable): Don't croak when doc is not found.
2443 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
2444 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
2445 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
2446 * emacs-lisp/smie.el (smie-next-sexp): CSE.
2447 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
2448 ((lambda ..) ..).
2449 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
2450
2451 2012-06-23 Chong Yidong <cyd@gnu.org>
2452
2453 * info.el (Info-mouse-follow-link): Accept symbol values of
2454 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
2455 (Info-fontify-node): Use Info-link-keymap for all navigation
2456 buttons, with link-args property to perform the desired action.
2457 (Info-link-keymap): Doc fix.
2458 (Info-next-link-keymap, Info-prev-link-keymap)
2459 (Info-up-link-keymap): Delete now-unused keymaps.
2460
2461 2012-06-23 Chong Yidong <cyd@gnu.org>
2462
2463 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
2464
2465 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
2466 system abbrevs.
2467
2468 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
2469
2470 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2471
2472 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
2473 (bug#11719).
2474
2475 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
2476 the requote function doesn't work properly (bug#11714).
2477
2478 2012-06-23 Glenn Morris <rgm@gnu.org>
2479
2480 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
2481
2482 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2483
2484 Further GV/CL cleanups.
2485 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
2486 gv-expander.
2487 (gv--defun-declaration): New function.
2488 (defun-declarations-alist): Use it.
2489 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
2490 (gv-place): Autoload.
2491 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
2492 original definition of dotimes and dolist.
2493 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
2494 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
2495 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
2496 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
2497 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
2498 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
2499 to the function's definition.
2500 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
2501 * window.el:
2502 * files.el:
2503 * faces.el:
2504 * env.el: Don't use CL.
2505
2506 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
2507
2508 Support higher-resolution time stamps (Bug#9000).
2509
2510 * calendar/time-date.el (with-decoded-time-value): New arg
2511 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
2512 (encode-time-value): New optional arg PICO. New type 3.
2513 (time-to-seconds) [!float-time]: Support the new picoseconds
2514 component if it's used.
2515 (seconds-to-time, time-subtract, time-add):
2516 Support ps-resolution time stamps as well.
2517
2518 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
2519 (timerp): Timer vectors now have length 9, not 8.
2520 (timer--time): Support new-style (4-part) time stamps.
2521 (timer-next-integral-multiple-of-time): Time stamps now have
2522 picosecond resolution, so take a bit more care about rounding.
2523 (timer-relative-time, timer-inc-time): New optional arg psecs.
2524 (timer-set-time-with-usecs): Set psecs to 0.
2525 (timer--activate): Check psecs component, too.
2526
2527 * proced.el (proced-time-lessp): Support ps-resolution stamps.
2528
2529 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2530
2531 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
2532 Move the non-essential binding to the post/pre-command-hook where it is
2533 more obviously correct.
2534
2535 * subr.el (read-passwd): Don't use a history at all.
2536 * savehist.el (savehist-save): Remove password saved accidentally
2537 because of the above bug.
2538
2539 2012-06-22 Bastien Guerry <bzg@gnu.org>
2540
2541 * files.el (toggle-read-only): Display a message telling whether
2542 the buffer is read-only or not (bug#11726).
2543
2544 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2545
2546 * emacs-lisp/gv.el: New file.
2547 * subr.el (push, pop): Extend to generalized variables.
2548 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
2549 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
2550 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
2551 gv-define-simple-setter, and gv-define-expander.
2552 Remove setf-methods defined in gv. Rename cl-setf -> setf.
2553 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
2554 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
2555 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
2556 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
2557 gv-letplace.
2558 (cl-defstruct): Don't define setf-method any more.
2559 * emacs-lisp/cl.el (flet): Don't autoload.
2560 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
2561 (define-setf-expander, defsetf, define-modify-macro)
2562 (cl-struct-setf-expander): Move from cl-lib.el.
2563 * emacs-lisp/syntax.el:
2564 * emacs-lisp/ewoc.el:
2565 * emacs-lisp/smie.el:
2566 * emacs-lisp/cconv.el:
2567 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
2568 (timer--time): Use gv-define-simple-setter.
2569 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
2570 to avoid coding-system problems in subr.el. Adjust all users.
2571 (macroexp--maxsize, macroexp-small-p): New functions.
2572 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
2573 * scroll-bar.el (scroll-bar-mode):
2574 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
2575 (normal-erase-is-backspace-mode): Don't use the `eq' place.
2576 * winner.el (winner-configuration, winner-make-point-alist)
2577 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
2578 * files.el (locate-file-completion-table): Avoid list*.
2579
2580 2012-06-22 Chong Yidong <cyd@gnu.org>
2581
2582 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
2583 (dired-create-files): Doc fix (Bug#11329).
2584 (dired-do-copy): Doc fix (Bug#11334).
2585 (dired-mark-read-string): Doc fix (Bug#11553).
2586
2587 * dired.el (dired-recursive-copies, dired-recursive-deletes):
2588 Doc fix (Bug#11326).
2589 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
2590 (dired-dwim-target): Doc fix.
2591
2592 * wdired.el (wdired-mode): Doc fix.
2593
2594 2012-06-22 Glenn Morris <rgm@gnu.org>
2595
2596 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
2597 (pcmpl-rpm-cache-stamp-file): New constant.
2598 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
2599 (pcmpl-rpm-packages): Optionally cache list of packages.
2600
2601 * pcmpl-rpm.el (pcmpl-rpm): New group.
2602 (pcmpl-rpm-query-options): New option.
2603 (pcmpl-rpm-packages): No need to inline it.
2604 Use pcmpl-rpm-query-options.
2605
2606 * calendar/calendar.el (calendar-in-read-only-buffer):
2607 Avoid some needless mode changes.
2608
2609 2012-06-21 Chong Yidong <cyd@gnu.org>
2610
2611 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
2612 (desktop-path): Remove . from the default value (Bug#10977).
2613 (desktop-read): Use user-emacs-directory if desktop-path is nil.
2614
2615 2012-06-20 Chong Yidong <cyd@gnu.org>
2616
2617 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
2618
2619 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
2620
2621 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
2622 (bug#11201).
2623
2624 2012-06-20 Chong Yidong <cyd@gnu.org>
2625
2626 * term.el (term-window-width): Handle the case of a missing right
2627 fringe (Bug#8837).
2628 (term-check-size): Use window-text-height (Bug#5445).
2629 (term-mode): Use define-derived-mode. Minor cleanups.
2630 Set font-lock-defaults (Bug#7692).
2631 (term-move-columns, term-insert-char, term-emulate-terminal)
2632 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
2633
2634 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
2635
2636 * net/ange-ftp.el (ange-ftp-get-passwd):
2637 Bind `enable-recursive-minibuffers'.
2638 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
2639
2640 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
2641
2642 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
2643
2644 2012-06-19 Glenn Morris <rgm@gnu.org>
2645
2646 * progmodes/python.el (python-mode): Derive from prog-mode.
2647
2648 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
2649
2650 * emulation/edt.el (edt-default-menu-bar-update-buffers)
2651 (edt-user-menu-bar-update-buffers): New functions.
2652 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
2653
2654 2012-06-19 Chong Yidong <cyd@gnu.org>
2655
2656 * subr.el (with-selected-window): Preserve the selected window's
2657 terminal's top-frame (Bug#4702).
2658
2659 * window.el (save-selected-window): Likewise.
2660
2661 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
2662
2663 * progmodes/python.el (python-rx-constituents): Move backquote.
2664 (python-skeleton-define, python-define-auxiliary-skeleton):
2665 Use `declare'.
2666
2667 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
2668
2669 * minibuffer.el (read-file-name-default): Revert the patch from
2670 2012-06-17.
2671
2672 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
2673
2674 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
2675 (pcase--u1, pcase--q1): Don't use apply-partially.
2676
2677 2012-06-18 Glenn Morris <rgm@gnu.org>
2678
2679 * progmodes/python.el (python-proc, python-buffer)
2680 (python-send-receive, python-send-string): Fix obsolete versions.
2681
2682 2012-06-18 Martin Rudalics <rudalics@gmx.at>
2683
2684 * window.el (special-display-p): Completely remove stringp
2685 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
2686
2687 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
2688
2689 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
2690
2691 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
2692
2693 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
2694 * net/tramp-sh.el (tramp-maybe-open-connection):
2695 Throw if `non-essential' is non-nil.
2696
2697 2012-06-17 Martin Rudalics <rudalics@gmx.at>
2698
2699 * window.el (special-display-p): Signal an error if BUFFER-NAME
2700 is not a string (Bug#11713).
2701
2702 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
2703
2704 * progmodes/python.el (python-info-beginning-of-backslash):
2705 Rename from python-info-beginning-of-backlash, as a spelling fix.
2706
2707 2012-06-17 Chong Yidong <cyd@gnu.org>
2708
2709 * term.el (term-emulate-terminal): If term-check-size is called,
2710 move point to the process mark without resetting point (Bug#4635).
2711
2712 2012-06-17 Glenn Morris <rgm@gnu.org>
2713
2714 * international/mule-cmds.el (mule-menu-keymap)
2715 (set-language-environment, set-locale-environment): Doc tweaks.
2716
2717 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
2718
2719 * cus-face.el (custom-face-attributes): Add wave-style underline
2720 attribute.
2721 * faces.el (set-face-attribute): Update docstring to describe
2722 wave-style underline attribute.
2723
2724 2012-06-16 Chong Yidong <cyd@gnu.org>
2725
2726 * term/xterm.el (terminal-init-xterm): Discard input before
2727 querying background mode (Bug#10959).
2728
2729 2012-06-16 Stefan Merten <smerten@oekonux.de>
2730
2731 * textmodes/rst.el: Added and corrected some comments.
2732 (rst-re-alist-def): Improve symbol syntax.
2733 (rst-mode-syntax-table): Correct syntax entries.
2734 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
2735 (rst-official-version, rst-official-cvs-rev): Update version
2736 information.
2737
2738 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
2739
2740 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
2741 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
2742
2743 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
2744
2745 * progmodes/python.el: New python.el merge.
2746 (python-guess-indent): Obsolete var.
2747 (python-indent-guess-indent-offset): New defcustom.
2748 (python-indent): Obsolete var.
2749 (python-indent-offset): New defcustom.
2750 (python-python-command, python-jython-command): Delete var.
2751 (python-shell-interpreter): New defcustom.
2752 (python-pdbtrack-do-tracking-p): Delete var.
2753 (python-pdbtrack-activate): New defcustom.
2754 (python-use-skeletons): Obsolete var.
2755 (python-skeleton-autoinsert): New defcustom.
2756 (inferior-python-filter-regexp, python-continuation-offset)
2757 (python-honour-comment-indentation, python-indent-string-contents)
2758 (python-jython-packages, python-mode-hook)
2759 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
2760 (python-shell-prompt-alist)
2761 (python-source-modes): Delete defcustoms.
2762 (python-check-buffer-name, python-eldoc-setup-code)
2763 (python-eldoc-string-code, python-ffap-setup-code)
2764 (python-ffap-string-code, python-fill-comment-function)
2765 (python-fill-decorator-function, python-fill-paren-function)
2766 (python-fill-string-function, python-imenu-include-defun-type)
2767 (python-imenu-make-tree, python-imenu-subtree-root-label)
2768 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
2769 (python-shell-compilation-regexp-alist)
2770 (python-shell-completion-module-string-code)
2771 (python-shell-completion-pdb-string-code)
2772 (python-shell-completion-setup-code)
2773 (python-shell-completion-string-code)
2774 (python-shell-enable-font-lock, python-shell-exec-path)
2775 (python-shell-extra-pythonpaths)
2776 (python-shell-internal-buffer-name, python-shell-interpreter-args)
2777 (python-shell-process-environment)
2778 (python-shell-prompt-block-regexp)
2779 (python-shell-prompt-output-regexp)
2780 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
2781 (python-shell-send-setup-max-wait, python-shell-setup-codes)
2782 (python-shell-virtualenv-path): New defcustoms.
2783 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
2784 (inferior-python-mode-syntax-table, python--prompt-regexp)
2785 (python-buffer, python-command python-python-command)
2786 (python-default-template, python-imports, python-indent-index)
2787 (python-indent-list, python-indent-list-length)
2788 (python-mode-running, python-pdbtrack-is-tracking-p)
2789 (python-preoutput-continuation, python-preoutput-leftover)
2790 (python-preoutput-result, python-preoutput-skip-next-prompt)
2791 (python-prev-dir/file, python-recursing)
2792 (python-saved-check-command, python-version-checked)
2793 (python-which-func-length-limit)
2794 (view-return-to-alist): Delete vars.
2795 (python-check-custom-command, python-dotty-syntax-table)
2796 (python-imenu-index-alist, python-indent-current-level)
2797 (python-indent-dedenters, python-indent-levels)
2798 (python-nav-beginning-of-defun-regexp)
2799 (python-nav-list-defun-positions-cache)
2800 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
2801 (python-shell-internal-buffer)
2802 (python-skeleton-available): New vars.
2803 (def-python-skeleton): Delete macro.
2804 (python-skeleton-define): New macro.
2805 (python-define-auxiliary-skeleton, python-rx): New macros.
2806 (python-insert-class): Delete command.
2807 (python-skeleton-class): New command.
2808 (python-insert-def): Delete command.
2809 (python-skeleton-def): New command.
2810 (python-insert-for): Delete command.
2811 (python-skeleton-for): New command.
2812 (python-insert-if): Delete command.
2813 (python-skeleton-if): New command.
2814 (python-insert-try/except, python-insert-try/finally): Delete commands.
2815 (python-skeleton-try): New command.
2816 (python-insert-while): Delete command.
2817 (python-skeleton-while): New command.
2818 (python-backspace): Delete command.
2819 (python-indent-dedent-line-backspace): New command.
2820 (python-electric-colon): Delete command.
2821 (python-indent-electric-colon): New command.
2822 (python-guess-indent): Delete command.
2823 (python-indent-guess-indent-offset): New command.
2824 (python-shift-left): Delete command.
2825 (python-indent-shift-left): New command.
2826 (python-shift-right): Delete command.
2827 (python-indent-shift-right): New command.
2828 (python-find-function): Delete command.
2829 (python-nav-jump-to-defun): New command.
2830 (python-next-statement): Delete command.
2831 (python-nav-forward-sentence): New command.
2832 (python-previous-statement): Delete command.
2833 (python-nav-backward-sentence): New command.
2834 (python-fill-paragraph): Delete command.
2835 (python-fill-paragraph-function): New command.
2836 (python-send-buffer): Delete command.
2837 (python-shell-send-buffer): New command.
2838 (python-send-defun): Delete command.
2839 (python-shell-send-defun): New command.
2840 (python-send-region, python-send-region-and-go): Delete commands.
2841 (python-shell-send-region)
2842 (python-shell-switch-to-shell): New commands.
2843 (python-send-string): Delete command.
2844 (python-shell-send-string): New command.
2845 (python-switch-to-python): Delete command.
2846 (python-shell-switch-to-shell): New command.
2847 (python-describe-symbol): Delete command.
2848 (python-eldoc-at-point): New command.
2849 (python--set-prompt-regexp, python-args-to-list)
2850 (python-after-info-look, python-check-version)
2851 (python-check-comint-prompt, python-find-imports)
2852 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
2853 (python-unload-function, python-expand-template)
2854 (python-maybe-jython, python-preoutput-filter)
2855 (python-pdbtrack-get-source-buffer)
2856 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
2857 (python-pdbtrack-toggle-stack-tracking)
2858 (python-pdbtrack-track-stack-file, python-initial-text)
2859 (python-first-word, python-comment-line-p, python-send-command)
2860 (python-setup-brm, python-sentinel, python-set-proc)
2861 (python-skip-out, python-input-filter, python-outdent-p)
2862 (python-outline-level, python-backslash-continuation-line-p)
2863 (python-end-of-block, python-end-of-statement, python-mark-block)
2864 (python-beginning-of-block, python-beginning-of-statement)
2865 (python-blank-line-p, python-beginning-of-string)
2866 (python-open-block-statement-p): Delete functions.
2867 (python-indent-line, python-indent-line-1): Delete functions.
2868 (python-indent-line): New function.
2869 (python-indentation-levels): Delete function.
2870 (python-indent-calculate-levels): New function.
2871 (python-proc): Delete function.
2872 (python-shell-get-process): New function.
2873 (python-send-receive): Delete function.
2874 (python-shell-send-string-no-output): New function.
2875 (python-module-path): Delete function.
2876 (python-ffap-module-path): New function.
2877 (python-completion-at-point)
2878 (python-symbol-completions): Delete functions.
2879 (python-completion-complete-at-point): New function.
2880 (python-load-file): Delete function.
2881 (python-shell-send-file): New function.
2882 (python-calculate-indentation): Delete function.
2883 (python-indent-calculate-indentation): New function.
2884 (python-skip-comments/blanks): Delete function.
2885 (python-util-forward-comment): New function.
2886 (python-continuation-line-p): Delete function.
2887 (python-info-continuation-line-p): New function.
2888 (python-which-func, python-current-defun): Delete function.
2889 (python-info-current-defun): New function.
2890 (python-beginning-of-defun): Delete function.
2891 (python-nav-beginning-of-defun): New function.
2892 (python-close-block-statement-p)
2893 (python-block-end-p): Delete function.
2894 (python-info-closing-block): New function.
2895 (python-comint-output-filter-function)
2896 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
2897 (python-fill-comment, python-fill-decorator, python-fill-paren)
2898 (python-fill-string, python-imenu-make-element-tree)
2899 (python-imenu-make-tree, python-imenu-tree-assoc)
2900 (python-indent-context, python-indent-dedent-line)
2901 (python-indent-line-function)
2902 (python-indent-post-self-insert-function)
2903 (python-indent-toggle-levels)
2904 (python-info-assignment-continuation-line-p)
2905 (python-info-beginning-of-backlash)
2906 (python-info-block-continuation-line-p)
2907 (python-info-closing-block-message)
2908 (python-info-line-ends-backslash-p)
2909 (python-info-looking-at-beginning-of-defun)
2910 (python-info-ppss-context, python-info-ppss-context-type)
2911 (python-nav-list-defun-positions, python-nav-read-defun)
2912 (python-nav-sentence-end, python-nav-sentence-start)
2913 (python-pdbtrack-comint-output-filter-function)
2914 (python-pdbtrack-set-tracked-buffer)
2915 (python-shell-calculate-exec-path)
2916 (python-shell-calculate-process-environment)
2917 (python-shell-completion--do-completion-at-point)
2918 (python-shell-completion--get-completions)
2919 (python-shell-completion-complete-at-point)
2920 (python-shell-completion-complete-or-indent)
2921 (python-shell-get-or-create-process)
2922 (python-shell-get-process-name)
2923 (python-shell-internal-get-or-create-process)
2924 (python-shell-internal-get-process-name)
2925 (python-shell-internal-send-string, python-shell-make-comint)
2926 (python-shell-parse-command, python-shell-send-setup-code)
2927 (python-skeleton-add-menu-items)
2928 (python-util-clone-local-variables, python-util-position)
2929 (run-python-internal, python-indentation-levels)
2930 (python-nav-beginning-of-defun)
2931 (python-completion-complete-at-point): New functions.
2932 (run-python): Change arguments. New API requirements.
2933
2934 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
2935
2936 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
2937 (bug#11649).
2938
2939 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
2940 (macroexp--expand-all): Use it.
2941
2942 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
2943 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
2944 Use `cl-function' instead.
2945
2946 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
2947
2948 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
2949 Suggested by Stefan Monnier while discussing bug#11657.
2950
2951 2012-06-14 Sam Steingold <sds@gnu.org>
2952
2953 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
2954
2955 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
2956
2957 * play/doctor.el (doctor-doc): Remove parameter and use
2958 doctor-sent instead of sent.
2959 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
2960
2961 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2962
2963 * files.el: Require cl-lib.
2964 (file-name-non-special): Replace case -> cl-case.
2965
2966 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
2967
2968 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
2969 mapping from #' to function*.
2970
2971 2012-06-13 Chong Yidong <cyd@gnu.org>
2972
2973 * mouse.el (mouse-drag-track): Do not set the mark if the user
2974 releases the mouse without selecting anything (Bug#11588).
2975
2976 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2977
2978 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
2979 as well (bug#11646).
2980
2981 * loadup.el: Count byte-code functions as well.
2982
2983 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
2984 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
2985
2986 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
2987 (bug#11649). Add cl-defun and cl-defmacro.
2988
2989 2012-06-13 Drew Adams <drew.adams@oracle.com>
2990
2991 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
2992 Fix last change.
2993
2994 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
2995
2996 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
2997 Otherwise, it blocks in batch mode.
2998
2999 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
3000
3001 * help-mode.el (bookmark-make-record-default): Declare.
3002
3003 2012-06-13 Chong Yidong <cyd@gnu.org>
3004
3005 * emacs-lisp/package.el (list-packages): Compute a list of
3006 packages that are newly-available since the last list-packages
3007 invocation.
3008 (package-menu--new-package-list): New var.
3009 (package-menu--generate, package-menu--print-info)
3010 (package-menu--status-predicate, package-menu-mark-install):
3011 Handle new status label "new".
3012
3013 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
3014
3015 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
3016 conversion to backquotes.
3017
3018 2012-06-12 Chong Yidong <cyd@gnu.org>
3019
3020 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
3021 Rename from gud-inhibit-global-bindings.
3022
3023 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
3024
3025 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
3026 hook from nxml-glyph-set-hook.
3027
3028 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
3029 declaration.
3030
3031 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
3032
3033 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
3034 Convert to defcustom.
3035
3036 2012-06-12 Drew Adams <drew.adams@oracle.com>
3037
3038 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
3039 New functions.
3040 (help-mode): Use them.
3041
3042 2012-06-11 Glenn Morris <rgm@gnu.org>
3043
3044 * progmodes/fortran.el (fortran-font-lock-keywords-3):
3045 Use preprocessor face for directives.
3046 (fortran-directive-re): Doc fix.
3047
3048 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
3049
3050 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
3051 conversion to backquotes (bug#11652).
3052
3053 Fix compiler-expansion of CL's cXXr functions (bug#11673).
3054 * emacs-lisp/cl-lib.el (cl--defalias): New function.
3055 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
3056 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
3057 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
3058 (cl-ninth, cl-tenth): Mark them as inlinable.
3059 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
3060 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
3061 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
3062 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
3063 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
3064 (cl-list*, cl-adjoin): Don't put an autoload manually.
3065 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
3066 (cl--compiler-macro-list*): Add autoload cookie.
3067 (cl--compiler-macro-cXXr): New function.
3068
3069 * help-fns.el (help-fns--compiler-macro): New function extracted from
3070 describe-function-1; follow aliases and use `compiler-macro' property.
3071 (describe-function-1): Use it.
3072
3073 2012-06-11 Chong Yidong <cyd@gnu.org>
3074
3075 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
3076 is uninstalled, if imagemagick is installed.
3077
3078 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
3079
3080 * emacs-lisp/cl-lib.el: Use lexical-binding.
3081 (cl-map-extents, cl-maclisp-member): Remove.
3082 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
3083 (cl--set-substring, cl--block-wrapper, cl--block-throw)
3084 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
3085 * emacs-lisp/cl-extra.el: Use lexical-binding.
3086 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
3087 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
3088 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
3089 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
3090 * emacs-lisp/cl-seq.el: Use lexical-binding.
3091 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
3092 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
3093 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
3094 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
3095 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
3096 CL's internals.
3097
3098 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
3099
3100 Sync with Tramp 2.2.6-pre.
3101
3102 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
3103 `print-length' and `print-level' to nil, in order to avoid
3104 truncation. Reported by Christopher Schmidt
3105 <christopher@ristopher.com>.
3106
3107 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
3108
3109 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
3110 New defmacro.
3111 (tramp-compat-copy-directory): Add optional argument
3112 COPY-CONTENTS. It is not handled yet.
3113
3114 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
3115 (tramp-ftp-file-name-p): Simplify.
3116
3117 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
3118 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
3119 connection vector.
3120
3121 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
3122 (tramp-methods): Do not use `tramp-password-end-of-line'.
3123 (tramp-completion-function-alist-putty): Handle UNIX case.
3124 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
3125 (tramp-do-file-attributes-with-stat)
3126 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
3127 gid as real numbers. They could run out of integer range on cygwin.
3128 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
3129 (tramp-sh-handle-expand-file-name): Handle hops.
3130 (tramp-open-connection-setup-interactive-shell):
3131 Use `tramp-cleanup'. Move check for busyboxes ...
3132 (tramp-find-shell): ... here. Simplify implementation.
3133 Set "remote-shell" property also for alternative shells.
3134 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
3135 If failing, a regular file would be written otherwise.
3136 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
3137 (tramp-find-inline-encoding): Cache the coding commands in the
3138 process cache. Apply test command on the remote side, if defined.
3139 (tramp-find-inline-compress): Cache the compress commands in the
3140 process cache.
3141 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
3142 when requested. Handle hops.
3143 (tramp-current-connection): New defvar.
3144 (tramp-maybe-open-connection): Use `tramp-cleanup'.
3145 Throw `suppress', if there was a failed connection shortly before.
3146 Handle user interrupt. (Bug#10187)
3147 (tramp-get-inline-compress, tramp-get-inline-coding):
3148 Read connection properties from the process cache.
3149
3150 * net/tramp-smb.el (tramp-smb-server-version)
3151 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
3152 New defconsts.
3153 (tramp-smb-prompt): Extend for powershell prompt.
3154 (tramp-smb-file-name-handler-alist): Add handlers for
3155 `process-file', `shell-command' and `start-file-process'.
3156 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
3157 (tramp-smb-winexe-shell-command-switch): New defcustoms.
3158 (tramp-smb-file-name-p): Simplify.
3159 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
3160 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
3161 (tramp-smb-shell-quote-argument): New defuns.
3162 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
3163 Implement using "tar". By this, time-stamps are preserved.
3164 (tramp-smb-handle-copy-file): Handle also the case of directories.
3165 (tramp-smb-do-file-attributes-with-stat)
3166 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
3167 Use `tramp-get-connection-buffer').
3168 (tramp-smb-handle-rename-file): Use "rename", when source and
3169 target are on the same share.
3170 (tramp-smb-maybe-open-connection): Handle wrong passwords.
3171 Use `tramp-smb-server-version'.
3172 (tramp-smb-wait-for-output): Remove prompt.
3173
3174 * net/tramp.el (top): Require 'cl.
3175 (tramp-methods, tramp-rsh-end-of-line):
3176 Remove `tramp-password-end-of-line' from docstring.
3177 (tramp-save-ad-hoc-proxies): New defcustom.
3178 (tramp-completion-function-alist): Adapt docstring.
3179 (tramp-default-password-end-of-line): Remove defcustom.
3180 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
3181 (tramp-user-regexp, tramp-file-name-regexp-unified)
3182 (tramp-file-name-regexp-url): Extend regexp by hop separator.
3183 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
3184 (tramp-remote-file-name-spec-regexp): New defconst.
3185 (tramp-file-name-structure): Extend structure for hops.
3186 (tramp-get-method-parameter): Move up.
3187 (tramp-file-name-p, tramp-dissect-file-name)
3188 (with-parsed-tramp-file-name): Handle hops.
3189 (tramp-file-name-hop): New defun.
3190 (tramp-make-tramp-file-name): New optional arg HOP.
3191 (tramp-message-show-progress-reporter-message): New defvar.
3192 (tramp-with-progress-reporter): Use it. We cannot use
3193 `tramp-message-show-message' here, because this suppresses also
3194 error buffers.
3195 (tramp-error-with-buffer): Suppress buffer view, if
3196 `tramp-message-show-message' is nil.
3197 Use `tramp-get-connection-buffer'.
3198 (tramp-cleanup): New defun.
3199 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
3200 (tramp-file-name-handler): If `debug-on-error' is set, propagate
3201 an error unchanged.
3202 (tramp-completion-handle-file-name-all-completions): Handle hops.
3203 Fix an error when called from ido.
3204 (tramp-completion-dissect-file-name): Use better local variable
3205 name. Add hop to the vector.
3206 (tramp-handle-insert-file-contents): Use progress-reporter for the
3207 whole scenario.
3208 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
3209 to `t'.
3210 (tramp-check-for-regexp): Simplify search.
3211 (tramp-enter-password): Remove it. Move implementation ...
3212 (tramp-action-password): ... here.
3213 (tramp-mode-string-to-int, tramp-local-host-p)
3214 (tramp-make-tramp-temp-file, tramp-read-passwd)
3215 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
3216 Set tramp-autoload cookie.
3217
3218 * net/trampver.el: Update release number.
3219
3220 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3221 Michael Albinus <michael.albinus@gmx.de>
3222
3223 * net/tramp.el (tramp-set-completion-function): Fix docstring.
3224 (tramp-parse-group, tramp-parse-file)
3225 (tramp-parse-shostkeys-sknownhosts): New defuns.
3226 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
3227 (tramp-parse-shosts-group, tramp-parse-sconfig)
3228 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
3229 (tramp-parse-sknownhosts, tramp-parse-hosts)
3230 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
3231 Use them.
3232 (tramp-parse-passwd-group, tramp-parse-netrc-group)
3233 (tramp-parse-putty-group): Don't narrow.
3234 (tramp-parse-putty): Make a loop.
3235 (tramp-file-name-handler): Catch the `suppress' signal.
3236
3237 2012-06-11 Chong Yidong <cyd@gnu.org>
3238
3239 * image.el (imagemagick-register-types): Put the ImageMagick entry
3240 at the end of image-type-file-name-regexps.
3241
3242 2012-06-11 Johan Bockgård <bojohan@gnu.org>
3243
3244 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
3245 (pcase, pcase-let*, pcase-dolist): Use them.
3246
3247 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
3248
3249 * emacs-lisp/pcase.el (pcase--let*): New function.
3250 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
3251 (pcase--expand): Use macroexp-let².
3252
3253 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
3254
3255 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
3256 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
3257 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
3258 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
3259 * emacs-lisp/derived.el: Use pcase instead of `cl'.
3260 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
3261
3262 2012-06-10 Glenn Morris <rgm@gnu.org>
3263
3264 * mail/rmail.el (rmail-yank-current-message): Leave point at
3265 correct position. (Bug#11660)
3266
3267 2012-06-10 Chong Yidong <cyd@gnu.org>
3268
3269 * allout-widgets.el: Fix code header.
3270
3271 2012-06-10 Chong Yidong <cyd@gnu.org>
3272
3273 * cus-edit.el (customize-changed-options-previous-release):
3274 Bump to 24.1.
3275
3276 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
3277
3278 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
3279
3280 2012-06-09 Chong Yidong <cyd@gnu.org>
3281
3282 * ebuff-menu.el (electric-buffer-list): Preserve header line.
3283
3284 2012-06-09 Martin Rudalics <rudalics@gmx.at>
3285
3286 * window.el (special-display-popup-frame): Don't use
3287 window--display-buffer (Bug#11651).
3288
3289 2012-06-09 Eli Zaretskii <eliz@gnu.org>
3290
3291 Fix parallel builds: make sure loaddefs.el is not being written
3292 while Lisp files are compiled.
3293 (compile): Don't depend on 'mh-autoloads'.
3294 (compile-CMD, compile-SH): Depend on 'autoloads'.
3295 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
3296
3297 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
3298
3299 2012-06-09 Chong Yidong <cyd@gnu.org>
3300
3301 * face-remap.el (face-remap-add-relative, face-remap-set-base)
3302 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
3303 Doc fixes (Bug#11225).
3304
3305 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
3306
3307 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
3308 a function if there's a clear indication that it has a compiler-macro.
3309 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
3310 (macro-declarations-alist): Add arglist to declaration functions.
3311 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
3312 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
3313 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
3314 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
3315 Also add autoload to find the compiler macro.
3316 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
3317 (cl--compiler-macro-member, cl--compiler-macro-assoc)
3318 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
3319 (cl--compiler-macro-get): New functions, replacing calls to
3320 cl-define-compiler-macro.
3321 (cl-typep) [compiler-macro]: Use macroexp-let².
3322
3323 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
3324
3325 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
3326 string properly, fixes Bug#11473.
3327
3328 2012-06-08 Chong Yidong <cyd@gnu.org>
3329
3330 * faces.el (set-face-attribute): Doc fix.
3331 (modify-face): Don't use :bold and :italic.
3332 (error, warning, success): Tweak definitions.
3333
3334 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
3335 (custom-modified, custom-set, custom-changed, custom-themed)
3336 (custom-saved, custom-button, custom-button-mouse)
3337 (custom-button-pressed, custom-state, custom-comment-tag)
3338 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
3339 (custom-group-subtitle): Use new-style face specs.
3340 (custom-invalid-face, custom-rogue-face, custom-modified-face)
3341 (custom-set-face, custom-changed-face, custom-saved-face)
3342 (custom-button-face, custom-button-pressed-face)
3343 (custom-documentation-face, custom-state-face)
3344 (custom-comment-face, custom-comment-tag-face)
3345 (custom-variable-tag-face, custom-variable-button-face)
3346 (custom-face-tag-face, custom-group-tag-face-1)
3347 (custom-group-tag-face): Remove obsolete face alias.
3348
3349 * epa.el (epa-validity-high, epa-validity-medium)
3350 (epa-validity-low, epa-mark, epa-field-name, epa-string)
3351 (epa-field-name, epa-field-body):
3352 * font-lock.el (font-lock-comment-face, font-lock-string-face)
3353 (font-lock-keyword-face, font-lock-builtin-face)
3354 (font-lock-function-name-face, font-lock-variable-name-face)
3355 (font-lock-type-face, font-lock-constant-face):
3356 * ido.el (ido-first-match, ido-only-match, ido-subdir)
3357 (ido-virtual, ido-indicator, ido-incomplete-regexp):
3358 * speedbar.el (speedbar-button-face, speedbar-file-face)
3359 (speedbar-directory-face, speedbar-tag-face)
3360 (speedbar-selected-face, speedbar-highlight-face)
3361 (speedbar-separator-face):
3362 * whitespace.el (whitespace-newline, whitespace-space)
3363 (whitespace-hspace, whitespace-tab, whitespace-trailing)
3364 (whitespace-line, whitespace-space-before-tab)
3365 (whitespace-space-after-tab, whitespace-indentation)
3366 (whitespace-empty):
3367 * emulation/cua-base.el (cua-global-mark):
3368 * eshell/em-prompt.el (eshell-prompt):
3369 * net/newst-plainview.el (newsticker-new-item-face)
3370 (newsticker-old-item-face, newsticker-immortal-item-face)
3371 (newsticker-obsolete-item-face, newsticker-date-face)
3372 (newsticker-statistics-face, newsticker-default-face):
3373 * net/newst-reader.el (newsticker-feed-face)
3374 (newsticker-extra-face, newsticker-enclosure-face):
3375 * net/newst-treeview.el (newsticker-treeview-face)
3376 (newsticker-treeview-new-face, newsticker-treeview-old-face)
3377 (newsticker-treeview-immortal-face)
3378 (newsticker-treeview-obsolete-face)
3379 (newsticker-treeview-selection-face):
3380 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
3381 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
3382 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
3383 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
3384 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
3385 (nxml-outline-active-indicator, nxml-outline-ellipsis):
3386 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
3387 (mpuz-text):
3388 * progmodes/vera-mode.el (vera-font-lock-number)
3389 (vera-font-lock-function, vera-font-lock-interface):
3390 * textmodes/table.el (table-cell): Use new-style face specs, and
3391 don't use the old :bold and :italic attributes.
3392
3393 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
3394 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
3395 (ebrowse-member-class, ebrowse-progress): Likewise.
3396 (ebrowse-tree-mark-face, ebrowse-root-class-face)
3397 (ebrowse-file-name-face, ebrowse-default-face)
3398 (ebrowse-member-attribute-face, ebrowse-member-class-face)
3399 (ebrowse-progress-face): Remove obsolete faces.
3400
3401 * progmodes/flymake.el (flymake-errline, flymake-warnline):
3402 Inherit from error and warning faces respectively.
3403
3404 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
3405 Likewise.
3406 (flyspell-incorrect-face, flyspell-duplicate-face):
3407 Remove obsolete aliases.
3408
3409 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
3410
3411 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
3412 Avoid infloop.
3413
3414 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
3415
3416 * startup.el (argv, argi): Make lexically scoped.
3417 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
3418 * emacs-lisp/cl-macs.el: Use lexical-binding.
3419 Rename cl-bind-* to cl--bind-*.
3420 * files.el: Don't require `cl' since it doesn't use it.
3421 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
3422
3423 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
3424
3425 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
3426 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
3427 instead of calling external sort utility.
3428 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
3429
3430 2012-06-08 Eli Zaretskii <eliz@gnu.org>
3431
3432 * descr-text.el (describe-char): Mention how to insert the
3433 character, if the current input method doesn't support it.
3434 See the discussion in this thread for the details:
3435 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
3436
3437 2012-06-08 Sam Steingold <sds@gnu.org>
3438
3439 * bindings.el (global-map): Bind XF86Forward to next-buffer and
3440 XF86Back to previous-buffer.
3441 (minibuffer-local-map): Bind them to next-history-element and
3442 previous-history-element respectively.
3443 * help-mode.el (help-mode-map): Bind them to help-go-forward and
3444 help-go-back respectively.
3445 * info.el (Info-mode-map): Bind them to Info-history-forward and
3446 Info-history-back respectively.
3447 These are the keys next to Up on the ThinkPad keyboard.
3448
3449 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
3450
3451 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
3452 * emacs-lisp/cl-macs.el: Provide itself.
3453 (cl--labels-convert-cache): New var.
3454 (cl--labels-convert): New function.
3455 (cl-flet, cl-labels): New implementation with new semantics, relying on
3456 lexical-binding.
3457 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
3458 (cl-closure-vars, cl--function-convert-cache)
3459 (cl--function-convert): Move from cl-macs.el.
3460 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
3461 rename by removing the "cl-" prefix.
3462 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
3463
3464 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3465
3466 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
3467 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
3468 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
3469 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
3470 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
3471 (cl-hash-table-count): Add old compatibility aliases.
3472
3473 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
3474 Use macroexpand-all-environment instead.
3475 (cl--old-macroexpand): New var.
3476 (cl--sm-macroexpand): New function.
3477 (cl-symbol-macrolet): Use it during macro expansion.
3478 (cl--function-convert-cache): New var.
3479 (cl--function-convert): New function, extracted from
3480 cl-macroexpand-all.
3481 (cl-lexical-let): Use it.
3482
3483 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
3484 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
3485 (cl-member): Remove old alias.
3486
3487 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
3488 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
3489 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
3490 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
3491 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
3492 (cl-macroexpand-cmacs): Remove var.
3493 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
3494 Use macroexpand-all instead.
3495
3496 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3497
3498 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
3499 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
3500 (macroexp-copyable-p): New functions and macros.
3501 * emacs-lisp/edebug.el (edebug-unwrap):
3502 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
3503 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
3504 (pcase--let*): Remove.
3505 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
3506 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
3507 macroexp-const-p instead.
3508 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
3509
3510 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
3511 instead of "cl-" for internal definitions. Use macroexp-const-p.
3512 (cl-old-bc-file-form): Remove var.
3513 (cl-const-exprs-p): Remove fun.
3514 (cl-labels, cl-macrolet): Use backquote.
3515 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
3516 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
3517 (cl-define-setf-expander): Rename from cl-define-setf-method.
3518 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
3519
3520 * international/mule-cmds.el: Don't require CL.
3521 (view-hello-file): Don't use `letf'.
3522
3523 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3524
3525 * tmm.el (tmm-prompt): Use string-prefix-p.
3526 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
3527 (tmm-add-prompt): Use minibuffer-completion-help.
3528 (tmm-delete-map): Remove.
3529
3530 * subr.el (kbd): Make it its own function.
3531
3532 2012-06-07 Stefan Merten <smerten@oekonux.de>
3533
3534 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
3535 Silence compiler warnings. Fix versions.
3536 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
3537 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
3538 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
3539 (rst-package-emacs-version-alist): Correct Emacs version to
3540 represent major merge with upstream.
3541 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
3542
3543 2012-06-06 Glenn Morris <rgm@gnu.org>
3544
3545 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
3546 Only print environment variables if set.
3547
3548 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
3549
3550 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
3551 (macroexp--cons): Rename from maybe-cons.
3552 (macroexp--accumulate): Rename from macroexp-accumulate.
3553 (macroexp--all-forms): Rename from macroexpand-all-forms.
3554 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
3555 (macroexp--expand-all): Rename from macroexpand-all-1.
3556
3557 2012-06-06 Sam Steingold <sds@gnu.org>
3558
3559 * calendar/calendar.el (calendar-in-read-only-buffer):
3560 Call `special-mode' to enable the standard read-only keybindings.
3561
3562 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
3563
3564 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
3565 with "loading" messages (bug#11635).
3566
3567 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
3568
3569 * files.el (enable-remote-dir-locals): New option.
3570 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
3571
3572 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
3573 Ensure, that the temp directory is local.
3574
3575 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
3576 `temporary-file-directory'.
3577
3578 * progmodes/python.el (python-send-region): Ensure, that the
3579 temporary file is created also in the remote case.
3580
3581 2012-06-06 Glenn Morris <rgm@gnu.org>
3582
3583 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
3584 (vc-rcs-update-changelog): Use it.
3585
3586 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
3587
3588 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
3589 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
3590 (vc-sccs-diff): Replace use of the external vcdiff script.
3591
3592 2012-06-05 Glenn Morris <rgm@gnu.org>
3593
3594 * ledit.el: Move to obsolete/.
3595
3596 2012-06-05 Sam Steingold <sds@gnu.org>
3597
3598 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
3599 patch (Bug#11140).
3600
3601 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
3602
3603 * emacs-lisp/cust-print.el: Move to obsolete.
3604
3605 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
3606 compiler-macro expansion.
3607
3608 Add native compiler-macro support.
3609 * emacs-lisp/macroexp.el (macroexpand-all-1):
3610 Support compiler-macros directly. Properly follow aliases and apply
3611 the compiler macros more thoroughly.
3612 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
3613 macroexpand now properly follows aliases.
3614 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
3615 (cl-compiler-macroexpand): Use new prop.
3616 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
3617
3618 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
3619
3620 2012-06-05 Martin Rudalics <rudalics@gmx.at>
3621
3622 * window.el (get-lru-window, get-mru-window, get-largest-window):
3623 New argument NOT-SELECTED to avoid picking the selected window.
3624 (window--display-buffer-1, window--display-buffer-2): Replace by
3625 new function window--display-buffer
3626 (display-buffer-same-window, display-buffer-reuse-window)
3627 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
3628 Use window--display-buffer.
3629 (display-buffer-use-some-window): Remove temporary dedication
3630 hack by calling get-lru-window and get-largest-window with
3631 NOT-SELECTED argument non-nil. Call window--display-buffer.
3632
3633 2012-06-05 Glenn Morris <rgm@gnu.org>
3634
3635 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
3636 Replace external vcdiff script.
3637
3638 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
3639
3640 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
3641
3642 2012-06-04 Chong Yidong <cyd@gnu.org>
3643
3644 * image.el (imagemagick-types-inhibit): Revert last change.
3645 Add INFO and M.
3646 (imagemagick-enabled-types): Remove CIN and EPS*.
3647
3648 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
3649
3650 * emacs-lisp/cl-lib.el: Rename from cl.el.
3651 * emacs-lisp/cl.el: New compatibility file.
3652 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
3653 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
3654 to obey the "cl-" prefix.
3655 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
3656
3657 2012-06-03 Glenn Morris <rgm@gnu.org>
3658
3659 * emacs-lisp/authors.el (authors-aliases): Addition.
3660
3661 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
3662 Fix :version.
3663
3664 2012-06-03 Stefan Merten <smerten@oekonux.de>
3665
3666 * textmodes/rst.el: Add comments.
3667 (rst-transition, rst-adornment): New faces.
3668 (rst-adornment-faces-alist): Make default safe to reevaluate.
3669 Fixes
3670 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
3671 Improve customization tags.
3672 (rst-define-level-faces): Clarify meaning.
3673
3674 2012-06-03 Chong Yidong <cyd@gnu.org>
3675
3676 * progmodes/compile.el (compilation-mode-line-fail)
3677 (compilation-mode-line-run, compilation-mode-line-exit):
3678 New faces.
3679 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
3680
3681 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
3682
3683 * progmodes/which-func.el (which-func-update-ediff-windows):
3684 New function. Use it in ediff-select-hook (Bug#11478).
3685
3686 2012-06-03 Chong Yidong <cyd@gnu.org>
3687
3688 * bindings.el: Remove explicit help text from format-mode-line.
3689 It is now supplied by mode-line-default-help-echo.
3690 (mode-line-front-space, mode-line-end-spaces)
3691 (mode-line-misc-info): New variables.
3692 (mode-line-modes, mode-line-position): Move the default value to
3693 the variable definition.
3694 (mode-line-default-help-echo): New defcustom.
3695 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
3696 (mode-line-modified-help-echo): New functions.
3697 (mode-line-mule-info, mode-line-modified): Use them.
3698 (mode-line-eol-desc, propertized-buffer-identification):
3699 Consistency fixes for help text.
3700 (mode-line-coding-system-map): Allow using mouse-3 to invoke
3701 set-buffer-file-coding-system (Bug#289).
3702 (mode-line-mule-info-help-echo): Update help text.
3703
3704 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 * simple.el (execute-extended-command): Set real-this-command
3707 (bug#11506).
3708
3709 2012-06-02 Chong Yidong <cyd@gnu.org>
3710
3711 Remove incorrect uses of "modeline" in comments, docstrings, and
3712 function/variable names (Bug#10329).
3713
3714 * cus-edit.el (mode-line):
3715 * dframe.el (dframe-mouse-hscroll):
3716 * emacs-lisp/re-builder.el:
3717 * emacs-lisp/easy-mmode.el (define-minor-mode):
3718 * frame.el (set-frame-name):
3719 * help.el (lookup-minor-mode-from-indicator):
3720 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
3721 * progmodes/cc-cmds.el (c-toggle-auto-newline)
3722 (c-toggle-hungry-state):
3723 * progmodes/antlr-mode.el (antlr-language-alist):
3724 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
3725 * progmodes/vhdl-mode.el (vhdl-mode):
3726 * progmodes/which-func.el (which-func, which-func-cleanup-function):
3727 * term/ns-win.el (ns-face-at-pos):
3728 * term/sup-mouse.el (sup-mouse-report):
3729 * textmodes/flyspell.el (flyspell-mode-line-string):
3730 * textmodes/ispell.el (ispell-highlight-face):
3731 * textmodes/reftex-global.el:
3732 * vc/vc-arch.el (vc-arch-mode-line-string):
3733 * vc/vc-cvs.el (vc-cvs-mode-line-string):
3734 * vc/vc-git.el (vc-git-mode-line-string):
3735 * vc/vc-hooks.el (vc-display-status)
3736 (vc-default-mode-line-string):
3737 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
3738
3739 * ansi-color.el (ansi-color-faces-vector): Change default faces.
3740
3741 * dired.el (dired-sort-set-mode-line): Rename from
3742 dired-sort-set-modeline. All callers changed.
3743
3744 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
3745 eshell-status-in-modeline.
3746
3747 * foldout.el (foldout-mode-line-string): Rename from
3748 foldout-modeline-string. All callers changed.
3749 (foldout-update-mode-line): Rename from foldout-update-modeline.
3750
3751 * subr.el (redraw-modeline): Make into obsolete alias.
3752
3753 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
3754 timeclock-modeline-display. Make old name an alias.
3755 (timeclock-update-mode-line): Likewise. All callers changed.
3756 (timeclock-mode-line-display): No need to check before using
3757 add-hook.
3758 (timeclock-relative, timeclock-day-over-hook)
3759 (timeclock-use-elapsed, timeclock-mode-string)
3760 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
3761
3762 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
3763 crisp-mode-modeline-string.
3764
3765 * play/solitaire.el (solitaire-build-mode-line): Rename from
3766 solitaire-build-modeline. All callers changed.
3767
3768 * play/zone.el (zone-hiding-mode-line): Rename from
3769 zone-hiding-modeline. All callers changed.
3770 (zone): Remove unusued `modeline-hidden-level' property.
3771
3772 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
3773 xscheme-modeline-initialize. All callers changed.
3774
3775 * strokes.el (strokes-lighter): Rename from
3776 strokes-modeline-string.
3777
3778 * textmodes/sgml-mode.el (html-face-tag-alist)
3779 (html-tag-face-alist): Use mode-line face instead of obsolete
3780 alias modeline.
3781
3782 2012-06-02 Stefan Merten <smerten@oekonux.de>
3783
3784 * textmodes/rst.el: Always require `cl'.
3785 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
3786
3787 2012-06-02 Chong Yidong <cyd@gnu.org>
3788
3789 * image.el (imagemagick-enabled-types): Rename from
3790 imagemagick-types-enable. Add many more types.
3791 (imagemagick-types-inhibit): Change default to nil.
3792 (imagemagick-filter-types): Caller changed.
3793
3794 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3795
3796 * emacs-lisp/cl-macs.el: Use backquotes.
3797 (cl-transform-function-property): Use eval-and-compile rather than
3798 abusing `require'.
3799 (defstruct): Use declare-function instead of with-no-warnings.
3800
3801 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
3802 (byte-compile-output-docform): Re-add the print-circle bindings.
3803 (byte-compile-fix-header): Use #$ just because it's shorter.
3804 (byte-compile-output-file-form): Remove defun/defmacro.
3805
3806 2012-06-01 Martin Rudalics <rudalics@gmx.at>
3807
3808 * simple.el (choose-completion): Remove now obsolete binding for
3809 owindow.
3810
3811 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
3812
3813 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
3814 in order to avoid "Stack overflow in regexp matcher".
3815
3816 2012-05-31 Glenn Morris <rgm@gnu.org>
3817
3818 * image.el: For clarity, call imagemagick-register-types at
3819 top-level, rather than relying on a custom :initialize.
3820 (imagemagick-types-enable): New option. (Bug#11557)
3821 (imagemagick-filter-types): New function. (Bug#7406)
3822 (imagemagick-register-types): Use imagemagick-filter-types.
3823 If disabling support, remove elements altogether rather
3824 than using an impossible regexp.
3825 (imagemagick-types-inhibit): Give it the default init function.
3826
3827 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3828
3829 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
3830 Handle arbitrary file name lengths (Bug#11585).
3831
3832 2012-05-31 Martin Rudalics <rudalics@gmx.at>
3833
3834 * desktop.el (desktop-read): Clear previous and next buffers for
3835 all windows and bury *Messages* buffer (bug#11556).
3836
3837 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3838
3839 Add `declare' for `defun'. Align `defmacro's with it.
3840 * emacs-lisp/easy-mmode.el (define-minor-mode)
3841 (define-globalized-minor-mode): Don't autoload the var definitions.
3842 * emacs-lisp/byte-run.el: Use lexical-binding.
3843 (defun-declarations-alist, macro-declarations-alist): New vars.
3844 (defmacro, defun): Use them.
3845 (make-obsolete, define-obsolete-function-alias)
3846 (make-obsolete-variable, define-obsolete-variable-alias):
3847 Use `declare'.
3848 (macro-declaration-function): Mark obsolete.
3849 * emacs-lisp/autoload.el: Use lexical-binding.
3850 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
3851
3852 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3853
3854 * textmodes/ispell.el (ispell-with-no-warnings):
3855 Define as a macro.
3856 (ispell-kill-ispell, ispell-change-dictionary):
3857 Use `called-interactively-p' for Emacs instead of obsolete
3858 `interactive-p'.
3859
3860 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3861
3862 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
3863 (macro-declaration-function): Move var from C code.
3864 (macro-declaration-function): Define function with defalias.
3865 * emacs-lisp/macroexp.el (macroexpand-all-1):
3866 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
3867 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
3868 defun/defmacro any more.
3869 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
3870 Provide fallback for unknown arglist.
3871 (byte-compile-arglist-warn): Change calling convention.
3872 (byte-compile-output-file-form): Move print-vars binding.
3873 (byte-compile-output-docform): Simplify accordingly.
3874 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
3875 (byte-compile-defmacro-declaration): Remove.
3876 (byte-compile-file-form-defmumble): Generalize to defalias.
3877 (byte-compile-output-as-comment): Return byte-positions.
3878 Simplify callers accordingly.
3879 (byte-compile-lambda): Use `assert'.
3880 (byte-compile-defun, byte-compile-defmacro): Remove.
3881 (byte-compile-file-form-defalias):
3882 Use byte-compile-file-form-defmumble.
3883 (byte-compile-defalias-warn): Remove.
3884
3885 2012-05-29 Stefan Merten <smerten@oekonux.de>
3886
3887 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
3888 possible. Fix authors. Improve comments. Improve loading of `cl'.
3889
3890 (rst-mode-abbrev-table): Merge definition.
3891 (rst-mode): Make sure `font-lock-defaults' is buffer local.
3892 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
3893
3894 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
3895
3896 * calendar/icalendar.el
3897 (icalendar-export-region): Export UID properly.
3898
3899 2012-05-29 Leo Liu <sdl.web@gmail.com>
3900 * calendar/icalendar.el (icalendar-import-format):
3901 Add `icalendar-import-format-uid' (Bug#11525).
3902 (icalendar-import-format-uid): New.
3903 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
3904 Export UID.
3905
3906 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
3907
3908 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
3909 different alternative patterns.
3910 (pcase-codegen): Be more careful to preserve identity.
3911 (pcase--u1): Don't forget to mark vars as used.
3912
3913 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
3914 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
3915 (byte-compile-from-buffer): ...rather than here.
3916
3917 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
3918 functions from byte-compile-function-environment.
3919
3920 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
3921
3922 * window.el (window-deletable-p): Avoid deleting the root window
3923 of a frame with an active minibuffer.
3924
3925 2012-05-29 Martin Rudalics <rudalics@gmx.at>
3926
3927 * simple.el (choose-completion): Use quit-window (Bug#11567).
3928
3929 2012-05-29 Chong Yidong <cyd@gnu.org>
3930
3931 * whitespace.el (whitespace-cleanup): Fix usage of
3932 whitespace-empty-at-bob-regexp (Bug#11492).
3933
3934 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3935
3936 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
3937 revert (Bug#11488).
3938
3939 2012-05-29 Juri Linkov <juri@jurta.org>
3940
3941 * isearch.el (isearch-mode-map): Bind `M-s _' to
3942 `isearch-toggle-symbol'. Bind `M-s c' to
3943 `isearch-toggle-case-fold'.
3944 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
3945 (isearch-forward): Add `M-s _' to the docstring.
3946 (isearch-forward-symbol, isearch-toggle-case-fold)
3947 (isearch-symbol-regexp): New functions. (Bug#11381)
3948
3949 2012-05-29 Juri Linkov <juri@jurta.org>
3950
3951 * isearch.el (isearch-word): Add docstring. (Bug#11381)
3952 (isearch-occur, isearch-search-and-update): If `isearch-word' is
3953 a function, call it to get the regexp.
3954 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
3955 property `isearch-message-prefix' instead of the string "word ".
3956 (isearch-search-fun-default): For the case of `isearch-word',
3957 return a lambda that calls re-search-forward/re-search-backward
3958 with a regexp returned by `word-search-regexp' or by the function
3959 in `isearch-word'.
3960
3961 2012-05-29 Juri Linkov <juri@jurta.org>
3962
3963 * isearch.el (isearch-search-fun-default): New function.
3964 (isearch-search-fun): Move default part to the new function
3965 `isearch-search-fun-default'.
3966 (isearch-search-fun-function): Set the default value to
3967 `isearch-search-fun-default'. (Bug#11381)
3968
3969 * comint.el (comint-history-isearch-end):
3970 Use `isearch-search-fun-default'.
3971 (comint-history-isearch-search): Use `isearch-search-fun-default'
3972 and remove spacial case for `isearch-word'.
3973 (comint-history-isearch-wrap): Remove spacial case for
3974 `isearch-word'.
3975
3976 * hexl.el (hexl-isearch-search-function):
3977 Use `isearch-search-fun-default'.
3978
3979 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
3980 Use `word-search-regexp' for `isearch-word'.
3981
3982 * misearch.el (multi-isearch-search-fun):
3983 Use `isearch-search-fun-default'.
3984
3985 * simple.el (minibuffer-history-isearch-search):
3986 Use `isearch-search-fun-default' and remove spacial case for
3987 `isearch-word'.
3988 (minibuffer-history-isearch-wrap): Remove spacial case for
3989 `isearch-word'.
3990
3991 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
3992 Remove spacial case for `isearch-word'.
3993 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
3994
3995 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3996
3997 Decrease XEmacs incompatibilities.
3998 * textmodes/flyspell.el (flyspell-check-pre-word-p):
3999 Use `string-match'.
4000 (flyspell-delete-region-overlays): Use alternative definition for
4001 XEmacs.
4002 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
4003 (flyspell-word): Use `process-kill-without-query' if XEmacs.
4004 (flyspell-mode-on): Use `interactive-p' if XEmacs.
4005 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
4006 `define-obsolete-face-alias' under XEmacs, but old method.
4007
4008 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
4009 `with-no-warnings' definition or Emacs alias.
4010 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
4011 (ispell-word): Do not use `region-p' if XEmacs.
4012
4013 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4014
4015 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
4016 Check for `ispell-dictionary-base-alist' instead of full
4017 `ispell-dictionary-alist'.
4018 (ispell-init-process): Show spellchecker when starting new Ispell
4019 process.
4020
4021 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4022
4023 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
4024 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
4025
4026 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
4027
4028 * version.el (motif-version-string, gtk-version-string)
4029 (ns-version-string): Declare.
4030
4031 2012-05-27 Juri Linkov <juri@jurta.org>
4032
4033 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
4034 after the `eval-defun-1' specialcaseing
4035 like in `edebug-eval-defun' (bug#10181).
4036
4037 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
4038 like in `eval-defun-1'.
4039
4040 2012-05-27 Eli Zaretskii <eliz@gnu.org>
4041
4042 * mail/sendmail.el (mail-yank-region):
4043 Recognize rmail-yank-current-message in addition to insert-buffer.
4044 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
4045 a *mail* buffer created through rmail-start-mail with sendmail as
4046 mail-user-agent.
4047
4048 2012-05-27 Chong Yidong <cyd@gnu.org>
4049
4050 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
4051 Default to 256 (Bug#11267).
4052
4053 * help.el (describe-mode): Doc fix.
4054
4055 2012-05-26 Glenn Morris <rgm@gnu.org>
4056
4057 * w32-fns.el (w32-init-info): Remove.
4058 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
4059
4060 * info.el (info-initialize): For self-contained NS builds, put the
4061 included info/ directory at the front. (Bug#2791)
4062
4063 * paths.el (Info-default-directory-list): Make it a defcustom,
4064 mainly so that we can use custom-initialize-delay.
4065
4066 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
4067
4068 * subr.el (buffer-has-markers-at): Mark obsolete.
4069
4070 * subr.el (lambda): Use declare.
4071
4072 * emacs-lisp/lisp-mode.el (lambda):
4073 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
4074
4075 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
4076
4077 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
4078
4079 2012-05-26 Glenn Morris <rgm@gnu.org>
4080
4081 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
4082
4083 2012-05-25 Glenn Morris <rgm@gnu.org>
4084
4085 * paths.el: Remove no-byte-compile.
4086 * loadup.el: No need to load paths.el uncompiled.
4087
4088 * image.el (imagemagick-types-inhibit): Doc fix.
4089
4090 * version.el: Remove no-byte-compile and associated formatting.
4091 * loadup.el: No need to load version.el uncompiled. AFAICS, this
4092 is ancient code from when there was an "inc-vers.el".
4093
4094 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
4095
4096 * progmodes/gdb-mi.el: Minor style changes.
4097 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
4098 Turn into minor modes.
4099 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
4100 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
4101 (gdb-shell): Remove unneeded let-binding.
4102 (gdb-get-many-fields): Eliminate O(n²) behavior.
4103
4104 2012-05-25 Eli Zaretskii <eliz@gnu.org>
4105
4106 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
4107 platforms that don't link in fontset.c.
4108
4109 2012-05-25 Juri Linkov <juri@jurta.org>
4110
4111 Use the same diff color scheme as in modern VCSes (bug#10181).
4112
4113 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
4114 to avoid confusion with `diff-added' that now uses green colors.
4115 (diff-removed): Use shades of red.
4116 (diff-added): Use shades of green.
4117 (diff-changed): Leave just the yellow color.
4118 (diff-use-changed-face): New variable.
4119 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
4120 how to highlight context diff changes.
4121 (diff-refine-change): Use shades of yellow.
4122 (diff-refine-removed): New face that uses shades of red.
4123 (diff-refine-added): New face that uses shades of green.
4124 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
4125 `diff-refine-removed' in the call to `smerge-refine-subst'
4126 depending on the value of `diff-use-changed-face'.
4127
4128 * vc/smerge-mode.el (smerge-mine): Use shades of red.
4129 (smerge-other): Use shades of green.
4130 (smerge-base): Use shades of yellow.
4131 (smerge-refined-change): Empty face.
4132 (smerge-refined-removed): New face that uses shades of red.
4133 (smerge-refined-added): New face that uses shades of green.
4134 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
4135 args `props-r' and `props-a', and use them. Doc fix.
4136 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
4137 on its value use different faces `smerge-refined-change',
4138 `smerge-refined-removed', `smerge-refined-added' in the call to
4139 `smerge-refine-subst'.
4140
4141 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
4142 Add face condition `min-colors 88' with shades of red.
4143 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
4144 `min-colors 88' with shades of green.
4145 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
4146 `min-colors 88' with shades of yellow.
4147
4148 2012-05-24 Glenn Morris <rgm@gnu.org>
4149
4150 * paths.el (prune-directory-list, remote-shell-program): Move to...
4151 * files.el (prune-directory-list, remote-shell-program): ...here.
4152 For the latter, delay initialization, prefer ssh, just search PATH.
4153
4154 * paths.el (term-file-prefix): Move to faces.el (the only user).
4155 * faces.el (term-file-prefix): Move here, make it a defcustom.
4156
4157 * paths.el (news-directory, news-path, news-inews-program):
4158 Move to gnus/nnspool.el.
4159
4160 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
4161
4162 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
4163 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
4164 Make the latter a defcustom, with a delayed initialization.
4165
4166 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
4167 These were deleted from Gnus itself late 2010.
4168
4169 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
4170
4171 * progmodes/which-func.el (which-func-ff-hook):
4172 Check against user-error, not error.
4173
4174 * emacs-lisp/edebug.el (top): Do not load or set up loading of
4175 cl-specs.el, which no longer exists.
4176
4177 2012-05-22 Glenn Morris <rgm@gnu.org>
4178
4179 * info.el (info-emacs-bug): New command.
4180 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
4181 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
4182
4183 2012-05-21 Glenn Morris <rgm@gnu.org>
4184
4185 * makefile.w32-in (update-subdirs-SH):
4186 * Makefile.in (update-subdirs): Update for moved update-subdirs.
4187
4188 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
4189
4190 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
4191
4192 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4193 Simplify Maven regexp, and make sure the file can't start with a space
4194 (bug#11517).
4195
4196 2012-05-21 Glenn Morris <rgm@gnu.org>
4197
4198 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4199 Scrap superfluous subshells.
4200
4201 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4202
4203 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
4204 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
4205
4206 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
4207
4208 * calc/calc.el (calc-ensure-consistent-units): New variable.
4209
4210 * calc/calc-units.el (math-consistent-units-p)
4211 (math-check-unit-consistency): New functions.
4212 (calc-quick-units, calc-convert-units):
4213 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
4214 is non-nil.
4215 (calc-extract-units): Fix typo.
4216
4217 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4218
4219 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
4220
4221 * textmodes/flyspell.el: Commenting style, plus code simplifications.
4222 (flyspell-default-deplacement-commands): Don't spell check after
4223 repeated window/frame switches (e.g. triggered by mouse-movement).
4224 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
4225 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
4226 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
4227 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
4228 Remove unused vars.
4229 (flyspell-get-casechars, flyspell-get-not-casechars):
4230 Simplify; Don't bother removing a ] just to add it back.
4231 * textmodes/ispell.el (ispell-program-name): Use executable-find.
4232
4233 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4234
4235 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
4236 New functions.
4237 (math-function-table): Add support for more C functions.
4238
4239 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4240
4241 * textmodes/flyspell.el (flyspell-check-pre-word-p)
4242 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
4243 Protect delay handling for otherchars against empty otherchars.
4244
4245 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4246
4247 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
4248 their respective macro declarations.
4249 * skeleton.el (define-skeleton):
4250 * progmodes/compile.el (define-compilation-mode):
4251 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
4252 (define-ibuffer-filter):
4253 * emacs-lisp/generic.el (define-generic-mode):
4254 * emacs-lisp/easy-mmode.el (define-minor-mode)
4255 (define-globalized-minor-mode):
4256 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
4257 * emacs-lisp/byte-run.el (defsubst):
4258 * custom.el (deftheme): Add doc-string metadata.
4259
4260 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4261
4262 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
4263
4264 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4265
4266 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
4267
4268 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
4269 * emacs-lisp/cl-macs.el: Idem.
4270 * emacs-lisp/cl-specs.el: Remove.
4271
4272 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4273
4274 Minor renaming of internal CL functions and variables.
4275 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
4276 (cl--position): Rename from cl-position.
4277 (cl--delete-duplicates): Rename from cl-delete-duplicates.
4278 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
4279 (cl--random-state): Rename from *random-state*.
4280
4281 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4282
4283 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
4284 parens around the arg list (bug#11499).
4285
4286 2012-05-17 Juri Linkov <juri@jurta.org>
4287
4288 * isearch.el (word-search-regexp, word-search-backward)
4289 (word-search-forward, word-search-backward-lax)
4290 (word-search-forward-lax): Move functions from search.c
4291 (bug#10145, bug#11381).
4292
4293 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4294
4295 * textmodes/flyspell.el (flyspell-check-pre-word-p)
4296 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
4297 Delay for otherchars as for normal word components.
4298
4299 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
4300
4301 * minibuffer.el (completion--sifn-requote): Fix last change.
4302 (minibuffer-local-must-match-filename-map):
4303 Move define-obsolete-variable-alias before its var.
4304
4305 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
4306
4307 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
4308
4309 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
4310 behavior.
4311 (completion--string-equal-p): New function.
4312 (completion--twq-all): Use it to get better assertion failure data.
4313
4314 Only handle ".." and '..' quoting in shell-mode (bug#11466).
4315 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
4316 (shell--requote-argument): New functions.
4317 (shell-completion-vars): Use them.
4318 (shell--parse-pcomplete-arguments): Rename from
4319 shell-parse-pcomplete-arguments.
4320 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
4321 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
4322 Obey comint-file-name-quote-list.
4323
4324 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
4325 (smie-indent-keyword): Use it.
4326
4327 2012-05-14 Stefan Merten <smerten@oekonux.de>
4328
4329 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
4330
4331 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4332
4333 * net/rlogin.el (rlogin-mode-map): Fix last change.
4334
4335 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
4336
4337 * mail/smtpmail.el (smtpmail-send-command): Send the command and
4338 the following \r\n using a single `process-send-string', since the
4339 Lotus SMTP server refuses to accept any commands if they are sent
4340 with two `process-send-string's (Bug#11444).
4341
4342 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4343
4344 * shell.el (shell-parse-pcomplete-arguments):
4345 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
4346
4347 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
4348
4349 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
4350 (image-transform-scale, image-transform-right-angle-fudge): New vars.
4351 (image-transform-width, image-transform-fit-width): New functions.
4352 (image-transform-properties): Use them.
4353 (image-transform-check-size): New function.
4354 (image-toggle-display-image): Use it (for testing).
4355 (image-transform-set-rotation): Reduce angle mod 360.
4356 Delete obsolete comment.
4357
4358 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
4359
4360 * image-mode.el: Fix scaling (bug#11399).
4361 (image-transform-resize): Doc fix.
4362 (image-transform-properties): Default scale is 1 and height should
4363 be an integer.
4364
4365 2012-05-13 Johan Bockgård <bojohan@gnu.org>
4366
4367 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
4368 than hard-coding `car', to fix misbehavior when moving forward.
4369
4370 2012-05-13 Chong Yidong <cyd@gnu.org>
4371
4372 * emacs-lisp/tabulated-list.el (tabulated-list-format)
4373 (tabulated-list-entries, tabulated-list-padding)
4374 (tabulated-list-sort-key): Make permanent-local.
4375
4376 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
4377 (electric-buffer-list): Put electric buffer menu
4378 command descriptions in this docstring, instead of the docstring
4379 of electric-buffer-menu-mode. Code cleanups.
4380 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
4381 Electric-buffer-menu-mode.
4382 (electric-buffer-update-highlight): Minor code cleanup.
4383
4384 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
4385
4386 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
4387 (Bug#11447)
4388
4389 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4390
4391 Move define-obsolete-variable-alias before the var's definition.
4392 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
4393 * tooltip.el (tooltip-hook):
4394 * textmodes/reftex-toc.el (reftex-toc-map):
4395 * textmodes/reftex-sel.el (reftex-select-label-map)
4396 (reftex-select-bib-map):
4397 * textmodes/reftex-index.el (reftex-index-map)
4398 (reftex-index-phrases-map):
4399 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
4400 * progmodes/meta-mode.el (meta-mode-map):
4401 * novice.el (disabled-command-hook):
4402 * loadhist.el (unload-hook-features-list):
4403 * frame.el (blink-cursor):
4404 * files.el (find-file-not-found-hooks, write-file-hooks)
4405 (write-contents-hooks):
4406 * emulation/tpu-edt.el (GOLD-map):
4407 * emacs-lock.el (emacs-lock-from-exiting):
4408 * emacs-lisp/generic.el (generic-font-lock-defaults):
4409 * emacs-lisp/chart.el (chart-map):
4410 * dos-fns.el (register-name-alist):
4411 * dired-x.el (dired-omit-files-p):
4412 * desktop.el (desktop-enable):
4413 * cus-edit.el (custom-mode-hook):
4414 * buff-menu.el (buffer-menu-mode-hook):
4415 * bookmark.el (bookmark-read-annotation-text-func)
4416 (bookmark-exit-hooks):
4417 * allout.el (allout-mode-deactivate-hook)
4418 (allout-exposure-change-hook, allout-structure-added-hook)
4419 (allout-structure-deleted-hook, allout-structure-shifted-hook):
4420 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
4421 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
4422 comes before the corresponding variable's definition.
4423
4424 2012-05-12 Chong Yidong <cyd@gnu.org>
4425
4426 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
4427 (Buffer-menu-mouse-select): Restore function (Bug#11459).
4428 (Buffer-menu-mode-map): Bind it.
4429 (Buffer-menu--pretty-name): Add a mouse-face property.
4430
4431 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
4432
4433 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
4434 (prolog-upper-case-string, prolog-lower-case-string)
4435 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
4436 (prolog-use-smie, prolog-smie-grammar): New vars.
4437 (prolog-smie-forward-token, prolog-smie-backward-token)
4438 (prolog-smie-rules): New funs.
4439 (prolog-comment-indent): Remove.
4440 (prolog-mode-variables): Use default comment indentation instead.
4441 Setup SMIE.
4442 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
4443 (prolog-mode): Don't call them any more.
4444 (prolog-electric-colon, prolog-electric-dash)
4445 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
4446
4447 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
4448
4449 * minibuffer.el (completion--twq-all): Again, allow case differences.
4450
4451 * term.el: Move keymap initialization code to be more idiomatic.
4452 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
4453 (term-terminal-menu): Move initialization into declaration.
4454 (term-escape-char): Let the user set it in her .emacs.
4455
4456 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
4457 Provide SMIE-based indentation (not enabled by default yet).
4458 (sh-mode-map): Don't bind electric keys.
4459 Use electric-pair-mode instead of skeleton-pair.
4460 (sh-assignment-regexp): Fit within 80 columns.
4461 (sh-indent-supported): Specify actual shell name instead of boolean.
4462 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
4463 (sh-maybe-here-document): Use it. Make obsolete.
4464 (sh-electric-here-document-mode) New minor mode.
4465 (sh-mode): Use it. Don't set sh-indent-supported-here here.
4466 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
4467 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
4468 (sh-smie-rc-grammar, sh-use-smie): New vars.
4469 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
4470 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
4471 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
4472 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
4473 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
4474 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
4475 (sh-set-shell): Use smie-setup if requested.
4476
4477 * term.el (term-set-escape-char): Properly set term-escape-char.
4478 See http://stackoverflow.com/questions/10524656.
4479
4480 2012-05-10 Chong Yidong <cyd@gnu.org>
4481
4482 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
4483 Use url-generic-parse-url, and handle host names and Windows
4484 filenames properly.
4485 (ffap-url-unwrap-remote): Use url-generic-parse-url.
4486 (ffap-url-unwrap-remote): Accept list values, specifying a list of
4487 URL schemes to work on.
4488 (ffap--toggle-read-only): New function.
4489 (ffap-read-only, ffap-read-only-other-window)
4490 (ffap-read-only-other-frame): Use it.
4491 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
4492 necessary for ffap-url-unwrap-remote.
4493
4494 2012-05-10 Dave Abrahams <dave@boostpro.com>
4495
4496 * cus-start.el (create-lockfiles): Add it.
4497
4498 2012-05-09 Chong Yidong <cyd@gnu.org>
4499
4500 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
4501 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
4502
4503 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
4504
4505 * shell.el (shell-completion-vars): Fix last change (bug#11348).
4506
4507 2012-05-09 Chong Yidong <cyd@gnu.org>
4508
4509 * ansi-color.el (ansi-color-process-output): Check for validity of
4510 comint-last-output-start before using it. This avoids a bad
4511 interaction with gdb-mi's input/output buffer.
4512
4513 2012-05-09 Glenn Morris <rgm@gnu.org>
4514
4515 * files.el (dir-locals-read-from-file):
4516 Mention dir-locals in any error message.
4517
4518 2012-05-09 Chong Yidong <cyd@gnu.org>
4519
4520 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
4521 package (Bug#11410).
4522
4523 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
4524 variables into description.
4525
4526 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
4527
4528 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
4529 shell-delimiter-argument-list (bug#11348).
4530 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
4531
4532 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
4533
4534 * textmodes/rst.el: Silence byte-compiler warnings.
4535 (rst-re-alist, rst-reset-section-caches): Move around.
4536 (rst-re): Use `characterp', not `char-valid-p'.
4537 (font-lock-beg, font-lock-end): Declare.
4538
4539 * progmodes/idlw-shell.el (specs): Remove reference to deleted
4540 variable `idlwave-shell-activate-alt-keybindings' and simplify.
4541
4542 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
4543
4544 2012-05-08 Glenn Morris <rgm@gnu.org>
4545
4546 * files.el (auto-mode-alist): Treat ".make" like ".mk".
4547
4548 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4549
4550 * vc/log-edit.el: Add GNU coding standards highlighting.
4551 (log-edit-font-lock-gnu-style)
4552 (log-edit-font-lock-gnu-keywords): New vars.
4553 (log-edit-font-lock-keywords): New fun.
4554 (log-edit-mode): Don't fold case in font-lock.
4555 (log-edit-font-lock-keywords): Do not assume case-folding.
4556
4557 * imenu.el: Misc cleanup. Make docstrings out of comments.
4558 Use lexical-binding.
4559 (imenu--index-alist, imenu--last-menubar-index-alist)
4560 (imenu-menubar-modified-tick): Use defvar-local.
4561 (imenu--split-menu): Remove unused var.
4562 (imenu--cleanup-seen): Declare as global.
4563 (imenu--cleanup): Use dolist.
4564
4565 * subr.el (defvar-local): Add debug spec and doc-string position.
4566
4567 2012-05-08 Glenn Morris <rgm@gnu.org>
4568
4569 * language/burmese.el, language/cham.el, language/czech.el:
4570 * language/english.el, language/georgian.el, language/greek.el:
4571 * language/japanese.el, language/khmer.el, language/korean.el:
4572 * language/lao.el, language/misc-lang.el, language/romanian.el:
4573 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
4574 * language/thai.el, language/utf-8-lang.el:
4575 Remove no-byte-compile setting.
4576
4577 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
4578
4579 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
4580
4581 * progmodes/make-mode.el (makefile-browse):
4582 Remove unnecessary interactive. (Bug#11324)
4583
4584 2012-05-07 Glenn Morris <rgm@gnu.org>
4585
4586 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
4587
4588 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
4589
4590 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4591
4592 * loadup.el: Preload newcomment.el.
4593 * newcomment.el: Move autoload-only code to toplevel.
4594
4595 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
4596 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
4597 Handle new :right-align column property.
4598 (tabulated-list-print-col): Idem, plus use `display' text-property to
4599 try and preserve alignment for variable pitch fonts.
4600
4601 2012-05-07 Chong Yidong <cyd@gnu.org>
4602
4603 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
4604 (tabulated-list-use-header-line): New var.
4605 (tabulated-list-init-header): Use it.
4606 (tabulated-list-print-fake-header): New function.
4607 (tabulated-list-print): Use it.
4608 (tabulated-list-sort-button-map): Add non-header-line commands.
4609 (tabulated-list-init-header): Add column name property to basic
4610 labels as well.
4611 (tabulated-list-col-sort): Handle non-header-line button case.
4612 (tabulated-list--sort-by-column-name): Fix a corner case.
4613
4614 * buff-menu.el (list-buffers--refresh):
4615 Handle Buffer-menu-use-header-line.
4616
4617 2012-05-06 Chong Yidong <cyd@gnu.org>
4618
4619 * buff-menu.el: Convert to Tabulated List mode.
4620 (Buffer-menu-buffer+size-width): Make obsolete.
4621 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
4622 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
4623 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
4624 documentation into docstring of buffer-menu.
4625 (Buffer-menu-toggle-files-only): Add an informative message.
4626 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
4627 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
4628 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
4629 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
4630 (Buffer-menu-execute, Buffer-menu-select)
4631 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
4632 (Buffer-menu-bury): Use Tabulated List machinery.
4633 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
4634 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
4635 Delete.
4636 (list-buffers--refresh): New function.
4637 (list-buffers-noselect): Use it.
4638 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
4639 (Buffer-menu--pretty-file-name): New helper functions.
4640
4641 * loadup.el: Preload tabulated-list.
4642
4643 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
4644 tabulated-list-sort-column.
4645 (tabulated-list-init-header): Add the initial aligning space even
4646 if tabulated-list-padding is zero.
4647
4648 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
4649
4650 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
4651 whose cdr is not a cons cell correctly (bug#11038).
4652
4653 2012-05-06 Chong Yidong <cyd@gnu.org>
4654
4655 * emacs-lisp/tabulated-list.el (tabulated-list-format):
4656 Accept additional plist in column descriptors.
4657 (tabulated-list-init-header): Obey it.
4658 (tabulated-list-get-entry): New function.
4659 (tabulated-list-put-tag): Use it. Use string-width instead of
4660 length.
4661 (tabulated-list--column-number): New function.
4662 (tabulated-list-print): Use it.
4663 (tabulated-list-print-col): New function.
4664 Set `tabulated-list-column-name' property on each column's text.
4665 (tabulated-list-print-entry): Use it.
4666 (tabulated-list-delete-entry, tabulated-list-set-col):
4667 New functions.
4668 (tabulated-list-sort-column): New command (Bug#11337).
4669
4670 * buff-menu.el (list-buffers): Move C-x C-b binding from
4671 buff-menu.el to bindings.el.
4672
4673 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
4674 :advertised-binding feature.
4675
4676 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
4677
4678 * progmodes/compile.el (compilation-internal-error-properties):
4679 Calculate start position correctly when end-col is set but
4680 end-line is not (Bug#11382).
4681
4682 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
4683
4684 * man.el (Man-unindent): Use text-property-default-nonsticky to
4685 prevent untabify from inheriting face properties (Bug#11408).
4686
4687 2012-05-05 Stefan Merten <smerten@oekonux.de>
4688
4689 * textmodes/rst.el: Major merge with upstream development up to
4690 Docutils SVN r7399 / rst.el V1.2.1.
4691
4692 Clarify maintainership and authors.
4693
4694 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
4695 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
4696 (rst-official-version, rst-official-cvs-rev, rst-version)
4697 (rst-package-emacs-version-alist): New functions and variables
4698 for version information.
4699
4700 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
4701 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
4702 (rst-mode-syntax-table, rst-mode): New and corrected functions
4703 and variables representing reStructuredText features.
4704
4705 (rst-re): New function for reStructuredText regexes. Use in
4706 many places.
4707
4708 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
4709 (rst-mode-map): Rebind keys.
4710
4711 (rst-mode-lazy, rst-font-lock-keywords)
4712 (rst-font-lock-extend-region)
4713 (rst-font-lock-extend-region-internal)
4714 (rst-font-lock-extend-region-extend)
4715 (rst-font-lock-find-unindented-line-limit)
4716 (rst-font-lock-find-unindented-line-match)
4717 (rst-adornment-level, rst-font-lock-adornment-level)
4718 (rst-font-lock-adornment-match)
4719 (rst-font-lock-handle-adornment-pre-match-form)
4720 (rst-font-lock-handle-adornment-matcher): Major revision of
4721 font-locking. Integrate with other code. Use `jit-lock-mode'.
4722
4723 (rst-preferred-adornments, rst-adjust-hook)
4724 (rst-new-adornment-down, rst-preferred-bullets)
4725 (rst-preferred-bullets, rst-indent, rst-indent-width)
4726 (rst-indent-field, rst-indent-literal-normal)
4727 (rst-indent-literal-minimized, rst-indent-comment): Change,
4728 extend and improve customization.
4729
4730 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
4731 (rst-normalize-cursor-position, rst-get-decoration)
4732 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
4733 (rst-rstrip, rst-toc-insert-find-delete-contents)
4734 (rst-shift-fill-region, rst-compute-bullet-tabs)
4735 (rst-debug-print-tabs, rst-debug-mark-found)
4736 (rst-shift-region-guts, rst-shift-region-right)
4737 (rst-shift-region-left, rst-use-char-classes)
4738 (rst-font-lock-keywords-function)
4739 (rst-font-lock-indentation-point)
4740 (rst-font-lock-find-unindented-line-begin)
4741 (rst-font-lock-find-unindented-line-end)
4742 (rst-font-lock-find-unindented-line)
4743 (rst-font-lock-adornment-point, rst-font-lock-level)
4744 (rst-adornment-level-alist): Remove functions and variables.
4745
4746 (rst-compare-adornments, rst-get-adornment-match)
4747 (rst-suggest-new-adornment, rst-get-adornments-around)
4748 (rst-adornment-complete-p, rst-get-next-adornment)
4749 (rst-adjust-adornment, rst-display-adornments-hierarchy)
4750 (rst-straighten-adornments): Standardize function names to
4751 use "adornment" instead of "decoration". Correct callers.
4752 Similar standardizing in many places.
4753
4754 (rst-update-section, rst-adjust, rst-promote-region)
4755 (rst-enumerate-region, rst-bullet-list-region)
4756 (rst-repeat-last-character): Correct use of `interactive'.
4757
4758 (rst-classify-adornment, rst-find-all-adornments)
4759 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
4760 (rst-find-leftmost-column, rst-repeat-last-character):
4761 Refactor functions.
4762
4763 (rst-find-title-line, rst-reset-section-caches)
4764 (rst-get-adornments-around, rst-adjust-adornment-work)
4765 (rst-arabic-to-roman, rst-roman-to-arabic)
4766 (rst-insert-list-pos, rst-insert-list-new-item)
4767 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
4768 New functions.
4769
4770 (rst-all-sections, rst-section-hierarchy)
4771 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
4772 New variables.
4773
4774 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
4775 configuration instead of only buffer. Change where necessary.
4776
4777 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
4778 (rst-shift-region, rst-adaptive-fill): New functions for
4779 indentation and filling.
4780
4781 (rst-comment-line-break, rst-comment-indent)
4782 (rst-comment-insert-comment, rst-comment-region)
4783 (rst-uncomment-region): New functions for handling comments.
4784
4785 (rst-compile): Quote shell arguments.
4786
4787 (rst-compile-pdf-preview, rst-compile-slides-preview):
4788 Delete temporary files after use.
4789
4790 2012-05-05 Glenn Morris <rgm@gnu.org>
4791
4792 * calendar/cal-html.el: Optionally include holidays in the output.
4793 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
4794 (cal-html-holidays): New option.
4795 (cal-html-css-default): Add holiday entry.
4796 (holiday-in-range): Autoload it.
4797 (cal-html-htmlify-entry): Add optional class argument.
4798 (cal-html-htmlify-list): Add optional holidays argument.
4799 (cal-html-insert-agenda-days): Include holidays in the output.
4800 (cal-html-one-month): Maybe include holidays.
4801
4802 * calendar/holidays.el (holiday-in-range):
4803 Move here from cal-tex-list-holidays.
4804 * calendar/cal-tex.el (cal-tex-list-holidays):
4805 Make it an obsolete alias for holiday-in-range. Update all callers.
4806
4807 2012-05-05 Chong Yidong <cyd@gnu.org>
4808
4809 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
4810 Nextstep.
4811
4812 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
4813
4814 * files.el (file-auto-mode-skip): New var.
4815 (set-auto-mode-1): Use it.
4816
4817 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4818
4819 * repeat.el: Use lexical-binding.
4820 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
4821 (repeat-undo-count): Remove.
4822 (repeat):
4823 * progmodes/octave-mod.el (octave-abbrev-start):
4824 * progmodes/f90.el (f90-abbrev-start):
4825 * face-remap.el (text-scale-adjust):
4826 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
4827
4828 * emacs-lisp/pcase.el (pcase--let*): New function.
4829 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
4830 a bit more.
4831 (pcase--split-pred): Be more clever about ruling out overlap between
4832 a predicate and some constant pattern.
4833 (pcase--q1): Use `null' instead of (eq foo nil).
4834
4835 * subr.el (setq-local, defvar-local): New macros.
4836 (kbd): Redefine as an alias.
4837 (with-selected-window): Leave unrelated frames alone.
4838 (set-temporary-overlay-map): New function.
4839
4840 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4841
4842 * subr.el (user-error): New function.
4843 * window.el (switch-to-buffer):
4844 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
4845 (smerge-match-conflict):
4846 * simple.el (previous-matching-history-element)
4847 (next-matching-history-element, goto-history-element, undo-more)
4848 (undo-start):
4849 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
4850 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
4851 (next-file, tags-loop-scan, list-tags, complete-tag):
4852 * progmodes/compile.el (compilation-loop):
4853 * mouse.el (mouse-minibuffer-check):
4854 * man.el (Man-bgproc-sentinel, Man-goto-page):
4855 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
4856 (Info-history-forward, Info-follow-reference, Info-menu)
4857 (Info-extract-menu-item, Info-extract-menu-counting)
4858 (Info-forward-node, Info-backward-node, Info-next-menu-item)
4859 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
4860 (Info-next-reference, Info-prev-reference, Info-index)
4861 (Info-index-next, Info-follow-nearest-node)
4862 (Info-copy-current-node-name):
4863 * imenu.el (imenu--make-index-alist)
4864 (imenu-default-create-index-function, imenu-add-to-menubar):
4865 * files.el (basic-save-buffer, recover-file):
4866 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
4867 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
4868 (checkdoc-message-text, checkdoc-defun):
4869 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
4870 * cus-edit.el (customize-changed-options, customize-rogue)
4871 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
4872 (custom-variable-mark-to-reset-standard)
4873 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
4874 (custom-file):
4875 * completion.el (check-completion-length):
4876 * comint.el (comint-search-arg)
4877 (comint-previous-matching-input-string-position)
4878 (comint-previous-matching-input)
4879 (comint-replace-by-expanded-history-before-point, comint-send-input)
4880 (comint-copy-old-input, comint-backward-matching-input)
4881 (comint-goto-process-mark, comint-set-process-mark):
4882 * calendar/calendar.el (calendar-cursor-to-date): Use it.
4883 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
4884
4885 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4886
4887 * dabbrev.el (dabbrev--ignore-case-p): New function.
4888 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
4889 Use it.
4890
4891 * files.el (automount-dir-prefix): Mark as obsolete.
4892
4893 2012-05-04 Glenn Morris <rgm@gnu.org>
4894
4895 * patcomp.el, play/bruce.el: Move to obsolete/.
4896
4897 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
4898
4899 Fix minor Y10k bugs.
4900 * arc-mode.el (archive-unixdate):
4901 * autoinsert.el (auto-insert-alist):
4902 * calc/calc-forms.el (math-this-year):
4903 * emacs-lisp/copyright.el (copyright-current-year)
4904 (copyright-update-year, copyright):
4905 * tar-mode.el (tar-clip-time-string):
4906 * time.el (display-time-update):
4907 Don't assume years have 4 digits.
4908
4909 2012-05-04 Chong Yidong <cyd@gnu.org>
4910
4911 * dos-w32.el (file-name-buffer-file-type-alist)
4912 (direct-print-region-use-command-dot-com):
4913 * ffap.el (ffap-menu-regexp):
4914 * find-file.el (ff-special-constructs):
4915 * follow.el (follow-debug):
4916 * forms.el (forms--debug):
4917 * iswitchb.el (iswitchb-all-frames):
4918 * ido.el (ido-all-frames):
4919 * emacs-lisp/timer.el (timer-max-repeats):
4920 * mail/feedmail.el (feedmail-mail-send-hook)
4921 (feedmail-mail-send-hook-queued):
4922 * mail/footnote.el (footnote-signature-separator):
4923 * mail/mailabbrev.el (mail-alias-separator-string)
4924 (mail-abbrev-mode-regexp):
4925 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
4926 * progmodes/idlwave.el (idlwave-libinfo-file)
4927 (idlwave-default-completion-case-is-down)
4928 (idlwave-library-routines): Convert defvars to defcustoms.
4929
4930 * mail/rmail.el (rmail-decode-mime-charset):
4931 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
4932 (idlwave-shell-fix-inserted-breaks)
4933 (idlwave-shell-activate-alt-keybindings)
4934 (idlwave-shell-use-breakpoint-glyph):
4935 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
4936
4937 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4938
4939 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
4940
4941 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
4942
4943 * progmodes/verilog-mode.el (font-lock-keywords):
4944 Fix mis-highligting auto. Reported by Craig Barner.
4945 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
4946 defines from global name space. Reported by Dan Dever.
4947 (verilog-auto-reset, verilog-auto-reset-widths)
4948 (verilog-auto-tieoff): Support using unbased numbers for
4949 AUTORESET and AUTOTIEOFF.
4950 (verilog-submit-bug-report): Update variable list.
4951 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
4952 parenthesis from not matching. Reported by Michael Rytting.
4953 (verilog-auto-template-lint): Fix hash error when linting modules
4954 with no used templates.
4955 (verilog-warn, verilog-warn-error)
4956 (verilog-warn-fatal): When non-interactive report multiple
4957 warnings before exiting. Suggested by Brad Dobbie.
4958 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
4959 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
4960 to report unused template errors. Reported by Brad Dobbie.
4961 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
4962 nets, bug438. Reported by Vns Blore.
4963 (verilog-auto-inout-module, verilog-auto-reg)
4964 (verilog-read-decls, verilog-read-sub-decls-sig)
4965 (verilog-signals-edit-wire-reg, verilog-signals-with):
4966 Fix passing of Verilog data types in ANSI input/output ports
4967 such as "output logic" into the AUTOs. Special case "wire" and
4968 "reg" for backwards compatibility presuming Verilog 2001.
4969 (verilog-auto-ascii-enum): Add "auto enum" as alias.
4970 (verilog-preprocess): Fix replication of preprocess output.
4971 Reported by Brad Dobbie.
4972 (verilog-auto-inst-interfaced-ports):
4973 Create verilog-auto-inst-interfaced-ports, bug429.
4974 Reported by Julian Gorfajn.
4975 (verilog-after-save-font-hook)
4976 (verilog-before-save-font-hook): New variable.
4977 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
4978 (verilog-save-font-mods): Wrap disabling fontification, reported
4979 by David Rogoff.
4980 (verilog-do-indent, verilog-pretty-declarations-auto)
4981 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
4982 Reported by Pierre-David Pfister.
4983 (verilog-set-auto-endcomments): Fix endtask auto comments outside
4984 of class declarations, bug292. Reported by Kevin Heilman.
4985 (verilog-read-decls): Fix 'parameter type' not appearing in
4986 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
4987 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
4988 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
4989 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
4990 Reported by David Kravitz.
4991
4992 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
4993
4994 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
4995 assignment with tests in ifs and for loops.
4996 (verilog-extended-complete-re, verilog-complete-reg): Change so
4997 that DPI inport functions don't look like fuction declarations.
4998 (verilog-pretty-expr): Don't line up assignment
4999 operations to the test and increment in if and for loops
5000 (verilog-extended-complete-re, verilog-complete-reg): Change so
5001 that DPI inport functions don't look like fuction declarations.
5002
5003 2012-05-03 Kenichi Handa <handa@m17n.org>
5004
5005 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
5006 decoding, and show a warning message without signaling an error
5007 (Bug#11282).
5008
5009 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
5010
5011 * emacs-lisp/bytecomp.el
5012 (byte-compile-file-form-custom-declare-variable): Compile all elements,
5013 since cconv.el might have introduced :fun-body, internal-make-closure,
5014 and friends for bytecomp to handle (bug#11391).
5015 * custom.el (defcustom): Avoid ((λ ..) ..).
5016
5017 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
5018
5019 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
5020
5021 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
5022
5023 * notifications.el (dbus-debug):
5024 * term/linux.el (gpm-mouse-enable):
5025 * term/screen.el (xterm-register-default-colors): Declare.
5026
5027 2012-05-02 Chong Yidong <cyd@gnu.org>
5028
5029 * cus-start.el (gc-cons-percentage, exec-suffixes)
5030 (dos-display-scancodes, dos-hyper-key, dos-super-key)
5031 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
5032 (make-cursor-line-fully-visible, void-text-area-pointer)
5033 (font-list-limit): Add customization data.
5034
5035 * allout.el (allout-exposure-change-functions)
5036 (allout-structure-added-functions)
5037 (allout-structure-deleted-functions)
5038 (allout-structure-shifted-functions): Rename abnormal hooks from
5039 *-hook, and convert to defcustoms.
5040 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
5041 Convert to defcustoms.
5042 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
5043
5044 * allout-widgets.el: Hook callers changed.
5045
5046 2012-05-02 Eli Zaretskii <eliz@gnu.org>
5047
5048 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
5049 the yanked message in preference to the default value of
5050 buffer-file-coding-system.
5051
5052 2012-05-02 Martin Rudalics <rudalics@gmx.at>
5053
5054 * window.el (display-buffer--action-function-custom-type):
5055 Fix entry.
5056
5057 2012-05-02 Alan Mackenzie <acm@muc.de>
5058
5059 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
5060
5061 2012-05-01 Glenn Morris <rgm@gnu.org>
5062
5063 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
5064
5065 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
5066
5067 * cus-edit.el (custom-variable-documentation): Simplify with format.
5068
5069 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5070 Stefan Monnier <monnier@iro.umontreal.ca>
5071
5072 * simple.el (suggest-key-bindings, execute-extended-command):
5073 Move from keyboard.c.
5074
5075 2012-05-01 Chong Yidong <cyd@gnu.org>
5076
5077 * follow.el: Eliminate advice.
5078 (set-process-filter, process-filter, sit-for): Advice deleted.
5079 (follow-mode-off-hook): Obsolete hook removed.
5080 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
5081 Vars deleted.
5082 (follow-auto): Use a :set function.
5083 (follow-mode): Rewritten. Don't advise process filters.
5084 (follow-switch-to-current-buffer-all, follow-scroll-up)
5085 (follow-scroll-down): Assume follow-mode is bound.
5086 (follow-comint-scroll-to-bottom)
5087 (follow-align-compilation-windows): New functions.
5088 (follow--window-sorter): New function.
5089 (follow-all-followers): Use it to explicitly sort windows by their
5090 positions; don't make assumptions about next-window order.
5091 (follow-windows-start-end, follow-delete-other-windows-and-split)
5092 (follow-calc-win-start): Doc fix.
5093 (follow-windows-aligned-p, follow-select-if-visible): Don't call
5094 vertical-motion unnecessarily.
5095 (follow-adjust-window): New function.
5096 (follow-post-command-hook): Use it.
5097 (follow-call-set-process-filter, follow-call-process-filter)
5098 (follow-intercept-process-output, follow-tidy-process-filter-alist)
5099 (follow-stop-intercept-process-output, follow-generic-filter):
5100 Functions deleted.
5101 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
5102 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
5103 New functions, replacing advice on scroll-bar-* commands.
5104 (follow-mwheel-scroll): New function (Bug#4112).
5105
5106 * comint.el (comint-adjust-point): New function.
5107 (comint-postoutput-scroll-to-bottom): Use it.
5108 Call follow-comint-scroll-to-bottom for Follow mode buffers.
5109
5110 2012-05-01 Glenn Morris <rgm@gnu.org>
5111
5112 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
5113 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
5114 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
5115 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
5116 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
5117 Remove no-byte-compile setting.
5118
5119 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
5120
5121 * minibuffer.el (completion-table-with-quoting): Fix compatibility
5122 all-completions code to not return a number in the last cdr.
5123
5124 2012-04-30 Leo Liu <sdl.web@gmail.com>
5125
5126 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
5127 read-only error.
5128
5129 2012-04-29 Chong Yidong <cyd@gnu.org>
5130
5131 * follow.el (follow-calc-win-end): Rewrite to handle partial
5132 screen lines correctly (Bug#8390).
5133 (follow-avoid-tail-recenter): Minor cleanup.
5134
5135 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
5136
5137 Avoid the obsolete `assoc' package.
5138 * speedbar.el (speedbar-refresh): Avoid adelete.
5139 (speedbar-file-lists): Simplify and avoid aput.
5140 * man.el (Man--sections, Man--refpages): New vars, replacing
5141 Man-sections-alist and Man-refpages-alist.
5142 (Man-build-section-alist, Man-build-references-alist):
5143 Use them; avoid aput.
5144 (Man--last-section, Man--last-refpage): New vars.
5145 (Man-follow-manual-reference): Use them.
5146 Use the `default' arg of completing-read.
5147 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
5148
5149 2012-04-27 Chong Yidong <cyd@gnu.org>
5150
5151 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
5152
5153 * startup.el (x-apply-session-resources): New function.
5154
5155 * term/ns-win.el (ns-initialize-window-system):
5156 * term/w32-win.el (w32-initialize-window-system):
5157 * term/x-win.el (x-initialize-window-system): Use it to properly
5158 set menu-bar-mode and other vars from X resources, even if the
5159 initial frame is not a window-system frame (Bug#2299).
5160
5161 * subr.el (read-key): Avoid running filter function when setting
5162 up temporary tool bar entries (Bug#9922).
5163
5164 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
5165
5166 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
5167 (Bug#11344)
5168
5169 2012-04-27 Chong Yidong <cyd@gnu.org>
5170
5171 * select.el (xselect--encode-string): New function, split from
5172 xselect-convert-to-string.
5173 (xselect-convert-to-string): Use it.
5174 (xselect-convert-to-filename, xselect-convert-to-os)
5175 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
5176 returned strings are properly encoded (Bug#11315).
5177
5178 2012-04-27 Chong Yidong <cyd@gnu.org>
5179
5180 * simple.el (delete-active-region): Move to killing custom group.
5181
5182 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
5183
5184 * progmodes/which-func.el (which-func-current): Quote %
5185 characters for mode-line processing.
5186
5187 2012-04-27 Chong Yidong <cyd@gnu.org>
5188
5189 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
5190 reaching eob (Bug#11286).
5191
5192 2012-04-27 Eli Zaretskii <eliz@gnu.org>
5193
5194 * progmodes/gdb-mi.el (gdb-control-level): New variable.
5195 (gdb): Make it buffer-local and init to zero.
5196 (gdb-control-commands-regexp): New variable.
5197 (gdb-send): Don't wrap in "-interpreter-exec console" if
5198 gdb-control-level is positive. Increment gdb-control-level
5199 whenever the command matches gdb-control-commands-regexp, and
5200 decrement it each time the command is "end". (Bug#11279)
5201
5202 2012-04-27 Martin Rudalics <rudalics@gmx.at>
5203
5204 * window.el (adjust-window-trailing-edge, enlarge-window)
5205 (shrink-window, window-resize):
5206 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
5207 windows (Bug#11276).
5208
5209 2012-04-27 Chong Yidong <cyd@gnu.org>
5210
5211 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
5212 fix "missing prefix" warning. All callers changed.
5213
5214 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
5215
5216 * emacs-lisp/assoc.el: Move to obsolete/.
5217
5218 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5219
5220 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
5221
5222 * term/ns-win.el (ns-define-service):
5223 * progmodes/pascal.el (pascal-goto-defun):
5224 * progmodes/js.el (js--read-tab):
5225 * progmodes/etags.el (tags-lazy-completion-table):
5226 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
5227 * emacs-lisp/ewoc.el (ewoc--wrap):
5228 * emacs-lisp/assoc.el (aput, adelete, amake):
5229 * doc-view.el (doc-view-convert-current-doc):
5230 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
5231
5232 2012-04-26 Chong Yidong <cyd@gnu.org>
5233
5234 * image.el (image-type-from-buffer): Only return supported image
5235 type (Bug#9045).
5236
5237 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
5238 value, for symmetry with diff-end-of-hunk.
5239 (diff-split-hunk, diff-find-source-location)
5240 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
5241 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
5242 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
5243 compute the relevant hunk or file properly (Bug#6005).
5244 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
5245
5246 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5247
5248 * vc/vc-mtn.el:
5249 * vc/vc-hg.el:
5250 * vc/vc-git.el:
5251 * vc/vc-dir.el:
5252 * vc/vc-cvs.el:
5253 * vc/vc-bzr.el:
5254 * vc/vc-arch.el:
5255 * vc/vc.el: Replace lexical-let by lexical-binding.
5256 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
5257 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
5258 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
5259
5260 2012-04-26 Chong Yidong <cyd@gnu.org>
5261
5262 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
5263 (diff-mode-shared-map): Bind it to / and [remap undo].
5264
5265 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
5266 (ediff-window-setup-function): Use it as the default, to set up
5267 windows based on whether the current frame is graphical (Bug#2138).
5268 (ediff-choose-window-setup-function-automatically): Make obsolete.
5269
5270 * vc/ediff-init.el: Always define ediff-pixel-width/height.
5271
5272 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
5273
5274 * ffap.el: Remove old code for obsolete package.
5275 (ffap-complete-as-file-p): Remove.
5276
5277 Use completion-table-with-quoting for comint and pcomplete.
5278 * comint.el (comint--unquote&requote-argument)
5279 (comint--unquote-argument, comint--requote-argument): New functions.
5280 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
5281 (comint-quote-filename): Use regexp-opt-charset.
5282 (comint--common-suffix, comint--common-quoted-suffix)
5283 (comint--table-subvert): Remove.
5284 (comint-unquote-function, comint-requote-function): New vars.
5285 (comint--complete-file-name-data): Use them with
5286 completion-table-with-quoting.
5287 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
5288 * pcomplete.el (pcomplete-arg-quote-list)
5289 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
5290 (pcomplete-unquote-argument-function): Default to non-nil.
5291 (pcomplete-unquote-argument): Simplify.
5292 (pcomplete--common-quoted-suffix): Remove.
5293 (pcomplete-requote-argument-function): New var.
5294 (pcomplete--common-suffix): New function.
5295 (pcomplete-completions-at-point): Use completion-table-with-quoting
5296 and completion-table-subvert.
5297
5298 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
5299 (minibuffer--double-dollars): Preserve properties.
5300 (completion--sifn-requote): New function.
5301 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
5302
5303 * minibuffer.el: Add support for completion of quoted/escaped data.
5304 (completion-table-with-quoting, completion-table-subvert): New funs.
5305 (completion--twq-try, completion--twq-all): New functions.
5306 (completion--nth-completion): New function.
5307 (completion-try-completion, completion-all-completions): Use it.
5308
5309 2012-04-25 Leo Liu <sdl.web@gmail.com>
5310
5311 * progmodes/python.el (python-pdbtrack-get-source-buffer):
5312 Use compilation-message if available to find real filename.
5313
5314 2012-04-25 Chong Yidong <cyd@gnu.org>
5315
5316 * vc/diff-mode.el (diff-setup-whitespace): New function.
5317 (diff-mode): Use it.
5318
5319 * vc/diff.el (diff-sentinel):
5320 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
5321 Whitespace mode variables based on diff style (Bug#8612).
5322
5323 2012-04-25 Leo Liu <sdl.web@gmail.com>
5324
5325 * progmodes/python.el (python-send-region): Add suffix .py to the
5326 temp file.
5327
5328 * files.el (auto-mode-alist): Use javascript-mode instead.
5329
5330 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
5331
5332 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
5333
5334 * net/soap-client.el (soap-resolve-references-for-sequence-type)
5335 (soap-resolve-references-for-array-type): Hack to prevent self
5336 references, see Bug#9.
5337 (soap-parse-envelope): Report the contents of the 'detail' node
5338 when receiving a fault reply.
5339 (soap-parse-envelope): Report the contents of the entire 'detail' node.
5340
5341 * net/soap-inspect.el (soap-sample-value-for-simple-type)
5342 (soap-inspect-simple-type): New function.
5343
5344 * net/soap-client.el (soap-simple-type): New struct.
5345 (soap-default-xsd-types, soap-default-soapenc-types)
5346 (soap-decode-basic-type, soap-encode-basic-type):
5347 support unsignedInt and double basic types.
5348 (soap-resolve-references-for-simple-type)
5349 (soap-parse-simple-type, soap-encode-simple-type): New function.
5350 (soap-parse-schema): Parse xsd:simpleType declarations.
5351
5352 * net/soap-client.el (soap-default-xsd-types)
5353 (soap-default-soapenc-types): Add integer, byte and anyURI types.
5354 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
5355 the local name of "soapenc:Array".
5356 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
5357 decoding integer, byte and anyURI xsd types.
5358
5359 2012-04-25 Chong Yidong <cyd@gnu.org>
5360
5361 * cus-edit.el (custom-buffer-create-internal): Update header text.
5362
5363 2012-04-25 Eli Zaretskii <eliz@gnu.org>
5364
5365 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
5366 settings on 'system-type', not on 'window-system'. On MS-Windows,
5367 set interactive-mode on in GDB.
5368
5369 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
5370
5371 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
5372 (ruby-syntax-propertize-regexp): Remove.
5373 (ruby-syntax-propertize-function): Split regexp into chunks.
5374 Match following code directly.
5375
5376 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
5377
5378 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
5379 (ruby-syntax-propertize-regexp): New function.
5380 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
5381 by a special keyword.
5382
5383 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
5384 (ruby-syntax-general-delimiters-goto-beg)
5385 (ruby-syntax-propertize-general-delimiters): New functions.
5386 (ruby-syntax-propertize-function): Use them to handle GDL.
5387 (ruby-font-lock-keywords): Move old handling of GDL...
5388 (ruby-font-lock-syntactic-keywords): .. to here.
5389 (ruby-calculate-indent): Adjust indentation for GDL.
5390
5391 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
5392
5393 * notifications.el (top): Remove unneeded declarations.
5394 (notifications-specification-version): Change to "1.2".
5395 (notifications-interface, notifications-notify-method)
5396 (notifications-close-notification-method): Fix docstring.
5397 (notifications-get-capabilities-method): New defconst.
5398 (notifications-notify): Add :action-items, :resident and
5399 :transient hints. Change "image_data" to "image-data" and
5400 "image_path" to "image-path".
5401 (notifications-get-capabilities): New defun.
5402
5403 2012-04-24 Leo Liu <sdl.web@gmail.com>
5404
5405 * progmodes/python.el: Move hideshow setup to the end.
5406
5407 2012-04-24 Martin Rudalics <rudalics@gmx.at>
5408
5409 * window.el (handle-select-window): Clear echo area since this is
5410 no more done by read_char (Bug#11304).
5411
5412 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
5413
5414 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
5415 and `/ M' to filter-derived-mode.
5416 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
5417 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
5418 (ibuffer-mark-by-mode): Use default rather than initial-input.
5419 (ibuffer-filter-by-derived-mode): Autoload and require-match.
5420
5421 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
5422
5423 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
5424 (ibuffer-filter-by-derived-mode): New filter.
5425 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
5426
5427 2012-04-23 Andreas Politz <politza@fh-trier.de>
5428
5429 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
5430
5431 2012-04-23 Chong Yidong <cyd@gnu.org>
5432
5433 * cus-edit.el (customize-apropos, customize-apropos-options):
5434 Disable matching of non-option variables (Bug#11176).
5435 (customize-option, customize-option-other-window)
5436 (customize-changed-options): Doc fix.
5437 (customize-apropos-options, customize-apropos-faces)
5438 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
5439
5440 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
5441 Fix word list splitting (Bug#11132).
5442 (apropos-symbol, apropos-keybinding, apropos-label)
5443 (apropos-property, apropos-function-button)
5444 (apropos-variable-button, apropos-misc-button): New faces.
5445 (apropos-symbol-face, apropos-keybinding-face)
5446 (apropos-label-face, apropos-property-face, apropos-match-face):
5447 Variables removed (Bug#8396).
5448 (apropos-library-button, apropos-format-plist, apropos-print)
5449 (apropos-print-doc, apropos-describe-plist): Callers changed.
5450
5451 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
5452
5453 * net/xesam.el (xesam-mode-map): Use let-bound map in
5454 initialization. (Bug#11292)
5455
5456 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5457
5458 Preserve ispell session localwords when switching back to
5459 original buffer.
5460
5461 * textmodes/ispell.el (ispell-buffer-session-localwords):
5462 New buffer-local variable to hold buffer session localwords.
5463 (ispell-kill-ispell): Add option 'clear to delete session
5464 localwords.
5465 (ispell-command-loop, ispell-change-dictionary)
5466 (ispell-buffer-local-words): Preserve session localwords when
5467 needed.
5468
5469 * textmodes/flyspell.el (flyspell-process-localwords)
5470 (flyspell-do-correct): Preserve session localwords when needed.
5471
5472 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5473
5474 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
5475 using obsolete `translation-table-for-input'.
5476 (ispell-word, ispell-process-line, ispell-complete-word):
5477 Use plain `insert' instead of removed `ispell-insert-word'.
5478
5479 2012-04-22 Chong Yidong <cyd@gnu.org>
5480
5481 * cus-edit.el (custom-variable-menu)
5482 (custom-variable-reset-saved, custom-face-menu)
5483 (custom-face-reset-saved): If there is no saved value, make the
5484 "reset-saved" operation bring back the default (Bug#9509).
5485 (custom-face-state): Properly detect themed faces.
5486
5487 * faces.el (face-spec-set): Stop supporting deprecated form of
5488 third arg.
5489
5490 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
5491
5492 Move functions from C to Lisp. Make non-blocking method calls
5493 the default. Implement further D-Bus standard interfaces.
5494
5495 * net/dbus.el (dbus-message-internal): Declare function.
5496 Remove unneeded function declarations.
5497 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
5498 (dbus-message-type-method-return, dbus-message-type-error)
5499 (dbus-message-type-signal): Declare variables. Remove local
5500 definitions.
5501 (dbus-interface-dbus, dbus-interface-peer)
5502 (dbus-interface-introspectable, dbus-interface-properties)
5503 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
5504 Adapt docstring.
5505 (dbus-interface-objectmanager): New defconst.
5506 (dbus-call-method, dbus-call-method-asynchronously)
5507 (dbus-send-signal, dbus-method-return-internal)
5508 (dbus-method-error-internal, dbus-register-service)
5509 (dbus-register-signal, dbus-register-method): New defuns, moved
5510 from dbusbind.c
5511 (dbus-call-method-handler, dbus-setenv)
5512 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
5513 New defuns.
5514 (dbus-call-method-non-blocking): Make it an obsolete function.
5515 (dbus-unregister-object, dbus-unregister-service)
5516 (dbus-handle-event, dbus-register-property)
5517 (dbus-property-handler): Obey the new structure of
5518 `bus-registered-objects'.
5519 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
5520 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5521 Use `dbus-call-method'.
5522
5523 2012-04-22 Chong Yidong <cyd@gnu.org>
5524
5525 * cus-edit.el (custom-commands, custom-reset-menu)
5526 (Custom-reset-standard): Tweak labels.
5527 (custom-reset-button-menu): Change default to t.
5528 (custom-buffer-create-internal): For the custom-reset-button-menu
5529 case, put the revert button first.
5530 (custom-group-subtitle): New face.
5531 (custom-group-value-create): Align docstring to a specific column.
5532
5533 * wid-edit.el (widget-documentation-link-add): Don't handle
5534 indentation in this function.
5535 (widget-documentation-string-indent-to): New function.
5536 (widget-documentation-string-value-create): Use it.
5537
5538 * autorevert.el (auto-revert):
5539 * epg-config.el (epg):
5540 * ibuffer.el (ibuffer):
5541 * mpc.el (mpc):
5542 * ses.el (ses):
5543 * eshell/eshell.el (eshell):
5544 * net/ange-ftp.el (ange-ftp):
5545 * progmodes/ebnf2ps.el (postscript):
5546 * progmodes/flymake.el (flymake):
5547 * progmodes/prolog.el (prolog):
5548 * progmodes/verilog-mode.el (verilog-mode):
5549 * progmodes/which-func.el (which-func):
5550 * term/xterm.el (xterm):
5551 * textmodes/picture.el (picture):
5552 * textmodes/tildify.el (tildify):
5553 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
5554 customization buffers.
5555
5556 2012-04-22 Alan Mackenzie <acm@muc.de>
5557
5558 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
5559 Adding a ) can hide the resulting (..) from searches. Fix it.
5560 Bound the backward search to the position of the existing (.
5561
5562 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
5563
5564 * progmodes/verilog-mode.el (verilog-mode): Check whether
5565 which-func-modes is t before adding verilog-mode.
5566 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5567
5568 2012-04-21 Leo Liu <sdl.web@gmail.com>
5569
5570 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
5571
5572 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
5573
5574 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
5575 filling of the last column of a table (Bug#5635).
5576 (woman-find-next-control-line): New arg, specifying an additional
5577 regexp component for the control line.
5578 (woman2-roff-buffer): Use it.
5579 (woman-break-table): New function.
5580 (woman2-TS): Use it.
5581
5582 2012-04-21 Chong Yidong <cyd@gnu.org>
5583
5584 * woman.el (woman-set-buffer-display-table, woman-decode-region)
5585 (woman-horizontal-escapes, woman-negative-vertical-space)
5586 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
5587 (WoMan-warn-ignored): Use ?\s instead of ?\ .
5588
5589 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5590
5591 * minibuffer.el (completion-file-name-table): Complete user names.
5592
5593 2012-04-20 Leo Liu <sdl.web@gmail.com>
5594
5595 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
5596 and pcase-let*.
5597
5598 2012-04-20 Chong Yidong <cyd@gnu.org>
5599
5600 * server.el (server-execute): Respect initial-buffer-choice if it
5601 is a string and there are no files to open (Bug#2825).
5602 (server-create-window-system-frame, server-create-tty-frame):
5603 Don't switch buffers here.
5604 (server-process-filter): Only try to open a window system frame if
5605 compiled with graphical support (Bug#8314).
5606
5607 2012-04-20 Dan Nicolaescu <dann@gnu.org>
5608
5609 * battery.el (battery-echo-area-format): Display remaining time
5610 for sysfs backend too (Bug#11269).
5611 (battery-linux-sysfs): Fix conditional for the charge.
5612
5613 2012-04-20 Chong Yidong <cyd@gnu.org>
5614
5615 * progmodes/gdb-mi.el (gdb): Revert previous change.
5616 (gdb-inferior-io--init-proc): New function.
5617 (gdb-init-1): Use it.
5618 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
5619 responsible for allocating a new pty and hooking it to gdb when
5620 the old pty gets an EIO due to process exit.
5621 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
5622 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
5623 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
5624
5625 2012-04-20 Eli Zaretskii <eliz@gnu.org>
5626
5627 * window.el (window-min-size, window-sizable, window-min-delta)
5628 (window-max-delta, window--resizable, window-resizable)
5629 (window-total-size, window-full-height-p, window-full-width-p)
5630 (window-in-direction, window--resize-mini-window, window-resize)
5631 (window--resize-child-windows-normal)
5632 (window--resize-child-windows, window--resize-siblings)
5633 (window--resize-this-window, adjust-window-trailing-edge)
5634 (enlarge-window, shrink-window): Doc fixes.
5635
5636 2012-04-20 Chong Yidong <cyd@gnu.org>
5637
5638 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
5639 New function to call delete-process on the gdb-inferior buffer's pty.
5640 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
5641 pty process (Bug#11273).
5642 (gdb-update): New arg to suppress talking to the gdb process.
5643 (gdb-done-or-error): Use it.
5644 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
5645 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
5646 sentinel not being called.
5647
5648 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
5649
5650 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
5651
5652 2012-04-20 Glenn Morris <rgm@gnu.org>
5653
5654 * net/network-stream.el (open-network-stream): Doc fix.
5655
5656 2012-04-20 Chong Yidong <cyd@gnu.org>
5657
5658 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
5659
5660 2012-04-20 Alan Mackenzie <acm@muc.de>
5661
5662 Ensure searching for keywords is case sensitive.
5663
5664 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
5665 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
5666 (c-defun-name, c-mark-function, c-cpp-define-name)
5667 (c-comment-indent, c-scan-conditionals, c-indent-defun)
5668 (c-context-line-break): Bind case-fold-search to nil.
5669
5670 * progmodes/cc-mode.el (c-font-lock-fontify-region):
5671 Bind case-fold-search to nil.
5672
5673 2012-04-20 Chong Yidong <cyd@gnu.org>
5674
5675 * mail/sendmail.el (mail-bury): Call return action with the right
5676 Rmail buffer (Bug#11242).
5677
5678 * server.el (server-process-filter): Handle corner case where both
5679 tty and nowait options are present (Bug#11102).
5680
5681 2012-04-20 Eli Zaretskii <eliz@gnu.org>
5682
5683 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
5684 (top level): Put into the executable the ident-style '$Id:' tag on
5685 windows-nt as well.
5686
5687 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5688
5689 * electric.el (electric-indent-post-self-insert-function): Check that
5690 electric-indent-mode is enabled in current buffer.
5691
5692 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
5693
5694 * imenu.el (imenu-progress-message): Restore; it is "used" in
5695 erc/erc-imenu.el and net/snmp-mode.el.
5696
5697 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
5698
5699 * avoid.el (mouse-avoidance-mode): Mark unused arg.
5700 (mouse-avoidance-nudge-mouse): Remove unused binding.
5701
5702 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
5703
5704 * descr-text.el (describe-char):
5705 * progmodes/python.el (python-describe-symbol):
5706 Don't call `toggle-read-only', set `buffer-read-only'.
5707
5708 * imenu.el (imenu-default-goto-function): Mark unused args.
5709 (imenu-progress-message): Remove obsolete macro; all callers changed.
5710
5711 * subr.el (keymap-canonicalize): Remove unused binding.
5712 (read-passwd): Mark unused arg.
5713
5714 * tutorial.el (tutorial--display-changes): Remove unused binding.
5715 (tutorial--save-tutorial-to): Remove unused variable.
5716
5717 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
5718 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
5719 (package-generate-autoloads, package-menu--generate)
5720 (package-menu--find-upgrades): Remove unused bindings.
5721
5722 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
5723 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
5724 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
5725 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
5726 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
5727 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
5728 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
5729 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
5730 (cua-delete-char-rectangle): Mark unused args.
5731 (cua-align-rectangle): Remove unused binding.
5732
5733 * mail/rmail.el (compilation--message->loc)
5734 (epa--find-coding-system-for-mime-charset): Declare.
5735
5736 * net/dbus.el (dbus-register-service): Declare.
5737 (dbus-name-owner-changed-handler): Remove unused binding.
5738
5739 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
5740 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
5741 (nxml-scan-backward-within): Mark unused arg.
5742 (nxml-dynamic-markup-word): Remove unused binding.
5743
5744 * mouse.el (mouse-menu-major-mode-map):
5745 * emacs-lisp/authors.el (authors-scan-change-log)
5746 (authors-add-to-author-list):
5747 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
5748 * emacs-lisp/smie.el (smie-auto-fill):
5749 * mail/sendmail.el (mail-bury):
5750 * mail/unrmail.el (unrmail):
5751 * net/tls.el (open-tls-stream):
5752 * textmodes/picture.el (picture-mouse-set-point):
5753 Remove unused bindings.
5754
5755 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
5756
5757 * net/tramp.el (tramp-action-password): Let-bind
5758 `enable-recursive-minibuffers' to t.
5759
5760 2012-04-18 Sam Steingold <sds@gnu.org>
5761
5762 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
5763 instead of 'string to accommodate values like [f11].
5764 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
5765 * progmodes/gdb-mi.el: Likewise.
5766
5767 2012-04-18 Leo Liu <sdl.web@gmail.com>
5768
5769 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
5770 current buffer.
5771 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
5772 LOCAL is nil.
5773
5774 2012-04-18 Chong Yidong <cyd@gnu.org>
5775
5776 * simple.el (line-move): Use forward-line if in batch mode
5777 (Bug#11053).
5778
5779 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
5780
5781 * files.el (after-find-file): Do not try to add a final newline if
5782 the buffer is read-only (Bug#11156).
5783
5784 2012-04-17 Richard Stallman <rms@gnu.org>
5785
5786 * mail/rmail.el (rmail-start-mail):
5787 Pass (rmail-mail-return...) for the return-action.
5788 Pass (rmail-yank-current-message...) for the yank-action.
5789 (rmail-yank-current-message): New function.
5790 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
5791 (rmail-reply): Likewise.
5792 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
5793
5794 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
5795 buffer, not the last. Reject temp buffers. Use the rmail-mode
5796 buffer, not newbuf.
5797
5798 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
5799
5800 * server.el (server-ensure-safe-dir): Simplify.
5801
5802 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
5803
5804 * emacs-lisp/smie.el: Provide smarter auto-filling.
5805 (smie-auto-fill): New function.
5806 (smie-setup): Use it.
5807
5808 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
5809
5810 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
5811
5812 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
5813 (comment-indent): Use it.
5814
5815 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
5816
5817 * ses.el: The overall change is to add cell renaming, that is
5818 setting fancy names for cell symbols other than name matching
5819 "\\`[A-Z]+[0-9]+\\'" regexp .
5820 (ses-localvars): Add ses--renamed-cell-symb-list.
5821 (ses-create-cell-variable): New defun.
5822 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
5823 (ses-relocate-formula): Relocate formulas only for cells the
5824 symbols of which are not renamed, i.e. symbols whose names do not
5825 match regexp "\\`[A-Z]+[0-9]+\\'".
5826 (ses-relocate-all): Relocate values only for cells the symbols of
5827 which are not renamed.
5828 (ses-load): Create cells variables as the (ses-cell ...) are read,
5829 in order to check row col consistency with cell symbol name only
5830 for cells that are not renamed.
5831 (ses-replace-name-in-formula): New defun.
5832 (ses-rename-cell): New defun.
5833
5834 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
5835
5836 * progmodes/perl-mode.el (perl-indent-parens-as-block):
5837 New option (bug#11118).
5838 (perl-calculate-indent): Respect it.
5839
5840 2012-04-17 Glenn Morris <rgm@gnu.org>
5841
5842 * dired-aux.el (dired-mark-read-string): Doc fix.
5843
5844 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
5845
5846 * dired-aux.el (dired-mark-read-string): Offer optional completion.
5847 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
5848
5849 2012-04-17 Glenn Morris <rgm@gnu.org>
5850
5851 * mouse.el (mouse-drag-track):
5852 * speedbar.el (speedbar-frame-mode):
5853 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
5854
5855 2012-04-16 Leo Liu <sdl.web@gmail.com>
5856
5857 * progmodes/python.el: Trivial cleanup.
5858
5859 2012-04-16 Glenn Morris <rgm@gnu.org>
5860
5861 * vc/vc.el (vc-string-prefix-p):
5862 * vc/pcvs-util.el (cvs-string-prefix-p):
5863 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
5864 * mpc.el (mpc-string-prefix-p):
5865 Make all of these into obsolete aliases for string-prefix-p.
5866 Update callers.
5867 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
5868
5869 * textmodes/two-column.el: Move custom options to the start.
5870 (frame-width): Remove compat definition.
5871 (2C-associate-buffer, 2C-dissociate):
5872 Use with-current-buffer rather than save-excursion.
5873 (2C-dissociate): Force a mode-line update.
5874 (2C-autoscroll): Use ignore-errors.
5875
5876 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
5877 Autoload trivia.
5878
5879 * emacs-lisp/cl-extra.el (*random-state*):
5880 Remove unnecessary declaration.
5881
5882 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
5883
5884 * play/cookie1.el (cookie-snarf):
5885 Give an explicit error if input file cannot be read.
5886
5887 * play/yow.el (yow-file): Use expand-file-name rather than concat.
5888
5889 * progmodes/perl-mode.el (c-macro-expand):
5890 Remove unnecessary autoload (it is in loaddefs.el).
5891
5892 * textmodes/picture.el (picture-desired-column)
5893 (picture-update-desired-column): Convert comments to doc-strings.
5894 (picture-substitute): Remove function.
5895 (picture-mode-map): Initialize in the defvar.
5896
5897 * woman.el: Remove eval-after-load for tar-mode.
5898 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
5899 (woman-tar-extract-file): Autoload it.
5900
5901 * frame.el (automatic-hscrolling): Make this alias obsolete.
5902
5903 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5904
5905 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
5906 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
5907 (ispell-dictionary-base-alist): Revert to original XEmacs
5908 friendly version for default. [:alpha:] will be added in
5909 `ispell-set-spellchecker-params' if needed.
5910
5911 2012-04-16 Chong Yidong <cyd@gnu.org>
5912
5913 * image.el (imagemagick--file-regexp): New variable.
5914 (imagemagick-register-types): Use it.
5915 (imagemagick-types-inhibit): Add :set function. Allow new value
5916 of t to inhibit all types.
5917
5918 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
5919 so we can preload it.
5920
5921 * loadup.el (fboundp): Preload regexp-opt, needed by
5922 imagemagick-register-types.
5923
5924 2012-04-15 Chong Yidong <cyd@gnu.org>
5925
5926 * frame.el (scrolling): Remove nearly unused customization group.
5927
5928 * scroll-all.el (scroll-all-mode): Move to windows group.
5929
5930 2012-04-15 Chong Yidong <cyd@gnu.org>
5931
5932 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
5933
5934 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
5935
5936 Avoid the use of ((lambda ...) ...) in lexical-binding code.
5937 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
5938
5939 2012-04-15 Glenn Morris <rgm@gnu.org>
5940
5941 * simple.el (process-file-side-effects): Doc fix.
5942
5943 2012-04-15 Glenn Morris <rgm@gnu.org>
5944
5945 * international/mule-cmds.el (set-language-environment): Doc fix.
5946
5947 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
5948
5949 * server.el (server-auth-key, server-generate-key): Doc fixes.
5950 (server-get-auth-key): Doc fix. Use `string-match-p'.
5951 (server-start): Reflow docstring.
5952
5953 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
5954
5955 * server.el (server-generate-key): `called-interactively-p'
5956 requires a parameter.
5957
5958 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
5959
5960 * server.el (server-auth-key): New variable.
5961 (server-generate-key, server-get-auth-key): New function.
5962 (server-start): Use the new variable and functions to allow
5963 setting a permanent server key (bug#9423).
5964
5965 2012-04-14 Leo Liu <sdl.web@gmail.com>
5966
5967 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
5968
5969 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
5970
5971 Spelling fixes.
5972 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
5973 Emacs uses American spelling.
5974
5975 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
5976
5977 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
5978 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
5979 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
5980 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
5981
5982 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5983
5984 * progmodes/which-func.el (which-func-modes): Change default.
5985
5986 2012-04-14 Kim F. Storm <storm@cua.dk>
5987
5988 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
5989 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
5990
5991 2012-04-14 Chong Yidong <cyd@gnu.org>
5992
5993 * custom.el (custom-theme-set-variables): Doc fix.
5994
5995 2012-04-14 Glenn Morris <rgm@gnu.org>
5996
5997 * international/mule.el (set-auto-coding-for-load): Doc fix.
5998
5999 2012-04-14 Alan Mackenzie <acm@muc.de>
6000
6001 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
6002 imenu work again for Objective C Mode. Correct the *-index values,
6003 these having been disturbed by a previous change in 2011-08.
6004
6005 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
6006 Correct two search limits.
6007
6008 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6009
6010 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
6011
6012 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
6013
6014 * international/characters.el: Fix sorting.
6015
6016 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6017
6018 * international/characters.el: Add more missing Latin case pairs.
6019
6020 2012-04-14 Glenn Morris <rgm@gnu.org>
6021
6022 * files.el (dir-locals-set-class-variables): Doc fix.
6023
6024 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6025
6026 * international/characters.el: Add set-case-syntax-pair call for
6027 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
6028 counterpart. (Bug#11209)
6029
6030 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
6031
6032 2012-04-14 Glenn Morris <rgm@gnu.org>
6033
6034 * calendar/holidays.el (calendar-check-holidays): Doc fix.
6035
6036 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6037
6038 * textmodes/ispell.el (ispell-dictionary-base-alist):
6039 Add data for Hebrew.
6040
6041 2012-04-14 Chong Yidong <cyd@gnu.org>
6042
6043 * net/rcirc.el (rcirc-cmd-quit):
6044 Revert 2012-03-18 change (Bug#11192).
6045
6046 2012-04-14 Glenn Morris <rgm@gnu.org>
6047
6048 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
6049
6050 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6051
6052 * minibuffer.el (completion-in-region-mode-map):
6053 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
6054
6055 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
6056
6057 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
6058
6059 2012-04-13 Masatake YAMATO <yamato@redhat.com>
6060
6061 * minibuffer.el (minibuffer-local-filename-syntax): New variable
6062 to allow `C-M-f' and `C-M-b' to move to the nearest path
6063 separator (bug#9511).
6064
6065 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
6066
6067 * avoid.el: Require cl when compiling. And also move the
6068 `provide' to the end.
6069
6070 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6071
6072 * avoid.el (mouse-avoidance-banish-position): New variable.
6073 (mouse-avoidance-banish-destination): Use it (bug#10165).
6074
6075 2012-04-13 Leo Liu <sdl.web@gmail.com>
6076
6077 * progmodes/which-func.el (which-func-modes): Add objc-mode.
6078
6079 2012-04-13 Ken Brown <kbrown@cornell.edu>
6080
6081 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
6082 this is no longer needed now that cygstart understands file:// URLs.
6083 (browse-url-filename-alist): For the same reason, don't modify
6084 file:// URLs on Cygwin.
6085
6086 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
6087
6088 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
6089 the region on shift if the binding is already shifted (bug#11221).
6090
6091 2012-04-12 Glenn Morris <rgm@gnu.org>
6092
6093 * mail/mailpost.el: Move to obsolete/.
6094
6095 2012-04-12 Drew Adams <drew.adams@oracle.com>
6096
6097 * imenu.el (imenu--generic-function): Ignore invisible definitions
6098 (bug#10123).
6099
6100 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
6101
6102 * hexl.el (hexl-bits): New variable.
6103 (hexl-options): Mention the variable in the doc string.
6104 (hexl-rulerise, hexl-line-displen): New functions.
6105 (hexl-mode): Mention the new variable.
6106 (hexl-mode, hexl-current-address, hexl-current-address):
6107 Use the displen.
6108 (hexl-ascii-start-column): New function.
6109 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
6110 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
6111
6112 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6113
6114 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
6115 '("-i" ENCODING), in 2 separate command-line arguments, to specify
6116 the encoding, as expected by hunspell.
6117
6118 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6119
6120 * battery.el (battery--linux-sysfs-regexp): New const.
6121 (battery-status-function): Use it. Remove yeeloong special case.
6122 (battery-yeeloong-sysfs): Remove.
6123 (battery-echo-area-format): Remove yeeloong special case.
6124
6125 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6126
6127 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
6128 Reported by Noah Friedman.
6129
6130 * subr.el (read-passwd): Use read-string.
6131
6132 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
6133
6134 * vcursor.el (vcursor-move): Increase the priority of the overlay
6135 (bug#9663).
6136
6137 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6138
6139 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
6140 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
6141
6142 2012-04-11 William Stevenson <yhvh2000@gmail.com>
6143
6144 * textmodes/artist.el (artist-mode): Convert artist-mode to use
6145 define-minor-mode (bug#10760).
6146
6147 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
6148
6149 * progmodes/grep.el (rgrep): Tweak the find command line so
6150 that directories matching `grep-find-ignored-files' won't be
6151 pruned (bug#10351).
6152
6153 2012-04-11 Chong Yidong <cyd@gnu.org>
6154
6155 * startup.el (command-line): Remove support for long-obsolete
6156 variable font-lock-face-attributes.
6157
6158 2012-04-11 Glenn Morris <rgm@gnu.org>
6159
6160 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
6161
6162 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6163
6164 * window.el (window--state-get-1): Obey window-point-insertion-type.
6165
6166 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
6167
6168 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
6169 to previous function when point is on the first character of a
6170 function. Take care of that in `narrow-to-defun' (bug#6157).
6171
6172 2012-04-11 Glenn Morris <rgm@gnu.org>
6173
6174 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
6175 not just file-errors.
6176
6177 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
6178 (vc-bzr-sha1): Use internal sha1.
6179
6180 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6181
6182 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
6183
6184 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
6185
6186 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
6187 that start in the middle of the line (bug#10496).
6188
6189 2012-04-10 Dan Nicolaescu <dann@gnu.org>
6190
6191 * battery.el (battery-linux-proc-acpi): Only one battery is
6192 discharged at a time, but that seems to confuse battery.el when
6193 computing `rate-type' for the battery not being discharged
6194 (bug#10332).
6195
6196 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
6197
6198 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
6199
6200 * international/quail.el: Use dolist and simplify.
6201 (quail-define-package, quail-update-keyboard-layout)
6202 (quail-define-rules): Use dolist.
6203 (quail-insert-kbd-layout, quail-get-translation): CSE.
6204
6205 * tmm.el: Use dolist, remove left over hook.
6206 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
6207 Use dolist.
6208 (calendar-load-hook): Don't mess with it.
6209
6210 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
6211 Use derived-mode-p. Run the diff asynchronously.
6212
6213 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
6214
6215 * obsolete/mouse-sel.el: Add an Obsolete-since header.
6216
6217 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
6218
6219 * misc.el: Display absolute path of loaded DLLs (bug#10424).
6220 (list-dynamic-libraries--loaded): New function.
6221 (list-dynamic-libraries--refresh): Use it.
6222
6223 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
6224
6225 * progmodes/python.el (python-fill-paragraph):
6226 Make python-fill-region in a multiline string work when font-lock is
6227 disabled (bug#7018).
6228
6229 2012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
6230
6231 * language/european.el (cp775): Add oem/legacy (en)coding on
6232 DOS/MS Windows for the Baltic languages. There are still plenty
6233 of texts written in this encoding/codepage (bug#6519).
6234
6235 2012-04-10 Glenn Morris <rgm@gnu.org>
6236
6237 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
6238 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
6239
6240 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
6241
6242 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6243 next-line "n" and previous-line "p" in order to make recentf more
6244 consistent with ibuffer, dired or org-mode (bug#9387).
6245
6246 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
6247
6248 * image.el (put-image): Return the overlay created instead of the
6249 optional input string (bug#7834). Note that this may break code
6250 that is (for some reason or other) depending on `put-image'
6251 returning the string.
6252
6253 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
6254
6255 * simple.el (zap-to-char): Allow zapping using input methods
6256 (bug#1580).
6257
6258 * textmodes/fill.el (fill-region): Leave point and mark where they
6259 were before filling (bug#5399).
6260
6261 2012-04-09 Glenn Morris <rgm@gnu.org>
6262
6263 * version.el (emacs-bzr-get-version):
6264 Handle lightweight checkouts of local branches.
6265
6266 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
6267
6268 * international/characters.el: Recover lost case pairs. (Bug#11209)
6269
6270 2012-04-09 Chong Yidong <cyd@gnu.org>
6271
6272 * custom.el (custom-variable-p): Return nil for non-symbol
6273 arguments instead of signaling an error.
6274 (user-variable-p): Obsolete alias for custom-variable-p.
6275
6276 * apropos.el (apropos-variable):
6277 * files-x.el (read-file-local-variable):
6278 * simple.el (set-variable):
6279 * woman.el (woman-mini-help):
6280 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
6281
6282 2012-04-09 Glenn Morris <rgm@gnu.org>
6283
6284 * startup.el (normal-top-level): Don't look for leim-list.el
6285 in places where it will not be found. (Bug#910)
6286
6287 * international/mule-cmds.el (set-default-coding-systems):
6288 * files.el (normal-mode):
6289 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
6290 This function was removed with ucs-tables.el in 2008.
6291
6292 2012-04-08 Eli Zaretskii <eliz@gnu.org>
6293
6294 * textmodes/ispell.el (ispell-check-version): For hunspell, set
6295 ispell-encoding8-command to "-i", without a trailing space.
6296 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
6297 separate command-line arguments, to specify the encoding, since
6298 that's how hunspell expects it.
6299
6300 2012-04-08 Glenn Morris <rgm@gnu.org>
6301
6302 * loadup.el: Load bindings before cus-start.
6303 This reduces somewhat the number of "rogue" settings in emacs -Q.
6304
6305 2012-04-07 Glenn Morris <rgm@gnu.org>
6306
6307 * version.el (emacs-bzr-get-version): New function.
6308 (emacs-bzr-version): New variable.
6309 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
6310 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
6311
6312 2012-04-07 Eli Zaretskii <eliz@gnu.org>
6313
6314 * international/uni-bidi.el, international/uni-category.el:
6315 * international/uni-combining.el, international/uni-decimal.el:
6316 * international/uni-decomposition.el, international/uni-digit.el:
6317 * international/uni-lowercase.el, international/uni-mirrored.el:
6318 * international/uni-name.el, international/uni-numeric.el:
6319 * international/uni-titlecase.el, international/uni-uppercase.el:
6320 Update for Unicode 6.1.
6321
6322 2012-04-07 Eli Zaretskii <eliz@gnu.org>
6323
6324 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
6325
6326 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
6327
6328 * window.el (shrink-window): Mention the `window-min-height'
6329 variable in the doc string.
6330
6331 2012-04-05 Bastien Guerry <bzg@altern.org>
6332
6333 * color.el (color-lighten-name): Fix typo.
6334
6335 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6336
6337 * server.el (server--on-display-p): New function.
6338 (server--on-display-p): Use it.
6339
6340 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
6341
6342 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
6343 (bug#11145).
6344
6345 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6346
6347 * comint.el (comint--common-quoted-suffix): Check string boundary
6348 before comparing (bug#11158).
6349 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
6350
6351 2012-04-04 Chong Yidong <cyd@gnu.org>
6352
6353 * minibuffer.el (completion-extra-properties): Doc fix.
6354
6355 * subr.el (delayed-warnings-hook): Doc fix.
6356
6357 2012-04-04 Daiki Ueno <ueno@unixuser.org>
6358
6359 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
6360 selection (Bug#11159).
6361 (epa-insert-keys): Inform that the default public key will be
6362 exported if no key is selected.
6363
6364 2012-04-04 Richard Stallman <rms@gnu.org>
6365
6366 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
6367
6368 2012-04-03 Chong Yidong <cyd@gnu.org>
6369
6370 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
6371 mail-insert-file, not its obsolete alias mail-attach-file.
6372
6373 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
6374
6375 * notifications.el (notifications-notify): Fix docstring.
6376
6377 2012-04-02 Glenn Morris <rgm@gnu.org>
6378
6379 * emacs-lisp/authors.el (authors-aliases): Another addition.
6380
6381 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
6382
6383 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
6384 `tramp-compat-call-process' instead of `tramp-local-call-process'.
6385 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
6386
6387 2012-04-01 Chong Yidong <cyd@gnu.org>
6388
6389 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
6390 Handle root directory properly.
6391 (copy-directory): Caller changed.
6392
6393 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
6394 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
6395
6396 2012-03-31 Glenn Morris <rgm@gnu.org>
6397
6398 * term/xterm.el (xterm-extra-capabilities): Doc fix.
6399
6400 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
6401
6402 * calendar/calendar.el (calendar-window-list)
6403 (calendar-hide-window): Restore. (Bug#11140)
6404 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
6405
6406 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
6407
6408 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6409
6410 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
6411 Check if file is a symlink (Bug#10489).
6412
6413 * files.el (copy-directory): Likewise.
6414
6415 2012-03-30 Chong Yidong <cyd@gnu.org>
6416
6417 * image.el (imagemagick-types-inhibit)
6418 (imagemagick-register-types): Doc fix.
6419
6420 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6421
6422 * textmodes/ispell.el (ispell-get-extended-character-mode):
6423 Disable extended-char-mode for hunspell. hunspell does not support it
6424 and treats ~word as ordinary words in pipe mode.
6425
6426 2012-03-30 Glenn Morris <rgm@gnu.org>
6427
6428 * tutorial.el (help-with-tutorial): Ensure local variables don't
6429 happen to make the buffer read-only. (Bug#11127)
6430
6431 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
6432
6433 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
6434 (perl-calculate-indent): Return `noindent' in strings.
6435
6436 2012-03-28 Sam Steingold <sds@gnu.org>
6437
6438 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
6439 instead of the broken adhockery which does not prevent calendar
6440 buffers from being displayed at random after exit.
6441 (calendar-window-list, calendar-hide-window): Remove the broken
6442 adhockery.
6443
6444 2012-03-28 Glenn Morris <rgm@gnu.org>
6445
6446 * replace.el (query-replace-map): Doc fix.
6447
6448 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
6449
6450 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
6451 contents. (Bug#11109)
6452
6453 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
6454
6455 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
6456 (bug#11077).
6457 (avl-tree--check, avl-tree--check-node): New funs.
6458
6459 2012-03-27 Martin Rudalics <rudalics@gmx.at>
6460
6461 * window.el (switch-to-visible-buffer): New option.
6462 (switch-to-prev-buffer, switch-to-next-buffer):
6463 Observe switch-to-visible-buffer. Make sure that checking for a window
6464 showing a buffer already is done on the same frame.
6465
6466 2012-03-27 Glenn Morris <rgm@gnu.org>
6467
6468 * startup.el (mail-host-address): Doc fix.
6469
6470 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6471
6472 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
6473 than 197 variables.
6474
6475 2012-03-26 Ami Fischman <ami@fischman.org>
6476
6477 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
6478
6479 2012-03-26 Glenn Morris <rgm@gnu.org>
6480
6481 * files.el (save-buffers-kill-emacs): Doc fix.
6482
6483 * startup.el (normal-top-level, command-line, command-line-1):
6484 Give them doc strings.
6485
6486 2012-03-25 Eli Zaretskii <eliz@gnu.org>
6487
6488 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
6489 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
6490
6491 2012-03-25 Chong Yidong <cyd@gnu.org>
6492
6493 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
6494 theme if it was previously enabled before (Bug#11031).
6495
6496 * cus-theme.el (custom-theme-write-faces): Retrieve current face
6497 spec with custom-face-get-current-spec if its :shown-value is not
6498 determined yet (Bug#9337).
6499 (customize-create-theme, custom-theme-revert): Doc fixes.
6500
6501 * button.el (button-at): Minor addition to docstring.
6502
6503 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
6504
6505 * vc/vc.el (vc-merge): Fix a prompt.
6506
6507 2012-03-24 Chong Yidong <cyd@gnu.org>
6508
6509 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
6510 point (Bug#9623).
6511
6512 * button.el (button-at): Minor addition to docstring.
6513
6514 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
6515
6516 * newcomment.el (comment-choose-indent): No space after BOL.
6517
6518 2012-03-22 Sam Steingold <sds@gnu.org>
6519
6520 * window.el (switch-to-prev-buffer): Revert last patch because the
6521 bug turned out to be an advertised feature (Elisp manual 28.14).
6522
6523 2012-03-22 Glenn Morris <rgm@gnu.org>
6524
6525 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
6526 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
6527
6528 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
6529
6530 * net/network-stream.el (network-stream-open-starttls): Make error
6531 message under Windows be less misleading.
6532
6533 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
6534
6535 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
6536 understands (bug#9942).
6537
6538 2012-03-22 Chong Yidong <cyd@gnu.org>
6539
6540 * simple.el (end-of-visible-line): Handle return value of
6541 next-single-property-change properly (Bug#9371).
6542
6543 2012-03-22 Kenichi Handa <handa@m17n.org>
6544
6545 * international/quail.el (quail-insert-kbd-layout): Fix previous
6546 change. To avoid unwanted bidi reordering, use
6547 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
6548
6549 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
6550
6551 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
6552 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
6553 (ruby-beginning-of-indent): Be more careful with the difference
6554 between word-boundary and symbol boundary.
6555 (ruby-mode-syntax-table): Make : a symbol constituent.
6556
6557 2012-03-21 Andreas Politz <politza@fh-trier.de>
6558
6559 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
6560
6561 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
6562
6563 * progmodes/etags.el (tags-completion-at-point-function):
6564 Improve last fix.
6565
6566 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
6567
6568 2012-03-21 Sam Steingold <sds@gnu.org>
6569
6570 * progmodes/etags.el (tags-completion-at-point-function):
6571 Avoid the error when point is inside the pattern.
6572
6573 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
6574
6575 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
6576 line (Bug#10855).
6577
6578 2012-03-21 Drew Adams <drew.adams@oracle.com>
6579
6580 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
6581
6582 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
6583
6584 * ido.el (ido-set-current-directory, ido-read-internal)
6585 (ido-choose-completion-string, ido-completion-help): Handle nil
6586 value of ido-completion-buffer (Bug#11008).
6587
6588 2012-03-21 Sam Steingold <sds@gnu.org>
6589
6590 * window.el (switch-to-prev-buffer): Do not switch to a visible
6591 window previous buffer, just like with the frame previous buffers.
6592
6593 2012-03-21 Chong Yidong <cyd@gnu.org>
6594
6595 * faces.el (make-face, make-empty-face, copy-face):
6596 * face-remap.el (face-remap-add-relative, face-remap-set-base):
6597 Doc fixes.
6598
6599 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
6600
6601 * wid-edit.el (widget-complete-field): Remove (bug#11051).
6602 (widget-complete): Remove broken use of it.
6603
6604 2012-03-20 Chong Yidong <cyd@gnu.org>
6605
6606 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
6607 Use string-width and truncate-string-width to handle arbitrary
6608 characters.
6609
6610 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
6611
6612 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
6613 to draw rectangles, not squares. (Regression introduced by revno
6614 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
6615
6616 2012-03-18 Chong Yidong <cyd@gnu.org>
6617
6618 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
6619 it is not yet defined (for temacs).
6620
6621 2012-03-18 Leo Liu <sdl.web@gmail.com>
6622
6623 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
6624
6625 2012-03-17 Eli Zaretskii <eliz@gnu.org>
6626
6627 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
6628 (ispell-choices-win-default-height, ispell-silently-savep)
6629 (ispell-dictionary-alist, ispell-encoding8-command)
6630 (ispell-check-version, ispell-aspell-find-dictionary)
6631 (ispell-valid-dictionary-list, ispell-words-keyword)
6632 (ispell-get-word, ispell-internal-change-dictionary)
6633 (ispell-region, ispell-skip-region-list)
6634 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
6635 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
6636 (ispell-message-text-end, ispell-message)
6637 (ispell-buffer-local-parsing): Doc fix.
6638
6639 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
6640
6641 * htmlfontify.el: Add support for code block fontification for ODT
6642 export (Bug #9914).
6643 (hfy-optimisations): Define new option
6644 `body-text-only'
6645 (hfy-fontify-buffer): Honor above setting.
6646 (hfy-begin-span, hfy-end-span): New routines factored out form
6647 `hfy-fontify-buffer'.
6648 (hfy-begin-span-handler, hfy-end-span-handler): New variables
6649 that permit insertion of custom tags.
6650 (hfy-fontify-buffer): Use above handlers.
6651 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
6652 (hfy-face-to-css): Re-defined to be a variable.
6653 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
6654 over multiple runs. This is made possible by having the caller let
6655 bind a special variable `hfy-user-sheet-assoc'.
6656 (htmlfontify-string): New defun.
6657 (hfy-compile-face-map): Make sure that the last char in the
6658 buffer is correctly fontified.
6659 (hfy-face-resolve-face): Whitespace only change.
6660
6661 2012-03-17 Eli Zaretskii <eliz@gnu.org>
6662
6663 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
6664 message more clear.
6665
6666 2012-03-16 Leo Liu <sdl.web@gmail.com>
6667
6668 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
6669
6670 2012-03-16 Alan Mackenzie <acm@muc.de>
6671
6672 Further optimise the handling of large macros.
6673
6674 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
6675 limit to a call of `c-literal-limits'.
6676 (c-determine-+ve-limit): New function.
6677 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
6678 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
6679 In CASE 5B, restrict a search limit to 500.
6680 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
6681
6682 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
6683 Restrict macro bounds to +-500 from after-change's BEG END.
6684
6685 2012-03-16 Leo Liu <sdl.web@gmail.com>
6686
6687 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
6688
6689 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
6690
6691 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
6692 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6693
6694 2012-03-16 Glenn Morris <rgm@gnu.org>
6695
6696 * view.el (view-buffer, view-buffer-other-window)
6697 (view-buffer-other-frame): Doc fixes re special mode-class.
6698
6699 * subr.el (eval-after-load): If named feature is provided not from
6700 a file, run after-load forms. (Bug#10946)
6701
6702 * calendar/calendar.el (calendar-insert-at-column):
6703 Handle non-unit-width characters a bit better. (Bug#10978)
6704
6705 2012-03-15 Chong Yidong <cyd@gnu.org>
6706
6707 * emacs-lisp/ring.el (ring-extend): New function.
6708 (ring-insert+extend): Extend the ring correctly (Bug#11019).
6709
6710 * comint.el (comint-read-input-ring)
6711 (comint-add-to-input-history): Grow comint-input-ring lazily.
6712
6713 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
6714
6715 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
6716 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
6717
6718 * imenu.el: Fix multiple inheritance breakage (bug#9199).
6719 (imenu-add-to-menubar): Don't add a redundant index.
6720 (imenu-update-menubar): Handle a dynamically composed keymap.
6721
6722 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
6723
6724 * mail/sendmail.el (mail-encode-header):
6725 Bind rfc2047-encode-encoded-words to nil.
6726
6727 2012-03-13 Glenn Morris <rgm@gnu.org>
6728
6729 * calendar/calendar.el (calendar-string-spread):
6730 Handle non-unit-width characters a bit better. (Bug#10978)
6731
6732 2012-03-13 Leo Liu <sdl.web@gmail.com>
6733
6734 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
6735 directory and file as argument (Bug#10822).
6736
6737 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
6738
6739 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
6740 For dynamically generated code, follow $PC.
6741 (gdb-disassembly-handler-custom): Handle no function name case.
6742
6743 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
6744
6745 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
6746 * emulation/ws-mode.el (ws-query-replace):
6747 * sort.el (sort-regexp-fields):
6748 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
6749
6750 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6751
6752 * dabbrev.el: Fix cycle completion order (bug#10963).
6753 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
6754 (dabbrev-completion): Don't use an obarray; provide
6755 a cycle-sort-function.
6756
6757 2012-03-12 Leo Liu <sdl.web@gmail.com>
6758
6759 * simple.el (kill-new): Use equal-including-properties for comparison.
6760 (kill-do-not-save-duplicates): Doc fix.
6761
6762 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6763
6764 * dabbrev.el: Fix cycle completion (bug#10963).
6765 Use lexical binding and wrap to 80 columns.
6766 (dabbrev-completion): Delay computing the list of completions.
6767
6768 2012-03-12 Kenichi Handa <handa@m17n.org>
6769
6770 * international/quail.el (quail-insert-kbd-layout): Surround each
6771 row by LRO and PDF instead of inserting many LRMs. Pad the left
6772 and right of each non-spacing marks. Insert invisible space
6773 between lower and upper characters to prevent composition.
6774
6775 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6776
6777 * minibuffer.el (minibuffer-complete): Don't get confused when the
6778 function is run twice via different commands (bug#10958).
6779 (complete-with-action): Fix docstring.
6780
6781 2012-03-12 Chong Yidong <cyd@gnu.org>
6782
6783 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
6784 (nxml-completion-at-point-function): New function.
6785 (nxml-mode): Use it.
6786 (nxml-bind-meta-tab-to-complete-flag): Default to t.
6787
6788 * emacs-lisp/package.el (package-unpack, package-unpack-single):
6789 Load generated autoloads file before byte compiling (Bug#10970).
6790 (package--make-autoloads-and-compile): New helper fun.
6791
6792 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
6793
6794 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
6795
6796 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
6797
6798 * autorevert.el (auto-revert-handler): Ensure, that
6799 file-readable-p is applied only for local files or in
6800 auto-revert-tail-mode.
6801
6802 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
6803
6804 * server.el (server-eval-at): Handle non-tcp connections.
6805 Decode result string.
6806
6807 * server.el (server-msg-size): New constant.
6808 (server-reply-print): New function.
6809 (server-eval-and-print): Use it.
6810 (server-eval-at): Use server-quote-arg and server-unquote-arg.
6811 Handle -print-nonl.
6812
6813 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
6814
6815 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
6816 (Bug#10987).
6817
6818 2012-03-11 Chong Yidong <cyd@gnu.org>
6819
6820 * simple.el (goto-line): Doc fix (Bug#9938).
6821
6822 * subr.el (save-window-excursion): Doc fix (Bug#9979).
6823
6824 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
6825 when finished (Bug#10963).
6826
6827 2012-03-11 Martin Rudalics <rudalics@gmx.at>
6828
6829 * window.el (split-window-below): Fix bug in case where
6830 split-window-keep-point is nil (Bug#10971).
6831
6832 2012-03-11 Juri Linkov <juri@jurta.org>
6833
6834 * replace.el (replace-highlight): Set isearch-word to nil
6835 unconditionally. (Bug#10887)
6836
6837 2012-03-10 Eli Zaretskii <eliz@gnu.org>
6838
6839 * net/mairix.el (mairix-replace-invalid-chars): Rename from
6840 mairix-replace-illegal-chars; all callers changed. Don't remove
6841 ^, ~, and = characters: they are meaningful in mairix search specs.
6842 (mairix-widget-create-query): Add usage information about mairix
6843 search forms: negating words, searching for substrings, etc.
6844
6845 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
6846
6847 * international/fontset.el (font-encoding-alist): Add an entry for
6848 ksx1001 (Bug#5667).
6849
6850 2012-03-10 Richard Stallman <rms@gnu.org>
6851
6852 * mail/sendmail.el (mail-encode-header):
6853 Set rfc2047-encode-encoded-words.
6854
6855 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
6856
6857 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
6858 view buffer means not swapped.
6859 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
6860 (rmail-write-region-annotate): Error if real text has disappeared.
6861
6862 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
6863
6864 2012-03-10 Chong Yidong <cyd@gnu.org>
6865
6866 * emulation/cua-rect.el (cua--init-rectangles):
6867 * emulation/cua-base.el (cua--init-keymaps):
6868 Add delete-forward-char to remappings (Bug#9666).
6869
6870 2012-03-10 Martin Rudalics <rudalics@gmx.at>
6871
6872 * speedbar.el (speedbar-unhighlight-one-tag-line):
6873 Avoid unhighlighting due to frame switching (Bug#10275).
6874
6875 2012-03-10 Chong Yidong <cyd@gnu.org>
6876
6877 * minibuffer.el (completion-in-region, completion-help-at-point):
6878 Give the completion field overlay a high priority (Bug#6830).
6879
6880 * dired.el (dired-goto-file): Recognize absolute file name
6881 listings (Bug#7126).
6882 (dired-goto-file-1): New helper function.
6883 (dired-toggle-read-only): Inhibit warnings.
6884
6885 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
6886
6887 * net/dbus.el (dbus-property-handler): Return empty array if
6888 there are no properties.
6889
6890 2012-03-09 Leo Liu <sdl.web@gmail.com>
6891
6892 * savehist.el (savehist-printable): Stricter check for string
6893 value (Bug#10937).
6894
6895 2012-03-09 Eli Zaretskii <eliz@gnu.org>
6896
6897 * mail/smtpmail.el (smtpmail-send-it):
6898 Bind coding-system-for-write to *-unix, so that FCC files are kept in
6899 valid mbox format.
6900
6901 2012-03-09 Glenn Morris <rgm@gnu.org>
6902
6903 * files.el (dir-locals-find-file):
6904 Don't check result is regular, readable.
6905 (dir-locals-read-from-file): Demote errors.
6906
6907 2012-03-08 Eli Zaretskii <eliz@gnu.org>
6908
6909 * international/quail.el (quail-insert-kbd-layout):
6910 Insert invisible LRM characters before each character in a keyboard
6911 layout cell, to prevent their reordering by bidi display engine.
6912 For details, see the discussion in
6913 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
6914
6915 2012-03-08 Alan Mackenzie <acm@muc.de>
6916
6917 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
6918 the starting position; make it extend the marked region when
6919 invoked repeatedly - all under appropriate circumstances.
6920 Fixes bugs #5525, #10906.
6921
6922 2012-03-08 Glenn Morris <rgm@gnu.org>
6923
6924 * files.el (locate-dominating-file, dir-locals-find-file):
6925 Undo 2012-03-06 change.
6926
6927 2012-03-07 Eli Zaretskii <eliz@gnu.org>
6928
6929 * international/quail.el (quail-help):
6930 Force bidi-paragraph-direction be left-to-right. See discussion in
6931 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
6932 for the reason.
6933
6934 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
6935
6936 Avoid superfluous registering of signals. (Bug#10807)
6937
6938 * notifications.el (notifications-on-action-object)
6939 (notifications-on-close-object): New defvars.
6940 (notifications-on-action-signal, notifications-on-closed-signal):
6941 Unregister the signal if not needed any longer.
6942 (notifications-notify): Register `notifications-action-signal' or
6943 `notifications-closed-signal', if :on-action or :on-close has been
6944 passed as argument.
6945
6946 2012-03-07 Chong Yidong <cyd@gnu.org>
6947
6948 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
6949 non-X platforms.
6950
6951 2012-03-06 Glenn Morris <rgm@gnu.org>
6952
6953 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
6954 (x-disown-selection-internal, x-get-selection-internal):
6955 Doc fix (add arglist signatures). (Bug#10783)
6956
6957 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
6958
6959 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
6960 Handle breakpoints with no "type".
6961
6962 2012-03-06 Glenn Morris <rgm@gnu.org>
6963
6964 * files.el (locate-dominating-file): Add optional predicate argument.
6965 (dir-locals-find-file): Make use of above change.
6966
6967 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
6968
6969 * info.el (Info-insert-dir): Also try "dir.gz".
6970
6971 2012-03-06 Glenn Morris <rgm@gnu.org>
6972
6973 * files.el (dir-locals-find-file):
6974 Ignore non-readable or non-regular files. (Bug#10928)
6975
6976 * files.el (locate-dominating-file): Doc fix.
6977
6978 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
6979
6980 * calendar/calendar.el (calendar-set-mode-line):
6981 `getenv' returns a string. (Bug#10951)
6982
6983 2012-03-05 Leo Liu <sdl.web@gmail.com>
6984
6985 * simple.el (backward-delete-char-untabify): Constrain point to
6986 field (Bug#10939).
6987
6988 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
6989
6990 2012-03-05 Chong Yidong <cyd@gnu.org>
6991
6992 * simple.el (count-words): If called from Lisp, return the word
6993 count, for symmetry with `count-lines'. Arglist changed.
6994 (count-words--message): Args changed. Consolidate counting code
6995 from count-words and count-words-region.
6996 (count-words-region): Caller changed.
6997 (count-lines-region): Make it an obsolete alias.
6998
6999 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
7000
7001 * saveplace.el (save-place-to-alist)
7002 (save-place-ignore-files-regexp): Allow value nil to disable this
7003 feature.
7004
7005 2012-03-04 Chong Yidong <cyd@gnu.org>
7006
7007 * faces.el (face-spec-reset-face): For the default face, reset the
7008 attributes to default values (Bug#10748).
7009
7010 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
7011
7012 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
7013 previous patch: Check `message-send-mail-function', and not the
7014 default function (bug#10897).
7015
7016 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
7017
7018 * notifications.el (notifications-on-action-signal)
7019 (notifications-on-closed-signal): Check for unique service name of
7020 incoming event. Fix error in removing entry.
7021 (top): Register for signals with wildcard service name.
7022 (notifications-notify): Use daemon unique service name for map entries.
7023
7024 2012-03-04 Chong Yidong <cyd@gnu.org>
7025
7026 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
7027
7028 2012-03-04 Glenn Morris <rgm@gnu.org>
7029
7030 * abbrev.el (copy-abbrev-table, abbrev-table-p)
7031 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
7032 (expand-abbrev, define-abbrev-table): Doc fixes.
7033
7034 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
7035
7036 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
7037 `message-default-send-mail-function' and not `send-mail-function'
7038 when doing the prompting for `sendmail-query-once' before sending
7039 in Message buffers (bug#10897).
7040
7041 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
7042 This is inconsistent with all the other stream functions, which leave
7043 the setting up to the higher levels (if so wanted) (bug#10931).
7044
7045 2012-03-02 Alan Mackenzie <acm@muc.de>
7046
7047 Depessimize the handling of very large macros.
7048
7049 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
7050 (c-macro-cache-syntactic): New variables to implement a one
7051 element macro cache.
7052 (c-invalidate-macro-cache): New function.
7053 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
7054 Adapt to use the new cache.
7055 (c-state-safe-place): Use better the cache of safe positions.
7056 (c-state-semi-nonlit-pos-cache)
7057 (c-state-semi-nonlit-pos-cache-limit):
7058 New variables for...
7059 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
7060 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
7061 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
7062 Use c-state-semi-safe-place.
7063
7064 * progmodes/cc-langs.el (c-get-state-before-change-functions):
7065 Add c-invalidate-macro-cache to the C, C++, Obj entries.
7066
7067 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
7068
7069 * jka-compr.el (jka-compr-call-process):
7070 Apply `file-accessible-directory-p' only when the default directory is
7071 not remote.
7072
7073 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
7074
7075 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
7076 access of FILE2, if FILE1 does not exist.
7077
7078 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
7079 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
7080
7081 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
7082 Add "PAGER=" to `process-environment'.
7083
7084 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
7085
7086 * progmodes/sql.el: Bug fix
7087 (sql-get-login-ext): Save login values in globals.
7088 (sql-get-login): Use new version of `sql-get-login-ext'.
7089 (sql-interactive-mode): Set global `sql-connection' to nil.
7090 (sql-connect): Set global values for connection.
7091 (sql-product-interactive): Save global values as buffer local.
7092
7093 2012-02-29 Leo Liu <sdl.web@gmail.com>
7094
7095 * abbrev.el (define-abbrevs): Reset sys to nil.
7096
7097 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7098
7099 * files.el (file-equal-p): Rename from `files-equal-p'.
7100 Return nil when one or both files don't exist.
7101 (file-subdir-of-p): Now only top directory must exists,
7102 return nil if it doesn't.
7103 (copy-directory): No need to test with `file-subdir-of-p' after
7104 creating dir.
7105 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
7106 to `file-equal-p'.
7107
7108 2012-02-28 Glenn Morris <rgm@gnu.org>
7109
7110 * shell.el (shell-mode):
7111 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
7112 * play/landmark.el (landmark-font-lock-face-O):
7113 * play/handwrite.el (handwrite):
7114 * play/gomoku.el (gomoku-O):
7115 * net/browse-url.el (browse-url-browser-display):
7116 * international/mule.el (define-charset):
7117 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
7118 * filesets.el (filesets-find-file-delay):
7119 * eshell/em-xtra.el (eshell-xtra):
7120 * eshell/em-unix.el (eshell-grep):
7121 * emulation/viper.el (viper-mode):
7122 * emacs-lisp/regexp-opt.el (regexp-opt-group):
7123 * emacs-lisp/easymenu.el (easy-menu-define):
7124 * calendar/timeclock.el (timeclock-use-display-time):
7125 * bs.el (bs-mode):
7126 * bookmark.el (bookmark-save-flag):
7127 Doc fix (standardize possessive apostrophe usage).
7128
7129 2012-02-27 Chong Yidong <cyd@gnu.org>
7130
7131 * emulation/viper-cmd.el (viper-intercept-ESC-key):
7132 Fix key-binding lookup for ESC key (Bug#9146).
7133
7134 * font-lock.el (font-lock-specified-p): Rename from
7135 font-lock-spec-present. Callers changed.
7136
7137 2012-02-27 Daniel Hackney <dan@haxney.org>
7138
7139 * emacs-lisp/package.el (package-compute-transaction):
7140 Handle holding a package version to t in package-load-list.
7141
7142 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
7143
7144 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
7145 (tramp-get-inode, tramp-get-device): Use cached values.
7146
7147 2012-02-26 Alan Mackenzie <acm@muc.de>
7148
7149 Check there is a font-lock specification before doing initial
7150 fontification.
7151
7152 * font-core.el (font-lock-mode): Move the conditional from
7153 :after-hook to font-lock-initial-fontify.
7154 (font-lock-default-function): Move the check for a specification
7155 to font-lock-spec-present.
7156
7157 * font-lock.el (font-lock-initial-fontify): Call ...
7158 (font-lock-spec-present): New function.
7159
7160 2012-02-26 Jim Blandy <jimb@red-bean.com>
7161
7162 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
7163 (gdb-send): Apply it to the operand of the '-interpreter-exec
7164 console' command, so that we can pass arguments with (say) quotes
7165 in them. Store exact string sent in gdb-debug-log (Bug#10765).
7166
7167 2012-02-26 Chong Yidong <cyd@gnu.org>
7168
7169 * help-fns.el (describe-function-1): Clarify description of
7170 remapping (Bug#10844).
7171
7172 * files.el (files-equal-p): Doc fix.
7173 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
7174 and quit the loop once a mismatch is found.
7175
7176 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
7177
7178 * bs.el (bs--show-with-configuration): Don't throw an error
7179 if the window cannot be split; otherwise, subsequent calls to
7180 bs-show fail, restoring a stale window config. (Bug#10882)
7181
7182 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
7183
7184 * term/ns-win.el (global-map): Bind ns-drag-file to
7185 ns-find-file (Bug#5855, Bug#10050).
7186
7187 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
7188
7189 * calendar/parse-time.el (parse-time-string): Allow extractor to
7190 return nil.
7191
7192 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
7193
7194 * net/tramp.el (tramp-file-name-for-operation):
7195 Add `files-equal-p' and `file-subdir-of-p'.
7196
7197 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7198 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7199 Add COPY-CONTENTS argument.
7200
7201 2012-02-25 Chong Yidong <cyd@gnu.org>
7202
7203 Add custom groups for VC backends, for consistency with vc-bzr.
7204
7205 * vc/vc-arch.el (vc-arch):
7206 * vc/vc-cvs.el (vc-cvs):
7207 * vc/vc-git.el (vc-git):
7208 * vc/vc-hg.el (vc-hg):
7209 * vc/vc-mtn.el (vc-mtn):
7210 * vc/vc-rcs.el (vc-rcs):
7211 * vc/vc-sccs.el (vc-sccs):
7212 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
7213 All relevant defcustoms reassigned.
7214
7215 2012-02-25 Chong Yidong <cyd@gnu.org>
7216
7217 * newcomment.el (comment-styles): Add autoload (Bug#10868).
7218
7219 * term/x-win.el (x-initialize-window-system): Reduce default for
7220 x-selection-timeout to 5 seconds (Bug#8869).
7221
7222 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7223
7224 * files.el (files-equal-p, file-subdir-of-p): New functions.
7225 (copy-directory): Error when trying to copy a directory on itself.
7226 Add missing copy-contents arg to tramp handler.
7227 * dired-aux.el (dired-copy-file-recursive): Same.
7228 (dired-create-files): Modify destination when source is equal to
7229 dest when copying files.
7230 Return also when dest is a subdir of source. (Bug#10489)
7231
7232 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
7233
7234 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
7235 (Bug#10874)
7236
7237 2012-02-23 Alan Mackenzie <acm@muc.de>
7238
7239 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
7240 parameter "after-hook:" to allow the expansion to run code after
7241 the execution of the mode hooks.
7242
7243 * font-lock.el (font-lock-initial-fontify): New function extracted
7244 from font-lock-mode-internal.
7245
7246 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
7247 :after-hook.
7248
7249 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7250
7251 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
7252 (completion--cache-all-sorted-completions): New function.
7253 (completion-all-sorted-completions): Use it.
7254 (completion--do-completion, minibuffer-force-complete):
7255 Use it to re-instate the flush hook.
7256
7257 * icomplete.el (icomplete-completions): Replace last fix with a better
7258 one (bug#10850).
7259
7260 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
7261
7262 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
7263 when it might call us back infinitely (bug#10797).
7264
7265 2012-02-23 Glenn Morris <rgm@gnu.org>
7266
7267 * minibuffer.el (completion-category-overrides): Doc fix.
7268
7269 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7270
7271 * minibuffer.el (completion-table-with-context): Fix inf-loop.
7272 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
7273
7274 2012-02-23 Glenn Morris <rgm@gnu.org>
7275
7276 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
7277 (authors-obsolete-files-regexps, authors-ignored-files)
7278 (authors-ambiguous-files, authors-renamed-files-alist):
7279 Add more entries.
7280
7281 2012-02-23 Juri Linkov <juri@jurta.org>
7282
7283 * isearch.el (isearch-occur): Sync interactive spec with occur's
7284 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
7285
7286 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
7287
7288 2012-02-22 Juri Linkov <juri@jurta.org>
7289
7290 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
7291 (ucs-insert): Doc fix. Check for hex digits in the string.
7292 Don't display `nil' in the error message. (Bug#10857)
7293
7294 2012-02-22 Alan Mackenzie <acm@muc.de>
7295
7296 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
7297
7298 2012-02-22 Glenn Morris <rgm@gnu.org>
7299
7300 * ffap.el (ffap-c-path):
7301 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
7302
7303 2012-02-22 Chong Yidong <cyd@gnu.org>
7304
7305 * custom.el (load-theme): Doc fix.
7306
7307 2012-02-22 Glenn Morris <rgm@gnu.org>
7308
7309 * dired-x.el (dired-guess-shell-alist-default):
7310 Remove escape sequences from nroff output. (Bug#172)
7311
7312 2012-02-21 Glenn Morris <rgm@gnu.org>
7313
7314 * vc/emerge.el (emerge-defvar-local):
7315 Set `permanent-local' property rather than unused `preserved'.
7316
7317 * textmodes/picture.el (picture-delete-char): New alias.
7318 (picture-mode-map): Use it. (Bug#10860)
7319 (picture-mode): Doc fix.
7320
7321 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
7322
7323 * newcomment.el (uncomment-region-default): Remove unused binding.
7324
7325 2012-02-21 Glenn Morris <rgm@gnu.org>
7326
7327 * textmodes/picture.el (picture-motion, picture-motion-reverse)
7328 (picture-self-insert, picture-tab-chars): Doc fix.
7329 (picture-mode-map): Fix C-a, C-e.
7330
7331 2012-02-20 Glenn Morris <rgm@gnu.org>
7332
7333 * emacs-lisp/authors.el (authors-aliases): Add another entry.
7334
7335 2012-02-20 Leo Liu <sdl.web@gmail.com>
7336
7337 * icomplete.el (icomplete-completions): Check FROM arg before
7338 passing to substring (Bug#10850).
7339
7340 2012-02-19 Chong Yidong <cyd@gnu.org>
7341
7342 * comint.el: Require ansi-color.
7343 (comint-output-filter-functions): Add ansi-color-process-output.
7344
7345 * ansi-color.el: Don't set comint-output-filter-functions; it is
7346 now in the initial value defined in comint.el.
7347 (ansi-color-apply-face-function): New variable.
7348 (ansi-color-apply-on-region): Use it.
7349 (ansi-color-apply-overlay-face): New function.
7350
7351 * shell.el (shell): No need to require ansi-color.
7352 (shell-mode): Use ansi-color-apply-face-function to highlight
7353 color escapes using font-lock-face property (Bug#10835).
7354
7355 2012-02-19 Chong Yidong <cyd@gnu.org>
7356
7357 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
7358 mode-line formats (Bug#10839).
7359
7360 2012-02-18 Glenn Morris <rgm@gnu.org>
7361
7362 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
7363
7364 * mail/undigest.el (unforward-rmail-message): Doc fix.
7365
7366 * saveplace.el (save-place-ignore-files-regexp): Add :version.
7367
7368 2012-02-18 Eli Zaretskii <eliz@gnu.org>
7369
7370 * international/characters.el (script-list): Sync with the latest
7371 Unicode Character Database.
7372
7373 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
7374
7375 * international/titdic-cnv.el: Remove duplicate coding tag.
7376 * language/cham.el: Likewise.
7377 * language/tai-viet.el: Likewise.
7378
7379 2012-02-18 Glenn Morris <rgm@gnu.org>
7380
7381 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
7382 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
7383 (calendar-bahai-all-holidays-flag, calendar-other-dates):
7384 * calendar/diary-lib.el (diary-abbreviated-year-flag):
7385 * calendar/holidays.el (holiday-bahai-holidays)
7386 (calendar-holidays, list-holidays):
7387 Use utf-8 Bahá'í in doc-strings, menus, etc.
7388
7389 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
7390
7391 * saveplace.el (save-place-ignore-files-regexp): New variable
7392 allowing for excluding files from saving their location of point.
7393 The default value matches the temporary commit message editing
7394 files from Git, SVN, Bazaar, and Mercurial.
7395 (save-place-to-alist): Use it.
7396
7397 2012-02-17 Lawrence Mitchell <wence@gmx.li>
7398 Stefan Monnier <monnier@iro.umontreal.ca>
7399
7400 * newcomment.el (uncomment-region-default): Don't leave extra space
7401 when an arg is provided (bug#8150).
7402
7403 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
7404
7405 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
7406
7407 2012-02-17 Glenn Morris <rgm@gnu.org>
7408
7409 * net/socks.el: Require network-stream. (Bug#10599)
7410
7411 2012-02-17 Kenichi Handa <handa@m17n.org>
7412
7413 * international/charprop.el:
7414 * international/uni-name.el:
7415 * international/uni-old-name.el:
7416 * international/uni-comment.el: Regenerate.
7417
7418 2012-02-16 Glenn Morris <rgm@gnu.org>
7419
7420 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
7421 Interactively in calendar buffer, give an error if not on a date.
7422
7423 2012-02-15 Glenn Morris <rgm@gnu.org>
7424
7425 * shell.el (shell-delimiter-argument-list):
7426 Revert 2011-02-17 change. (Bug#8027)
7427
7428 2012-02-15 Chong Yidong <cyd@gnu.org>
7429
7430 * minibuffer.el (completion-at-point-functions): Doc fix.
7431
7432 * custom.el (defcustom): Doc fix; note use of defvar.
7433
7434 2012-02-15 Glenn Morris <rgm@gnu.org>
7435
7436 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
7437 Doc fixes.
7438
7439 2012-02-14 Glenn Morris <rgm@gnu.org>
7440
7441 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
7442
7443 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
7444
7445 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
7446 way the ports list is computed.
7447 (smtpmail-query-smtp-server): Prompt the user for a port number if
7448 we can't connect to any of the standard ports (bug#10810).
7449
7450 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
7451
7452 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
7453
7454 2012-02-13 Glenn Morris <rgm@gnu.org>
7455
7456 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
7457
7458 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
7459
7460 * net/gnutls.el (gnutls-trustfiles): New variable.
7461 (gnutls-negotiate): Use it.
7462
7463 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
7464
7465 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
7466 does its stuff if Gnus is running.
7467
7468 2012-02-13 Alan Mackenzie <acm@muc.de>
7469
7470 Fix a loop in c-set-fl-decl-start.
7471
7472 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
7473 c-backward-syntactic-ws actually moves backwards.
7474
7475 2012-02-13 Leo Liu <sdl.web@gmail.com>
7476
7477 * net/rcirc.el (rcirc-markup-attributes): Move point to the
7478 beginning so that all \C-o chars are removed.
7479
7480 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
7481
7482 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
7483
7484 2012-02-12 Alan Mackenzie <acm@muc.de>
7485
7486 Fix infinite loop with long macros.
7487 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
7488
7489 2012-02-12 Chong Yidong <cyd@gnu.org>
7490
7491 * window.el (display-buffer): Doc fix (Bug#10785).
7492
7493 2012-02-12 Glenn Morris <rgm@gnu.org>
7494
7495 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
7496 (x-disown-selection-internal, x-get-selection-internal):
7497 Sync docs with the xselect.c versions.
7498
7499 * allout-widgets.el: Add missing license notice.
7500
7501 2012-02-11 Glenn Morris <rgm@gnu.org>
7502
7503 * select.el (x-get-selection-internal, x-own-selection-internal)
7504 (x-disown-selection-internal):
7505 * x-dnd.el (x-get-selection-internal): Update declarations.
7506
7507 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
7508
7509 * window.el (window-sides-slots):
7510 * tool-bar.el (tool-bar-position):
7511 * term/xterm.el (xterm-extra-capabilities):
7512 * ses.el (ses-self-reference-early-detection):
7513 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
7514 (verilog-auto-wire-type)
7515 (verilog-auto-delete-trailing-whitespace)
7516 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
7517 (verilog-auto-tieoff-declaration):
7518 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
7519 (sql-oracle-statement-starters, sql-oracle-scan-on):
7520 * progmodes/prolog.el (prolog-align-comments-flag)
7521 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
7522 (prolog-left-indent-regexp, prolog-paren-indent-p)
7523 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
7524 (prolog-types, prolog-mode-specificators)
7525 (prolog-determinism-specificators, prolog-directives)
7526 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
7527 (prolog-electric-dot-flag)
7528 (prolog-electric-dot-full-predicate-template)
7529 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
7530 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
7531 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
7532 (prolog-program-switches, prolog-prompt-regexp)
7533 (prolog-debug-on-string, prolog-debug-off-string)
7534 (prolog-trace-on-string, prolog-trace-off-string)
7535 (prolog-zip-on-string, prolog-zip-off-string)
7536 (prolog-use-standard-consult-compile-method-flag)
7537 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
7538 (prolog-imenu-max-lines, prolog-info-predicate-index)
7539 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
7540 (prolog-char-quote-workaround):
7541 * progmodes/cc-vars.el (c-defun-tactic):
7542 * net/tramp.el (tramp-encoding-command-interactive)
7543 (tramp-local-end-of-line):
7544 * net/soap-client.el (soap-client):
7545 * net/netrc.el (netrc-file):
7546 * net/gnutls.el (gnutls):
7547 * minibuffer.el (completion-category-overrides)
7548 (completion-cycle-threshold)
7549 (completion-pcm-complete-word-inserts-delimiters):
7550 * man.el (Man-name-local-regexp):
7551 * mail/feedmail.el (feedmail-display-full-frame):
7552 * international/characters.el (glyphless-char-display-control):
7553 * eshell/em-ls.el (eshell-ls-date-format):
7554 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
7555 (lisp-lambda-list-keyword-parameter-indentation)
7556 (lisp-lambda-list-keyword-parameter-alignment):
7557 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
7558 * dired-x.el (dired-omit-verbose):
7559 * cus-theme.el (custom-theme-allow-multiple-selections):
7560 * calc/calc.el (calc-highlight-selections-with-faces)
7561 (calc-lu-field-reference, calc-lu-power-reference)
7562 (calc-note-threshold):
7563 * battery.el (battery-mode-line-limit):
7564 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
7565 (archive-7z-update):
7566 * allout.el (allout-prefixed-keybindings)
7567 (allout-unprefixed-keybindings)
7568 (allout-inhibit-auto-fill-on-headline)
7569 (allout-flattened-numbering-abbreviation):
7570 * allout-widgets.el (allout-widgets-auto-activation)
7571 (allout-widgets-icons-dark-subdir)
7572 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
7573 (allout-widgets-theme-dark-background)
7574 (allout-widgets-theme-light-background)
7575 (allout-widgets-item-image-properties-emacs)
7576 (allout-widgets-item-image-properties-xemacs)
7577 (allout-widgets-run-unit-tests-on-load)
7578 (allout-widgets-time-decoration-activity)
7579 (allout-widgets-hook-error-post-time)
7580 (allout-widgets-track-decoration):
7581 Add missing :version tags to new defcustoms and defgroups.
7582
7583 * progmodes/sql.el (sql-ansi-statement-starters)
7584 (sql-oracle-statement-starters): Add custom type.
7585
7586 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
7587 (prolog-system-version): Give it a type.
7588
7589 2012-02-11 Eli Zaretskii <eliz@gnu.org>
7590
7591 * term/pc-win.el (x-select-text, x-selection-owner-p)
7592 (x-own-selection-internal, x-disown-selection-internal)
7593 (x-get-selection-internal): Sync doc strings and argument lists
7594 with xselect.c, common-win.el and x-win.el. (Bug#10783)
7595
7596 2012-02-11 Leo Liu <sdl.web@gmail.com>
7597
7598 * progmodes/python.el (python-end-of-statement): Fix infinite
7599 loop. (Bug#10788)
7600
7601 2012-02-10 Glenn Morris <rgm@gnu.org>
7602
7603 * international/mule-cmds.el (unify-8859-on-encoding-mode)
7604 (unify-8859-on-decoding-mode): Properly mark as obsolete.
7605
7606 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
7607
7608 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
7609 about SMTP before checking the From header.
7610
7611 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
7612 into own function for reuse by emacsbug.el.
7613
7614 2012-02-10 Leo Liu <sdl.web@gmail.com>
7615
7616 * subr.el (condition-case-unless-debug): Rename from
7617 condition-case-no-debug. All callers changed.
7618 (with-demoted-errors): Fix caller.
7619
7620 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
7621 * nxml/rng-valid.el (rng-do-some-validation):
7622 * emacs-lisp/package.el (package-refresh-contents)
7623 (package-menu-execute):
7624 * desktop.el (desktop-create-buffer):
7625 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
7626
7627 2012-02-10 Glenn Morris <rgm@gnu.org>
7628
7629 * textmodes/bibtex.el:
7630 Add missing :version tags for new/changed defcustoms.
7631
7632 * files.el (remote-file-name-inhibit-cache): Doc fixes.
7633
7634 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
7635
7636 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
7637 (smtpmail-via-smtp): Use it, or fall back on the From address.
7638 (smtpmail-send-it): Ditto.
7639
7640 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
7641
7642 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
7643 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
7644 (byte-compile-tmp-var): New const.
7645 (byte-compile-defvar): Use it to minimize .elc size.
7646 Just use `defvar' rather than simulate it (bug#10761).
7647
7648 2012-02-09 Glenn Morris <rgm@gnu.org>
7649
7650 * files.el (rename-uniquely): Doc fix. (Bug#3806)
7651
7652 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
7653 Add :version tags.
7654
7655 * progmodes/compile.el (compilation-error-screen-columns)
7656 (compilation-first-column, compilation-filter-start): Doc fixes.
7657
7658 * vc/log-view.el (log-view-toggle-entry-display):
7659 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
7660
7661 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
7662 (report-emacs-bug-can-use-xdg-email):
7663 (report-emacs-bug-insert-to-mailer): Doc fixes.
7664 (report-emacs-bug): Message fix.
7665
7666 * net/browse-url.el (browse-url-can-use-xdg-open)
7667 (browse-url-xdg-open): Doc fixes.
7668
7669 * electric.el (electric-indent-mode, electric-pair-mode)
7670 (electric-layout-rules, electric-layout-mode): Doc fixes.
7671 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
7672
7673 2012-02-08 Martin Rudalics <rudalics@gmx.at>
7674
7675 * server.el (server-unselect-display): Don't inadvertently kill
7676 the current buffer. (Bug#10729)
7677
7678 2012-02-08 Glenn Morris <rgm@gnu.org>
7679
7680 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
7681 (sql-list-table): Doc fixes.
7682
7683 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
7684 Comment out (does nothing).
7685
7686 * completion.el (dynamic-completion-mode):
7687 * dirtrack.el (dirtrack-debug-mode):
7688 * electric.el (electric-layout-mode):
7689 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
7690 * face-remap.el (text-scale-mode, buffer-face-mode):
7691 * iimage.el (iimage-mode):
7692 * image-mode.el (image-transform-mode):
7693 * minibuffer.el (completion-in-region-mode):
7694 * scroll-lock.el (scroll-lock-mode):
7695 * simple.el (next-error-follow-minor-mode):
7696 * tar-mode.el (tar-subfile-mode):
7697 * tooltip.el (tooltip-mode):
7698 * vcursor.el (vcursor-use-vcursor-map):
7699 * wid-browse.el (widget-minor-mode):
7700 * emulation/tpu-edt.el (tpu-edt-mode):
7701 * emulation/tpu-extras.el (tpu-cursor-free-mode):
7702 * international/iso-ascii.el (iso-ascii-mode):
7703 * language/thai-util.el (thai-word-mode):
7704 * mail/supercite.el (sc-minor-mode):
7705 * net/goto-addr.el (goto-address-mode):
7706 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
7707 * progmodes/cwarn.el (cwarn-mode):
7708 * progmodes/flymake.el (flymake-mode):
7709 * progmodes/glasses.el (glasses-mode):
7710 * progmodes/hideshow.el (hs-minor-mode):
7711 * progmodes/pascal.el (pascal-outline-mode):
7712 * textmodes/enriched.el (enriched-mode):
7713 * vc/smerge-mode.el (smerge-mode):
7714 Doc fixes (minor mode argument).
7715
7716 2012-02-07 Eli Zaretskii <eliz@gnu.org>
7717
7718 * ls-lisp.el (ls-lisp-sanitize): New function.
7719 (ls-lisp-insert-directory): Use it to fix or remove any elements
7720 in file-alist with missing attributes. (Bug#4673)
7721
7722 2012-02-07 Alan Mackenzie <acm@muc.de>
7723
7724 Fix spurious recognition of c-in-knr-argdecl.
7725
7726 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
7727 putative K&R region.
7728
7729 2012-02-07 Alan Mackenzie <acm@muc.de>
7730
7731 * progmodes/cc-engine.el (c-forward-objc-directive):
7732 Prevent looping in "#pragma mark @implementation".
7733
7734 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
7735
7736 * notifications.el (notifications-on-closed-signal): Make `reason'
7737 optional. (Bug#10744)
7738
7739 2012-02-07 Glenn Morris <rgm@gnu.org>
7740
7741 * emacs-lisp/easy-mmode.el (define-minor-mode):
7742 Doc fixes for the macro and the mode it defines.
7743
7744 * image.el (imagemagick-types-inhibit): Doc fix.
7745
7746 * cus-start.el (imagemagick-render-type): Add it.
7747
7748 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
7749
7750 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
7751 Set the default at load time, too, so that `font-lock-fontify-buffer'
7752 can be called without setting up the entire mode first. This fixes
7753 a bug in `mm-inline-text' with C MIME parts.
7754
7755 2012-02-06 Chong Yidong <cyd@gnu.org>
7756
7757 * simple.el (list-processes--refresh): Delete exited processes
7758 (Bug#8094).
7759
7760 * comint.el (comint-next-prompt): next-single-char-property-change
7761 and prev-single-char-property-change never return nil (Bug#8657).
7762
7763 * custom.el (defcustom): Doc fix (Bug#9711).
7764
7765 2012-02-05 Chong Yidong <cyd@gnu.org>
7766
7767 * cus-edit.el (custom-variable-reset-backup): Quote the value
7768 before storing it in the customized-value property (Bug#6712).
7769 (custom-display): Add a customization type tag.
7770 (custom-buffer-create-internal): Improve tooltip message.
7771
7772 * wid-edit.el (widget-field-value-get): New optional arg to
7773 suppress trailing whitespace truncation.
7774 (character): Use it (Bug#2689).
7775
7776 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
7777
7778 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
7779 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
7780
7781 2012-02-05 Chong Yidong <cyd@gnu.org>
7782
7783 * cus-edit.el (custom-variable-value-create): For mismatched
7784 types, show the current value (Bug#7600).
7785
7786 * custom.el (defcustom): Doc fix.
7787
7788 2012-02-05 Glenn Morris <rgm@gnu.org>
7789
7790 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
7791
7792 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
7793
7794 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
7795 (pp-buffer): Use `ignore-errors', `looking-at-p'.
7796 (pp-last-sexp): Use `looking-at-p'.
7797
7798 2012-02-04 Glenn Morris <rgm@gnu.org>
7799
7800 * files.el (revert-buffer):
7801 Doc fix (mention revert-buffer-in-progress-p).
7802
7803 * emacs-lisp/ert-x.el (ert-simulate-command):
7804 Check deferred-action-list (which is obsolete) is bound.
7805
7806 * subr.el (with-wrapper-hook): Doc fixes.
7807
7808 * simple.el (filter-buffer-substring-functions)
7809 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
7810
7811 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
7812
7813 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
7814 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
7815
7816 2012-02-04 Leo Liu <sdl.web@gmail.com>
7817
7818 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
7819
7820 2012-02-04 Glenn Morris <rgm@gnu.org>
7821
7822 * image.el (image-extension-data): Add obsolete alias.
7823
7824 * isearch.el (isearch-update): Doc fix.
7825
7826 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
7827
7828 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
7829
7830 2012-02-03 Glenn Morris <rgm@gnu.org>
7831
7832 * image.el (image-animated-p): Doc fix. Use image-animated-types.
7833 (image-animate-timeout): Doc fix.
7834
7835 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
7836
7837 2012-02-02 Glenn Morris <rgm@gnu.org>
7838
7839 * server.el (server-auth-dir): Doc fix.
7840 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
7841
7842 * subr.el (run-mode-hooks): Doc fix.
7843
7844 2012-02-02 Juri Linkov <juri@jurta.org>
7845
7846 * image-mode.el (image-toggle-display-image): Remove tautological
7847 `major-mode' from the `derived-mode-p' test.
7848
7849 2012-02-02 Kenichi Handa <handa@m17n.org>
7850
7851 * composite.el (compose-region): Cancel previous change.
7852
7853 2012-02-02 Kenichi Handa <handa@m17n.org>
7854
7855 * composite.el (compose-region, compose-string): Signal error for
7856 a null string component (Bug#6988).
7857
7858 2012-02-01 Chong Yidong <cyd@gnu.org>
7859
7860 * view.el (view-buffer-other-window, view-buffer-other-frame):
7861 Handle special modes like view-buffer (Bug#10650).
7862 (view-buffer): Simplify.
7863
7864 * frame.el (set-frame-font): Tweak meaning of third argument.
7865
7866 * dynamic-setting.el (font-setting-change-default-font):
7867 Use set-frame-font (Bug#9982).
7868
7869 2012-02-01 Glenn Morris <rgm@gnu.org>
7870
7871 * progmodes/compile.el (compilation-internal-error-properties):
7872 Respect compilation-first-column in the "*compilation*" buffer.
7873
7874 * emacs-lisp/easy-mmode.el (define-minor-mode):
7875 Relax :variable's test for a named function.
7876
7877 2012-01-31 Alan Mackenzie <acm@muc.de>
7878
7879 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
7880 off by one error.
7881
7882 2012-01-31 Chong Yidong <cyd@gnu.org>
7883
7884 * frame.el (set-frame-font): New arg ALL-FRAMES.
7885
7886 * menu-bar.el (menu-set-font): Use set-frame-font.
7887
7888 * faces.el (face-spec-reset-face): Don't apply unspecified
7889 attribute values to the default face.
7890
7891 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
7892
7893 * progmodes/cwarn.el (cwarn): Remove dead link.
7894 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
7895 Remove * from defcustom docstrings.
7896 (turn-on-cwarn-mode): Make obsolete.
7897 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
7898 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
7899
7900 2012-01-31 Glenn Morris <rgm@gnu.org>
7901
7902 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
7903 Fix :variable handling of mode a symbol not equal to modefun.
7904 Allow named functions to be used as the cdr of :variable.
7905
7906 2012-01-30 Glenn Morris <rgm@gnu.org>
7907
7908 * emacs-lisp/authors.el (authors-fixed-entries):
7909 Remove reference to deleted file rnewspost.el.
7910
7911 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
7912
7913 * window.el (window-with-parameter): Remove unused variable `windows'.
7914 (window--side-check): Remove unused variable `code'.
7915 (window--resize-siblings): Remove unused variable `first'.
7916 (adjust-window-trailing-edge): Remove unused variable `failed'.
7917 (window-deletable-p, window--delete): Remove unused variable `buffer'.
7918 Use `let', not `let*'.
7919 (balance-windows-2): Remove unused variable `found'.
7920 (window--state-put-2): Remove unused variable `splits'.
7921 (window-state-put): Remove unused variable `selected'.
7922 (same-window-p): Use `string-match-p'.
7923 (display-buffer-assq-regexp): Remove unused variable `value'.
7924 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7925 Mark argument ALIST as ignored.
7926 (pop-to-buffer): Remove unused variable `old-window'.
7927
7928 2012-01-29 Eli Zaretskii <eliz@gnu.org>
7929
7930 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
7931 and .lzma compressed files.
7932
7933 2012-01-29 Chong Yidong <cyd@gnu.org>
7934
7935 * frame.el (window-system-default-frame-alist): Doc fix.
7936
7937 * dynamic-setting.el (font-setting-change-default-font): Don't
7938 change the default face if SET-FONT argument is non-nil (Bug#9982).
7939
7940 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
7941
7942 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
7943
7944 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
7945
7946 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
7947 breakpoints in files outside current directory (Bug#6098).
7948
7949 2012-01-29 Chong Yidong <cyd@gnu.org>
7950
7951 * progmodes/python.el: Require ansi-color at top-level.
7952
7953 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
7954 Define and use in Emacs Lisp mode (Bug#9360).
7955 (lisp-mode-abbrev-table): Add doc.
7956 (lisp-mode-variables): Don't set local-abbrev-table.
7957 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
7958
7959 2012-01-28 Roland Winkler <winkler@gnu.org>
7960
7961 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
7962
7963 2012-01-28 Roland Winkler <winkler@gnu.org>
7964
7965 * textmodes/bibtex.el (bibtex-entry-alist): New function.
7966 (bibtex-set-dialect): Use it. Either set global values of
7967 dialect-dependent variables or bind these variables buffer-locally
7968 (Bug#10254).
7969 (bibtex-mode): Call bibtex-set-dialect via
7970 hack-local-variables-hook.
7971 (bibtex-dialect): Update docstring.
7972 Add safe-local-variable predicate.
7973 (bibtex-entry-alist, bibtex-field-alist): Initialize via
7974 bibtex-set-dialect.
7975 (bibtex-mode-map): Define menu for each dialect.
7976 (bibtex-entry): Fix docstring.
7977
7978 2012-01-28 Chong Yidong <cyd@gnu.org>
7979
7980 * eshell/esh-arg.el (eshell-quote-argument): New function.
7981
7982 * eshell/esh-ext.el (eshell-invoke-batch-file):
7983 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
7984 first arg to eshell-parse-command (Bug#10523).
7985
7986 2012-01-28 Drew Adams <drew.adams@oracle.com>
7987
7988 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
7989 `default-directory' is non-nil.
7990
7991 2012-01-28 Eli Zaretskii <eliz@gnu.org>
7992
7993 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
7994 line that displays system-configuration-options. (Bug#9924)
7995
7996 2012-01-28 Drew Adams <drew.adams@oracle.com>
7997
7998 * descr-text.el (describe-char): Show information about POS, in
7999 addition to information about the character at POS. Improve and
8000 update the doc string. Change "code point" to "code point in
8001 charset", to avoid confusion with the character's Unicode code
8002 point shown above that. (Bug#10129)
8003
8004 2012-01-28 Eli Zaretskii <eliz@gnu.org>
8005
8006 * descr-text.el (describe-char): Show the raw character, not only
8007 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
8008 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
8009 for the reasons.
8010
8011 2012-01-28 Phil Hagelberg <phil@hagelb.org>
8012
8013 * emacs-lisp/package.el (package-install):
8014 Run package-refresh-contents if there is no archive yet (Bug#9798).
8015
8016 2012-01-28 Chong Yidong <cyd@gnu.org>
8017
8018 * emacs-lisp/package.el (package-maybe-load-descriptor):
8019 New function, split from package-maybe-load-descriptor.
8020 (package-maybe-load-descriptor): Use it.
8021 (package-download-transaction): Fully load required packages
8022 inside the loop, so that `require' calls work (Bug#10593).
8023 (package-install): No need to call package-initialize now.
8024
8025 2012-01-28 Chong Yidong <cyd@gnu.org>
8026
8027 * simple.el (deactivate-mark): Doc fix (Bug#8614).
8028
8029 * tooltip.el (tooltip-mode): Doc fix.
8030 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
8031
8032 * frame.el (set-cursor-color): Doc fix (Bug#352).
8033
8034 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
8035 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
8036
8037 * cus-edit.el (custom-buffer-create-internal): Fix search button
8038 action (Bug#10542).
8039 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
8040
8041 2012-01-27 Eduard Wiebe <usenet@pusto.de>
8042
8043 * dired.el (dired-mark-files-regexp):
8044 Include any subdirectory components. (Bug#10445)
8045
8046 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
8047
8048 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
8049 Handle [host]:port syntax. (Bug#10533)
8050
8051 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
8052
8053 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
8054
8055 2012-01-26 Glenn Morris <rgm@gnu.org>
8056
8057 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
8058 * term.el (term-raw-escape-map): Use Control-X-prefix.
8059 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
8060
8061 2012-01-25 Martin Rudalics <rudalics@gmx.at>
8062
8063 * window.el (window-state-get, window--state-get-1): Don't deal
8064 with fixed-sizeness of windows. Simplify code.
8065
8066 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
8067
8068 * window.el (window--state-get-1, window--state-put-2):
8069 Don't save and restore the mark.
8070
8071 2012-01-25 Chong Yidong <cyd@gnu.org>
8072
8073 * custom.el (custom-variable-p): Doc fix.
8074
8075 2012-01-25 Glenn Morris <rgm@gnu.org>
8076
8077 * dired.el (dired-goto-file): Handle some of the more common
8078 characters that `ls -b' escapes. (Bug#10596)
8079
8080 * progmodes/compile.el (compilation-next-error-function):
8081 Respect compilation-first-column in the "*compilation*" buffer.
8082 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
8083
8084 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
8085
8086 2012-01-24 Glenn Morris <rgm@gnu.org>
8087
8088 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
8089
8090 2012-01-24 Julien Danjou <julien@danjou.info>
8091
8092 * color.el (color-rgb-to-hsl): Fix value computing.
8093 (color-hue-to-rgb): New function.
8094 (color-hsl-to-rgb): New function.
8095 (color-clamp, color-saturate-hsl, color-saturate-name)
8096 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
8097 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
8098
8099 2012-01-24 Glenn Morris <rgm@gnu.org>
8100
8101 * vc/vc-rcs.el (vc-rcs-create-tag):
8102 * vc/vc-sccs.el (vc-sccs-create-tag):
8103 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
8104
8105 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
8106
8107 * eshell/esh-util.el (eshell-read-hosts-file):
8108 Skip comment lines. (Bug#10549)
8109
8110 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
8111
8112 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
8113
8114 * subr.el (display-delayed-warnings): Doc fix.
8115 (collapse-delayed-warnings): New function to collapse identical
8116 adjacent warnings.
8117 (delayed-warnings-hook): Add it.
8118
8119 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
8120
8121 * net/tramp.el (tramp-action-login): Set connection property "login-as".
8122
8123 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
8124 (tramp-default-user-alist): Don't add "pscp".
8125 (tramp-do-copy-or-rename-file-out-of-band): Use connection
8126 property "login-as", if set. (Bug#10530)
8127
8128 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
8129
8130 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
8131 "plink1" and "psftp". (Bug#10530)
8132
8133 2012-01-21 Kenichi Handa <handa@m17n.org>
8134
8135 * international/mule-cmds.el (prefer-coding-system): Show a
8136 warning message if the default value of file-name-coding-system
8137 was not changed.
8138
8139 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
8140
8141 * windmove.el (windmove-reference-loc):
8142 Fix windmove-reference-loc miscalculation.
8143
8144 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
8145
8146 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
8147 default unit.
8148
8149 2012-01-21 Glenn Morris <rgm@gnu.org>
8150
8151 * international/mule.el (auto-coding-alist): Add .tbz.
8152
8153 * files.el (local-enable-local-variables): Doc fix.
8154 (inhibit-local-variables-regexps): Rename from
8155 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
8156 Doc fix. Add some extensions from auto-coding-alist.
8157 (inhibit-local-variables-suffixes):
8158 Rename from inhibit-first-line-modes-suffixes. Doc fix.
8159 (inhibit-local-variables-p):
8160 New function, extracted from set-auto-mode-1.
8161 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
8162 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
8163 (hack-local-variables): Doc fix. Make the mode-only case
8164 respect enable-local-variables and friends.
8165 Respect inhibit-local-variables-regexps for file-locals, but
8166 not for directory-locals.
8167 (set-visited-file-name):
8168 Take account of inhibit-local-variables-regexps.
8169 Whether it applies may change as the file name is changed.
8170 * jka-cmpr-hook.el (jka-compr-install):
8171 * jka-compr.el (jka-compr-uninstall):
8172 Update for inhibit-first-line-modes-suffixes name change.
8173
8174 2012-01-20 Martin Rudalics <rudalics@gmx.at>
8175
8176 * help-macro.el (make-help-screen): Temporarily restore original
8177 binding for minor-mode-map-alist (Bug#10454).
8178
8179 2012-01-19 Julien Danjou <julien@danjou.info>
8180
8181 * color.el (color-name-to-rgb): Use the white color to find the max
8182 color component value and return correctly computed values.
8183 (color-name-to-rgb): Add missing float conversion for max value.
8184
8185 2012-01-19 Martin Rudalics <rudalics@gmx.at>
8186
8187 * window.el (window--state-get-1, window-state-get): Do not use
8188 special state value for window-persistent-parameters.
8189 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
8190 (window--state-put-2): Reset all window parameters to nil before
8191 assigning values of persistent parameters.
8192
8193 2012-01-18 Alan Mackenzie <acm@muc.de>
8194
8195 Eliminate sluggishness and hangs in fontification of "semicolon
8196 deserts".
8197
8198 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
8199 Change value 10000 -> 3000.
8200 (c-state-safe-place): Reformulate so it doesn't stack up an
8201 infinite number of wrong entries in c-state-nonlit-pos-cache.
8202 (c-determine-limit-get-base, c-determine-limit): New functions to
8203 determine backward search limits disregarding literals.
8204 (c-find-decl-spots): Amend commenting.
8205 (c-cheap-inside-bracelist-p): New function which detects "={".
8206
8207 * progmodes/cc-fonts.el
8208 (c-make-font-lock-BO-decl-search-function): Give a limit to a
8209 backward search.
8210 (c-font-lock-declarations): Fix an occurrence of point being
8211 undefined. Check additionally for point being in a bracelist or
8212 near a macro invocation without a semicolon so as to avoid a
8213 fruitless time consuming search for a declarator. Give a more
8214 precise search limit for declarators using the new
8215 c-determine-limit.
8216
8217 2012-01-18 Glenn Morris <rgm@gnu.org>
8218
8219 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
8220 (set-auto-mode): Doc fixes.
8221
8222 2012-01-17 Glenn Morris <rgm@gnu.org>
8223
8224 * isearch.el (search-nonincremental-instead): Fix doc typo.
8225
8226 * dired.el (dired-insert-directory): Handle newlines in directory name.
8227 (dired-build-subdir-alist): Unescape newlines in directory name.
8228
8229 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
8230
8231 * net/tramp.el (tramp-local-end-of-line): New defcustom.
8232 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
8233 (tramp-action-terminal): Use it. (Bug#10530)
8234
8235 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
8236
8237 * minibuffer.el (completion--replace): Strip properties (bug#10062).
8238
8239 2012-01-16 Martin Rudalics <rudalics@gmx.at>
8240
8241 * window.el (window-state-ignored-parameters): Remove variable.
8242 (window--state-get-1): Rename argument MARKERS to IGNORE.
8243 Handle persistent window parameters. Make copy of clone-of
8244 parameter only if requested. (Bug#10348)
8245 (window--state-put-2): Install a window parameter only if it has
8246 a non-nil value or an existing parameter shall be overwritten.
8247
8248 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
8249
8250 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
8251
8252 2012-01-14 Eli Zaretskii <eliz@gnu.org>
8253
8254 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
8255 don't pass the (nil) value of `upnode' to string-match.
8256
8257 2012-01-14 Chong Yidong <cyd@gnu.org>
8258
8259 * startup.el (command-line): Fix X resource class for cursorColor.
8260 Fix values recognized by the cursorBlink resource.
8261
8262 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
8263
8264 * epg.el (epg--make-temp-file): Avoid permission race condition
8265 when running on old Emacs versions (bug#10403).
8266
8267 2012-01-14 Glenn Morris <rgm@gnu.org>
8268
8269 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
8270
8271 2012-01-13 Alan Mackenzie <acm@muc.de>
8272
8273 Fix filling for when filladapt mode is enabled.
8274
8275 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
8276 c-mask-paragraph, pass in `fill-paragraph' rather than
8277 `fill-region-as-paragraph'. (This is a reversion of a previous
8278 change.)
8279 * progmodes/cc-mode.el (c-basic-common-init):
8280 Make fill-paragraph-handle-comment buffer local and set it to nil.
8281
8282 2012-01-13 Glenn Morris <rgm@gnu.org>
8283
8284 * dired.el (dired-switches-escape-p): New function.
8285 (dired-insert-directory): Use dired-switches-escape-p.
8286 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
8287
8288 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
8289
8290 2012-01-12 Glenn Morris <rgm@gnu.org>
8291
8292 * mail/sendmail.el (mail-mode): Update paragraph-separate for
8293 changes in adaptive-fill-regexp. (Bug#10276)
8294
8295 2012-01-11 Alan Mackenzie <acm@muc.de>
8296
8297 Fix Emacs bug #10463 - put `widen's around the critical spots.
8298
8299 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
8300 widen around each invocation of c-state-pp-to-literal. Remove an
8301 unused let variable.
8302
8303 2012-01-11 Glenn Morris <rgm@gnu.org>
8304
8305 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
8306 Doc fix.
8307
8308 2012-01-10 Chong Yidong <cyd@gnu.org>
8309
8310 * net/network-stream.el (network-stream-open-starttls):
8311 Avoid emitting a confusing error message when the server gives a bad
8312 response to the capability command.
8313
8314 2012-01-10 Glenn Morris <rgm@gnu.org>
8315
8316 * mail/unrmail.el (unrmail): Tweak previous change.
8317
8318 2012-01-09 Chong Yidong <cyd@gnu.org>
8319
8320 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
8321
8322 2012-01-08 Alan Mackenzie <acm@muc.de>
8323
8324 Optimise font locking in long enum definitions.
8325
8326 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
8327 arm to a cond form to handle enums.
8328 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
8329 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
8330
8331 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
8332
8333 * files.el (move-file-to-trash): Preserve default file modes on error.
8334 (Bug#10401)
8335
8336 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
8337
8338 * faces.el (set-face-attribute): Clarify the meaning of the nil
8339 frame (bug#10294).
8340
8341 * subr.el (with-selected-frame): Mention that the selected frame
8342 is restored (bug#9980).
8343
8344 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
8345 (bug#9759).
8346
8347 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
8348 (password-read): Don't autoload unused function.
8349
8350 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
8351
8352 * progmodes/which-func.el (which-func-mode): Turn into a
8353 non-interactive function and mark as obsolete (bug#10428).
8354
8355 2012-01-06 Chong Yidong <cyd@gnu.org>
8356
8357 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
8358 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
8359 functions, along with 1 and -1.
8360
8361 2012-01-06 Eli Zaretskii <eliz@gnu.org>
8362
8363 * time.el (display-time-load-average)
8364 (display-time-default-load-average): Doc fixes. See the thread
8365 starting at
8366 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
8367 for the details.
8368
8369 2012-01-06 Glenn Morris <rgm@gnu.org>
8370
8371 * mail/unrmail.el (unrmail): Give an explicit error if the input file
8372 has no messages. (Bug#10377)
8373
8374 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
8375 than Info-edit. (Bug#10385)
8376
8377 * time.el (display-time-load-average, display-time-next-load-average):
8378 Doc fixes.
8379
8380 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
8381 local setting of buffer-read-only to the input buffer. (Bug#10419)
8382
8383 * calendar/calendar.el (calendar-mode):
8384 Locally set scroll-margin to 0. (Bug#10379)
8385
8386 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
8387
8388 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
8389
8390 2012-01-05 Glenn Morris <rgm@gnu.org>
8391
8392 * eshell/em-unix.el (diff-no-select): Autoload it.
8393 (eshell/diff): Use diff-no-select. (Bug#10420)
8394
8395 2012-01-05 Chong Yidong <cyd@gnu.org>
8396
8397 * shell.el (shell-dynamic-complete-functions): Revert last change.
8398 (shell-command-completion-function): New function.
8399 (shell-completion-vars): Use it to implement
8400 shell-completion-execonly (Bug#10417).
8401
8402 * custom.el (enable-theme): Don't set custom-safe-themes.
8403
8404 * cus-theme.el (custom-theme-merge-theme):
8405 Ignore custom-enabled-themes and custom-safe-themes.
8406
8407 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
8408
8409 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
8410 first prompt in `sql-interacive-mode'.
8411 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
8412 keywords.
8413 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
8414 (sql-product-interactive): Bug fix: Set `sql-buffer' in
8415 context of original buffer. Invoke `sql-login-hook'.
8416
8417 2012-01-04 Eli Zaretskii <eliz@gnu.org>
8418
8419 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
8420 letters in cite-prefix.
8421
8422 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8423
8424 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
8425
8426 2012-01-03 Chong Yidong <cyd@gnu.org>
8427
8428 * shell.el (shell-dynamic-complete-functions):
8429 Put pcomplete-completions-at-point, so as to try
8430 comint-filename-completion first (Bug#10417).
8431
8432 2012-01-02 Richard Stallman <rms@gnu.org>
8433
8434 * battery.el (battery-status-function):
8435 Detect when to use battery-yeeloong-sysfs.
8436 (battery-echo-area-format): Add string for Yeeloong.
8437 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
8438 (battery-yeeloong-sysfs): New function.
8439
8440 2012-01-02 Chong Yidong <cyd@gnu.org>
8441
8442 * dirtrack.el (dirtrack-list): Eliminate unused third element.
8443 (dirtrack): Merge code for handling relative filenames in prompt
8444 from shell-dir-cookie-watcher.
8445 (dirtrack-debug-message): New arg to avoid excess format calls.
8446
8447 * shell.el (shell-dir-cookie-re): Variable deleted.
8448 (shell-dir-cookie-watcher): Function deleted.
8449 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
8450 with dirtrack-mode.
8451
8452 2012-01-01 Eli Zaretskii <eliz@gnu.org>
8453
8454 * term/w32-win.el (dynamic-library-alist) <gnutls>:
8455 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
8456 libgnutls-26.dll.
8457
8458 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
8459
8460 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
8461
8462 2011-12-31 Eli Zaretskii <eliz@gnu.org>
8463
8464 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
8465 headers of non-MIME messages, when rmail-enable-mime is non-nil.
8466
8467 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
8468
8469 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
8470 also for alternative shells.
8471 (tramp-open-connection-setup-interactive-shell): Check, whether
8472 the shell is a busybox.
8473 (tramp-send-command): Don't suppress multiple prompts for
8474 busyboxes, it hurts.
8475
8476 2011-12-28 Chong Yidong <cyd@gnu.org>
8477
8478 * progmodes/gdb-mi.el (gdb-get-source-file-list)
8479 (gdb-get-source-file): Move mode line update to
8480 gdb-get-source-file (Bug#10087).
8481
8482 2011-12-25 Chong Yidong <cyd@gnu.org>
8483
8484 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
8485 gud-gdb-marker-filter without taking it as an argument.
8486 (gud-gdb-run-command-fetch-lines): Caller changed.
8487 (gud-gdb-completion-function): New variable.
8488 (gud-gdb-completion-at-point): Use it.
8489 (gud-gdb-completions-1): Split from gud-gdb-completions.
8490
8491 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
8492 function as separate arguments.
8493 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
8494 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
8495 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
8496 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
8497 (gdb-stopped, def-gdb-auto-update-trigger)
8498 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
8499 (gdb-get-changed-registers, gdb-get-main-selected-frame):
8500 Callers changed.
8501 (gud-gdbmi-completions): New function.
8502 (gdb): Use it for generating the completion table.
8503
8504 2011-12-24 Alan Mackenzie <acm@muc.de>
8505
8506 Introduce a mechanism to widen the region used in context font
8507 locking. Use this to protect declarations from losing their contexts.
8508
8509 * progmodes/cc-langs.el (c-before-font-lock-functions):
8510 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
8511 (c-before-context-fontification-functions): New defvar, a list of
8512 functions to be run just before context (etc.) font locking.
8513
8514 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
8515 New, functionality extracted from
8516 c-neutralize-syntax-in-and-mark-CPP.
8517 (c-in-after-change-fontification): New variable.
8518 (c-after-change): Set c-in-after-change-fontification.
8519 (c-set-fl-decl-start): Rejig its interface, so it can be called
8520 from both after-change and context fontifying.
8521 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
8522 New functions.
8523 (c-standard-font-lock-fontify-region-function): New variable.
8524 (c-font-lock-fontify-region): New function.
8525
8526 2011-12-24 Juri Linkov <juri@jurta.org>
8527
8528 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
8529 (Bug#10348)
8530
8531 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
8532
8533 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
8534 existence of source file. (Bug#10325)
8535
8536 2011-12-23 Alan Mackenzie <acm@muc.de>
8537
8538 Fix unstable fontification inside templates.
8539
8540 * progmodes/cc-langs.el (c-before-font-lock-functions):
8541 Newly created from the singular version. The (c c++ objc) entry now
8542 additionally has c-set-fl-decl-start. The other languages (apart
8543 from AWK) have that as a single entry.
8544
8545 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
8546 The functionality for "local" declarations has been extracted to
8547 c-set-fl-decl-start.
8548
8549 * progmodes/cc-mode.el (c-common-init, c-after-change):
8550 Changes due to pluralisation of c-before-font-lock-functions.
8551 (c-set-fl-decl-start): New function, extracted from
8552 c-font-lock-enclosing-decls and enhanced.
8553
8554 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
8555
8556 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
8557
8558 2011-12-22 Juri Linkov <juri@jurta.org>
8559
8560 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
8561
8562 2011-12-22 Chong Yidong <cyd@gnu.org>
8563
8564 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
8565
8566 2011-12-21 Drew Adams <drew.adams@oracle.com>
8567
8568 * files.el (file-remote-p): Fix docstring. (Bug#10319)
8569
8570 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
8571
8572 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
8573
8574 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
8575
8576 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
8577 highlighting and support. Fix up comments for capitalization.
8578 (cfengine-mode-debug): New var.
8579 (cfengine3-mode): Change the modeline indicator to "CFE3".
8580 (cfengine3-font-lock-keywords): Improve defun highlighting.
8581 (cfengine2-actions): Rename from `cfengine-actions'.
8582 (cfengine2-font-lock-keywords): Rename from
8583 `cfengine-font-lock-keywords'.
8584 (cfengine2-imenu-expression): Rename from
8585 `cfengine-imenu-expression'.
8586 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
8587 (cfengine2-beginning-of-defun): Rename from
8588 `cfengine-beginning-of-defun'.
8589 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
8590 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
8591 (cfengine2-mode): Rename from `cfengine-mode'. Change the
8592 modeline indicator to "CFE2".
8593 (cfengine-mode): Defalias to `cfengine-auto-mode'.
8594 (cfengine-mode-abbrevs): Mark obsolete.
8595
8596 2011-12-21 Chong Yidong <cyd@gnu.org>
8597
8598 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
8599 filename argument.
8600
8601 2011-12-20 Martin Rudalics <rudalics@gmx.at>
8602
8603 * window.el (window-normalize-buffer-to-display): Remove.
8604 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
8605
8606 2011-12-19 Chong Yidong <cyd@gnu.org>
8607
8608 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
8609 Don't signal an error in a predicate function; return non-nil.
8610 (vc-dir-mark-file): Move the error here.
8611 (vc-dir-mark-unmark): If acting on the region, keep going if one
8612 of the entries cannot be marked/unmarked.
8613 (vc-dir-mark-all-files): If current entry is a directory, mark
8614 only child files, as documented.
8615
8616 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
8617
8618 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
8619 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
8620 addition.
8621
8622 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
8623
8624 * term/ns-win.el (ns-get-selection-internal)
8625 (ns-store-selection-internal): Declare.
8626 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
8627 Declare as obsolete.
8628 (ns-get-pasteboard, ns-paste-secondary):
8629 Use ns-get-selection-internal.
8630 (ns-set-pasteboard, ns-copy-including-secondary):
8631 Use ns-store-selection-internal.
8632
8633 2011-12-17 Chong Yidong <cyd@gnu.org>
8634
8635 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
8636 (vc-deduce-fileset): Doc fix.
8637
8638 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
8639
8640 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
8641
8642 2011-12-13 Sam Steingold <sds@gnu.org>
8643
8644 * man.el (Man-getpage-in-background): When running under a
8645 window-system, ignore $MANWIDTH and $COLUMNS.
8646
8647 2011-12-15 Kenichi Handa <handa@m17n.org>
8648
8649 * language/ethio-util.el: Change coding tag to utf-8-emacs.
8650 (setup-ethiopic-environment-internal): Comment out key-binding for
8651 ethio-toggle-punctuation.
8652
8653 2011-12-13 Alan Mackenzie <acm@muc.de>
8654
8655 Add the switch statement to AWK Mode.
8656
8657 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
8658 "default" to the keywords regexp.
8659
8660 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
8661 expression as the rest.
8662 (c-nonlabel-token-key): Allow string literals for AWK.
8663 Refactor for the other modes.
8664
8665 Large brace-block initialisation makes CC Mode slow: Fix.
8666 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
8667 routines. Limit backward searching in c-font-lock-enclosing.decl.
8668
8669 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
8670 pp-state and literal type in addition to the limits.
8671 (c-state-safe-place): New defun, extracted from c-state-literal-at.
8672 (c-state-literal-at): Use the above new defun.
8673 (c-slow-in-literal, c-fast-in-literal): Remove.
8674 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
8675
8676 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
8677 being in a literal. Add a limit for backward searching.
8678
8679 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
8680 c-slow-in-literal.
8681
8682 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
8683
8684 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
8685
8686 2011-12-13 Martin Rudalics <rudalics@gmx.at>
8687
8688 * window.el (delete-other-windows): Use correct frame in call to
8689 window-with-parameter.
8690
8691 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
8692
8693 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
8694 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
8695 (makefile-gmake-statements, makefile-makepp-statements):
8696 Use it and add new makepp keywords.
8697 (makefile-makepp-font-lock-keywords): Add new patterns.
8698 (makefile-match-function-end): Match new [...] and [[...]].
8699
8700 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
8701
8702 * ses.el (ses-call-printer-return, ses-cell-property-get)
8703 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
8704 (ses-create-cell-variable, ses-reset-header-string)
8705 (ses-cell-set-formula, ses-repair-cell-reference-all)
8706 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
8707 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
8708 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
8709 (ses-aset-with-undo, ses-load, ses-truncate-cell)
8710 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
8711 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
8712 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
8713 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
8714 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
8715 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
8716 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
8717 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
8718
8719 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
8720
8721 * ses.el: The overall change is to add cell renaming, that is
8722 setting fancy names for cell symbols other than name matching
8723 "\\`[A-Z]+[0-9]+\\'" regexp .
8724 (ses-create-cell-variable): New defun.
8725 (ses-relocate-formula): Relocate formulas only for cells the
8726 symbols of which are not renamed, i.e. symbols whose names do not
8727 match regexp "\\`[A-Z]+[0-9]+\\'".
8728 (ses-relocate-all): Relocate values only for cells the symbols of
8729 which are not renamed.
8730 (ses-load): Create cells variables as the (ses-cell ...) are read,
8731 in order to check row col consistency with cell symbol name only
8732 for cells that are not renamed.
8733 (ses-replace-name-in-formula): New defun.
8734 (ses-rename-cell): New defun.
8735
8736 2011-12-11 Chong Yidong <cyd@gnu.org>
8737
8738 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
8739 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
8740
8741 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
8742
8743 * window.el (other-window): Fix docstring.
8744
8745 2011-12-10 Eli Zaretskii <eliz@gnu.org>
8746
8747 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
8748 `from' or `to' address before taking its substring.
8749 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
8750 encoded name is chopped in the middle of the encoded string, and
8751 thus displayed encoded.
8752
8753 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
8754
8755 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
8756
8757 2011-12-10 Eli Zaretskii <eliz@gnu.org>
8758
8759 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
8760 to use texinfo-update-node and commands that call it if the
8761 Texinfo file uses @node lines without next/prev/up pointers.
8762 Correct outdated description about texinfo-master-menu.
8763 (texinfo-all-menus-update, texinfo-master-menu)
8764 (texinfo-update-node, texinfo-every-node-update)
8765 (texinfo-multiple-files-update): Doc fix. Warn against updating
8766 all the @node lines.
8767 (texinfo-master-menu): Only call texinfo-update-node if the prefix
8768 argument is numeric. Explain better in the doc string what the
8769 function really does.
8770 (texinfo-insert-master-menu-list): Improve the error message
8771 displayed if there's no menu in the Top node.
8772 (Bug#2975) See also this thread:
8773 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
8774
8775 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
8776
8777 * speedbar.el (speedbar-supported-extension-expressions):
8778 Add .adb and .ads, commonly used for Ada source code (bug#10256).
8779
8780 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
8781
8782 * printing.el (pr-mode-alist):
8783 * simple.el (filter-buffer-substring-functions)
8784 (completion-list-insert-choice-function):
8785 * window.el (window-with-parameter, window-atom-root)
8786 (window-sides-slots, window-size-fixed, window-min-delta)
8787 (window-max-delta, window--resize-mini-window)
8788 (window--resize-child-windows-normal, window-tree)
8789 (delete-other-windows, quit-window, split-window)
8790 (display-buffer-record-window, special-display-buffer-names)
8791 (special-display-regexps, special-display-popup-frame)
8792 (same-window-p, split-window-sensibly)
8793 (display-buffer-overriding-action, display-buffer-alist)
8794 (display-buffer-base-action, display-buffer, switch-to-buffer)
8795 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
8796 (fit-window-to-buffer, recenter-positions)
8797 (mouse-autoselect-window-state, mouse-autoselect-window-select):
8798 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
8799 and remove unneeded backslashes in docstrings.
8800
8801 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
8802
8803 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
8804
8805 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
8806 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
8807 end in ".mk".
8808 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
8809 when reading the makefile (bug#10116).
8810
8811 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
8812
8813 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
8814 (bug#10116).
8815
8816 2011-12-06 Glenn Morris <rgm@gnu.org>
8817
8818 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
8819
8820 2011-12-06 Chong Yidong <cyd@gnu.org>
8821
8822 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
8823
8824 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
8825
8826 * textmodes/table.el (table-shorten-cell): Fix typo.
8827
8828 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
8829
8830 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
8831
8832 2011-12-05 Eli Zaretskii <eliz@gnu.org>
8833
8834 * descr-text.el (describe-char): Fix display of strong
8835 right-to-left characters and directional embeddings and overrides.
8836
8837 * simple.el (what-cursor-position): Fix display of codepoints of
8838 strong right-to-left characters.
8839
8840 2011-12-05 Chong Yidong <cyd@gnu.org>
8841
8842 * faces.el (read-color): Doc fix.
8843
8844 2011-12-05 Glenn Morris <rgm@gnu.org>
8845
8846 * align.el (align--set-marker): Add doc-string.
8847 Don't try to move something that is not a marker. (Bug#10216)
8848
8849 2011-12-04 Glenn Morris <rgm@gnu.org>
8850
8851 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
8852 overly zealous deletion of trailing whitespace.
8853
8854 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
8855
8856 * server.el (server-delete-client): On Windows, do not try to delete
8857 the only terminal.
8858 (server-process-filter): On Windows, treat requests for a tty frame as
8859 if they were for a GUI frame if the running server is in GUI mode.
8860
8861 2011-12-03 Glenn Morris <rgm@gnu.org>
8862
8863 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
8864
8865 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8866
8867 * electric.el: Streamline electric-indent's hook.
8868 (electric-indent-chars): Revert to simple list.
8869 (electric-indent-functions): New var.
8870 (electric-indent-post-self-insert-function): Use it.
8871
8872 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
8873 there's no inferior buffer (bug#10196).
8874 (prolog-consult-compile): Don't use toggle-read-only.
8875
8876 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
8877
8878 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
8879 interrupt. (Bug#10187)
8880
8881 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8882
8883 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
8884 (bug#9160).
8885
8886 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
8887 (bug#10191).
8888
8889 2011-12-02 Juri Linkov <juri@jurta.org>
8890
8891 * info.el (Info-search): Display "end of manual" when Isearch
8892 reaches the end of single-file Info manual. (Bug#9918)
8893
8894 2011-12-02 Eli Zaretskii <eliz@gnu.org>
8895
8896 * isearch.el (isearch-message-prefix): Run the input method part
8897 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
8898
8899 2011-12-02 Juri Linkov <juri@jurta.org>
8900
8901 * isearch.el (isearch-occur): Use `word-search-regexp' for
8902 `isearch-word'.
8903 (isearch-search-and-update): Add condition for `isearch-word' and
8904 call `word-search-regexp'. (Bug#10145)
8905
8906 2011-12-01 Glenn Morris <rgm@gnu.org>
8907
8908 * eshell/em-hist.el (eshell-hist-initialize):
8909 Handle eshell-history-size nil and HISTSIZE set or unset.
8910 (eshell-history-file-name, eshell-history-size): Fix custom type.
8911
8912 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8913
8914 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
8915
8916 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
8917
8918 * progmodes/verilog-mode.el (verilog-pretty-expr):
8919 Rework verilog-pretty-expr to handle new assignment operators in system
8920 verilog, such as += *= and the like.
8921 (verilog-assignment-operator-re): Regular expression to find the
8922 assigment operator in a verilog assignment.
8923 (verilog-assignment-operation-re): Regular expression to find an
8924 assignment statement for pretty-expr.
8925 (verilog-in-attribute-p): Query returns true if point is in an
8926 attribute context; used to skip these for expression line up from
8927 pretty-expr.
8928 (verilog-in-parameter-p): Query returns true if point is in an
8929 parameter definition context; used to skip these for expression
8930 line up from pretty-expr.
8931 (verilog-in-parenthesis-p): Query returns true if point is in a
8932 parenthetical expression, specifically ( ) but not [ ] or { };
8933 used by pretty-expr.
8934 (verilog-just-one-space): If there is no space, don't add one.
8935 (verilog-get-lineup-indent-2): Specifically skip just attribute
8936 contexts for expression lineup, rather than skipping all
8937 parenthetical expressions.
8938 (verilog-calculate-indent): Fix comment, and fix indent.
8939 (verilog-do-indent): Indent declarations in lists (suggested by
8940 Joachim Lechner).
8941 (verilog-mode-abbrev-table): Populate abbrev mode with the various
8942 skeleton items.
8943 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
8944 by Alain Mellan).
8945
8946 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
8947
8948 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
8949 parameters with embedded comments. Reported by Ray Stevens.
8950 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
8951 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
8952 Reported by Tim Holt.
8953 (verilog-auto): Fix AUTOing a upper module then AUTOing module
8954 instantiated by upper module causing wrong expansion until AUTOed a
8955 second time. Reported by K C Buckenmaier.
8956 (verilog-diff-auto): Fix showing .* as a difference when
8957 `verilog-auto-star-save' off. Reported by Dan Dever.
8958 (verilog-auto-reset, verilog-read-always-signals)
8959 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
8960 temporary signals in reset list if
8961 verilog-auto-reset-blocking-in-non is nil, and match assignment
8962 style to each signal's assignment type, bug381.
8963 Reported by Thomas Esposito.
8964 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
8965 (verilog-uvm-statement-re): Support UVM indentation and
8966 highlighting, with old OVM keywords only.
8967 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
8968 Support AUTOTIEOFF creating non-wire data types.
8969 Suggested by Jonathan Greenlaw.
8970 (verilog-auto-insert-lisp, verilog-delete-to-paren)
8971 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
8972 (verilog-inject-sense, verilog-read-inst-pins)
8973 (verilog-read-sub-decls, verilog-read-sub-decls-line):
8974 Fix mismatching parenthesis inside commented out code when deleting
8975 AUTOINST, bug383. Reported by Jonathan Greenlaw.
8976 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
8977 non-numeric vector width. Reported by Alex Reed.
8978 (verilog-auto-ascii-enum): Add "onehot" option to work around not
8979 detecting signals with parameter widths. Reported by Alex Reed.
8980 (verilog-auto-delete-trailing-whitespace):
8981 With `verilog-auto-delete-trailing-whitespace' remove trailing
8982 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
8983 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
8984 Fix verilog-scan-cache corruption when running user AUTO expansion
8985 hooks that call indentation routines.
8986 (verilog-simplify-range-expression): Fix typo ignoring lower case
8987 identifiers.
8988 (verilog-delete-auto): Fix delete-autos to also remove user created
8989 automatics, as long as they start with AUTO.
8990 (verilog-batch-diff-auto, verilog-diff-auto)
8991 (verilog-diff-function): Add `verilog-diff-auto' and bind to
8992 "C-c?" to report differences in AUTO expansion, ignoring spaces.
8993 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
8994 (verilog-in-paren-quick, verilog-re-search-backward-quick)
8995 (verilog-re-search-forward-quick, verilog-syntax-ppss):
8996 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
8997 is disabled and its cache will get corrupt, causing AUTOS not to
8998 expand. Instead use only -quick functions.
8999 (verilog-scan-region): Fix scanning over escaped quotes.
9000 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
9001 (verilog-re-search-backward-quick)
9002 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
9003 related functions now ignore strings, to fix misparsing of strings
9004 with magic comments embedded in them.
9005 (verilog-read-auto-template):
9006 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
9007 Reported by Brad Dobbie.
9008 (verilog-read-auto-template):
9009 Fix 'verilog-auto-inst-template-numbers' with comments.
9010 Reported by Brad Dobbie.
9011 (verilog-auto-inst, verilog-auto-inst-param)
9012 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
9013 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
9014 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
9015 debugging templates without merge conflicts, bug357.
9016 Reported by Brad Dobbie.
9017 (verilog-read-auto-template):
9018 Fix verilog-auto-inst-template-numbers with multiple templates.
9019 Reported by Brad Dobbie.
9020 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
9021 abbrevs so user won't be asked to save.
9022 (verilog-read-auto-lisp-present): Fix to start at beginning of
9023 buffer in case called outside of verilog-auto.
9024 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
9025 to "X-2". Reported by Matthew Myers.
9026 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
9027 all inputs from module templates. Reported by Leith Johnson.
9028 (verilog-module-inside-filename-p): Fix locating programs as with
9029 modules.
9030 (verilog-auto-inst-port): Fix vl-width expressions when using
9031 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
9032 (verilog-decls-get-regs, verilog-decls-get-signals,
9033 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
9034 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
9035 verilog-read-decls): Combine reg and wire structures into one var
9036 structure to represent SystemVerilog concepts.
9037 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
9038 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
9039 (verilog-auto-wire-type, verilog-insert-definition):
9040 Add verilog-auto-wire-type and AUTOLOGIC to support using
9041 SystemVerilog "logic" keyword instead of "wire"/"reg".
9042 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
9043 to declares outputs that also have assignments (presumably in an
9044 ifdef or generate if so there's not a driver conflict).
9045 Reported by Matthew Myers.
9046 (verilog-auto-declare-nettype, verilog-insert-definition):
9047 Add verilog-auto-declare-nettype to fix declarations using
9048 `default_nettype none. Reported by Julian Gorfajn.
9049 (verilog-read-always-signals-recurse, verilog-read-decls)
9050 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
9051 malformed end statement, bug325. Reported by Joshua Wise and
9052 Andrew Drake.
9053 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
9054 (verilog-inst-comment-re): Fix not deleting Interfaced comment
9055 when expanding .* in interfaces, bug320.
9056 Reported by Pierre-David Pfister.
9057 (verilog-read-module-name): Fix import statements between module
9058 name and open parenthesis, bug317.
9059 Reported by Pierre-David Pfister.
9060 (verilog-simplify-range-expression): Fix simplification of
9061 multiplications inside AUTOWIRE connections, bug303.
9062 (verilog-auto-inst-port): Support parameter expansion in
9063 multidimensional arrays.
9064 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
9065 after "assert property". Reported by Julian Gorfajn.
9066 (verilog-simplify-range-expression): Fix "couldn't merge" errors
9067 with multiplication, bug303.
9068 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
9069 Reported by Jan Frode Lonnum.
9070
9071 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
9072
9073 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
9074 (hfy-shell-file-name, hfy-shell):
9075 * international/fontset.el (x-decompose-font-name): Fix typos.
9076
9077 2011-11-29 Ken Brown <kbrown@cornell.edu>
9078
9079 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
9080 (gdb-version): Remove defvar.
9081 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
9082 (gdb-gud-context-command, gdb-non-stop-handler)
9083 (gdb-current-context-command, gdb-stopped): Use it.
9084 (gdb-init-1): Enable pretty printing here.
9085 (gdb-non-stop-handler): Don't enable pretty-printing here.
9086 Check to see if the target supports non-stop mode; if not, turn off
9087 non-stop mode. Use the following.
9088 (gdb-check-target-async): New defun.
9089 (gud-watch, gdb-stopped): Fix whitespace.
9090 (gdb-get-source-file): Don't try to display the source file if
9091 `gdb-main-file' is nil.
9092
9093 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
9094
9095 * align.el: Try to generate fewer markers (bug#10047).
9096 (align--set-marker): New macro.
9097 (align-region): Use it.
9098
9099 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
9100
9101 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
9102
9103 2011-11-29 Chong Yidong <cyd@gnu.org>
9104
9105 * indent.el (indent-for-tab-command, indent-according-to-mode):
9106 Doc fix.
9107 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
9108
9109 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
9110
9111 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
9112 aware of remote file names. (Bug#10124)
9113
9114 2011-11-29 Chong Yidong <cyd@gnu.org>
9115
9116 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
9117
9118 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
9119
9120 * files.el (find-file): Don't use force-same-window (bug#10144).
9121 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
9122 use pop-to-buffer if the selected window can't be used.
9123 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
9124
9125 2011-11-28 Eli Zaretskii <eliz@gnu.org>
9126
9127 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
9128 special-mode-map.
9129
9130 2011-11-28 Chong Yidong <cyd@gnu.org>
9131
9132 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
9133
9134 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
9135
9136 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
9137 gdb-get-source-file-list on gdb-create-source-file-list.
9138
9139 2011-11-26 Eli Zaretskii <eliz@gnu.org>
9140
9141 * whitespace.el (whitespace-newline): Use a different foreground
9142 color for 16-color light-background displays.
9143
9144 2011-11-24 Chong Yidong <cyd@gnu.org>
9145
9146 * window.el (display-buffer--special-action): Doc fix.
9147
9148 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
9149
9150 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
9151 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
9152 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
9153 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
9154 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
9155 (avl-tree-stack-first):
9156 * emacs-lisp/cconv.el (cconv--analyse-use):
9157 * net/gnutls.el (gnutls-negotiate): Fix typos.
9158
9159 2011-11-24 Glenn Morris <rgm@gnu.org>
9160
9161 * lpr.el (lpr-windows-system, lpr-lp-system):
9162 * mail/binhex.el (binhex-begin-line):
9163 * progmodes/grep.el (grep-history, grep-find-history):
9164 * textmodes/flyspell.el:
9165 * vc/pcvs-defs.el (cvs-global-menu):
9166 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
9167 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
9168 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
9169
9170 * net/tls.el: Fix case of "GnuTLS".
9171
9172 * paths.el (rmail-file-name): Format doc-string for make-docfile.
9173
9174 * version.el (emacs-build-system): Give it a doc-string.
9175
9176 2011-11-24 Juri Linkov <juri@jurta.org>
9177
9178 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
9179
9180 2011-11-24 Glenn Morris <rgm@gnu.org>
9181
9182 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
9183 if called on a non-mime message just toggle the headers. (Bug#8006)
9184
9185 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
9186
9187 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
9188 (allout-lead-with-comment-string, allout-structure-deleted-hook)
9189 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
9190 (allout-rebullet-heading, allout-open-sibtopic)
9191 (allout-toggle-current-subtree-encryption)
9192 (allout-toggle-subtree-encryption, allout-encrypt-string)
9193 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
9194 (allout-distinctive-bullets-string, allout-auto-activation):
9195 * window.el (window-normalize-buffer-to-display):
9196 * progmodes/verilog-mode.el (verilog-batch-indent):
9197 * textmodes/bibtex.el (bibtex-field-braces-opt)
9198 (bibtex-field-strings-opt):
9199 * vc/cvs-status.el (cvs-tree-merge):
9200 Fix typos.
9201
9202 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
9203
9204 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
9205 `non-essential' to t, in order to avoid remote connections.
9206
9207 2011-11-23 Eli Zaretskii <eliz@gnu.org>
9208
9209 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9210 On MS-DOS and MS-Windows, compare with loaddefs.el
9211 case-insensitively.
9212
9213 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9214
9215 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
9216
9217 2011-11-23 Glenn Morris <rgm@gnu.org>
9218
9219 * paths.el (rmail-file-name): Reformat the doc-string so that it
9220 is picked up.
9221
9222 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
9223 (rmail-auto-file): Ignore case in the "special" field names,
9224 as mail-fetch-field does for all others.
9225
9226 * mail/rmail.el (rmail-forward):
9227 * mail/rmailkwd.el (rmail-set-label):
9228 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
9229 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
9230
9231 * mail/rmail.el (rmail-current-message): Doc fix.
9232
9233 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
9234
9235 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
9236
9237 * server.el (server-eval-and-print): Allow C-g (bug#6585).
9238
9239 2011-11-22 Glenn Morris <rgm@gnu.org>
9240
9241 * mail/rmailmm.el (test-rmail-mime-handler)
9242 (test-rmail-mime-bulk-handler)
9243 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
9244
9245 2011-11-21 Juri Linkov <juri@jurta.org>
9246
9247 * calc/calc.el (calc-read-key-sequence):
9248 Let-bind `input-method-function' to nil. (Bug#10018)
9249
9250 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9251
9252 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
9253 Tell the caller that the next line needs recomputation, even
9254 though it doesn't start a sexp (bug#10094).
9255
9256 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
9257
9258 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
9259
9260 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9261
9262 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
9263 Use force-same-window.
9264
9265 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9266
9267 * descr-text.el (describe-char-unicode-data):
9268 * json.el (json-string-escape):
9269 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
9270 (Footnote-unicode, Footnote-style-p):
9271 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
9272
9273 2011-11-20 Chong Yidong <cyd@gnu.org>
9274
9275 * window.el (replace-buffer-in-windows): Restore interactive spec.
9276
9277 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9278
9279 * electric.el (electric-indent-mode): Fix last change (too optimistic).
9280
9281 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
9282 (byte-compile-global-not-obsolete-vars): New var.
9283 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
9284 Use it.
9285 (byte-compile-warn-obsolete): Align text with the one in *Help*.
9286
9287 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9288
9289 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
9290 * progmodes/pascal.el (electric-pascal-equal):
9291 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
9292 * xml.el (xml-substitute-special): Fix typos.
9293
9294 2011-11-20 Glenn Morris <rgm@gnu.org>
9295
9296 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
9297 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
9298 Doc fixes.
9299 (rmail-decode-mime-charset): Mark as obsolete.
9300
9301 * mail/rmailsum.el (rmail-message-regexp-p-1):
9302 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
9303 Before using mime functions, check they are set. (Bug#10077)
9304
9305 2011-11-19 Juri Linkov <juri@jurta.org>
9306
9307 * info.el (Info-finder-find-node): Use `package--builtins' instead
9308 of `package-alist'. Use node names formed by the pattern "Keyword "
9309 and the keyword name.
9310
9311 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
9312
9313 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
9314
9315 2011-11-19 Juri Linkov <juri@jurta.org>
9316
9317 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
9318 that calls `revert-buffer' on all Info buffers. (Bug#9915)
9319 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
9320 `old-history', `old-history-forward'. Add let-binding
9321 `window-selected'. Remove calls to `kill-buffer',
9322 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
9323 before calling `Info-find-node', so `Info-find-node-2' will reread
9324 the Info file. Restore window positions only when `window-selected'
9325 is non-nil.
9326
9327 2011-11-19 Juri Linkov <juri@jurta.org>
9328
9329 * isearch.el (isearch-lazy-highlight-new-loop):
9330 Remove condition `(not isearch-error)'. (Bug#9918)
9331
9332 * misearch.el (multi-isearch-search-fun): Add condition
9333 `(not bound)' to ignore lazy-highlighting search.
9334 Add the search-failed message "end of multi" when the end of
9335 multi-sequence is reached. Uncapitalize the search-failed
9336 message "Repeat for next buffer".
9337
9338 * info.el (Info-search): Add the search-failed message
9339 "end of the manual" when the end of the manual is reached
9340 in Isearch mode.
9341
9342 2011-11-19 Juri Linkov <juri@jurta.org>
9343
9344 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
9345 Use non-destructive `remove' instead of `delete' because
9346 `Info-history-list' stored to `Info-isearch-initial-history-list' in
9347 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
9348
9349 2011-11-19 Juri Linkov <juri@jurta.org>
9350
9351 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
9352 to nil instead of binding `search-ring' and `regexp-search-ring'.
9353 (Bug#9185)
9354
9355 2011-11-19 Eli Zaretskii <eliz@gnu.org>
9356
9357 * simple.el (line-move): Force movement by logical lines for any
9358 hscrolled window, not only when auto-hscroll-mode is on.
9359 (line-move-visual): Update doc string to that effect. (Bug#10076)
9360
9361 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
9362
9363 * language/european.el (macintosh): Define as alias for mac-roman.
9364
9365 2011-11-19 Eli Zaretskii <eliz@gnu.org>
9366
9367 * mail/rmailmm.el (rmail-mime-display-header)
9368 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
9369 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
9370 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
9371 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
9372 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
9373 of a raw aref.
9374 (rmail-mime-entity-segment): To get past the tagline, move forward
9375 2 more lines, to account for the 2 empty lines that precede and
9376 follow the line with the buttons.
9377 (rmail-mime-update-tagline): Move one more line, to get past the
9378 empty line that follows the buttons in the tagline. (Bug#9520)
9379
9380 2011-11-19 Martin Rudalics <rudalics@gmx.at>
9381
9382 * window.el (window-max-delta-1, window-min-delta-1)
9383 (window-min-size-1, window-state-get-1, window-state-put-1)
9384 (window-state-put-2): Use "window--" prefix.
9385
9386 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
9387
9388 * emacs-lisp/smie.el: Improve warnings and conflict detection.
9389 (smie-warning-count): New var.
9390 (smie-set-prec2tab): Use it.
9391 (smie-bnf->prec2): Improve warnings. Add docstring.
9392 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
9393 (smie-bnf--set-class): New function.
9394 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
9395 corner case.
9396
9397 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
9398 (compilation-error-properties, compilation-move-to-column):
9399 Handle compilation-first-column while in the target buffer.
9400
9401 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
9402 Don't hardcode point-min==1.
9403
9404 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
9405 (eshell-rewrite-for-command): Remove workaround.
9406 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
9407 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
9408 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
9409
9410 * files-x.el (modify-file-local-variable): Obey commenting conventions.
9411
9412 2011-11-17 Glenn Morris <rgm@gnu.org>
9413
9414 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9415 Ignore buffer-local generated-autoload-file if it is the same
9416 as the global value. (Bug#10049)
9417
9418 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
9419
9420 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
9421 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
9422 (reftex-toc-previous-heading, reftex-toc-max-level)
9423 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
9424 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
9425 (reftex-toc-do-promote, reftex-toc-promote-prepare)
9426 (reftex-toc-promote-action, reftex-toc-extract-section-number)
9427 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
9428 (reftex-toc-rename-label, reftex-toc-visit-location)
9429 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
9430 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
9431 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
9432 leaving "*toc*" only for references to the buffer.
9433
9434 2011-11-17 Martin Rudalics <rudalics@gmx.at>
9435
9436 * window.el (window-resize, delete-window, split-window):
9437 Replace window-splits by window-combination-resize.
9438 * cus-start.el (window-splits): Replace by window-combination-resize.
9439
9440 2011-11-17 Glenn Morris <rgm@gnu.org>
9441
9442 * progmodes/sh-script.el (sh-font-lock-keywords-var):
9443 Make bash entry derive from sh entry, not shell entry.
9444
9445 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
9446
9447 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
9448 local file name.
9449
9450 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
9451
9452 * menu-bar.el (menu-bar-file-menu):
9453 * printing.el (pr-ps-utility):
9454 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
9455 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
9456 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
9457 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
9458 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
9459 (icalendar--convert-cyclic-to-ical)
9460 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
9461 (icalendar--convert-ical-to-diary)
9462 (icalendar--convert-recurring-to-diary)
9463 (icalendar--convert-non-recurring-all-day-to-diary)
9464 (icalendar-import-format-sample):
9465 * progmodes/idlw-shell.el (idlwave-shell-mode):
9466 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
9467 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
9468 (vhdl-ps-print-init): Fix typos.
9469
9470 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
9471
9472 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
9473 FSF and collapse date sequence, obscure author/maintainer email address
9474 better, remove extra version line, track relocation of author's webpage.
9475
9476 * progmodes/python.el (python-pdbtrack-input-prompt)
9477 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
9478 regular python pdb prompts. Adjustments shamelessly taken exactly as
9479 suggested in EmacsWiki page (tiny change):
9480 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
9481
9482 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
9483
9484 * expand.el (expand-pos, expand-index, expand-point):
9485 Remove redundant info from docstring.
9486 (expand-add-abbrevs): Doc fix.
9487 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
9488 (expand-sample-perl-mode-expand-list): Fix typos.
9489
9490 * net/dbus.el (dbus-event-member-name):
9491 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
9492 * term/pc-win.el (msdos-create-frame-with-faces):
9493 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
9494
9495 2011-11-16 Martin Rudalics <rudalics@gmx.at>
9496
9497 * window.el (split-window, window-state-get-1)
9498 (window-state-put-1, window-state-put-2): Rename occurrences of
9499 window-nest to window-combination-limit.
9500 * cus-start.el (window-nest): Rename to window-combination-limit.
9501
9502 2011-11-16 Chong Yidong <cyd@gnu.org>
9503
9504 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
9505 regexp (Bug#10033).
9506
9507 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
9508
9509 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
9510 `completing-read' will remove *Completions* and will preserve
9511 current-buffer for us.
9512 (tmm-add-prompt): Users of *Completions* will always (re)set its
9513 major mode.
9514 (tmm-old-comp-map): Remove.
9515
9516 2011-11-16 Glenn Morris <rgm@gnu.org>
9517
9518 * mail/rmailedit.el: Require rmailmm when compiling.
9519 (rmail-old-mime-state): New declaration.
9520 (rmail-edit-current-message): If editing a mime message,
9521 edit the "raw" message from the mbox buffer.
9522 (rmail-cease-edit): Handle mime messages. (Bug#9840)
9523
9524 2011-11-15 Glenn Morris <rgm@gnu.org>
9525
9526 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
9527 which wasn't being used. Add optional arg to force given state.
9528 (rmail-mime): Add optional arg to force given state.
9529
9530 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
9531
9532 * allout.el (allout-encryption-plaintext-sanitization-regexps):
9533 * frame.el (display-mm-dimensions-alist):
9534 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
9535 (outline-move-subtree-down):
9536 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
9537 (newsticker--treeview-do-get-node):
9538 * net/quickurl.el (quickurl-list-buffer-name):
9539 * progmodes/dcl-mode.el (dcl-mode):
9540 * progmodes/gdb-mi.el (gdb-mapcar*):
9541 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
9542
9543 2011-11-15 Glenn Morris <rgm@gnu.org>
9544
9545 * mail/rmail.el (rmail-file-coding-system): It's only ever used
9546 in a boolean sense, so just make it a boolean, and fix the doc.
9547 (rmail-show-mime-function, rmail-mime-feature)
9548 (rmail-require-mime-maybe): Doc fixes.
9549 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
9550
9551 * mail/rmailmm.el (rmail-show-mime): Doc fix.
9552
9553 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
9554
9555 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
9556 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
9557 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
9558 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
9559
9560 2011-11-15 Glenn Morris <rgm@gnu.org>
9561
9562 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
9563 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
9564 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
9565 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
9566 (rmail-mime, rmail-show-mime): Doc fixes.
9567
9568 * term/ns-win.el (mode-line-frame-identification):
9569 Leave it alone. (Bug#10051)
9570
9571 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
9572
9573 * mail/rmailout.el (rmail-output-to-rmail-buffer):
9574 Handle empty buffers. (Bug#9978)
9575
9576 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
9577
9578 * international/mule.el (define-charset):
9579 * mail/rmailmm.el (rmail-mime-find-header-encoding):
9580 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
9581 * progmodes/verilog-mode.el (verilog-backward-token):
9582 * textmodes/ispell.el (lookup-words):
9583 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
9584
9585 2011-11-14 Glenn Morris <rgm@gnu.org>
9586
9587 * progmodes/executable.el
9588 (executable-make-buffer-file-executable-if-script-p):
9589 Handle file-modes returning nil.
9590
9591 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
9592 message - not necessary, and causes problems. (Bug#9831)
9593
9594 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
9595
9596 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
9597
9598 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
9599 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
9600 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
9601
9602 2011-11-12 Martin Rudalics <rudalics@gmx.at>
9603
9604 * window.el (window-resize, delete-window): Use window-splits
9605 variable instead of function.
9606 (window-state-get-1, window-state-put-2, window-state-put):
9607 Don't deal with windows' splits status.
9608
9609 2011-11-12 Glenn Morris <rgm@gnu.org>
9610
9611 * apropos.el (apropos-do-all, apropos-library, apropos-value)
9612 (apropos-documentation): Doc fixes.
9613
9614 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
9615
9616 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
9617 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
9618
9619 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
9620
9621 * electric.el (electric-indent-post-self-insert-function): Make it
9622 possible for a char to only indent in some circumstances.
9623 (electric-indent-mode): Simplify.
9624
9625 2011-11-11 Martin Rudalics <rudalics@gmx.at>
9626
9627 * window.el (windows-with-parameter): Remove unused function.
9628 (windows-at-side): Rename to window-at-side-list.
9629 (window-check, window-atom-check, window-atom-check-1)
9630 (window-side-check, window-size-ignore, window-size-fixed-1)
9631 (window-in-direction-2): Prefix with "window--".
9632 (window-tree-1): Rename to window--subtree, fix doc-string.
9633
9634 2011-11-11 Glenn Morris <rgm@gnu.org>
9635
9636 * subr.el (eval-after-load): If FILE is already loaded,
9637 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
9638
9639 2011-11-10 Glenn Morris <rgm@gnu.org>
9640
9641 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
9642 Call svn via vc-svn-command rather than vc-do-command.
9643 (vc-svn-command): Add --non-interactive. (Bug#9993)
9644 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
9645
9646 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9647 Add toggle-read-only. (Bug#7292)
9648 * files.el (toggle-read-only): Mention that it should only
9649 be used interactively. (Bug#10006)
9650
9651 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
9652
9653 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9654 Adjust regexp for OCaml warnings.
9655
9656 * electric.el (electric-pair-post-self-insert-function): Let user
9657 turn it off buffer-locally (bug#9932).
9658
9659 * progmodes/python.el (python-beginning-of-statement):
9660 Rewrite (bug#2703).
9661
9662 * progmodes/compile.el: Better handle TABs (bug#9749).
9663 (compilation-internal-error-properties)
9664 (compilation-next-error-function): Obey the target buffer's
9665 compilation-error-screen-columns.
9666
9667 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
9668
9669 * progmodes/meta-mode.el: Remove obsolete comments.
9670 (meta-right-comment-regexp, meta-ignore-comment-regexp):
9671 Fix typos in docstrings.
9672
9673 2011-11-09 Martin Rudalics <rudalics@gmx.at>
9674
9675 * window.el (window-size-fixed-p): Rewrite doc-string.
9676 (window-resizable-p): Rename to window--resizable-p. Update callers.
9677 (window--resizable): New function. Make all callers of
9678 window-resizable call window--resizable instead.
9679 (window-resizable): Rewrite in terms of window--resizable.
9680
9681 2011-11-08 Glenn Morris <rgm@gnu.org>
9682
9683 * progmodes/delphi.el (delphi-mode-syntax-table):
9684 Let define-derived-mode define a proper syntax table. (Bug#9994)
9685
9686 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
9687
9688 * window.el: Stay away from defsubst.
9689 (window-list-no-nils): Remove.
9690 (window-state-get-1, window-state-get): Use backquote instead.
9691
9692 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9693
9694 * emacs-lisp/find-func.el (find-function-read):
9695 Fix incorrect use of default argument in `completing-read'.
9696
9697 2011-11-08 Martin Rudalics <rudalics@gmx.at>
9698
9699 * window.el (display-buffer-function, special-display-function):
9700 Mention display-buffer-record-window but do not mention
9701 help-setup parameter in doc-strings.
9702 (window-min-delta): Fix doc-string typo.
9703
9704 2011-11-08 Chong Yidong <cyd@gnu.org>
9705
9706 * window.el (window-total-height, window-total-width): Doc fix.
9707 (window-body-size): Move from C.
9708 (window-body-height, window-body-width): Move to C.
9709
9710 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
9711
9712 * window.el: Make special-display like display-buffer-alist (bug#9532).
9713 (display-buffer--special-action): New function, morphed
9714 from display-buffer--special.
9715 (display-buffer): Use it to handle special-display-buffers at higher
9716 priority (just after display-buffer-alist).
9717 (display-buffer-fallback-action, display-buffer--other-frame-action)
9718 (pop-to-buffer-same-window): Remove display-buffer--special.
9719
9720 2011-11-07 Glenn Morris <rgm@gnu.org>
9721
9722 * calendar/cal-menu.el (cal-menu-set-date-title):
9723 Do nothing if not in a calendar. (Bug#9976)
9724
9725 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
9726
9727 * files.el (find-file): Always use selected-window.
9728
9729 2011-11-07 Martin Rudalics <rudalics@gmx.at>
9730
9731 * window.el (window-combinations): Make WINDOW argument
9732 mandatory. Rewrite doc-string.
9733 (walk-window-subtree, window-atom-check, window-min-delta)
9734 (window-max-delta, window--resize-this-window)
9735 (window--resize-root-window-vertically, window-tree)
9736 (balance-windows, window-state-put): Rewrite doc-strings as to
9737 not mention the term "subwindow".
9738 (window--resize-subwindows-skip-p): Rename to
9739 window--resize-child-windows-skip-p.
9740 (window--resize-subwindows-normal): Rename to
9741 window--resize-child-windows-normal.
9742 (window--resize-subwindows): Rename to
9743 window--resize-child-windows.
9744 (window-or-subwindow-p): Rename to window--in-subtree-p.
9745
9746 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9747
9748 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
9749 Ensure that mbox format messages end in two newlines (Bug#9974).
9750
9751 2011-11-06 Chong Yidong <cyd@gnu.org>
9752
9753 * window.el (window-combination-p): Function deleted; its
9754 side-effect is not used in any existing code.
9755 (window-combinations, window-combined-p): Call window-*-child
9756 directly.
9757
9758 2011-11-05 Chong Yidong <cyd@gnu.org>
9759
9760 * window.el (window-valid-p): Rename from window-any-p.
9761 (window-size-ignore, window-state-get): Callers changed.
9762 (window-normalize-window): Rename from window-normalize-any-window.
9763 New arg LIVE-ONLY, replacing window-normalize-live-window.
9764 (window-normalize-live-window): Delete.
9765 (window-combination-p, window-combined-p, window-combinations)
9766 (walk-window-subtree, window-atom-root, window-min-size)
9767 (window-sizable, window-sizable-p, window-size-fixed-p)
9768 (window-min-delta, window-max-delta, window-resizable)
9769 (window-resizable-p, window-full-height-p, window-full-width-p)
9770 (window-current-scroll-bars, window-point-1, set-window-point-1)
9771 (window-at-side-p, window-in-direction, window-resize)
9772 (adjust-window-trailing-edge, maximize-window, minimize-window)
9773 (window-deletable-p, delete-window, delete-other-windows)
9774 (record-window-buffer, unrecord-window-buffer)
9775 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
9776 (quit-window, split-window, window-state-put)
9777 (set-window-text-height, fit-window-to-buffer)
9778 (shrink-window-if-larger-than-buffer): Callers changed.
9779
9780 2011-11-04 Eli Zaretskii <eliz@gnu.org>
9781
9782 * mail/rmail.el (rmail-simplified-subject): Decode subject with
9783 rfc2047-decode-string.
9784 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
9785 warnings.
9786
9787 * window.el (window-body-height, window-body-width): Mention in
9788 the doc string that the return values are in frame's canonical
9789 units. (Bug#9949)
9790
9791 2011-11-03 Alan Mackenzie <acm@muc.de>
9792
9793 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
9794 change in cc-engine.el.
9795
9796 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
9797
9798 * window.el (switch-to-buffer): Use `force-same-window' interactively.
9799
9800 2011-11-02 Martin Rudalics <rudalics@gmx.at>
9801
9802 * window.el (quit-window): Call unrecord-window-buffer after
9803 showing another buffer in the window. (Bug#9937)
9804 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
9805
9806 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
9807
9808 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
9809 Accept status with more than 9 shelves. (Bug#9935)
9810 Reported by Colin D Bennett <colin@gibibit.com>.
9811
9812 2011-11-01 Martin Rudalics <rudalics@gmx.at>
9813
9814 * help.el (with-help-window): Don't reference
9815 temp-buffer-show-specifiers in doc-string.
9816
9817 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
9818
9819 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
9820 menu-item.
9821
9822 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9823
9824 * whitespace.el: New version 13.2.2.
9825 (whitespace-newline-mode): Disable properly. Reported by Sarah
9826 <EmacsWiki>.
9827
9828 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
9829
9830 * net/newst-treeview.el: Remove "Time-stamp".
9831 (newsticker--group-manage-orphan-feeds): Do not call
9832 newsticker--treeview-tree-update.
9833 (newsticker-treeview-update, newsticker-treeview):
9834 Call newsticker--treeview-tree-update if necessary.
9835
9836 2011-10-30 Martin Rudalics <rudalics@gmx.at>
9837
9838 * window.el (window-iso-combination-p, window-iso-combined-p)
9839 (window-iso-combinations): Remove "iso-" infix.
9840 Suggested by Chong Yidong.
9841 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
9842 (window-max-delta-1, window-resize, window--resize-siblings)
9843 (window--resize-this-window, adjust-window-trailing-edge)
9844 (split-window, balance-windows-1)
9845 (shrink-window-if-larger-than-buffer):
9846 * calendar/calendar.el (calendar-generate-window):
9847 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
9848
9849 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
9850
9851 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
9852 in place (bug#9907).
9853 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
9854 (eshell-rewrite-if-command, eshell-rewrite-for-command)
9855 (eshell-structure-basic-command, eshell-rewrite-while-command)
9856 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
9857 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
9858 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
9859 (eshell-do-pipelines-synchronously, eshell-eval-command):
9860 Use backquotes and prefer setq to set.
9861 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
9862 (eshell-macrop): Use functionp.
9863 (eshell-do-eval): Handle multiple expressions in `while' body.
9864
9865 2011-10-30 Chong Yidong <cyd@gnu.org>
9866
9867 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
9868 instead of set-mark (Bug#9810).
9869
9870 2011-10-30 Chong Yidong <cyd@gnu.org>
9871
9872 * window.el (split-window-below, split-window-right): Rename from
9873 split-window-above-each-other and split-window-side-by-side
9874 respectively. All callers changed.
9875 (split-window-sensibly, split-window-sensibly): Use them.
9876 (split-window-keep-point): Doc fix.
9877
9878 * isearch.el: Add isearch-scroll property to split-window-below
9879 and split-window-right.
9880
9881 * follow.el (follow-mode):
9882 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
9883 * progmodes/ada-xref.el (ada-gdb-application):
9884 * emulation/vip.el (vip-buffer-in-two-windows):
9885 * image-dired.el (image-dired-dired-with-window-configuration):
9886 * dired-x.el (dired-do-find-marked-files):
9887 * dired.el (dired-pop-to-buffer):
9888 * bs.el (bs--show-with-configuration):
9889 * vc/emerge.el (emerge-setup-windows):
9890 * textmodes/two-column.el (2C-two-columns):
9891 * textmodes/reftex-toc.el (reftex-toc):
9892 * progmodes/gdb-mi.el (gdb-setup-windows):
9893 * progmodes/fortran.el (fortran-window-create):
9894 * net/newst-treeview.el (newsticker--treeview-window-init):
9895 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
9896 * emulation/tpu-edt.el (tpu-gold-map):
9897 * emulation/crisp.el (crisp-mode-map):
9898 * calendar/calendar.el (calendar-basic-setup): Callers changed.
9899
9900 2011-10-29 Chong Yidong <cyd@gnu.org>
9901
9902 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
9903
9904 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
9905
9906 * textmodes/flyspell.el (flyspell-word): Fix char offset for
9907 forged Ispell output (Bug#7904).
9908
9909 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
9910
9911 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9912
9913 * doc-view.el: Avoid ugly errors about not finding nil.
9914 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
9915 (doc-view-dvipdf-program, doc-view-unoconv-program)
9916 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
9917 Avoid nil or absolute file name as default value.
9918 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
9919
9920 2011-10-28 Alan Mackenzie <acm@muc.de>
9921
9922 * progmodes/cc-defs.el (c-version): -> 5.32.2.
9923
9924 2011-10-28 Alan Mackenzie <acm@muc.de>
9925
9926 Amend the handling of c-beginning/end-of-defun in nested declaration
9927 scopes.
9928
9929 * progmodes/cc-vars.el (c-defun-tactic): Move here from
9930 cc-langs.el. Change it to a defcustom.
9931
9932 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
9933 cc-vars.el.
9934
9935 * progmodes/cc-engine.el (c-beginning-of-statement-1):
9936 Prevent "class foo : bar" being spuriously recognized as a label.
9937
9938 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
9939 Add parameter `inclusive' (to include enclosing braces in the region).
9940 (c-widen-to-enclosing-decl-scope): New function.
9941 (c-while-widening-to-decl-block): New macro.
9942 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
9943 outward for defun boundaries, and correspondingly change symbol
9944 `respect-enclosure' to `go-outward'.
9945 (c-declaration-limits): Change algorithm to report only the "innermost"
9946 defun's boundaries.
9947
9948 2011-10-28 Deniz Dogan <deniz@dogan.se>
9949
9950 * net/rcirc.el (rcirc-mode): Use hard newlines.
9951
9952 2011-10-28 Alan Mackenzie <acm@muc.de>
9953
9954 Amend to indent and fontify macros "which include their own semicolon"
9955 correctly, using the "virtual semicolon" mechanism.
9956
9957 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
9958
9959 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
9960 Recode to scan one line at a time rather than having \n and \r
9961 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
9962 (c-forward-label): Amend for virtual semicolons.
9963 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
9964
9965 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
9966 of the new C macros.
9967
9968 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
9969 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
9970 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
9971 (c-opt-cpp-macro-define): Make into a full language variable.
9972 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
9973 AWK Mode (including \n, \r) removed, no longer needed.
9974
9975 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
9976 Invoke c-make-macro-with-semi-re.
9977
9978 * progmodes/cc-vars.el (c-macro-with-semi-re):
9979 (c-macro-names-with-semicolon): New variables.
9980 (c-make-macro-with-semi-re): New function.
9981
9982 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9983
9984 * vc/log-edit.el: Fill empty field rather than adding new one.
9985 (log-edit-add-field): New function.
9986 (log-edit-insert-changelog): Use it.
9987
9988 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9989
9990 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
9991
9992 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9993
9994 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
9995 (gdb--check-interpreter): New function.
9996 (gdb): Use it.
9997
9998 2011-10-27 Glenn Morris <rgm@gnu.org>
9999
10000 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
10001 (least-positive-float, least-negative-float)
10002 (least-positive-normalized-float, least-negative-normalized-float)
10003 (float-epsilon, float-negative-epsilon):
10004 Remove unnecessary declarations.
10005
10006 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
10007 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
10008 (least-positive-float, least-negative-float)
10009 (least-positive-normalized-float, least-negative-normalized-float)
10010 (float-epsilon, float-negative-epsilon): Add doc-strings,
10011 based on those in cl.texi.
10012
10013 * files.el (set-visited-file-name): If the major-mode changed,
10014 reload the local variables. (Bug#9796)
10015
10016 2011-10-27 Chong Yidong <cyd@gnu.org>
10017
10018 * subr.el (change-major-mode-after-body-hook): New hook.
10019 (run-mode-hooks): Run it.
10020
10021 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10022 Use change-major-mode-before-body-hook.
10023
10024 * simple.el (fundamental-mode):
10025 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
10026 change introducing fundamental-mode-hook.
10027
10028 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
10029
10030 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
10031
10032 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
10033
10034 * ido.el (ido-file-name-all-completions-1): Do not require
10035 tramp.el explicitly. (Bug#7583)
10036
10037 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
10038
10039 * progmodes/octave-mod.el:
10040 * progmodes/octave-inf.el: Update maintainer.
10041
10042 2011-10-26 Chong Yidong <cyd@gnu.org>
10043
10044 * subr.el (with-wrapper-hook): Rewrite doc.
10045
10046 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
10047
10048 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
10049 filenames "/method:foo:". (Bug#9793)
10050
10051 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
10052
10053 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
10054 (bug#9865).
10055
10056 2011-10-24 Glenn Morris <rgm@gnu.org>
10057
10058 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
10059
10060 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
10061
10062 * notifications.el: Add the requirement of a running D-Bus session
10063 bus to the Commentary.
10064
10065 2011-10-24 Juri Linkov <juri@jurta.org>
10066
10067 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
10068 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
10069 (Bug#9364)
10070
10071 2011-10-24 Juri Linkov <juri@jurta.org>
10072
10073 * info.el (Info-following-node-name-re): Add newline to the list
10074 of allowed characters for leading space. (Bug#9824)
10075
10076 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
10077
10078 * progmodes/octave-inf.el (inferior-octave-mode-map):
10079 Fix C-c C-h binding.
10080 * progmodes/octave-mod.el (octave-help): Remove.
10081
10082 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
10083
10084 Sync with Tramp 2.2.3.
10085
10086 * net/tramp-cache.el (top): Pacify byte-compiler using
10087 `init-file-user' and `site-run-file'.
10088
10089 * net/trampver.el: Update release number.
10090
10091 2011-10-23 Chong Yidong <cyd@gnu.org>
10092
10093 * files.el (toggle-read-only): Remove obsolete comment about
10094 version control.
10095
10096 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
10097 for toggle-read-only. Note that this hasn't called vc-next-action
10098 since 2008-05-02, though it wasn't documented at the time.
10099
10100 * vc/ediff-init.el (ediff-toggle-read-only-function):
10101 Use toggle-read-only.
10102
10103 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
10104
10105 Fix bug #9560, sporadic wrong indentation; improve instrumentation
10106 of c-parse-state.
10107
10108 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
10109 correct faulty logical expression.
10110 (c-parse-state-state, c-record-parse-state-state):
10111 (c-replay-parse-state-state): New defvar/defuns.
10112 (c-debug-parse-state): Use new functions.
10113
10114 2011-10-22 Martin Rudalics <rudalics@gmx.at>
10115
10116 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
10117 last fix. Use window-in-direction correctly.
10118
10119 2011-10-21 Chong Yidong <cyd@gnu.org>
10120
10121 * progmodes/idlwave.el (idlwave-mode):
10122 * progmodes/vera-mode.el (vera-mode): No need to set
10123 require-final-newline; that's done in prog-mode.
10124 Suggested by Stefan Monnier.
10125
10126 2011-10-21 Martin Rudalics <rudalics@gmx.at>
10127
10128 * mouse.el (mouse-drag-window-above)
10129 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
10130 (mouse-drag-mode-line-1, mouse-drag-header-line)
10131 (mouse-drag-vertical-line-rightward-window): Remove.
10132 (mouse-drag-line): New function.
10133 (mouse-drag-mode-line, mouse-drag-header-line)
10134 (mouse-drag-vertical-line): Call mouse-drag-line.
10135 * window.el (window-at-side-p, windows-at-side): New functions.
10136
10137 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
10138
10139 * tar-mode.el (tar-grind-file-mode):
10140 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
10141
10142 2011-10-21 Chong Yidong <cyd@gnu.org>
10143
10144 * progmodes/idlwave.el (idlwave-mode):
10145 * progmodes/vera-mode.el (vera-mode):
10146 Use mode-require-final-newline.
10147
10148 2011-10-20 Glenn Morris <rgm@gnu.org>
10149
10150 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
10151
10152 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
10153
10154 * emulation/cua-base.el (cua-set-mark): Fix case of string.
10155
10156 2011-10-20 Chong Yidong <cyd@gnu.org>
10157
10158 * emulation/cua-base.el (cua-mode):
10159 * mail/footnote.el (footnote-mode):
10160 * mail/mailabbrev.el (mail-abbrevs-mode):
10161 * net/xesam.el (xesam-minor-mode):
10162 * progmodes/bug-reference.el (bug-reference-mode):
10163 * progmodes/cap-words.el (capitalized-words-mode):
10164 * progmodes/compile.el (compilation-minor-mode)
10165 (compilation-shell-minor-mode):
10166 * progmodes/gud.el (gud-tooltip-mode):
10167 * progmodes/hideif.el (hide-ifdef-mode):
10168 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
10169 * progmodes/subword.el (subword-mode):
10170 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
10171 * progmodes/which-func.el (which-function-mode):
10172 * term/tvi970.el (tvi970-set-keypad-mode):
10173 * term/vt100.el (vt100-wide-mode):
10174 * textmodes/flyspell.el (flyspell-mode):
10175 * textmodes/ispell.el (ispell-minor-mode):
10176 * textmodes/nroff-mode.el (nroff-electric-mode):
10177 * textmodes/paragraphs.el (use-hard-newlines):
10178 * textmodes/refill.el (refill-mode):
10179 * textmodes/reftex.el (reftex-mode):
10180 * textmodes/rst.el (rst-minor-mode):
10181 * textmodes/sgml-mode.el (html-autoview-mode)
10182 (sgml-electric-tag-pair-mode):
10183 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
10184 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
10185 * emulation/crisp.el (crisp-mode):
10186 * emacs-lisp/eldoc.el (eldoc-mode):
10187 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
10188 minor mode behavior.
10189
10190 2011-10-19 Juri Linkov <juri@jurta.org>
10191
10192 * descr-text.el (describe-char): Add #x2010 and #x2011 to
10193 the list of hard-coded chars with escape-glyph face.
10194
10195 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
10196
10197 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
10198
10199 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
10200
10201 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
10202 running process.
10203
10204 2011-10-19 Glenn Morris <rgm@gnu.org>
10205
10206 * vc/vc-bzr.el (vc-bzr-after-dir-status):
10207 Ignore ignored files. (Bug#9726)
10208
10209 2011-10-19 Chong Yidong <cyd@gnu.org>
10210
10211 Doc fix for minor modes, stating that an omitted argument enables
10212 the mode unconditionally when called from Lisp.
10213
10214 * abbrev.el (abbrev-mode):
10215 * allout.el (allout-mode):
10216 * autoinsert.el (auto-insert-mode):
10217 * autoarg.el (autoarg-mode, autoarg-kp-mode):
10218 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
10219 (global-auto-revert-mode):
10220 * battery.el (display-battery-mode):
10221 * composite.el (global-auto-composition-mode)
10222 (auto-composition-mode):
10223 * delsel.el (delete-selection-mode):
10224 * desktop.el (desktop-save-mode):
10225 * dired-x.el (dired-omit-mode):
10226 * dirtrack.el (dirtrack-mode):
10227 * doc-view.el (doc-view-minor-mode):
10228 * double.el (double-mode):
10229 * electric.el (electric-indent-mode, electric-pair-mode):
10230 * emacs-lock.el (emacs-lock-mode):
10231 * epa-hook.el (auto-encryption-mode):
10232 * follow.el (follow-mode):
10233 * font-core.el (font-lock-mode):
10234 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
10235 * help.el (temp-buffer-resize-mode):
10236 * hilit-chg.el (highlight-changes-mode)
10237 (highlight-changes-visible-mode):
10238 * hi-lock.el (hi-lock-mode):
10239 * hl-line.el (hl-line-mode, global-hl-line-mode):
10240 * icomplete.el (icomplete-mode):
10241 * ido.el (ido-everywhere):
10242 * image-file.el (auto-image-file-mode):
10243 * image-mode.el (image-minor-mode):
10244 * iswitchb.el (iswitchb-mode):
10245 * jka-cmpr-hook.el (auto-compression-mode):
10246 * linum.el (linum-mode):
10247 * longlines.el (longlines-mode):
10248 * master.el (master-mode):
10249 * mb-depth.el (minibuffer-depth-indicate-mode):
10250 * menu-bar.el (menu-bar-mode):
10251 * minibuf-eldef.el (minibuffer-electric-default-mode):
10252 * mouse-sel.el (mouse-sel-mode):
10253 * msb.el (msb-mode):
10254 * mwheel.el (mouse-wheel-mode):
10255 * outline.el (outline-minor-mode):
10256 * paren.el (show-paren-mode):
10257 * recentf.el (recentf-mode):
10258 * reveal.el (reveal-mode, global-reveal-mode):
10259 * rfn-eshadow.el (file-name-shadow-mode):
10260 * ruler-mode.el (ruler-mode):
10261 * savehist.el (savehist-mode):
10262 * scroll-all.el (scroll-all-mode):
10263 * scroll-bar.el (scroll-bar-mode):
10264 * server.el (server-mode):
10265 * shell.el (shell-dirtrack-mode):
10266 * simple.el (auto-fill-mode, transient-mark-mode)
10267 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
10268 (line-number-mode, column-number-mode, size-indication-mode)
10269 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
10270 * strokes.el (strokes-mode):
10271 * time.el (display-time-mode):
10272 * t-mouse.el (gpm-mouse-mode):
10273 * tool-bar.el (tool-bar-mode):
10274 * tooltip.el (tooltip-mode):
10275 * type-break.el (type-break-mode-line-message-mode)
10276 (type-break-query-mode):
10277 * view.el (view-mode):
10278 * whitespace.el (whitespace-mode, whitespace-newline-mode)
10279 (global-whitespace-mode, global-whitespace-newline-mode):
10280 * xt-mouse.el (xterm-mouse-mode): Doc fix.
10281
10282 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10283 Fix autogenerated docstring.
10284
10285 2011-10-19 Juri Linkov <juri@jurta.org>
10286
10287 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
10288 by checking environment variables "DESKTOP_SESSION" and
10289 "XDG_CURRENT_DESKTOP". (Bug#9779)
10290
10291 2011-10-19 Juri Linkov <juri@jurta.org>
10292
10293 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
10294 (browse-url-chromium-program, browse-url-chromium-arguments):
10295 New defcustoms.
10296 (browse-url-default-browser): Check for `browse-url-chromium' and
10297 call `browse-url-chromium-program'.
10298 (browse-url-chromium): New command. (Bug#9779)
10299
10300 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
10301
10302 * facemenu.el (list-colors-duplicates): On Windows, detect more
10303 duplicates by assuming that only colors matching "^System" are
10304 special "system colors". (Bug#9722)
10305
10306 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
10307
10308 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
10309 to distinguish the author from the committer.
10310
10311 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
10312
10313 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
10314
10315 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
10316
10317 * international/mule.el (sgml-html-meta-auto-coding-function):
10318 Add support for detecting encoding in HTML5 specified only as
10319 <meta charset="UTF-8">. Implementation just makes http-equiv and
10320 content-type parts from HTML4 encoding string optional. (Bug#9716)
10321
10322 2011-10-18 Glenn Morris <rgm@gnu.org>
10323
10324 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
10325
10326 2011-10-18 Chong Yidong <cyd@gnu.org>
10327
10328 * faces.el (cursor): Doc fix.
10329
10330 2011-10-17 Chong Yidong <cyd@gnu.org>
10331
10332 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
10333
10334 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
10335
10336 * dirtrack.el (dirtrack): Support shell buffers with path
10337 prefixes, e.g. tramp-based remote shells. (Bug#9647)
10338
10339 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
10340
10341 * json.el: Bump version to 1.3 and note change in History.
10342 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
10343
10344 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
10345
10346 * comint.el (comint-insert-input, comint-send-input)
10347 (comint-get-old-input-default, comint-backward-matching-input)
10348 (comint-next-prompt): Use nil instead of `input' for field property of
10349 past user input (bug#114).
10350
10351 * minibuffer.el (completion--replace): Inherit surrounding properties
10352 (bug#114).
10353 (minibuffer-complete-and-exit): Use it.
10354
10355 * comint.el (comint--table-subvert): Quote the all-completions output
10356 (bug#9160).
10357
10358 2011-10-17 Martin Rudalics <rudalics@gmx.at>
10359
10360 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
10361
10362 * menu-bar.el (menu-bar-file-menu): Add entry for making new
10363 window on right of selected. (Bug#9350) Reword other window
10364 entries and separate them from frame entries.
10365
10366 2011-10-15 Glenn Morris <rgm@gnu.org>
10367
10368 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
10369 Doc fixes.
10370
10371 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
10372
10373 * net/network-stream.el (network-stream-open-starttls):
10374 Improve detection of failure due to lack of TLS support.
10375
10376 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
10377 putting the input text in front and in bold.
10378
10379 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
10380
10381 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
10382
10383 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
10384 empty buffer.
10385
10386 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
10387 unread-command-events rather than pushing yet-another event.
10388
10389 2011-10-14 Eli Zaretskii <eliz@gnu.org>
10390
10391 * mail/sendmail.el (sendmail-query-once): Improve the wording of
10392 the explanation of the possible choices. Make the options passed
10393 to completing-read shorter.
10394
10395 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10396
10397 * textmodes/flyspell.el (flyspell-large-region): Make sure
10398 extended character mode is used if defined (Bug#1339).
10399
10400 2011-10-13 Eli Zaretskii <eliz@gnu.org>
10401
10402 * simple.el (what-cursor-position): Fix the display of the
10403 character info for LRE, LRO, RLE, and RLO characters by appending
10404 an invisible PDF.
10405
10406 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
10407
10408 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
10409 even in case of error; add debug spec; simplify data flow.
10410 (with-timeout-handler): Remove.
10411
10412 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
10413
10414 Fix Bug#6019, Bug#9315.
10415
10416 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
10417 complete `buffer-file-name', the local file name part could look
10418 remotely (for example on VMS).
10419
10420 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
10421 `tramp-run-real-handler'.
10422 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
10423 already quoted by '"'.
10424
10425 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
10426 Let `file-name-handler-alist' be nil, the local file name part
10427 could look remotely (for example on VMS).
10428
10429 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
10430
10431 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
10432 from here...
10433 (flyspell-post-command-hook): ...to here.
10434
10435 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10436
10437 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
10438 if not needed.
10439 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
10440 using completion. Protect against "slow" callers.
10441 Remove the "message hack".
10442
10443 2011-10-11 Juri Linkov <juri@jurta.org>
10444
10445 * isearch.el (isearch-lazy-highlight-word): New variable.
10446 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
10447 Use it. (Bug#9727)
10448
10449 2011-10-11 Glenn Morris <rgm@gnu.org>
10450
10451 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
10452 like f90-previous-statement does.
10453
10454 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10455
10456 * eshell/eshell.el (eshell-command): History should be saved
10457 only in interactive use, to avoid error.
10458
10459 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10460
10461 * minibuffer.el (completion-file-name-table): Fix last change,
10462 i.e. ignore normal errors but not the other ones.
10463
10464 2011-10-10 Martin Rudalics <rudalics@gmx.at>
10465
10466 * window.el (special-display-buffer-names)
10467 (special-display-regexps): Remove some remnants of earlier
10468 changes from doc-strings.
10469 (quit-windows-on): New function.
10470
10471 * vc/vc.el (vc-revert, vc-rollback):
10472 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
10473 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
10474 (Bug#6183) (Bug#7074) (Bug#7447)
10475
10476 2011-10-09 Martin Rudalics <rudalics@gmx.at>
10477
10478 * window.el (frame-auto-hide-function): Add version tag.
10479 (Bug#9699)
10480
10481 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
10482
10483 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
10484 condition.
10485
10486 2011-10-09 Leo Liu <sdl.web@gmail.com>
10487
10488 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
10489 (Bug#9701)
10490
10491 2011-10-08 Glenn Morris <rgm@gnu.org>
10492
10493 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
10494 before the first code statement zero indent. (Bug#9690)
10495
10496 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
10497
10498 * simple.el (count-words-region): Always count in the region.
10499 Report the number of lines and characters too.
10500 (count-words): New command, which counts in the buffer if the
10501 region is inactive, as count-words-region used to.
10502 (count-words--message): New function. Handle plurals.
10503 (count-lines-region): Make it an alias for count-words-region.
10504
10505 * bindings.el (esc-map): Replace count-lines-region with
10506 count-words-region.
10507
10508 2011-10-08 Martin Rudalics <rudalics@gmx.at>
10509
10510 * window.el (window--delete): Delete dedicated frame
10511 unconditionally when argument KILL is non-nil. (Bug#9699)
10512 (switch-to-buffer): Fix doc-string typo.
10513
10514 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10515
10516 * eshell/eshell.el (eshell-command): Avoid using hooks.
10517
10518 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
10519
10520 * bindings.el ([M-left],[M-right]): Bind to left-word and
10521 right-word respectively.
10522
10523 2011-10-07 Glenn Morris <rgm@gnu.org>
10524
10525 * cus-start.el (debug-on-quit): Fix custom type.
10526
10527 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10528
10529 * subr.el (define-key-after): Clarify that the function is not
10530 useful for non-menu keymaps.
10531
10532 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
10533
10534 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10535
10536 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
10537 in current minibuffer (Fix bug with recursive minibuffers).
10538
10539 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
10540
10541 * progmodes/gdb-mi.el (gdb): Doc fix.
10542
10543 2011-10-05 Martin Rudalics <rudalics@gmx.at>
10544
10545 * window.el (frame-auto-hide-function): New option replacing
10546 frame-auto-delete. Suggested by Stefan Monnier.
10547 (window--delete): Call frame-auto-hide-function instead of
10548 investigating frame-auto-delete.
10549 (window-point-1, set-window-point-1): New functions.
10550 (window-in-direction, record-window-buffer, window-state-get-1)
10551 (display-buffer-record-window): Use window-point-1 instead of
10552 window-point.
10553 (set-window-buffer-start-and-point): Use set-window-point-1.
10554
10555 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
10556
10557 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
10558
10559 2011-10-05 Glenn Morris <rgm@gnu.org>
10560
10561 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
10562 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
10563
10564 2011-10-05 Leo Liu <sdl.web@gmail.com>
10565
10566 * subr.el (read-char-choice): Fix argument to buffer-live-p which
10567 works with buffer object.
10568
10569 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
10570
10571 * mpc.el (mpc-tool-bar-map): Add labels.
10572
10573 2011-10-04 Glenn Morris <rgm@gnu.org>
10574
10575 * calendar/holidays.el (calendar-check-holidays): Doc fix.
10576
10577 2011-10-04 Martin Rudalics <rudalics@gmx.at>
10578
10579 * window.el (window--delete): New function.
10580 (frame-auto-delete): Resuscitate option.
10581 (bury-buffer, replace-buffer-in-windows)
10582 (quit-window): Rewrite using window--delete.
10583 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10584 Pass display-buffer-mark-dedicated to window--display-buffer-2
10585 (Bug#9639).
10586
10587 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
10588
10589 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
10590 returns a list (bug#9554). Add remote file name completion.
10591 * comint.el (comint--table-subvert): Curry and get quote&unquote
10592 functions as arguments.
10593 (comint--complete-file-name-data): Adjust call accordingly.
10594 * pcomplete.el (pcomplete--table-subvert): Remove.
10595 (pcomplete-completions-at-point): Use comint--table-subvert instead.
10596
10597 * minibuffer.el (completion-table-case-fold): Use currying.
10598 (completion--styles-type, completion--cycling-threshold-type):
10599 New constants.
10600 (completion-styles, completion-category-overrides)
10601 (completion-cycle-threshold): Use them.
10602 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
10603 completion-table-case-fold.
10604
10605 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
10606
10607 * minibuffer.el (completion-category-overrides): Fix type of styles
10608 and add more user friendly tags (bug#9660).
10609
10610 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
10611
10612 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
10613 (mule-input-method-string): New widget.
10614 (default-input-method, language-info-custom-alist): Use it.
10615
10616 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
10617
10618 * pcomplete.el: Require comint.
10619 (pcomplete--common-suffix): Remove.
10620 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
10621 (pcomplete--table-subvert): Sync with comint--table-subvert.
10622 (pcomplete--entries): Use comint-completion-file-name-table.
10623 * comint.el (comint-unquote-filename): Simplify.
10624 (comint-completion-file-name-table): New function (bug#9616).
10625 (comint--complete-file-name-data): Use it.
10626
10627 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
10628 (pcmpl-gnu-tar-buffer): Remove.
10629 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
10630 around. Make sure pcomplete-suffix-list is only changed temporarily.
10631 Don't look inside the tar's file if it's too large.
10632
10633 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
10634
10635 * cus-edit.el (custom-mode-map):
10636 * epa.el (epa-key-list-mode-map):
10637 * man.el (Man-mode-map):
10638 * startup.el (splash-screen-keymap):
10639 * simple.el (special-mode-map): Use scroll-up-command and
10640 scroll-down-command.
10641
10642 * progmodes/idlw-help.el (idlwave-help-mode-map):
10643 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
10644 * net/newst-plainview.el (newsticker-mode-map):
10645 * emulation/ws-mode.el (wordstar-mode-map):
10646 * emulation/vi.el (vi-com-map):
10647 * calc/calc-graph.el (calc-graph-show-dumb):
10648 * term/sun.el (terminal-init-sun):
10649 * term/ns-win.el (global-map):
10650 * progmodes/grep.el (grep-mode-map):
10651 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
10652 * mail/rmail.el (rmail-mode-map):
10653 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
10654
10655 * custom.el (custom-safe-themes, load-theme): Treat value of t for
10656 custom-safe-themes as special.
10657
10658 2011-10-01 Julien Danjou <julien@danjou.info>
10659
10660 * notifications.el (notifications-notify): Fix docstring.
10661
10662 2011-10-01 Per Starbäck <per@starback.se>
10663
10664 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
10665
10666 2011-09-30 Martin Rudalics <rudalics@gmx.at>
10667
10668 * startup.el (command-line-1): Fix last fix by inserting
10669 initial-scratch-message into *scratch* before displaying it.
10670 (Bug#9605) and (Bug#9636)
10671
10672 2011-09-29 Eli Zaretskii <eliz@gnu.org>
10673
10674 * simple.el (line-move): If auto-hscroll-mode is disabled and the
10675 window is hscrolled, move by logical lines. (Bug#9607)
10676 (line-move-visual): Update the doc string to the above effect.
10677
10678 2011-09-29 Martin Rudalics <rudalics@gmx.at>
10679
10680 * window.el (display-buffer-record-window): When WINDOW is the
10681 selected window use `point' instead of `window-point'. (Bug#9626)
10682
10683 * startup.el (command-line-1): Use insert-before-markers when
10684 inserting initial-scratch-message. (Bug#9605)
10685
10686 * help.el (help-window): Remove variable.
10687
10688 2011-09-29 Glenn Morris <rgm@gnu.org>
10689
10690 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
10691
10692 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
10693
10694 * descr-text.el (describe-char-categories): Accept category
10695 descriptions more than one line long.
10696
10697 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
10698
10699 * simple.el (delete-trailing-whitespace): Fix last change.
10700
10701 * progmodes/perl-mode.el (perl-syntax-propertize-function):
10702 Don't confuse "y => 3" as the beginning of a `y' operation.
10703
10704 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
10705 object has more than 4 slots (bug#9613).
10706
10707 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
10708
10709 * subr.el (with-output-to-temp-buffer):
10710 * net/quickurl.el (quickurl, quickurl-browse-url):
10711 Fix typos in docstrings.
10712
10713 2011-09-27 Eli Zaretskii <eliz@gnu.org>
10714
10715 * minibuffer.el (completion-styles)
10716 (completion-category-overrides): Cross reference each other in doc
10717 strings.
10718
10719 2011-09-27 Glenn Morris <rgm@gnu.org>
10720
10721 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
10722 to split-string. (Bug#9606)
10723
10724 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
10725
10726 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
10727 (bug#9615).
10728
10729 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
10730
10731 * emacs-lisp/package.el (list-packages): Fix echo area message.
10732
10733 2011-09-27 Leo Liu <sdl.web@gmail.com>
10734
10735 * ido.el (ido-read-internal): Accept cons cell HIST arg.
10736
10737 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
10738
10739 * net/dbus.el (dbus-unregister-object): Don't release services for
10740 registered signals. (Bug#9581)
10741
10742 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
10743
10744 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
10745 function that picks between cfengine 2 and 3 support
10746 automatically. Update docs accordingly.
10747
10748 2011-09-22 Kenichi Handa <handa@m17n.org>
10749
10750 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
10751 ZERO.
10752 (indian-itrans-v5-table-for-tamil): New variable.
10753 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
10754
10755 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
10756
10757 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
10758 that's true if the current command involved collapsing of text.
10759 It's reset to false at the beginning of the next command.
10760 (allout-post-command-business): Move the cursor to the beginning
10761 of entry if the cursor is hidden and collapsing activity just
10762 happened.
10763
10764 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
10765
10766 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
10767 tracking (Bug#9541).
10768
10769 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
10770
10771 * net/newst-reader.el (newsticker-html-renderer)
10772 (newsticker-show-news): Automatically load html rendering package
10773 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
10774 because w3m-fill-column is let-bound" and the error "Symbol's value
10775 as variable is void: w3m-fill-column".
10776
10777 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
10778
10779 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
10780 Release services only if they are defined. (Bug#9581)
10781
10782 2011-09-23 Richard Stallman <rms@gnu.org>
10783
10784 * textmodes/paragraphs.el (forward-sentence): For backwards case,
10785 distinguish start of paragraph from start of its text.
10786
10787 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
10788
10789 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
10790 (rmail-generate-viewer-buffer): Put that hook on view buffer.
10791 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
10792
10793 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
10794
10795 * international/mule-diag.el (mule-diag): Insert a newline after
10796 each fontset description.
10797
10798 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
10799
10800 * simple.el (delete-trailing-whitespace):
10801 Document last change; simplify.
10802
10803 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
10804
10805 * simple.el (delete-trailing-whitespace): Also delete
10806 extra newlines at the end of the buffer.
10807
10808 * textmodes/picture.el: Make motion commands obey shift-select-mode.
10809 (picture-newline): Use forward-line so as to ignore fields.
10810
10811 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
10812
10813 * subr.el (with-wrapper-hook): Fix edebug spec.
10814
10815 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
10816
10817 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
10818 (bug#4538).
10819
10820 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
10821
10822 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
10823 Fix nasty bug using wrong cached values.
10824
10825 2011-09-23 Alan Mackenzie <acm@muc.de>
10826
10827 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
10828
10829 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
10830
10831 * window.el (pop-to-buffer): Ensure right window is selected if we
10832 chose another frame.
10833
10834 2011-09-22 Eli Zaretskii <eliz@gnu.org>
10835
10836 * simple.el (what-cursor-position): Use get-char-property-change
10837 and next-single-char-property-change, to be able to show display
10838 properties that come from overlays as well as text properties.
10839
10840 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
10841
10842 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
10843
10844 * cmuscheme.el (run-scheme, switch-to-scheme):
10845 * cus-edit.el (customize-group, custom-buffer-create)
10846 (customize-browse):
10847 * info.el (info):
10848 * shell.el (shell):
10849 * mail/sendmail.el (mail):
10850 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
10851
10852 2011-09-22 Richard Stallman <rms@gnu.org>
10853
10854 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
10855 move back only to line beg, don't move back over blank lines.
10856
10857 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
10858
10859 * files.el (copy-directory): Set directory attributes only in case
10860 they could be retrieved from the source directory. (Bug#9565)
10861
10862 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
10863
10864 * progmodes/hideshow.el (hs-looking-at-block-start-p)
10865 (hs-find-block-beginning, hs-hide-level-recursive):
10866 Ignore strings as well as comments. (Bug#9502)
10867
10868 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
10869
10870 * progmodes/sql.el (sql-comint-postgres):
10871 Convert port number to a string. (Bug#9566)
10872
10873 2011-09-22 Martin Rudalics <rudalics@gmx.at>
10874
10875 * window.el (quit-window): Undedicate window when switching to
10876 previous buffer. Reported by Thierry Volpiatto
10877 <thierry.volpiatto@gmail.com>.
10878 (special-display-popup-frame): When popping up a new frame reset
10879 its previous buffers to nil. Simplify code.
10880
10881 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
10882
10883 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
10884 and process filter, as done also in `shell-command'.
10885
10886 2011-09-21 Martin Rudalics <rudalics@gmx.at>
10887
10888 * window.el (set-window-buffer-start-and-point):
10889 Call set-window-start with NOFORCE argument t.
10890 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
10891 (quit-window): Reword doc-string. Handle new format of
10892 quit-restore parameter. Don't delete window if it has a
10893 previous buffer we can show instead of the present one.
10894 (display-buffer-record-window): Rewrite using a new format for
10895 the quit-restore window parameter
10896 (special-display-popup-frame, display-buffer-same-window)
10897 (display-buffer-reuse-window, display-buffer-pop-up-frame)
10898 (display-buffer-pop-up-window, display-buffer-use-some-window):
10899 Adapt symbol passed to display-buffer-record-window.
10900 * help.el (help-window-setup): Handle new format of quit-restore
10901 parameter.
10902
10903 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
10904
10905 * faces.el (face-list): Fix docstring (bug#9564).
10906
10907 * window.el (display-buffer--action-function-custom-type):
10908 Don't include internal functions in the Custom interface.
10909
10910 2011-09-20 Juri Linkov <juri@jurta.org>
10911
10912 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
10913 (Info-forward-node, Info-backward-node, Info-next-preorder)
10914 (Info-last-preorder): Use it. (Bug#9528)
10915
10916 2011-09-20 Juri Linkov <juri@jurta.org>
10917
10918 * info.el (Info-last-preorder): Visit last menu item only when
10919 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
10920
10921 2011-09-20 Julien Danjou <julien@danjou.info>
10922
10923 * password-cache.el (password-cache-remove): Remove entries even if the
10924 value is nil, so that password with a nil value (negative caching) is
10925 possible to invalidate.
10926
10927 2011-09-20 Lawrence Mitchell <wence@gmx.li>
10928
10929 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
10930 all whitespace around breakpoint. (Bug#9553)
10931 (f90-find-breakpoint): Only break at whitespace inside a comment.
10932
10933 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
10934
10935 * minibuffer.el (completion-file-name-table): Keep track of errors.
10936 (completion-table-with-predicate): Handle the case where pred1 is nil.
10937 * pcomplete.el (pcomplete-completions-at-point): Simplify.
10938
10939 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10940
10941 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
10942 (debugger-return-value): Signal an error if the debugging context does
10943 not await any return value.
10944
10945 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
10946 * image-mode.el (image-toggle-display-text)
10947 (image-toggle-display-image): Stay away from evil `intangible'.
10948
10949 2011-09-19 Leo Liu <sdl.web@gmail.com>
10950
10951 * replace.el (occur-revert-arguments): Make it permanent-local.
10952 (occur-mode): Don't call font-lock-defontify.
10953
10954 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
10955
10956 * net/ldap.el (ldap-search-internal): Don't push empty search
10957 result (Bug#9508).
10958
10959 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10960
10961 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
10962
10963 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
10964
10965 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
10966 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
10967
10968 2011-09-18 Juri Linkov <juri@jurta.org>
10969
10970 * buff-menu.el (Buffer-menu-mode-map):
10971 * dired.el (dired-mode-map):
10972 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
10973 (lisp-interaction-mode-map):
10974 * emacs-lisp/package.el (package-menu-mode-map):
10975 * epa.el (epa-key-list-mode-map):
10976 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
10977 (menu-bar-options-menu):
10978 * outline.el (outline-mode-menu-bar-map):
10979 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
10980 * vc/vc-dir.el (vc-dir-menu-map):
10981 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
10982 Capitalize non-function content words in menu item strings.
10983
10984 * dired.el (dired-mode-map): Add menu item for
10985 `image-dired-dired-toggle-marked-thumbs'.
10986
10987 2011-09-18 Juri Linkov <juri@jurta.org>
10988
10989 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
10990 to `isearch-case-fold-search' and restore its original value
10991 after the `isearch-mode' call.
10992
10993 2011-09-18 Juri Linkov <juri@jurta.org>
10994
10995 * progmodes/grep.el (grep-process-setup): Don't check code for 1
10996 because `zgrep' returns 1 for successful matches (bug#9226).
10997
10998 2011-09-18 Juri Linkov <juri@jurta.org>
10999
11000 * info.el (Info-extract-menu-node-name): Check the second match
11001 for empty string (second test-case of bug#9528).
11002 (Info-last-preorder): Let-bind `Info-history' to nil to not add
11003 intermediate nodes to the history (first test-case of bug#9528).
11004
11005 2011-09-18 Juri Linkov <juri@jurta.org>
11006
11007 * info.el (Info-mode-syntax-table): New variable.
11008 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
11009
11010 2011-09-18 Juri Linkov <juri@jurta.org>
11011
11012 * info.el (Info-file-supports-index-cookies):
11013 Increment line-beginning-position's arg from 3 to 4 because makeinfo
11014 outputs one more line for long file names (bug#4142).
11015
11016 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
11017
11018 * newcomment.el (comment-normalize-vars): If prompting for
11019 comment-start, set comment-start-skip too (Bug#8424).
11020
11021 2011-09-18 Johan Bockgård <bojohan@gnu.org>
11022
11023 * icomplete.el: Fix previous fix of Bug#5849.
11024 (icomplete-mode): Don't set completion-show-inline-help.
11025 (icomplete-minibuffer-setup): Set completion-show-inline-help
11026 locally during icompletion.
11027
11028 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
11029
11030 * woman.el (woman2-process-escapes): Don't delete unrecognized
11031 escapes (Bug#7843).
11032
11033 * files.el (inhibit-first-line-modes-regexps): Add image files.
11034 (hack-local-variables-prop-line): Return nil for malformed
11035 prop-lines (Bug#9044).
11036
11037 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
11038
11039 * net/tramp.el (top): Don't require 'shell.
11040 (tramp-methods): Fix docstring.
11041 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
11042 Return complete remote file name. Handle "smb" case.
11043 Use `tramp-tmpdir', if defined for the respective method.
11044 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
11045
11046 * net/tramp-compat.el (top): Require 'shell.
11047
11048 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
11049 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
11050 `tramp-current-host'.
11051 (tramp-get-remote-tmpdir): Remove.
11052
11053 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
11054 `tramp-tmpdir' entries.
11055 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
11056 (tramp-smb-handle-file-attributes): Ignore errors.
11057 (tramp-smb-wait-for-output): Check also for process end.
11058
11059 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
11060
11061 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
11062 when sending QUIT (bug#9312).
11063
11064 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
11065
11066 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
11067 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
11068 occur-mode-display-occurrence.
11069 (occur-edit-mode): Add usage message.
11070 (occur-cease-edit): New command.
11071 (occur-after-change-function): Use text properties to find the
11072 position of the prefix text.
11073 (occur-engine): Set stickiness of prefix text properties.
11074
11075 2011-09-17 Glenn Morris <rgm@gnu.org>
11076
11077 * progmodes/etags.el (complete-tag):
11078 Fix call to completion-in-region. (Bug#9526)
11079
11080 2011-09-17 Juri Linkov <juri@jurta.org>
11081
11082 * textmodes/ispell.el (ispell-word): Add to the error message
11083 the word, ispell program name and current dictionary (bug#9121).
11084 (ispell-tex-arg-end): Capitalize "error" in the error message.
11085
11086 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
11087
11088 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
11089 check. (Bug#4251)
11090
11091 2011-09-17 Juri Linkov <juri@jurta.org>
11092
11093 * window.el (window-safe-min-height, window-safe-min-width):
11094 Fix typos (followup to bug#9522).
11095
11096 2011-09-17 Sven Joachim <svenjoac@gmx.de>
11097
11098 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
11099
11100 2011-09-16 Eli Zaretskii <eliz@gnu.org>
11101
11102 * simple.el (line-move): If goal-column is set, move by logical
11103 lines, not by display lines. (Bug#971)
11104 (next-line, previous-line, goal-column, line-move-visual): Doc fix
11105 to reflect the above change.
11106
11107 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
11108
11109 * image.el (imagemagick-register-types): Use regexp-opt.
11110
11111 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
11112
11113 * window.el (display-buffer-base-action): Rename from
11114 display-buffer-default-action. Make default value empty.
11115 (display-buffer-overriding-action): Convert to defvar.
11116 (display-buffer-fallback-action): New var.
11117
11118 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
11119
11120 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
11121 declaration.
11122 (package--add-to-archive-contents): If there is a duplicate entry
11123 with an older version, remove it.
11124 (package-menu-mark-delete, package-menu-mark-install)
11125 (package-menu-mark-unmark): Make unused args optional.
11126 (package-menu-mark-obsolete-for-deletion):
11127 Use package-menu-get-status instead of a regexp search.
11128 (package-menu-get-status): Use tabulated-list-entry.
11129 (package-menu-mark-upgrades): New command.
11130 (package-menu-mode-map): Bind it to U. Add it to menu bar.
11131 (package-menu-execute): Do installation before deletion.
11132 (package-menu-refresh, package-menu-execute): Use derived-mode-p
11133 instead of checking major-mode.
11134 (package-menu--find-upgrades): New function.
11135
11136 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11137
11138 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
11139 passwords in the log buffer.
11140 (smtpmail-process-filter): Update the process marker so that the
11141 "broken by peer" status message is inserted in the right place.
11142
11143 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
11144
11145 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
11146 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
11147 bibtex-completion-at-point-function.
11148 (bibtex-completion-at-point-function): Use them.
11149
11150 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
11151
11152 * mpc.el (mpc-constraints-tag-lookup): New function.
11153 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
11154 also to browser "album|playlist".
11155
11156 2011-09-14 Juri Linkov <juri@jurta.org>
11157
11158 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
11159 (isearch-edit-string): Use length of `isearch-string' when
11160 `isearch-fail-pos' returns nil.
11161 (isearch-message): Remove duplicate code and call
11162 `isearch-fail-pos' with arg `t'.
11163
11164 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
11165
11166 * replace.el (occur-mode-goto-occurrence): Don't force using other
11167 window (Bug#9499).
11168
11169 * dired-aux.el (dired-do-chmod): Don't provide initial input.
11170
11171 2011-09-14 Martin Rudalics <rudalics@gmx.at>
11172
11173 * window.el (display-buffer-window): Remove.
11174 (display-buffer-record-window): Use help-setup window parameter
11175 instead of variable display-buffer-window.
11176 (display-buffer-function, special-display-buffer-names)
11177 (special-display-function): Mention help-setup parameter instead
11178 of display-buffer-window in doc-string.
11179 * help.el (help-window-setup): New argument help-window.
11180 Use help-window-setup parameter instead of display-buffer-window.
11181 Reword some messages.
11182 (with-help-window): Pass window used for displaying the buffer
11183 to help-window-setup. Don't set display-buffer-window.
11184
11185 2011-09-13 Glenn Morris <rgm@gnu.org>
11186
11187 * emacs-lisp/debug.el (debugger-make-xrefs):
11188 Preserve point. (Bug#9462)
11189
11190 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11191
11192 * window.el (window-deletable-p): Use next-frame.
11193
11194 2011-09-13 Martin Rudalics <rudalics@gmx.at>
11195
11196 * window.el (window-auto-delete): Remove.
11197 (window-deletable-p): Remove argument FORCE. Don't deal with
11198 dedication and previous buffers.
11199 (switch-to-prev-buffer): Don't delete window.
11200 (delete-windows-on): Delete a window's frame if and only if the
11201 window is dedicated.
11202 (replace-buffer-in-windows): Delete buffer's window or frame if
11203 and only if window is dedicated.
11204 (quit-window): Handle quit-restore as before last change.
11205 (bury-buffer): Delete window only if window-deletable-p returns t.
11206
11207 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11208
11209 * window.el (window-deletable-p): Never delete the last frame on a
11210 given terminal.
11211
11212 2011-09-13 Glenn Morris <rgm@gnu.org>
11213
11214 * help.el (describe-key-briefly): Copy previous standard-output change.
11215
11216 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
11217
11218 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
11219
11220 2011-09-13 Glenn Morris <rgm@gnu.org>
11221
11222 * emacs-lisp/lisp-mode.el (lisp-indent-function):
11223 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
11224
11225 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
11226
11227 * dired-aux.el (dired-mark-read-string): Don't return default
11228 value on empty input (Bug#9361).
11229 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
11230 Omit initial minibuffer contents.
11231 (dired-do-chmod): Signal an error on empty input.
11232 (dired-mark-read-string): Don't return default on empty input.
11233
11234 * files.el (file-modes-symbolic-to-number): Doc fix.
11235
11236 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
11237
11238 * international/mule-cmds.el (ucs-completions): Remove.
11239 (read-char-by-name): Use complete-with-action instead; add metadata.
11240
11241 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11242
11243 * window.el (display-buffer--action-function-custom-type)
11244 (display-buffer--action-custom-type): New vars.
11245 (display-buffer-alist, display-buffer-default-action)
11246 (display-buffer-overriding-action): Add defcustom types.
11247
11248 * frame.el (delete-other-frames): Doc fix (Bug#276).
11249
11250 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11251
11252 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
11253
11254 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11255
11256 Change modes that used same-window-* vars to use switch-to-buffer.
11257
11258 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
11259 Use switch-to-buffer.
11260
11261 * cus-edit.el (customize-group, custom-buffer-create)
11262 (customize-browse, custom-buffer-create-other-window):
11263 Use switch-to-buffer or switch-to-buffer-other-window.
11264
11265 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
11266 (Info-prev, Info-up, Info-speedbar-goto-node)
11267 (info-display-manual): Use switch-to-buffer.
11268 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
11269
11270 * mail/sendmail.el (mail): Use switch-to-buffer.
11271 (mail-recover): Use switch-to-buffer-other-window.
11272
11273 * cmuscheme.el (run-scheme, switch-to-scheme):
11274 * ielm.el (ielm):
11275 * shell.el (shell):
11276 * net/rlogin.el (rlogin):
11277 * net/telnet.el (telnet, rsh):
11278 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
11279
11280 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
11281
11282 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
11283
11284 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11285
11286 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
11287 so don't mention it (bug#9301).
11288 (dired-sort-toggle-or-edit): Clarify string further.
11289
11290 * faces.el (face-spec-set-match-display): Make `(type graphic)'
11291 match `x', `w32' and `ns', like the manual says (bug#9029).
11292
11293 * subr.el (eval-after-load): Doc string clarification (bug#9125).
11294 (process-kill-buffer-query-function): Mention the buffer name in
11295 the query.
11296
11297 * image-mode.el (image-next-line): The line parameter is mandatory
11298 (bug#9258).
11299
11300 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
11301 which can be useful (bug#9301).
11302
11303 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
11304
11305 * subr.el (match-string): Mention that the current buffer should
11306 be the same as the search was done in (bug#9282).
11307
11308 * facemenu.el: Disable the remove-* commands if the mark isn't
11309 active (bug#9162).
11310
11311 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
11312
11313 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
11314 of display-buffer.
11315 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
11316
11317 * replace.el (occur-mode-goto-occurrence)
11318 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
11319 and display-buffer.
11320
11321 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
11322 display-buffer.
11323
11324 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
11325 special-display and same-window variables.
11326 (mail-other-window): Use switch-to-buffer-other-window.
11327 (mail-other-frame): USe switch-to-buffer-other-frame.
11328
11329 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
11330 Use display-buffer-other-frame.
11331 (gdb-display-gdb-buffer): Use pop-to-buffer.
11332
11333 * progmodes/gud.el (gud-goto-info): Use info-other-window.
11334
11335 * progmodes/python.el: Don't set same-window-buffer-names.
11336
11337 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
11338
11339 * window.el (display-buffer-alist): Add *Python*.
11340
11341 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
11342
11343 * window.el (display-buffer-alist): Add entry for buffers
11344 previously handled same-window-*.
11345 (display-buffer-alist, display-buffer-default-action)
11346 (display-buffer-overriding-action): Mark as risky.
11347 (display-buffer-alist): Document action function changes.
11348 (display-buffer--same-window-action)
11349 (display-buffer--other-frame-action): New variables.
11350 (switch-to-buffer, display-buffer-other-frame): Use them.
11351 (display-buffer): Rename reuse-frame entry to reusable-frames.
11352 (display-buffer-reuse-selected-window): Function deleted.
11353 (display-buffer-reuse-window): Handle reusable-frames alist entry.
11354 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
11355 (display-buffer-special): New function.
11356 (display-buffer--maybe-pop-up-frame-or-window): Rename from
11357 display-buffer-reuse-or-pop-window. Split off special-display
11358 part into display-buffer-special.
11359 (display-buffer-use-some-window): Don't perform any special
11360 pop-up-frames handling.
11361 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
11362 (display-buffer--maybe-same-window): Rename from
11363 display-buffer-maybe-same-window.
11364
11365 * info.el: Don't set same-window-regexps.
11366 (info-setup): New function.
11367 (info-other-window, info): Call it.
11368
11369 * cus-edit.el: Don't set same-window-regexps.
11370 (customize-group): New argument.
11371 (customize-group-other-window): Use it.
11372 (customize-face, customize-face-other-window): Likewise.
11373 (custom-buffer-create-other-window): Use pop-to-buffer directly.
11374
11375 * net/rlogin.el:
11376 * net/telnet.el:
11377 * progmodes/gud.el: Don't set same-window-regexps.
11378
11379 * cmuscheme.el:
11380 * ielm.el:
11381 * shell.el:
11382 * mail/sendmail.el:
11383 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
11384
11385 2011-09-10 Juri Linkov <juri@jurta.org>
11386
11387 * isearch.el (isearch-edit-string): Remove obsolete mention of
11388 `C-w' (`isearch-yank-word-or-char') from docstring.
11389 (isearch-query-replace): Fix typo in docstring (bug#9466).
11390
11391 2011-09-10 Juri Linkov <juri@jurta.org>
11392
11393 * paren.el (show-paren-function): Don't show escaped parens.
11394 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
11395
11396 2011-09-10 Eli Zaretskii <eliz@gnu.org>
11397
11398 * mail/sendmail.el (mml-to-mime, mml-attach-file)
11399 (mm-default-file-encoding): Remove autoload forms, they are
11400 replaced with autoload cookies in mml.el and mm-encode.el.
11401 (mail-add-attachment): New command.
11402 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
11403 (mail-mode): Mention mail-insert-file and mail-add-attachment in
11404 the doc string.
11405 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
11406
11407 2011-09-10 Reuben Thomas <rrt@sc3d.org>
11408
11409 * simple.el (count-words-region): Use buffer if there's no region
11410 (bug#9429).
11411
11412 2011-09-09 Juri Linkov <juri@jurta.org>
11413
11414 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
11415 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
11416 (wdired-isearch-filter-read-only): New function. (Bug#6362)
11417
11418 2011-09-09 Alan Mackenzie <acm@muc.de>
11419
11420 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
11421 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
11422
11423 2011-09-09 Eli Zaretskii <eliz@gnu.org>
11424
11425 Fix for Savannah bug#9392.
11426 * simple.el (mail-encode-mml): New defvar.
11427
11428 * mail/rmail.el (mail-encode-mml): Add a defvar.
11429 (rmail-enable-mime-composing): Default to t.
11430 (rmail-forward): Use MIME method of forwarding only if both
11431 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
11432 Set mail-encode-mml non-nil if the MIME method was used.
11433
11434 * mail/sendmail.el (mml-to-mime): Add autoload form.
11435 (mail-encode-mml): Add a defvar.
11436 (mail-mode): Make mail-encode-mml buffer-local and initialize it
11437 to nil.
11438 (mail-send): If mail-encode-mml is non-nil, run the outgoing
11439 message through mml-to-mime, and reset mail-encode-mml to nil.
11440
11441 2011-09-09 Glenn Morris <rgm@gnu.org>
11442
11443 * woman.el (woman-if-body): When processing an .el block,
11444 do not delete the next .el block as well. (Bug#9447)
11445 (woman-special-characters): Add oq, cq, and hy characters.
11446
11447 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11448
11449 * window.el (window-deletable-p): Make sure window is live before
11450 invoking window-prev-buffers.
11451
11452 2011-09-08 Leo Liu <sdl.web@gmail.com>
11453
11454 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
11455
11456 2011-09-08 Juri Linkov <juri@jurta.org>
11457
11458 * progmodes/compile.el (compilation-environment): Make it
11459 a defcustom (bug#8340).
11460
11461 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11462
11463 * window.el (frame-auto-delete): Rename to window-auto-delete.
11464 Make it control auto-deletion of windows and/or frames.
11465 (window-deletable-p): New argument FORCE. Rewrite conditions
11466 for deleting window/frame. (Bug#9419)
11467 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
11468 Rewrite handling of case when window/frame can be deleted.
11469 (delete-windows-on): Call window-deletable-p with new FORCE
11470 argument t. (Bug#9456)
11471
11472 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
11473
11474 * help-mode.el (help-mode): Restore autoload.
11475
11476 2011-09-07 Juri Linkov <juri@jurta.org>
11477
11478 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
11479 `compilation-environment'. Set buffer-local
11480 `compilation-environment' to `thisenv' later after (funcall mode).
11481 (Bug#8340)
11482
11483 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
11484 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
11485 instead of replacing its value. (Bug#8340)
11486
11487 2011-09-07 Juri Linkov <juri@jurta.org>
11488
11489 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
11490 based on text properties put by `grep-filter' instead of matching
11491 escape sequences.
11492 (grep-mode): Set buffer-local `compilation-error-screen-columns'
11493 to the value of `grep-error-screen-columns' (bug#9438).
11494
11495 2011-09-07 Juri Linkov <juri@jurta.org>
11496
11497 * simple.el (next-error-highlight, next-error-highlight-no-select):
11498 Doc fix (bug#9432).
11499
11500 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
11501
11502 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11503 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
11504
11505 2011-09-07 Leo Liu <sdl.web@gmail.com>
11506
11507 * net/rcirc.el (rcirc-mode): Conditionally initialize
11508 rcirc-input-ring.
11509
11510 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
11511
11512 * emacs-lisp/find-func.el (find-function-C-source): Only set
11513 find-function-C-source-directory after checking that we found a source
11514 file there (bug#9440).
11515
11516 2011-09-06 Alan Mackenzie <acm@muc.de>
11517
11518 * isearch.el (isearch-other-meta-char): Wherever a key list is
11519 unread, "unread" the prefix arg, too. This fixes bug #8901.
11520
11521 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
11522
11523 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
11524
11525 2011-09-05 Juri Linkov <juri@jurta.org>
11526
11527 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
11528
11529 2011-09-05 Juri Linkov <juri@jurta.org>
11530
11531 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
11532 keeping point where processing of grep matches begins, and
11533 continue to delete remaining escape sequences from the same point.
11534 (grep-filter): Make leading zero optional in "0?1;31m" because
11535 git-grep emits "\033[1;31m" escape sequences unlike expected
11536 "\033[01;31m" as GNU Grep does (bug#9408).
11537 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
11538
11539 2011-09-05 Juri Linkov <juri@jurta.org>
11540
11541 * subr.el (y-or-n-p): Capitalize "yes".
11542
11543 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
11544
11545 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
11546 `tramp-cache-unload-hook' where appropriate.
11547 (tramp-methods): Rename `tramp-remote-sh' to
11548 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
11549 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
11550
11551 * net/tramp-sh.el (top): Don't require 'shell.
11552 (tramp-methods): Add `tramp-remote-shell' and
11553 `tramp-remote-shell-args' entries.
11554 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
11555 (tramp-sh-handle-shell-command): Remove.
11556 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11557 Use `tramp-remote-shell'.
11558
11559 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
11560
11561 * mail/sendmail.el (sendmail-query-once-function): Delete.
11562 (sendmail-query-once): Save directly to send-mail-function.
11563 Update message-send-mail-function too.
11564
11565 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
11566
11567 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
11568
11569 * progmodes/python.el (python-mode-map): Use correct function to
11570 start python interpreter from menu-bar (as reported by Geert
11571 Kloosterman).
11572 (inferior-python-mode-map): Fix typo.
11573 (python-shell-map): Remove.
11574
11575 2011-09-03 Deniz Dogan <deniz@dogan.se>
11576
11577 * net/rcirc.el (rcirc-print): Simplify code for
11578 rcirc-scroll-show-maximum-output. There is no need to walk
11579 through all windows to find the right one.
11580
11581 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
11582
11583 * help.el (help-return-method): Doc fix.
11584
11585 2011-09-03 Martin Rudalics <rudalics@gmx.at>
11586
11587 * window.el (window-deletable-p): Don't return a non-nil value
11588 when there's a buffer that was shown in the window before.
11589 (Bug#9419)
11590 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11591 Set window's previous buffers to nil.
11592
11593 2011-09-03 Eli Zaretskii <eliz@gnu.org>
11594
11595 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
11596 newline before and after the tag line, so it doesn't interfere
11597 with determining the paragraph direction of bidirectional text.
11598
11599 2011-09-03 Leo Liu <sdl.web@gmail.com>
11600
11601 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
11602
11603 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
11604
11605 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
11606 (pop-to-buffer): Change interactive spec. Pass second argument
11607 directly to display-buffer.
11608 (display-buffer): Fix interactive spec. Use functionp to
11609 distinguish between a function and a list of functions.
11610
11611 * abbrev.el (edit-abbrevs):
11612 * arc-mode.el (archive-extract):
11613 * autoinsert.el (auto-insert):
11614 * bookmark.el (bookmark-bmenu-list):
11615 * files.el (find-file):
11616 * view.el (view-buffer):
11617 * progmodes/compile.el (compilation-goto-locus):
11618 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
11619
11620 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
11621
11622 * window.el (display-buffer-alist): Doc fix.
11623 (display-buffer): Add docstring. Don't treat
11624 display-buffer-default specially.
11625 (display-buffer-reuse-selected-window)
11626 (display-buffer-same-window, display-buffer-maybe-same-window)
11627 (display-buffer-reuse-window, display-buffer-pop-up-frame)
11628 (display-buffer-pop-up-window)
11629 (display-buffer-reuse-or-pop-window)
11630 (display-buffer-use-some-window): New functions.
11631 (display-buffer-default-action): Use them.
11632 (display-buffer-default): Delete.
11633 (pop-to-buffer-1): Fix choice of actions.
11634
11635 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
11636
11637 * minibuffer.el (completion--insert-strings): Don't get confused by
11638 completion entries that end with an LF char.
11639
11640 2011-09-01 Eli Zaretskii <eliz@gnu.org>
11641
11642 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
11643
11644 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
11645
11646 * window.el (display-buffer): Restore interactive spec.
11647 (display-buffer-same-window, display-buffer-other-window):
11648 New functions.
11649 (pop-to-buffer-1): New function. Use the above.
11650 (pop-to-buffer, pop-to-buffer-same-window): Use it.
11651 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
11652
11653 * view.el (view-buffer-other-window, view-buffer-other-frame):
11654 Just use pop-to-buffer.
11655
11656 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11657
11658 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
11659
11660 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
11661
11662 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
11663
11664 2011-08-31 Richard Stallman <rms@gnu.org>
11665
11666 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
11667 of the separation of rmail-view-buffer from rmail-buffer.
11668 If you say no to "replace original", the decrypt is in the
11669 view buffer. If you say yes, the decrypt goes into the
11670 rmail buffer also.
11671
11672 2011-08-31 Martin Rudalics <rudalics@gmx.at>
11673
11674 * window.el (display-buffer-window): Rewrite doc-string.
11675 (display-buffer-record-window): New function.
11676 (display-buffer-macro-specifiers)
11677 (display-buffer-even-window-sizes, display-buffer-set-height)
11678 (display-buffer-set-width, display-buffer-in-window)
11679 (display-buffer-reuse-window, display-buffer-split-specifiers)
11680 (display-buffer-side-specifiers, display-buffer-split-window-1)
11681 (display-buffer-split-window, display-buffer-split-atom-window)
11682 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
11683 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
11684 (display-buffer-other-window-means-other-frame)
11685 (display-buffer-normalize-special)
11686 (display-buffer-normalize-default)
11687 (display-buffer-normalize-argument)
11688 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
11689 (display-buffer-normalize-specifiers, display-buffer-frame)
11690 (display-buffer-same-window, display-buffer-same-frame)
11691 (display-buffer-other-window)
11692 (display-buffer-same-frame-other-window)
11693 (display-buffer-other-frame, pop-to-buffer-same-window)
11694 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
11695 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
11696 (switch-to-buffer-same-frame)
11697 (switch-to-buffer-other-window-same-frame)
11698 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
11699 (display-buffer-alist-set-1, display-buffer-alist-set-2)
11700 (display-buffer-alist-set): Remove.
11701 (display-buffer-function, special-display-buffer-names)
11702 (special-display-regexps, special-display-function):
11703 In doc-string refer to display-buffer-window and quit-restore
11704 parameter.
11705 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
11706 (special-display-frame-alist, special-display-popup-frame)
11707 (same-window-buffer-names, same-window-regexps, same-window-p)
11708 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11709 (split-window-preferred-function, split-height-threshold)
11710 (split-width-threshold, window-splittable-p)
11711 (split-window-sensibly, window--try-to-split-window)
11712 (window--frame-usable-p, even-window-heights)
11713 (window--even-window-heights, window--display-buffer-1)
11714 (window--display-buffer-2, display-buffer-other-frame):
11715 Restore old Emacs 23 code, order and doc-strings where applicable.
11716 (display-buffer-default, display-buffer-assq-regexp): New functions.
11717 (display-buffer-alist): Rewrite doc-string.
11718 (display-buffer-default-action)
11719 (display-buffer-overriding-action): New variables.
11720 (display-buffer, switch-to-buffer): Rewrite.
11721 (pop-to-buffer): Restore Emacs 23 behavior but use
11722 window-normalize-buffer-to-display.
11723 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
11724 Restore Emacs 23 behavior but use
11725 window-normalize-buffer-to-switch-to.
11726 (pop-to-buffer-same-window): Rewrite.
11727 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
11728 Rewrite using Emacs 23 options.
11729
11730 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
11731
11732 * net/tramp.el (tramp-root-regexp): Remove.
11733 (tramp-completion-file-name-regexp-unified)
11734 (tramp-completion-file-name-regexp-separate)
11735 (tramp-completion-file-name-regexp-url): Don't use leading volume
11736 letter on w32 systems. (Bug#5303, Bug#9311)
11737 (tramp-drop-volume-letter): Simplify definition.
11738 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
11739
11740 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
11741
11742 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
11743 (bug#9356).
11744
11745 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
11746
11747 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
11748
11749 2011-08-29 Juri Linkov <juri@jurta.org>
11750
11751 * isearch.el (isearch-done): Don't display message "Mark saved"
11752 when arg `edit' is non-nil to prevent its flicker in the echo area.
11753
11754 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
11755
11756 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
11757 obsolete packages for deletion.
11758
11759 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
11760
11761 * help-mode.el (help-mode-map): Add special-mode-map to parent.
11762 (help-mode): Derive help-mode from special-mode. Don't invoke
11763 view-mode from help-mode.
11764 (help-xref-override-view-map): Remove.
11765 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
11766 view-mode is not used anymore.
11767
11768 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
11769
11770 * server.el (server-port): Doc fix.
11771
11772 * cus-theme.el (custom-theme-choose-mode): Inherit from
11773 special-mode (Bug#9124).
11774 (custom-theme-choose-mode-map): Add special-mode to parent.
11775
11776 2011-08-28 Alan Mackenzie <acm@muc.de>
11777
11778 * progmodes/cc-fonts.el
11779 (c-make-font-lock-BO-decl-search-function): New function.
11780 (c-basic-matchers-after - "Fontify the clauses after various
11781 keywords"): Extract the three keyword lists for the 3 erroneous
11782 constructs from the list of four, and use the new function above
11783 in place of an old one.
11784
11785 2011-08-28 Deniz Dogan <deniz@dogan.se>
11786
11787 * net/rcirc.el (rcirc-insert-prev-input)
11788 (rcirc-insert-next-input): Remove unused argument.
11789
11790 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
11791
11792 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
11793
11794 2011-08-27 Alan Mackenzie <acm@muc.de>
11795
11796 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
11797 handle function pointer parameters properly.
11798
11799 2011-08-27 Martin Rudalics <rudalics@gmx.at>
11800
11801 * window.el (display-buffer-reuse-window): Fix case where
11802 selected window was reused with non-nil OTHER-WINDOW argument.
11803 (Bug#9381)
11804
11805 2011-08-27 Deniz Dogan <deniz@dogan.se>
11806
11807 * net/rcirc.el (rcirc-check-auth-status): Adding support for
11808 oftc's NickServ messages.
11809
11810 2011-08-27 Glenn Morris <rgm@gnu.org>
11811
11812 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
11813
11814 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
11815
11816 * emacs-lisp/package.el (package-install): Call package-initialize
11817 if called interactively.
11818
11819 2011-08-26 Leo Liu <sdl.web@gmail.com>
11820
11821 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
11822
11823 2011-08-25 Juri Linkov <juri@jurta.org>
11824
11825 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
11826 `search-whitespace-regexp' (bug#9364).
11827
11828 2011-08-25 Juri Linkov <juri@jurta.org>
11829
11830 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
11831 `regexp-search-ring' to their global values to protect from
11832 updating by `read-from-minibuffer' (bug#9185).
11833
11834 2011-08-25 Juri Linkov <juri@jurta.org>
11835
11836 * textmodes/ispell.el (ispell-command-loop): Add newline
11837 at the end of the "Use option `i'..." line.
11838
11839 2011-08-25 Juri Linkov <juri@jurta.org>
11840
11841 * battery.el (display-battery-mode): If `battery-status-function'
11842 or `battery-mode-line-format' is nil, display the message and set
11843 `display-battery-mode' to nil (bug#9363).
11844
11845 2011-08-25 Eli Zaretskii <eliz@gnu.org>
11846
11847 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
11848 bidi-string-mark-left-to-right; they are unnecessary now.
11849
11850 2011-08-25 Deniz Dogan <deniz@dogan.se>
11851
11852 * net/quickurl.el: Documentation typo fixes.
11853
11854 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
11855
11856 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
11857
11858 2011-08-25 Glenn Morris <rgm@gnu.org>
11859
11860 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
11861
11862 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
11863 (smtpmail-via-smtp): Handle nil response from smtp.
11864
11865 2011-08-24 Juri Linkov <juri@jurta.org>
11866
11867 * proced.el (proced-marked): Inherit from `error' instead of
11868 `font-lock-warning-face'.
11869
11870 * ibuffer.el (ibuffer-marked-face): Change default face from
11871 `font-lock-warning-face' to `warning'.
11872 (ibuffer-deletion-face): Change default face from
11873 `font-lock-type-face' to `error'.
11874
11875 * battery.el (battery-update): Use the face `error' instead of
11876 `font-lock-warning-face' (bug#6117).
11877
11878 2011-08-24 Juri Linkov <juri@jurta.org>
11879
11880 * faces.el (success): Change face color from "Green3" to
11881 "ForestGreen" on light background (bug#9353).
11882
11883 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
11884
11885 * window.el (quit-window): Rename from quit-restore-window.
11886 Use same arglist as old quit-window.
11887 (frame-auto-delete): Doc fix.
11888
11889 * view.el (view-mode-exit): Use quit-window.
11890
11891 2011-08-24 Juri Linkov <juri@jurta.org>
11892
11893 * isearch.el (isearch-ring-adjust1): Start visiting previous
11894 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
11895 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
11896 for empty search string (when the last search string is reused
11897 automatically) to adjust the isearch ring to the last element and
11898 prepare the correct index for further M-p commands (bug#9185).
11899
11900 2011-08-24 Kenichi Handa <handa@m17n.org>
11901
11902 * international/ucs-normalize.el: If decomposition property of
11903 CHAR is the default one (i.e. a list of CHAR itself), treat it as
11904 nil.
11905 (nfd, nfkd): Likewise.
11906
11907 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
11908
11909 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
11910 from process filters aren't reliably transmitted to the surrounding
11911 accept-process-output.
11912 (mpc-proc-check): New function.
11913 (mpc-proc-sync): Use it (bug#8293)
11914
11915 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11916
11917 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
11918 Add compatibility functions (bug#9313).
11919
11920 2011-08-23 Eli Zaretskii <eliz@gnu.org>
11921
11922 * cus-start.el (all): Add entry for bidi-paragraph-direction.
11923
11924 * international/uni-bidi.el: Regenerate.
11925
11926 2011-08-23 Kenichi Handa <handa@m17n.org>
11927
11928 * international/charprop.el:
11929 * international/uni-bidi.el:
11930 * international/uni-category.el:
11931 * international/uni-combining.el:
11932 * international/uni-comment.el:
11933 * international/uni-decimal.el:
11934 * international/uni-decomposition.el:
11935 * international/uni-digit.el:
11936 * international/uni-lowercase.el:
11937 * international/uni-mirrored.el:
11938 * international/uni-name.el:
11939 * international/uni-numeric.el:
11940 * international/uni-old-name.el:
11941 * international/uni-titlecase.el:
11942 * international/uni-uppercase.el: Regenerate.
11943
11944 2011-08-23 Martin Rudalics <rudalics@gmx.at>
11945
11946 * help.el (help-window-setup): Fix message displayed when other
11947 window is reused. (Bug#9341)
11948
11949 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11950
11951 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
11952 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
11953
11954 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
11955 Mark obsolete.
11956 * shell.el (shell-parse-pcomplete-arguments): New function.
11957 (shell-completion-vars): Use it instead (bug#9160).
11958
11959 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
11960
11961 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
11962 strings and comments (bug#9333).
11963
11964 * emacs-lisp/debug.el (debug-arglist): New function.
11965 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
11966 (debug-on-entry-1): Handle interpreted closures (bug#9120).
11967
11968 2011-08-22 Juri Linkov <juri@jurta.org>
11969
11970 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11971 Revert regexp that highlights output switches to its old
11972 pre-2010-10-28 value and remove one `?' from it (bug#9319).
11973
11974 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
11975 to check for empty output (bug#9226).
11976
11977 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
11978
11979 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
11980 symbol-constituent as the default, as that stops font-lock from
11981 working properly (Bug#8843).
11982
11983 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11984
11985 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
11986 `coding-system-for-*' around the process open call to avoid
11987 auth-source side effects.
11988 (smtpmail-try-auth-methods): Expand the secret password.
11989 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
11990 probe hangs.
11991
11992 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
11993
11994 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
11995
11996 * emacs-lisp/find-func.el (find-function-noselect): New arg
11997 lisp-only.
11998
11999 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
12000 signal an error for built-in functions (Bug#6664).
12001
12002 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12003
12004 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
12005 (smtpmail-try-auth-methods): Use it.
12006
12007 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
12008
12009 * font-lock.el (font-lock-fontify-region)
12010 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
12011 (font-lock-default-unfontify-buffer)
12012 (font-lock-default-fontify-region)
12013 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
12014
12015 * progmodes/compile.el (compilation-error-properties):
12016 Fix confusion between file struct and message struct (Bug#9319).
12017 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
12018 `ant' regexp.
12019
12020 * net/browse-url.el (browse-url-firefox): Don't call
12021 browse-url-firefox-sentinel unless using -remote (Bug#9328).
12022
12023 2011-08-20 Glenn Morris <rgm@gnu.org>
12024
12025 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
12026
12027 * tutorial.el (tutorial--default-keys): Update some default bindings.
12028
12029 * files.el (hack-local-variables): Fully ignore case for "mode:".
12030
12031 2011-08-20 Alan Mackenzie <acm@muc.de>
12032
12033 Resolve invalid use of a regexp in regexp-opt.
12034
12035 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
12036 detection for a java annotation.
12037
12038 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
12039 detection for a java annotation.
12040
12041 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
12042 handling for java.
12043 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
12044
12045 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
12046
12047 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
12048 (Bug#9274).
12049
12050 2011-08-20 Alan Mackenzie <acm@muc.de>
12051
12052 Fontify CPP expressions correctly when starting in the middle of
12053 such a construct. Mainly for when jit-lock etc. starts a chunk
12054 here.
12055
12056 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
12057 variable.
12058 (c-make-font-lock-search-form): New function, extracted from
12059 c-make-font-lock-search-function.
12060 (c-make-font-lock-search-function): Use the above function.
12061 (c-make-font-lock-context-search-function): New function.
12062 (c-cpp-matchers): Enhance the preprocessor expression case with
12063 the above function
12064 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
12065 which takes an expression.
12066
12067 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
12068
12069 2011-08-20 Martin Rudalics <rudalics@gmx.at>
12070
12071 * window.el (display-buffer-reuse-window)
12072 (display-buffer-pop-up-window): Don't reuse or split a side
12073 window.
12074
12075 2011-08-19 Glenn Morris <rgm@gnu.org>
12076
12077 * files.el (hack-local-variables-prop-line, hack-local-variables):
12078 Downcase "Mode:". (Bug#9331)
12079
12080 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
12081
12082 * international/characters.el: Add L and R categories.
12083
12084 * subr.el (bidi-string-mark-left-to-right): Rename from
12085 string-mark-left-to-right. Use category search.
12086
12087 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
12088
12089 2011-08-18 Juri Linkov <juri@jurta.org>
12090
12091 * faces.el (error, warning, success): New faces with definitions
12092 copied from old default values of `font-lock-warning-face',
12093 `compilation-warning', `compilation-info' (bug#6117).
12094
12095 * font-lock.el (font-lock-warning-face): Inherit from `error'.
12096
12097 * progmodes/compile.el (compilation-error): Inherit from `error'.
12098 (compilation-warning): Inherit from `warning'.
12099 (compilation-info): Inherit from `success'.
12100
12101 * dired.el (dired-marked): Inherit from `warning'.
12102 (dired-flagged): Inherit from `error'.
12103
12104 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12105
12106 * mail/smtpmail.el (auth-source): Require to avoid problems with
12107 binding variables (bug#9298). Also clean up some unused
12108 autoloads.
12109
12110 * net/network-stream.el (network-stream-open-starttls):
12111 Support using starttls.el without using gnutls-cli.
12112
12113 2011-08-17 Juri Linkov <juri@jurta.org>
12114
12115 * progmodes/grep.el (rgrep): Handle the case when
12116 `grep-find-command' is a cons cell (bug#9278).
12117
12118 2011-08-17 Martin Rudalics <rudalics@gmx.at>
12119
12120 * window.el (display-buffer-pop-up-frame): Run frame creation
12121 function with BUFFER current (as special-display-popup-frame
12122 does). Reported by Drew Adams.
12123
12124 2011-08-17 Daiki Ueno <ueno@unixuser.org>
12125
12126 * epa-mail.el: Simplify GnuPG group expansion using
12127 epg-expand-group.
12128 (epa-mail-group-alist, epa-mail-group-modtime)
12129 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
12130 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
12131 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
12132 Remove.
12133
12134 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
12135
12136 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
12137
12138 2011-08-16 Alan Mackenzie <acm@muc.de>
12139
12140 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
12141 Correct, to avoid the inside of macros.
12142
12143 2011-08-16 Richard Stallman <rms@gnu.org>
12144
12145 * epa-mail.el: Handle GnuPG group definitions.
12146 (epa-mail-group-alist, epa-mail-group-modtime)
12147 (epa-mail-gnupg-conf-file): New variables.
12148 (epa-mail-parse-groups, epa-mail-sync-groups)
12149 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
12150 (epa-mail-expand-recipients): New functions.
12151 (epa-mail-encrypt): Call epa-mail-expand-recipients.
12152
12153 * mail/rmail.el (rmail-epa-decrypt): New command.
12154
12155 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
12156 Don't bind buffer-read-only, just inhibit-read-only.
12157 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
12158 (epa-decrypt-armor-in-region): Make error message clearer.
12159
12160 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
12161
12162 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
12163 and "a2b" to "ab" for `prefix'.
12164
12165 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
12166
12167 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
12168 filter groups.
12169 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
12170 Fourquet (Bug#8804).
12171
12172 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
12173
12174 * startup.el (argi): Declare as global variable (bug#9275).
12175
12176 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
12177
12178 * subr.el (string-mark-left-to-right): Search the entire string
12179 for RTL script, not just the terminating character. Doc fix.
12180
12181 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
12182
12183 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
12184 New function.
12185 (js--regexp-literal, js-syntax-propertize-function): Remove.
12186 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
12187 (js-mode-map): Don't rebind electric keys.
12188 (js-insert-and-indent): Remove.
12189 (js-mode): Setup electric-layout and electric-indent instead.
12190
12191 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
12192
12193 2011-08-12 Daiki Ueno <ueno@unixuser.org>
12194
12195 * epa.el (epa-progress-callback-function): Fix the logic of
12196 displaying progress.
12197 * epa-file.el (epa-file-insert-file-contents): Make progress
12198 display more user-friendly.
12199 (epa-file-write-region): Ditto.
12200
12201 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
12202
12203 * subr.el (string-mark-left-to-right): New function.
12204
12205 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
12206 Use string-mark-left-to-right.
12207 (list-buffers-noselect): Caller changed.
12208
12209 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
12210 Use string-mark-left-to-right.
12211 (tabulated-list-print): Recenter after moving point.
12212
12213 2011-08-10 Juri Linkov <juri@jurta.org>
12214
12215 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
12216 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
12217 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
12218
12219 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
12220
12221 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
12222 (Bug#7554).
12223
12224 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
12225
12226 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
12227 character. (Bug#6594)
12228
12229 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
12230
12231 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
12232 (image-dired--with-db-file): New macro.
12233 (image-dired-write-tags, image-dired-remove-tag)
12234 (image-dired-create-gallery-lists, image-dired-write-comments)
12235 (image-dired-get-comment, image-dired-mark-tagged-files)
12236 (image-dired-list-tags, image-dired-gallery-generate): Use it.
12237 (image-dired-gallery-generate): Use insert-file-contents.
12238
12239 * time.el (display-time-world-list, display-time-world-display):
12240 * time-stamp.el (time-stamp-string):
12241 * vc/add-log.el (add-change-log-entry): Use setenv instead of
12242 set-time-zone-rule (Bug#7337).
12243
12244 2011-08-08 Daiki Ueno <ueno@unixuser.org>
12245
12246 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
12247 (epg-error-to-string, epg-errors-to-string): New function.
12248 (epg-wait-for-completion): Reverse errors list.
12249 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
12250 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
12251 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
12252 (epg-sign-keys, epg-generate-key-from-file)
12253 (epg-generate-key-from-string): Format errors by using
12254 epg-errors-to-string (bug#9255).
12255 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
12256
12257 2011-08-07 Juri Linkov <juri@jurta.org>
12258
12259 * faces.el (list-faces-display): Remove extra angle bracket
12260 from `help-mode-map'.
12261
12262 * info.el (Info-history-toc-nodes): Doc fix.
12263
12264 * longlines.el (longlines-mode): Doc fix.
12265
12266 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
12267
12268 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
12269 of statements and in a few more cases (bug#9183).
12270
12271 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
12272 New functions.
12273 (cl-transform-lambda): Use them (bug#9239).
12274
12275 2011-08-05 Martin Rudalics <rudalics@gmx.at>
12276
12277 * window.el (display-buffer-same-window)
12278 (display-buffer-same-frame, display-buffer-other-window)
12279 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12280 (pop-to-buffer-other-window)
12281 (pop-to-buffer-same-frame-other-window)
12282 (pop-to-buffer-other-frame): Make them defuns.
12283 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
12284
12285 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12286
12287 * subr.el (make-composed-keymap): Move from C. Change calling
12288 convention, and improve docstring to bring attention to a subtle point.
12289 * minibuffer.el (completing-read-default): Adjust accordingly.
12290
12291 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
12292
12293 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
12294 (tramp-open-shell): Use `tramp-shell-quote-argument'.
12295
12296 * net/trampver.el: Update release number.
12297
12298 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12299
12300 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
12301 "in" (bug#9190).
12302
12303 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12304
12305 * mail/sendmail.el (sendmail-query-once): Restore the current
12306 buffer after querying (bug#9074).
12307
12308 * dired.el (dired-flagged): Use different faces for marked and
12309 flagged files (bug#6117).
12310
12311 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
12312 (bug#4433).
12313
12314 * ido.el (ido-mode): Switch off the message if called
12315 non-interactively.
12316
12317 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
12318 before 587, since it appears that that's more likely to work for
12319 more people.
12320
12321 * cus-edit.el (custom-file): When running under emacs -q, always
12322 refuse to save the customizations, even if the .emacs file doesn't
12323 exist.
12324
12325 * info.el: Remove the `Info-beginning-of-buffer' function
12326 (bug#8325).
12327
12328 * net/network-stream.el (network-stream-open-starttls):
12329 Use `starttls-available-p' to see whether starttls.el can be used.
12330
12331 2011-08-01 Martin Rudalics <rudalics@gmx.at>
12332
12333 * window.el (display-buffer-in-window): Don't set dedicated status
12334 of window here (Bug#9215).
12335 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
12336 (display-buffer-pop-up-side-window)
12337 (display-buffer-in-side-window): Set dedicated status of window here.
12338
12339 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
12340
12341 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
12342 before binding generated-autoload-file.
12343
12344 2011-08-01 Deniz Dogan <deniz@dogan.se>
12345
12346 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
12347
12348 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
12349
12350 Sync with Tramp 2.2.2.
12351
12352 * net/trampver.el: Update release number.
12353
12354 2011-07-30 Juri Linkov <juri@jurta.org>
12355
12356 * dired-aux.el (dired-touch-initial): Remove function.
12357 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
12358 current time, and `default' to the last modification time of the
12359 current marked file (bug#6887).
12360
12361 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
12362
12363 * simple.el (goto-line): Use string-to-number to provide a
12364 numeric argument to read-number (bug#9163).
12365
12366 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
12367
12368 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
12369 connection process, it could be nil.
12370
12371 2011-07-27 Leo Liu <sdl.web@gmail.com>
12372
12373 Simplify url handling in rcirc-mode.
12374
12375 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
12376 (rcirc-browse-url-at-mouse): Remove.
12377 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
12378
12379 2011-07-26 Alan Mackenzie <acm@muc.de>
12380
12381 Fontify bitfield declarations properly.
12382
12383 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
12384 (c-symbol-chars): Now exported as a lang variable.
12385 (c-not-primitive-type-keywords): New lang variable.
12386
12387 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
12388 QT keyword "more" to prevent "more slots: ...." being spuriously
12389 parsed as a bitfield declaration.
12390
12391 * progmodes/cc-engine.el (c-beginning-of-statement-1):
12392 Refactor and enhance to handle bitfield declarations.
12393 (c-punctuation-in): New function.
12394 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
12395 declarations properly.
12396
12397 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
12398
12399 * calendar/icalendar.el (icalendar--all-events): Take care of
12400 multiple vcalendars in a single file.
12401 (icalendar--convert-float-to-ical): Checkdoc fixes.
12402
12403 2011-07-25 Deniz Dogan <deniz@dogan.se>
12404
12405 * image.el (insert-image): Clarifying docstring.
12406
12407 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
12408
12409 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
12410 `tramp-send-command-and-check' if there is no error.
12411 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
12412
12413 2011-07-22 Alan Mackenzie <acm@muc.de>
12414
12415 Prevent cc-langs.elc being loaded at run time.
12416
12417 * progmodes/cc-mode.el: Remove two autoload forms which loaded
12418 cc-langs.
12419
12420 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
12421 "(require 'cc-langs)". Quote a form so it will evaluate at
12422 (cc-mode's) compilation time.
12423
12424 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
12425
12426 * net/tramp.el (tramp-file-name-handler): Avoid recursive
12427 loading. (Bug#9114)
12428
12429 2011-07-21 Martin Rudalics <rudalics@gmx.at>
12430
12431 * window.el (display-buffer-pop-up-window)
12432 (display-buffer-pop-up-side-window)
12433 (display-buffer-in-side-window): Call display-buffer-set-height
12434 and display-buffer-set-width after setting the new window's
12435 buffer so `fit-window-to-buffer' and friends work on the right buffer.
12436
12437 2011-07-20 Sam Steingold <sds@gnu.org>
12438
12439 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
12440 (etags-tags-included-tables): Call `convert-standard-filename' on
12441 the file names contained in TAGS so that windows Emacs can handle
12442 TAGS files created by cygwin ctags.
12443
12444 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12445
12446 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
12447 which apparently didn't work.
12448
12449 2011-07-19 Roland Winkler <winkler@gnu.org>
12450
12451 * proced.el (proced-send-signal): For *Marked Processes* buffer
12452 put point at beginning of buffer.
12453
12454 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
12455
12456 * proced.el (proced-format): Make header lines align with the text
12457 (bug#1779).
12458
12459 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12460
12461 * view.el (view-buffer): Allow running in `special' modes if we're
12462 visiting a file (bug#8615).
12463
12464 2011-07-19 Martin Rudalics <rudalics@gmx.at>
12465
12466 * window.el (display-buffer-alist-of-strings-p)
12467 (display-buffer-alist-set-1, display-buffer-alist-set-2):
12468 New functions.
12469 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
12470 more accurately.
12471
12472 2011-07-18 Alan Mackenzie <acm@muc.de>
12473
12474 Fontify declarators properly when, e.g., a jit-lock chunk begins
12475 inside a declaration.
12476
12477 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
12478
12479 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
12480 New function.
12481 (c-complex-decl-matchers): Insert reference to
12482 c-font-lock-enclosing-decls.
12483
12484 * progmodes/cc-engine.el (c-backward-single-comment):
12485 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
12486 to nil around calls to (forward-comment -1).
12487
12488 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12489
12490 * image.el (put-image): Doc typo fix.
12491
12492 * progmodes/etags.el (tags-search): Doc typo fix.
12493
12494 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
12495 password if we get errors 550 to 554.
12496
12497 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
12498
12499 * net/gnutls.el (gnutls-log-level): Remove.
12500
12501 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
12502 indentation character (bug#6380).
12503
12504 * files.el (buffer-offer-save): Made permanently local (bug#6241).
12505
12506 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
12507 to clarify what the problem is (bug#4291).
12508
12509 * simple.el (current-kill): Clarify what
12510 `interprogram-paste-function' does (bug#7500).
12511 (auto-fill-mode): Document `auto-fill-function' in relation to
12512 `auto-fill-mode' (bug#2470).
12513
12514 2011-07-16 Lawrence Mitchell <wence@gmx.li>
12515
12516 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
12517 method if slot is read-only (bug#9035).
12518
12519 2011-07-16 Martin Rudalics <rudalics@gmx.at>
12520
12521 * frame.el (select-frame-set-input-focus): New argument NORECORD.
12522 * window.el (pop-to-buffer): Select window used even if it was
12523 selected before, see discussion of (Bug#8615), (Bug#6954).
12524 Pass argument NORECORD on to select-frame-set-input-focus.
12525
12526 2011-07-15 Glenn Morris <rgm@gnu.org>
12527
12528 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
12529 Respect help-form.
12530
12531 2011-07-09 Lawrence Mitchell <wence@gmx.li>
12532
12533 * net/gnutls.el (gnutls-min-prime-bits): New variable.
12534 (gnutls-negotiate): Use it.
12535
12536 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12537
12538 * net/gnutls.el (gnutls-negotiate):
12539 Upcase `gnutls-algorithm-priority'.
12540
12541 2011-07-15 Glenn Morris <rgm@gnu.org>
12542
12543 * jka-compr.el (jka-compr-verbose): Move from here...
12544 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
12545 Add missing :version tag.
12546 * info.el: No need to require jka-compr when compiling.
12547
12548 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12549
12550 * net/gnutls.el (gnutls-algorithm-priority): New variable.
12551 (gnutls-negotiate): Use it.
12552
12553 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
12554
12555 * info.el (Info-beginning-of-buffer): New command.
12556 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
12557 announcing `b' as the key (bug#8325).
12558 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
12559
12560 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
12561
12562 * international/mule-cmds.el
12563 (describe-specified-language-support): Make the error message
12564 clearer (bug#8905).
12565
12566 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
12567
12568 * isearch.el (isearch-barrier): Add a doc string, since it's
12569 mentioned in a function doc string (bug#8678).
12570
12571 2011-07-15 Martin Rudalics <rudalics@gmx.at>
12572
12573 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
12574 buffer argument (Bug#9083) and self-identifying label argument.
12575
12576 2011-07-15 Glenn Morris <rgm@gnu.org>
12577
12578 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
12579
12580 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12581
12582 * man.el (Man-fontify-manpage): Fix message when formatting the
12583 man page (bug#7929).
12584
12585 2011-07-14 Eli Zaretskii <eliz@gnu.org>
12586
12587 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
12588 argument LRM; if non-nil, append an invisible LRM character to the
12589 buffer name.
12590 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
12591 last argument non-nil, when formatting buffer names.
12592 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
12593 paragraph direction.
12594
12595 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12596
12597 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
12598 the man page name (bug#7929).
12599
12600 * image.el (put-image): Mention the `put-image' overlay property
12601 (bug#7834).
12602
12603 * scroll-bar.el (set-scroll-bar-mode): Mention that
12604 `scroll-bar-mode' lists the values (bug#7772).
12605
12606 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
12607 command (bug#7729).
12608
12609 * rect.el (apply-on-rectangle): Return the point after the last
12610 operation.
12611 (string-rectangle): Go to the point after the last operation
12612 (bug#7522).
12613
12614 * printing.el (pr-toggle-region): Clarify the documentation
12615 slightly (bug#7493).
12616
12617 * time.el (display-time-update):
12618 Allow `display-time-mail-function' to return nil (bug#7158).
12619 Fix suggested by Detlev Zundel.
12620
12621 * vc/diff.el (diff): Clarify the order the file names are read
12622 (bug#7111).
12623
12624 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
12625 the doc string (bug#7015).
12626
12627 * font-lock.el (font-lock-maximum-decoration): Mention what
12628 numeric levels mean (bug#6935).
12629
12630 * startup.el (initial-buffer-choice): Don't mention the `none'
12631 selection, which is against policy.
12632
12633 2011-07-14 Martin Rudalics <rudalics@gmx.at>
12634
12635 * window.el (display-buffer-normalize-special):
12636 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
12637
12638 2011-07-14 Eli Zaretskii <eliz@gnu.org>
12639
12640 * subr.el (version<, version<=, version=): Mention "-CVS" and
12641 "-12345" alpha version numbers.
12642
12643 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
12644
12645 * bindings.el: Add advertised binding for set-mark-command
12646 (Bug#5772).
12647
12648 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
12649
12650 * bindings.el (mode-line-other-buffer):
12651 * bookmark.el (bookmark-bmenu-2-window):
12652 * bs.el (bs-cycle-next, bs-cycle-previous):
12653 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
12654 switch-to-buffer.
12655
12656 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
12657 Delete.
12658
12659 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
12660
12661 * follow.el (follow-debug-message, follow-redisplay):
12662 * jka-cmpr-hook.el (with-auto-compression-mode):
12663 Fix typos in docstrings.
12664
12665 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12666
12667 * subr.el (with-silent-modifications): Clarify somewhat what the
12668 macro inhibits (bug#6525).
12669
12670 * simple.el (eval-expression): Note what it does if called
12671 interactively (bug#6495).
12672
12673 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
12674
12675 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
12676 Use pop-to-buffer buffer-or-name if it is nil.
12677
12678 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12679 Remove switch-to-buffer.
12680
12681 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12682
12683 * files.el (make-directory): Clarify that an error will be raised
12684 if there's an error (bug#6397).
12685
12686 * startup.el (initial-buffer-choice): Add `none' as a choice
12687 (bug#6234).
12688
12689 * subr.el (add-hook): Clarify section about buffer-local hooks
12690 (bug#6218).
12691
12692 * dired.el (dired-flagged): Clarify doc string (bug#6117).
12693
12694 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
12695
12696 * tabify.el (untabify): Preserve the current column so that point
12697 doesn't move (bug#6032).
12698
12699 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12700
12701 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
12702 Rewrite to avoid awkward possessive "s" (bug#5986).
12703
12704 2011-07-13 Glenn Morris <rgm@gnu.org>
12705
12706 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
12707 (dired-insert-directory): Give a message the first time
12708 if ls is found not to support --dired.
12709
12710 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12711
12712 * simple.el (toggle-truncate-lines): Clarify what is toggled
12713 (bug#5580). Text by Drew Adams.
12714
12715 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
12716
12717 * simple.el (blink-matching-open): Make the error message from the
12718 last change less verbose.
12719
12720 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
12721
12722 * font-lock.el (font-lock-comment-face): Use the high contrast
12723 "yellow" color for font-lock-comment-face on low color terminals
12724 using a dark background color (bug#4221).
12725
12726 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12727
12728 * dired.el (dired-insert-set-properties): Make the doc string
12729 reflect what it does now (bug#5325).
12730
12731 * simple.el (blink-matching-open): Say that we were unable to find
12732 the match within the limit, if we're limited (bug#5122).
12733
12734 * international/mule-cmds.el (prefer-coding-system): Add an
12735 example (bug#4869).
12736
12737 * progmodes/etags.el (tags-search): Document `file-list-form'
12738 (bug#4731).
12739
12740 2011-07-13 Lawrence Mitchell <wence@gmx.li>
12741
12742 * net/browse-url.el (browse-url-default-browser)
12743 (browse-url-browser-function): Make the default browser choice a
12744 bit more logical (bug#4300). Also clean up the doc string.
12745
12746 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
12747
12748 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
12749 binary endings (bug#4440).
12750
12751 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12752
12753 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
12754 which can be pretty annoying (bug#8971).
12755
12756 * jka-compr.el (jka-compr-verbose): New variable, and use
12757 throughout (bug#8971).
12758
12759 * info.el (Info-find-file): Fall back on the installation
12760 directory if we can't find the info node anywhere else.
12761
12762 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
12763
12764 * vc/vc.el (vc-revert-file):
12765 Don't set file time-stamp in the past. (Bug#5181)
12766
12767 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12768
12769 * files.el (after-find-file): Give a better error message when
12770 trying to find a symlink that points to a file that doesn't exist
12771 (bug#4398).
12772
12773 * progmodes/cc-vars.el: Remove (probably) misleading comment
12774 (bug#4396).
12775
12776 2011-07-12 Johan Bockgård <bojohan@gnu.org>
12777
12778 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
12779
12780 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
12781
12782 * mouse-sel.el: Hack restoring functionality, while keeping
12783 compatibility with 2010-07-03 changes to mouse selection.
12784 (mouse-sel-primary-overlay): New var.
12785 (mouse-sel-selection-alist): Use it.
12786 (mouse-sel-mode): Doc fix; remove points that are default features
12787 of mouse.el.
12788
12789 2011-07-12 Johan Bockgård <bojohan@gnu.org>
12790
12791 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12792 Fix previous fix (bug#2490).
12793
12794 2011-07-12 Roland Winkler <winkler@gnu.org>
12795
12796 * textmodes/bibtex.el (bibtex-initialize):
12797 Use pop-to-buffer-same-window.
12798 (bibtex-search-entries): Fix interactive call.
12799
12800 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12801
12802 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12803 Fontise bytecomp Error lines more correctly (bug#2490).
12804 Fix suggested by Johan Bockgård.
12805
12806 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
12807
12808 * dired-x.el (dired-guess-default): Use `delete-dups'.
12809
12810 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
12811
12812 * dired.el (dired-mark-prompt):
12813 * dired-aux.el (dired-read-shell-command): Doc fix.
12814
12815 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12816
12817 * mail/sendmail.el (sendmail-query-once):
12818 Use `customize-save-variable' unconditionally, now that it works under
12819 emacs -Q.
12820
12821 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
12822
12823 * cus-edit.el (custom-file): Take an optional no-error variable.
12824 (customize-save-variable): Set the variable, and give a warning if
12825 running under "emacs -q".
12826
12827 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
12828
12829 * loadhist.el (unload-feature-special-hooks):
12830 Add `auto-coding-functions', `fill-nobreak-predicate' and
12831 `find-directory-functions' (bug#5327).
12832
12833 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12834
12835 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
12836
12837 * cus-edit.el (custom-guess-name-alist): -alist variables should
12838 use the `alist' type (bug#3120). Suggested by Drew Adams.
12839
12840 * printing.el: Add documentation to all the `pr-toggle-' commands.
12841
12842 2011-07-11 Leo Liu <sdl.web@gmail.com>
12843
12844 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
12845 backends where it makes sense (bug#2623).
12846
12847 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12848
12849 * dired-x.el (dired-guess-default): Remove duplicate shell command
12850 entries (bug#2028).
12851 (dired-guess-default): Fix grammar in doc string (bug#2028).
12852 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
12853
12854 * subr.el (remove-duplicates): New conveniency function.
12855
12856 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12857
12858 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
12859 (bug#1526).
12860
12861 2011-07-10 Martin Rudalics <rudalics@gmx.at>
12862
12863 * window.el (display-buffer-normalize-default): Don't invert
12864 meaning of even-window-heights. Reported by Eli Zaretskii
12865 <eliz@gnu.org>.
12866
12867 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
12868
12869 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
12870
12871 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
12872
12873 * window.el (display-buffer): Fix arguments to
12874 display-buffer-reuse-window in last change.
12875
12876 * faces.el (link): Use a less saturated blue on light backgrounds.
12877
12878 * startup.el (fancy-startup-text, fancy-about-text)
12879 (fancy-startup-tail): Use font-lock faces, for background safety.
12880
12881 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
12882
12883 * emulation/viper-cmd.el (viper-change-state-to-vi):
12884 Limit triggering of abbrev expansion (Bug#9038).
12885
12886 2011-07-09 Martin Rudalics <rudalics@gmx.at>
12887
12888 * window.el (display-buffer-default-specifiers): Remove.
12889 (display-buffer-macro-specifiers): Remove default specifiers.
12890 (display-buffer-alist): Default to nil.
12891 (display-buffer-reuse-window): New optional argument other-window.
12892 (display-buffer-pop-up-window): Allow splitting internal
12893 windows. Check whether a live window was created.
12894 (display-buffer-other-window-means-other-frame)
12895 (display-buffer-normalize-arguments): Rename to
12896 display-buffer-normalize-argument and rewrite. Set the
12897 other-window specifier.
12898 (display-buffer-normalize-special): New function.
12899 (display-buffer-normalize-options): Rename to
12900 display-buffer-normalize-default and rewrite.
12901 (display-buffer-normalize-options-inhibit): Remove.
12902 (display-buffer-normalize-specifiers): Rewrite.
12903 (display-buffer): Process other-window specifier and call
12904 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
12905 more faithfully.
12906 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
12907 (display-buffer-alist-set): Don't handle 'unset default values.
12908 (display-buffer-in-window, display-buffer-alist-set):
12909 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
12910 <tassilo@member.fsf.org>.
12911
12912 2011-07-09 Leo Liu <sdl.web@gmail.com>
12913
12914 * register.el (insert-register): Restore accidental change on
12915 2011-06-26. (Bug#9028)
12916
12917 2011-07-09 Glenn Morris <rgm@gnu.org>
12918
12919 * subr.el (remq): Handle the empty list. (Bug#9024)
12920
12921 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
12922
12923 * mail/sendmail.el (send-mail-function): No longer delay custom
12924 initialization.
12925 * custom.el (custom-initialize-delay): Doc fix.
12926
12927 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12928
12929 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
12930
12931 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
12932
12933 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
12934 human-friendly prompt.
12935
12936 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12937
12938 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
12939 provided by a particular plugin.
12940
12941 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
12942
12943 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
12944 save customizations (with "emacs -Q"), just set the variable
12945 instead of erroring out.
12946
12947 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
12948
12949 2011-07-08 Juri Linkov <juri@jurta.org>
12950
12951 * arc-mode.el (archive-zip-expunge, archive-zip-update)
12952 (archive-zip-update-case): Use 7z if found by `executable-find'.
12953 The order of searching the available programs is the same as in
12954 `archive-zip-extract' (bug#8968).
12955
12956 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12957
12958 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
12959 (menu-bar-options-menu): Tweak descriptions.
12960
12961 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12962
12963 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
12964 menu items into verb phrases (bug#1421). Also refill to fit under
12965 80 columns.
12966
12967 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12968
12969 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
12970 (Info-read-node-name): Doc fix (Bug#1084).
12971
12972 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
12973 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
12974 (end-of-sexp, beginning-of-sexp)
12975 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
12976 (forward-symbol, forward-same-syntax, word-at-point)
12977 (sentence-at-point): Doc fix (Bug#1144).
12978
12979 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12980
12981 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
12982 should cover it (bug#1281).
12983
12984 * cus-edit.el (custom-show): Mark as obsolete.
12985
12986 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12987 negotiation fails, then possibly try again with a non-encrypted
12988 connection (bug#9017).
12989
12990 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
12991 be used.
12992
12993 2011-07-07 Richard Stallman <rms@gnu.org>
12994
12995 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
12996 property, and handle its changed format.
12997 Look for the correct line number.
12998 Use file's line contents (but not past first =) to find
12999 correct line in message.
13000
13001 2011-07-07 Kenichi Handa <handa@m17n.org>
13002
13003 * international/characters.el (build-unicode-category-table):
13004 Delete it.
13005 (unicode-category-table): Set it by unicode-property-table-internal.
13006
13007 * international/mule-cmds.el (char-code-property-alist): Move to
13008 to src/chartab.c.
13009 (get-char-code-property): Call unicode-property-table-internal to
13010 load a file. Call get-unicode-property-internal where necessary.
13011 (put-char-code-property): Call unicode-property-table-internal to
13012 load a file. Call put-unicode-property-internal where necessary.
13013 put-unicode-property-internal where necessary.
13014 (char-code-property-description):
13015 Call unicode-property-table-internal to load a file.
13016
13017 * international/charprop.el:
13018 * international/uni-bidi.el:
13019 * international/uni-category.el:
13020 * international/uni-combining.el:
13021 * international/uni-comment.el:
13022 * international/uni-decimal.el:
13023 * international/uni-decomposition.el:
13024 * international/uni-digit.el:
13025 * international/uni-lowercase.el:
13026 * international/uni-mirrored.el:
13027 * international/uni-name.el:
13028 * international/uni-numeric.el:
13029 * international/uni-old-name.el:
13030 * international/uni-titlecase.el:
13031 * international/uni-uppercase.el: Regenerate.
13032
13033 * loadup.el: Load international/charprop.el before
13034 international/characters.
13035
13036 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
13037
13038 * window.el (next-buffer, previous-buffer): Signal an error if
13039 called from a minibuffer window.
13040
13041 * bindings.el: Revert 2011-07-04 change.
13042
13043 2011-07-06 Richard Stallman <rms@gnu.org>
13044
13045 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
13046 (rmail-mime-insert-bulk, rmail-mime-insert-text):
13047 Treat markers like ints.
13048 (rmail-mime-entity): Doc fix.
13049
13050 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13051
13052 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
13053 defcustom again for backwards compatibility.
13054
13055 * simple.el (shell-command-on-region): Fill.
13056
13057 * dired-aux.el (dired-kill-line): Add a doc string.
13058
13059 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
13060 to "\\sw\\|\\s_" (bug#358).
13061
13062 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
13063 (dired-unmark-backward): Ditto.
13064 (dired-flag-backup-files): Ditto.
13065
13066 * dired-x.el (dired-mark-sexp): Ditto.
13067
13068 2011-07-06 Richard Stallman <rms@gnu.org>
13069
13070 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
13071 (rmail-mime-entity): New arg TRUNCATED.
13072 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
13073 New functions.
13074 (rmail-mime-save): Warn if entity is truncated.
13075 (rmail-mime-toggle-hidden): Likewise, for showing.
13076 (rmail-mime-process-multipart): Record when an entity is truncated.
13077
13078 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
13079 if ENTITY is a string.
13080
13081 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13082
13083 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
13084 of faces when `M-C-x'-ing their definitions (bug#8378).
13085 Also clean up the code slightly.
13086
13087 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
13088 because that makes the colors go away.
13089
13090 * mail/sendmail.el (send-mail-function): Change the default to
13091 `sendmail-query-once'.
13092 (sendmail-query-once): Add an autoload cookie.
13093
13094 * net/network-stream.el (network-stream-open-starttls): Try using
13095 a plain connection even if the server offered STARTTLS, and we
13096 kinda wanted to use it, if Emacs doesn't have any STARTTLS
13097 capability. This should make smtpmail.el work in slightly more
13098 configurations.
13099
13100 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
13101
13102 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
13103 New defun.
13104 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
13105
13106 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
13107
13108 * progmodes/sql.el: Version 3.0
13109 (sql-product-alist): Add product :completion-object,
13110 :completion-column, and :statement attributes.
13111 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
13112 (sql-mode-syntax-table): Mark all punctuation.
13113 (sql-font-lock-keywords-builder): Temporarily remove fallback on
13114 ansi keywords.
13115 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
13116 (sql-mode-oracle-font-lock-keywords): Improve.
13117 (sql-oracle-show-reserved-words): New function for development.
13118 (sql-product-font-lock): Simplify for source code buffers.
13119 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
13120 New functions.
13121 (sql-highlight-product): Set product specific syntax table.
13122 (sql-mode-map): Add statement movement functions.
13123 (sql-ansi-statement-starters, sql-oracle-statement-starters):
13124 New variable.
13125 (sql-statement-regexp, sql-beginning-of-statement)
13126 (sql-end-of-statement, sql-signum): New functions.
13127 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
13128 (sql-show-sqli-buffer): Bug fix.
13129 (sql-interactive-mode): Store connection data as buffer local.
13130 (sql-connect): Add NEW-NAME parameter. Redesign interaction
13131 with sql-interactive-mode.
13132 (sql-save-connection): Save buffer local settings.
13133 (sql-connection-menu-filter): Change menu entry name.
13134 (sql-product-interactive): Bug fix.
13135 (sql-preoutput-hold): New variable.
13136 (sql-interactive-remove-continuation-prompt): Bug fixes.
13137 (sql-debug-redirect): New variable.
13138 (sql-str-literal): New function.
13139 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
13140 Redesign.
13141 (sql-oracle-save-settings, sql-oracle-restore-settings)
13142 (sql-oracle-list-all, sql-oracle-list-table): New functions.
13143 (sql-completion-object, sql-completion-column)
13144 (sql-completion-sqlbuf): New variables.
13145 (sql-build-completions-1, sql-build-completions)
13146 (sql-try-completion): New functions.
13147 (sql-read-table-name): Use them.
13148 (sql-contains-names): New buffer local variable.
13149 (sql-list-all, sql-list-table): Use it.
13150 (sql-oracle-completion-types): New variable.
13151 (sql-oracle-completion-object, sql-sqlite-completion-object)
13152 (sql-postgres-completion-object): New functions.
13153
13154 2011-07-06 Glenn Morris <rgm@gnu.org>
13155
13156 * window.el (pop-to-buffer): Doc fix.
13157
13158 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
13159
13160 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
13161
13162 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
13163
13164 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
13165
13166 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
13167
13168 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
13169
13170 * button.el (button): Inherit from link face. Suggested by Dan
13171 Nicolaescu.
13172
13173 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13174
13175 * progmodes/gdb-mi.el: Fit in 80 columns.
13176 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
13177 switch-to-buffer.
13178
13179 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
13180 if imenu is simply not configured (bug#8941).
13181
13182 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
13183
13184 * allout.el (allout-post-undo-hook): New allout outline-change
13185 event hook to signal undo activity.
13186 (allout-post-command-business): Run allout-post-undo-hook if an
13187 undo just occurred.
13188 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
13189 * allout-widgets.el (allout-widgets-after-undo-function):
13190 Ensure the integrity of the current item's decoration after it has been
13191 in the vicinity of an undo.
13192 (allout-widgets-mode): Include allout-widgets-after-undo-function
13193 on the new allout-post-undo-hook.
13194
13195 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13196
13197 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
13198 Let define-derived-mode define it.
13199 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
13200 cycles of abbrev-table inheritance (bug#8998).
13201
13202 2011-07-05 Roland Winkler <winkler@gnu.org>
13203
13204 * textmodes/bibtex.el: Add support for biblatex.
13205 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
13206 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
13207 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
13208 (bibtex-entry-alist, bibtex-field-alist): New variables.
13209 (bibtex-entry-field-alist): Obsolete alias for
13210 bibtex-BibTeX-entry-alist.
13211 (bibtex-entry-alist, bibtex-field-alist): New widgets.
13212 (bibtex-set-dialect): New command.
13213 (bibtex-entry-type, bibtex-entry-head)
13214 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
13215 Bind via bibtex-set-dialect.
13216 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
13217 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
13218 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
13219 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
13220 Define via bibtex-set-dialect.
13221 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
13222 Obey bibtex-no-opt-remove-re.
13223 (bibtex-vec-push, bibtex-vec-incr): New functions.
13224 (bibtex-format-entry, bibtex-field-list)
13225 (bibtex-print-help-message, bibtex-validate)
13226 (bibtex-search-entries): Use new format of bibtex-entry-alist.
13227
13228 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13229
13230 * progmodes/compile.el (compilation-goto-locus):
13231 * net/tramp-cmds.el (tramp-append-tramp-buffers):
13232 * bs.el (bs-cycle-next, bs-cycle-previous):
13233 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
13234 * bindings.el (mode-line-other-buffer):
13235 * autoinsert.el (auto-insert):
13236 * arc-mode.el (archive-extract):
13237 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
13238
13239 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13240
13241 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
13242 Fix check of `emacs-lock-unlockable-modes'.
13243 Coerce true values of `emacs-lock--try-unlocking' to t.
13244
13245 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13246
13247 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
13248 * emacs-lock.el: New file.
13249
13250 2011-07-05 Julien Danjou <julien@danjou.info>
13251
13252 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
13253 than `boundp' to check if face is set.
13254
13255 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13256
13257 * register.el (registerv-make):
13258 * window.el (window-min-height): Fix typos in docstrings.
13259
13260 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
13261
13262 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
13263 Update doc string.
13264
13265 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13266
13267 * server.el (server-execute): Catch quit and call
13268 `server-return-error' to pass the error back to emacsclient and
13269 close the connection (bug#8942).
13270
13271 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
13272
13273 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
13274 insecure exception for current topic. Also note that auto-saves
13275 are handled differently.
13276
13277 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13278 State variables for tracking auto-save inhibition situation.
13279
13280 (allout-write-contents-hook-handler): Rename from
13281 'allout-write-file-hook-handler', and describe how it depends on
13282 write-contents-functions sensitivity to non-nil value to prevent
13283 file write.
13284
13285 (allout-auto-save-hook-handler): Remove. auto-save does not check
13286 this in individual buffers, only in the starting buffer, so this
13287 is not the right way for us to inhibit auto-save in a buffer
13288 according to its condition.
13289
13290 (allout-mode): Use new allout-write-contents-hook-handler, and
13291 only with write-contents-functions. Remove auto-save provisions -
13292 they're implemented elsewhere.
13293
13294 (allout-before-change-handler): If undo is in progress, note that
13295 for attention of allout-post-command-business.
13296
13297 (allout-post-command-business): If the command we're following was
13298 an undo, check for change in the status of encrypted items and
13299 adjust auto-save inhibitions accordingly.
13300
13301 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
13302 according to whether there are or aren't any plain-text topics
13303 pending encryption.
13304
13305 (allout-inhibit-auto-save-info-for-decryption):
13306 Adjust buffer-saved-size and some allout state to inhibit auto-saves
13307 if there are plain-text topics pending encryption.
13308
13309 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
13310 buffer-saved-size and some allout state to not inhibit auto-saves
13311 if there are no longer any plain-text topics pending encryption.
13312
13313 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
13314 No longer provide for exemption of the current topic.
13315
13316 2011-07-04 Juri Linkov <juri@jurta.org>
13317
13318 Add 7z operations to delete and save changed members (bug#8968).
13319 * arc-mode.el (archive-7z-expunge, archive-7z-update):
13320 New defcustoms.
13321 (archive-7z-write-file-member): New function.
13322 (archive-7z-summarize): Fix the number of dashes in the
13323 listing output.
13324
13325 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13326
13327 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
13328 (bug#8958).
13329
13330 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
13331
13332 * bindings.el: Ignore next-buffer and previous-buffer in
13333 minibuffer-local-map.
13334
13335 * font-lock.el (font-lock-builtin-face): Change light background
13336 color to dark slate blue (Bug#6693).
13337
13338 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
13339
13340 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
13341
13342 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13343
13344 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
13345 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13346 Add switch-to-buffer.
13347
13348 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13349
13350 * isearch.el (isearch-search-fun-function): Clarify further the
13351 meaning of the function returned.
13352
13353 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
13354
13355 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
13356
13357 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
13358 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
13359 Use it.
13360 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
13361 `tramp-default-remote-path' does not exist.
13362 (tramp-send-command-and-read): New optional argument NOERROR.
13363 (tramp-open-connection-setup-interactive-shell)
13364 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
13365 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
13366 (tramp-process-sentinel): Flush also process' connection property.
13367 (tramp-sh-handle-start-file-process): Do not set process
13368 sentinel. It is done now ...
13369 (tramp-maybe-open-connection): ... here. (Bug#8929)
13370
13371 2011-07-04 MON KEY <monkey@sandpframing.com>
13372
13373 * play/animate.el (animate-string): Doc fixes and allow changing
13374 the buffer name (bug#5417).
13375
13376 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13377
13378 * play/animate.el (animation-buffer-name): Rename from *animate*.
13379
13380 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
13381
13382 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
13383 This is simpler and helps future-proof the code.
13384 (timer-until): Use time-subtract and float-time.
13385 (timer--time-less-p): Use time-less-p.
13386
13387 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13388
13389 * type-break.el (timep): Use the value of `float-time' to avoid a
13390 byte-compiler warning.
13391
13392 * server.el (server-eval-and-print): Return any result, even nil.
13393
13394 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
13395
13396 * type-break.el: Accept time formats that the builtins accept.
13397 (timep, type-break-time-difference): Accept any format that
13398 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
13399 This is simpler and helps future-proof the code.
13400 (type-break-time-difference): Round rather than ignoring
13401 subseconds components.
13402
13403 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13404
13405 * info.el (Info-apropos-matches): Make non-interactive, since it
13406 doesn't seem to do anything useful as a command (bug#8829).
13407
13408 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
13409
13410 * frame.el (frame-background-mode, frame-set-background-mode):
13411 Move from faces.el.
13412 (frame-default-terminal-background): New function.
13413
13414 * custom.el (custom-push-theme): Don't record faces in `changed'
13415 theme; this doesn't work correctly for per-frame face settings.
13416 (disable-theme): Use face-set-after-frame-default to reset faces.
13417 (custom--frame-color-default): New function.
13418
13419 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13420
13421 * dired.el (dired-flagging-regexp): Remove unused variable
13422 (bug#8769).
13423
13424 2011-03-29 Kevin Ryde <user42@zip.com.au>
13425
13426 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13427 `perl-Test2' extend to match possible "fail #N" rep count
13428 (bug#8377).
13429
13430 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13431
13432 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
13433 `smtpmail-via-smtp' now returns the error instead of nil.
13434
13435 * isearch.el (isearch-search-fun-function): Clarify the doc string
13436 (bug#8101).
13437
13438 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
13439
13440 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
13441 unnecessary spaces (bug#8987).
13442
13443 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13444
13445 * net/network-stream.el (open-network-stream): Use the
13446 :end-of-capability command thoughout.
13447
13448 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
13449
13450 * net/network-stream.el (open-network-stream): Add the
13451 :end-of-capability command parameter, used by pop3.el.
13452
13453 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13454
13455 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
13456
13457 * fringe.el (fringe-query-style): Remove redundant text " (type ?
13458 for list)" (bug#6475).
13459
13460 * files.el (file-expand-wildcards): Ignore non-readable
13461 sub-directories while trying to find matches instead of signaling
13462 an error (bug#6297).
13463
13464 * man.el (Man-reference-regexp): Allow matching possible
13465 word-wrapped references (bug#6289).
13466
13467 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
13468 for consistency with the other vc buffers (bug#6197).
13469 (vc-checkin): Ditto.
13470
13471 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
13472
13473 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
13474
13475 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13476
13477 * custom.el (defcustom): Clarify that :set is only used in the
13478 Customize user interface (bug#6089).
13479
13480 * progmodes/flymake.el (flymake-mode): If the buffer isn't
13481 associated with a file, refuse to run instead of erroring out
13482 (bug#6084).
13483
13484 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
13485 the doc string, since it appears that using `fill-column' always
13486 controls the width (bug#7845).
13487
13488 * simple.el (shell-command-on-region): Say where the error output
13489 went if `shell-command-default-error-buffer' is set (bug#6857).
13490
13491 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
13492
13493 * allout.el (allout-yank-processing): Adjust cursor position for
13494 backwards-deleted space.
13495
13496 (allout-rebullet-heading): Register changes with
13497 allout-exposure-changed-hook, so the modified topic is properly
13498 decorated.
13499
13500 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13501
13502 * minibuffer.el (completion-in-region): Document PREDICATE
13503 (bug#7136).
13504
13505 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
13506 of keyword/argument pairs (bug#6904).
13507
13508 * replace.el (multi-occur):
13509 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
13510
13511 2011-07-02 Drew Adams <drew.adams@oracle.com>
13512
13513 * dired.el (dired-mark-if): Make the message about whether it's
13514 marking or unmarking clearer (bug#8523).
13515
13516 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13517
13518 * disp-table.el (display-table-print-array): New function.
13519 (describe-display-table): Use it to print the vectors more pretty
13520 (Bug#8859).
13521
13522 2011-07-02 Martin Rudalics <rudalics@gmx.at>
13523
13524 * window.el (window-state-get-1): Don't assign clone numbers.
13525 Add clone-of item to list of window parameters.
13526 (window-state-put-2): Don't process clone numbers.
13527 (display-buffer-alist): Fix doc-string.
13528
13529 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
13530
13531 * subr.el (remq): Don't allocate if it's not needed.
13532 (keymap--menu-item-binding, keymap--menu-item-with-binding)
13533 (keymap--merge-bindings): New functions.
13534 (keymap-canonicalize): Use them to refine the canonicalization.
13535 * minibuffer.el (minibuffer-local-completion-map)
13536 (minibuffer-local-must-match-map): Move initialization from C.
13537 (minibuffer-local-filename-completion-map): Move initialization from C;
13538 don't inherit from anything here.
13539 (minibuffer-local-filename-must-match-map): Make obsolete.
13540 (completing-read-default): Use make-composed-keymap to combine
13541 minibuffer-local-filename-completion-map with either
13542 minibuffer-local-must-match-map or
13543 minibuffer-local-filename-completion-map.
13544
13545 2011-07-01 Glenn Morris <rgm@gnu.org>
13546
13547 * type-break.el (type-break-time-sum): Use dolist.
13548
13549 * textmodes/flyspell.el (flyspell-word-search-backward):
13550 Replace CL function.
13551
13552 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
13553
13554 * mouse.el (mouse--strip-first-event): New function.
13555 (function-key-map): Use it to map fringe clicks to normal clicks
13556 by default.
13557
13558 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
13559 (vc-bzr-revision-completion-table): Add support for annotate and date.
13560
13561 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
13562 inherit from parent.
13563
13564 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13565
13566 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
13567 (dired-show-file-type): Doc fixup (bug#8818).
13568
13569 * dired.el (dired-mode): Fix up the doc string as suggested by
13570 Drew Adams (bug#8817).
13571
13572 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
13573 cookie, since the manual says that it should be possible to add
13574 this function to `find-file-hook' (bug#8709).
13575
13576 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
13577
13578 * progmodes/cfengine.el: Moved all cfengine3.el functionality
13579 here. Noted Ted Zlatanov as the maintainer.
13580 (cfengine-common-settings, cfengine-common-syntax): New functions
13581 to set up common things between `cfengine-mode' and
13582 `cfengine3-mode'.
13583 (cfengine3-mode): New mode.
13584 (cfengine3-defuns cfengine3-defuns-regex
13585 (cfengine3-class-selector-regex cfengine3-category-regex)
13586 (cfengine3-vartypes cfengine3-font-lock-keywords)
13587 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
13588 (cfengine3-indent-line): Add from cfengine3.el.
13589
13590 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
13591
13592 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
13593
13594 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
13595
13596 2011-07-01 Martin Rudalics <rudalics@gmx.at>
13597
13598 * window.el (same-window-buffer-names, same-window-regexps)
13599 (same-window-p, special-display-frame-alist)
13600 (special-display-popup-frame, special-display-function)
13601 (special-display-buffer-names, special-display-regexps)
13602 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
13603 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
13604 (split-window-preferred-function, split-height-threshold)
13605 (split-width-threshold, even-window-heights)
13606 (display-buffer-mark-dedicated, window-splittable-p)
13607 (split-window-sensibly, window-safely-shrinkable-p):
13608 Un-obsolete.
13609 (display-buffer): Don't spread args with function specifier
13610 because special-display-popup-frame won't like it.
13611
13612 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
13613
13614 Time-stamp simplifications and fixes.
13615 These improve accuracy slightly, and future-proof the code
13616 against some potential changes to current-time format.
13617
13618 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
13619 by using time-since and float-time.
13620
13621 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
13622 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
13623 + NNN microseconds".
13624
13625 * type-break.el (type-break-time-sum): Rewrite using time-add.
13626
13627 * play/hanoi.el (hanoi-current-time-float): Remove.
13628 All uses replaced by float-time.
13629
13630 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
13631 This yields a more-accurate answer.
13632 (rng-time-to-float): Remove; no longer needed.
13633
13634 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
13635
13636 * calendar/timeclock.el (timeclock-seconds-to-time):
13637 Defalias to seconds-to-time, since they're the same thing.
13638
13639 * emacs-lisp/elp.el (elp-elapsed-time):
13640 * emacs-lisp/benchmark.el (benchmark-elapse):
13641 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
13642
13643 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
13644
13645 * window.el (bury-buffer): Don't iconify the only frame.
13646 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
13647 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
13648
13649 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
13650
13651 * eshell/em-smart.el (eshell-smart-display-navigate-list):
13652 Add mouse-yank-primary.
13653
13654 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
13655
13656 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
13657
13658 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
13659
13660 * emacs-lisp/find-func.el (find-library--load-name): New fun.
13661 (find-library-name): Use it to find relative load names when provided
13662 absolute file name (bug#8803).
13663
13664 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
13665
13666 * textmodes/flyspell.el (flyspell-word): Consider words that
13667 differ only in case as potential doublons (bug#5687).
13668
13669 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
13670 Remove two rather uninteresting debugging-like messages to make
13671 debbugs.el more silent.
13672
13673 * comint.el (comint-password-prompt-regexp): Accept "Response" as
13674 a password-like phrase.
13675
13676 2011-06-30 Masatake YAMATO <yamato@redhat.com>
13677
13678 * progmodes/cc-guess.el: New file.
13679
13680 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
13681
13682 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
13683 derived from `c-basic-common-init'.
13684
13685 * progmodes/cc-mode.el (top-level): Require cc-guess.
13686 (c-basic-common-init): Use `cc-choose-style-for-mode'.
13687
13688 2011-06-30 Lawrence Mitchell <wence@gmx.li>
13689
13690 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
13691
13692 2011-06-30 Alan Mackenzie <acm@muc.de>
13693
13694 * progmodes/cc-engine.el (c-guess-continued-construct):
13695 Correct the handling of template-args-cont, particularly for when font
13696 lock is disabled. Name this case as "CASE G".
13697
13698 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
13699
13700 * allout.el (allout-yank-processing): Fix injection of extra space
13701 between bullet and non-whitespace character in first topic when
13702 pasting, ensuring that the actual spacing in the pasted topic
13703 following the bullet char is preserved. This extra space was
13704 causing pasted encrypted topics to get a decrypted status even
13705 when the content was actually still encrypted. Now the decryption
13706 status from before the paste is preserved.
13707
13708 (allout-flag-region): Set all allout overlays so they evaporate
13709 when reduced to zero length (evanescent), to prevent overlay
13710 leakage.
13711
13712 2011-06-30 Glenn Morris <rgm@gnu.org>
13713
13714 * w32-fns.el (w32-charset-info-alist): Declare.
13715
13716 * find-dired.el (find-grep-options): Simplify.
13717
13718 * term/ns-win.el (ns-set-resource): Declare.
13719
13720 * ses.el (row, col): Declare dynamic variables honestly.
13721
13722 * textmodes/reftex-parse.el (index-tags): Declare.
13723
13724 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
13725
13726 * cus-edit.el (customize-push-and-save): New function.
13727
13728 * files.el (hack-local-variables-confirm): Use it.
13729
13730 * custom.el (load-theme): New arg NO-CONFIRM.
13731 Use customize-push-and-save (Bug#8720).
13732 (custom-enabled-themes): Doc fix.
13733
13734 * cus-theme.el (customize-create-theme)
13735 (custom-theme-merge-theme): Callers to load-theme changed.
13736
13737 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
13738
13739 * thingatpt.el (thing-at-point-short-url-regexp): Require that
13740 short URLs have at least one dot in them (bug #7614).
13741
13742 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
13743 nil, because using a pty is apparently too slow (bug #895).
13744
13745 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
13746
13747 * mail/sendmail.el (sendmail-query-once): New function.
13748 (sendmail-query-once-function): New variable.
13749
13750 2011-06-29 Glenn Morris <rgm@gnu.org>
13751
13752 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
13753
13754 * ses.el (top-level): Require cl when compiling.
13755 (ses-set-localvars): Fix error statement.
13756 Call it at compile time to silence a storm of warnings.
13757
13758 2011-06-29 Martin Rudalics <rudalics@gmx.at>
13759
13760 * window.el (normalize-live-buffer): Rename to
13761 window-normalize-buffer.
13762 (normalize-live-frame): Rename to window-normalize-frame.
13763 (normalize-any-window): Rename to window-normalize-any-window.
13764 (normalize-live-window): Rename to window-normalize-live-window.
13765 (make-window-atom): Rename to window-make-atom.
13766 (window-resize-reset): Rename to window--resize-reset.
13767 (window-resize-reset-1): Rename to window--resize-reset-1.
13768 (resize-mini-window): Rename to window--resize-mini-window.
13769 (resize-subwindows-skip-p): Rename to
13770 window--resize-subwindows-skip-p.
13771 (resize-subwindows-normal): Rename to
13772 window--resize-subwindows-normal.
13773 (resize-subwindows): Rename to window--resize-subwindows.
13774 (resize-other-windows): Rename to window--resize-siblings.
13775 (resize-this-window): Rename to window--resize-this-window.
13776 (resize-root-window): Rename to window--resize-root-window.
13777 (resize-root-window-vertically): Rename to
13778 window--resize-root-window-vertically.
13779 (normalize-buffer-to-display): Rename to
13780 window-normalize-buffer-to-display.
13781 (normalize-buffer-to-switch-to): Rename to
13782 window-normalize-buffer-to-switch-to.
13783 Correspondingly update all callers of the functions listed
13784 above.
13785 (display-buffer-alist, display-buffer-normalize-arguments)
13786 (display-buffer-normalize-options, display-buffer)
13787 (display-buffer-alist-set): Use "function" instead of
13788 "fun-with-args".
13789
13790 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
13791
13792 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
13793 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
13794 debbugs.gnu.org. Mention acknowledgment email.
13795
13796 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
13797
13798 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
13799 buffer multibyteness, since it shouldn't matter.
13800
13801 2011-06-28 Martin Rudalics <rudalics@gmx.at>
13802
13803 * window.el (display-buffer-in-side-window): Handle dedicated
13804 windows as in display-buffer-reuse-window.
13805 (display-buffer-normalize-alist): Use value of override
13806 specifier.
13807 (display-buffer-normalize-specifiers): Use value of
13808 other-window-means-other-frame specifier.
13809 (display-buffer-alist): Rewrite some texts in widgets.
13810 (display-buffer): Spread arguments when calling function
13811 specified by fun-with-args.
13812
13813 2011-06-28 Deniz Dogan <deniz@dogan.se>
13814
13815 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13816 Unnest `let'.
13817
13818 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
13819 selectors (Bug#5732).
13820 (css-proprietary-nmstart-re): Use `regexp-opt'.
13821
13822 2011-06-27 Jari Aalto <jari.aalto@cante.net>
13823
13824 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
13825 (eshell-ls-date-format): New defcustom.
13826 (eshell-ls-file): Use it.
13827
13828 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
13829
13830 * help-fns.el (describe-variable): Fix message for terminal-local vars.
13831
13832 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
13833
13834 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
13835 (ange-ftp-make-tmp-name): New arg.
13836 (ange-ftp-file-local-copy): Use it.
13837
13838 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
13839
13840 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
13841 no-conversion (Bug#8870).
13842
13843 2011-06-27 Martin Rudalics <rudalics@gmx.at>
13844
13845 * window.el (window-right, window-left, window-child)
13846 (window-child-count, window-last-child)
13847 (window-iso-combination-p, walk-window-tree-1)
13848 (window-atom-check-1, window-tree-1, delete-window)
13849 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
13850 new naming conventions - window-vchild, window-hchild,
13851 window-next and window-prev are now called window-top-child,
13852 window-left-child, window-next-sibling and window-prev-sibling
13853 respectively.
13854 (resize-window-reset): Rename to window-resize-reset.
13855 (resize-window-reset-1): Rename to window-resize-reset-1.
13856 (resize-window): Rename to window-resize.
13857 (window-min-height, window-min-width)
13858 (resize-mini-window, resize-this-window, resize-root-window)
13859 (resize-root-window-vertically, adjust-window-trailing-edge)
13860 (enlarge-window, shrink-window, maximize-window)
13861 (minimize-window, delete-window, quit-restore-window)
13862 (split-window, balance-windows, balance-windows-area-adjust)
13863 (balance-windows-area, window-state-put-2)
13864 (display-buffer-even-window-sizes, display-buffer-set-height)
13865 (display-buffer-set-width, set-window-text-height)
13866 (fit-window-to-buffer): Rename all "resize-window" prefixed
13867 calls to use the "window-resize" prefix convention.
13868 (display-buffer-alist): Fix symbol for label specifier.
13869 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
13870 corresponding specifier.
13871 Reported by Juanma Barranquero <lekktu@gmail.com>.
13872
13873 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
13874
13875 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
13876 convention.
13877 (ses-call-printer): Does not pass an empty string to formatter when the
13878 cell is empty to keep from barking printer Calc math-format-value.
13879
13880 2011-06-27 Richard Stallman <rms@gnu.org>
13881
13882 * battery.el (battery-mode-line-limit): New variable.
13883 (battery-update): Handle it.
13884
13885 * mail/rmailmm.el (rmail-mime-process-multipart):
13886 Handle truncated messages.
13887
13888 2011-06-27 Glenn Morris <rgm@gnu.org>
13889
13890 * progmodes/flymake.el (flymake-err-line-patterns):
13891 Allow for column numbers in the ant/javac pattern. (Bug#8866)
13892
13893 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
13894
13895 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
13896 (ses--clean-!, ses--clean-_): New functions.
13897 (ses-range): Add configurability of readout order, and conversion
13898 to Calc vector.
13899
13900 * ses.el (ses-repair-cell-reference-all): New function.
13901 (ses-cell-symbol): Set macro as safe, so that it can be used in
13902 formulas.
13903
13904 * ses.el: Update cycle detection algorithm.
13905 (ses-localvars): Add ses--Dijkstra-attempt-nb and
13906 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
13907 (ses-set-localvars): New function.
13908 (ses-make-cell): Add property-list as a cell element.
13909 (ses-cell-property-get-fun, ses-cell-property-get)
13910 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
13911 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
13912 New functions.
13913 (ses-cell-property-set, ses-cell-property-pop)
13914 (ses-cell-property-get-handle): New macro.
13915 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
13916 New aliases, used for code readability.
13917 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
13918 cycle detection.
13919 (ses-self-reference-early-detection): New defcustom.
13920 (ses-formula-references): Robustify against self-referring cells.
13921 (ses-mode): Use ses-set-localvars.
13922 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
13923 before lauching the update processing.
13924 (ses-initialize-Dijkstra-attempt): New function.
13925 (ses-recalculate-cell): Update for cycle detection based on
13926 Dijkstra algorithm.
13927
13928 * ses.el: Fix commenting and indenting convention.
13929
13930 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
13931
13932 * bs.el (bs-cycle-next): Complete last change.
13933
13934 2011-06-27 Drew Adams <drew.adams@oracle.com>
13935
13936 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
13937
13938 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
13939
13940 * net/network-stream.el (network-stream-open-starttls):
13941 Don't re-get capabilities unless we've reestablished connection.
13942 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
13943
13944 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
13945 to binary to possibly avoid line encoding issues on Windows (among
13946 other things).
13947
13948 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13949
13950 * net/network-stream.el (open-network-stream): Return an :error
13951 saying what the problem was, if possible.
13952
13953 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
13954 server.
13955
13956 * net/network-stream.el (network-stream-open-starttls): If we
13957 wanted to use STARTTLS, and the server offered it, but we weren't
13958 able to because we had no STARTTLS support, then close the connection.
13959 (open-network-stream): Return an :error element, if present.
13960
13961 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
13962
13963 * hl-line.el (hl-line-sticky-flag): Doc fix.
13964 (global-hl-line-sticky-flag): New option (Bug#8323).
13965 (global-hl-line-highlight): Obey it.
13966
13967 * vc/vc.el (vc-revert-show-diff): Default to t.
13968
13969 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
13970
13971 * allout-widgets.el (allout-widgets-post-command-business):
13972 Stop decorating intermediate isearch matches. They're not being
13973 undecorated when an isearch is continued past, and isearch
13974 automatically collapses them. This leads to "widget leaks", where
13975 decorated items accumulate in collapsed areas. Lines with lots of
13976 hidden widgets can slow down cursor travel, substantially.
13977 Too much complicated machinery would be needed to ensure undecoration,
13978 so we're doing without this nicety.
13979
13980 (allout-widgets-tally-string): Don't try to do a hash-table-count
13981 of allout-widgets-tally when it's nil. This eliminates spurious "Error
13982 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
13983 *Messages* when allout-widgets-maintain-tally is t.
13984
13985 2011-06-26 Martin Rudalics <rudalics@gmx.at>
13986
13987 * window.el (display-buffer-normalize-argument): Rename to
13988 display-buffer-normalize-arguments. Handle special meaning of
13989 LABEL argument. Respect special-display-function when popping up
13990 a new frame. Fix code searching for a window showing the buffer
13991 on another frame.
13992 (display-buffer-normalize-specifiers):
13993 Call display-buffer-normalize-arguments.
13994 (display-buffer-in-window): Don't undedicate the window if its
13995 buffer remains the same.
13996 Reported by Drew Adams <drew.adams@oracle.com>.
13997 (display-buffer-alist): Add choice for same-window macro
13998 specfier.
13999 (display-buffer): Mention special meaning of LABEL argument in
14000 doc-string. Fix quoting. Don't pop up a new frame even as
14001 fallback.
14002
14003 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
14004
14005 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
14006 avoid deleting the current window in some cases (bug#8911).
14007
14008 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
14009
14010 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
14011 (Bug#8934)
14012
14013 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
14014
14015 * net/network-stream.el (network-stream-open-starttls):
14016 Use built-in TLS support if `gnutls-available-p' is true.
14017 (network-stream-open-tls): Ditto.
14018
14019 2011-06-26 Leo Liu <sdl.web@gmail.com>
14020
14021 * register.el (registerv): New struct.
14022 (registerv-make): New function.
14023 (jump-to-register, describe-register-1, insert-register):
14024 Support the jump-func, print-func and insert-func slot of a registerv
14025 struct. (Bug#8415)
14026
14027 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
14028
14029 * vc/vc.el (vc-revert-show-diff): New defcustom.
14030 (vc-diff-internal): New arg specifying diff buffer.
14031 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
14032 reuse an existing *vc-diff* buffer (Bug#8927).
14033
14034 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
14035
14036 2011-06-26 Glenn Morris <rgm@gnu.org>
14037
14038 * progmodes/f90.el (f90-critical-indent): New option.
14039 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
14040 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
14041 (f90-mode): Doc fix.
14042 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
14043 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
14044 (f90-beginning-of-block, f90-next-block, f90-indent-region)
14045 (f90-match-end): Handle block, critical.
14046
14047 2011-06-25 Glenn Morris <rgm@gnu.org>
14048
14049 * calendar/diary-lib.el (diary-included-files): Doc fix.
14050 (diary-include-files): New function, extracted from
14051 diary-include-other-diary-files and diary-mark-included-diary-files.
14052 (diary-include-other-diary-files, diary-mark-included-diary-files):
14053 Just call diary-include-files.
14054 (diary-mark-entries): Reset diary-included-files on first call.
14055
14056 * calendar/diary-lib.el (diary-mark-entries)
14057 (diary-mark-included-diary-files):
14058 Visit included diary-files in temp buffers.
14059
14060 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
14061 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
14062 (f90-start-block-re, f90-imenu-generic-expression)
14063 (f90-looking-at-program-block-start, f90-no-block-limit):
14064 Add support for submodules.
14065
14066 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
14067 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
14068
14069 2011-06-25 Eli Zaretskii <eliz@gnu.org>
14070
14071 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
14072 buffer-file-type before setting its value, to avoid disastrous
14073 global effects on decoding files for DOS/Windows systems. (Bug#8780)
14074
14075 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
14076
14077 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
14078
14079 * ses.el (ses-unload-function):
14080 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
14081
14082 * proced.el (proced-unload-function):
14083 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
14084
14085 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
14086
14087 * server.el (server-create-window-system-frame): Add parameters arg.
14088 (server-process-filter): Doc fix. Handle frame-parameters.
14089
14090 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
14091
14092 Fix bug#8730, bug#8781.
14093
14094 * loadhist.el (unload--set-major-mode): New function.
14095 (unload-feature): Use it.
14096
14097 * progmodes/python.el (python-after-info-look): Add autoload cookie.
14098 (python-unload-function): New function.
14099
14100 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
14101
14102 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
14103
14104 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
14105
14106 * net/browse-url.el (browse-url-firefox-program): Add icecat to
14107 the candidates list.
14108
14109 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
14110
14111 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
14112
14113 2011-06-23 Richard Stallman <rms@gnu.org>
14114
14115 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
14116 (rmail-variables): Set next-error-move-function.
14117 (rmail-what-message): Take argument POS.
14118 (rmail-next-error-move): New function.
14119
14120 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
14121
14122 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
14123 messages for adjacent non-terminals.
14124
14125 2011-06-23 Richard Stallman <rms@gnu.org>
14126
14127 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
14128 (rmail-show-message-1): Preserve buffer modified flag.
14129 (rmail-start-mail): Don't specify use of rmail-mail-return;
14130 that's done by mail-bury now.
14131 (rmail-mail-return): Handle arg NEWBUF.
14132
14133 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
14134
14135 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
14136 SIZE is a number.
14137
14138 2011-06-23 Martin Rudalics <rudalics@gmx.at>
14139
14140 * window.el (get-lru-window, get-mru-window)
14141 (get-largest-window): Never return a minibuffer window.
14142 (display-buffer-pop-up-window): Fix a bug that could lead to
14143 reusing the minibuffer window.
14144 (display-buffer): Pass original specifier argument to
14145 display-buffer-function instead of the normalized one.
14146 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14147
14148 2011-06-22 Leo Liu <sdl.web@gmail.com>
14149
14150 * minibuffer.el (completing-read-function)
14151 (completing-read-default): Move from minibuf.c
14152
14153 2011-06-22 Richard Stallman <rms@gnu.org>
14154
14155 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
14156 to Rmail even if not started by a special Rmail command.
14157
14158 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
14159 Copy the buffer currently showing just one message.
14160
14161 2011-06-22 Roland Winkler <winkler@gnu.org>
14162
14163 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
14164 (bibtex-clean-entry): First delete the old key so that a
14165 customized algorithm for generating the new key does not get
14166 confused by the old key.
14167 (bibtex-url): Obey regexp of first step.
14168 (bibtex-search-entries): Do not use add-to-list with local
14169 list-var.
14170
14171 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14172
14173 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
14174 stored a user name, then query for the password first, instead of
14175 waiting for SMTP to give an error message and the trying again.
14176
14177 2011-06-22 Lawrence Mitchell <wence@gmx.li>
14178
14179 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
14180 BUFFER in call-process.
14181
14182 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14183
14184 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
14185 QUIT twice.
14186 (smtpmail-try-auth-methods): Require user name and password from
14187 auth-source.
14188
14189 2011-06-22 Martin Rudalics <rudalics@gmx.at>
14190
14191 * window.el (display-buffer-default-specifiers)
14192 (display-buffer-alist): Remove entries for pop-up-frame-alist.
14193 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
14194 (split-window): Normalize SIDE argument (Bug#8916).
14195
14196 * frame.el (pop-up-frame-alist, pop-up-frame-function)
14197 (special-display-frame-alist, special-display-popup-frame):
14198 Remove duplicate declarations. These are now in window.el.
14199
14200 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14201
14202 * mail/smtpmail.el (smtpmail-via-smtp):
14203 Set :use-starttls-if-possible so that we always use STARTTLS if the
14204 server supports it. SMTP servers that support STARTTLS commonly
14205 require it.
14206
14207 * net/network-stream.el (network-stream-open-starttls): Support
14208 upgrading to STARTTLS always, even if we don't have built-in support.
14209 (open-network-stream): Add the :always-query-capabilities keyword.
14210
14211 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
14212 upgrades with `open-network-stream', and rely solely on
14213 auth-source for all credentials. Big changes throughout the file,
14214 but in particular:
14215 (smtpmail-auth-credentials): Remove.
14216 (smtpmail-starttls-credentials): Remove.
14217 (smtpmail-via-smtp): Check for servers saying they want AUTH after
14218 MAIL FROM, too.
14219
14220 * net/network-stream.el (network-stream-open-starttls):
14221 Provide support for client certificates both for external and built-in
14222 STARTTLS.
14223 (auth-source): Require.
14224 (open-network-stream): Document the :client-certificate keyword.
14225 (network-stream-certificate): Change cert-cert to cert and
14226 cert-key to key.
14227
14228 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
14229
14230 * net/tramp-cache.el (top): Don't load the persistency file when
14231 "emacs -Q" has been called.
14232
14233 2011-06-21 Tim Harper <timcharper@gmail.com>
14234
14235 * term/ns-win.el (ns-initialize-window-system):
14236 Set application-specific `ApplePressAndHoldEnabled' system
14237 resource to NO as it is not yet supported by the NS port.
14238
14239 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
14240
14241 * misc.el (list-dynamic-libraries--refresh): Compute header here...
14242 (list-dynamic-libraries): ...not here.
14243
14244 2011-06-21 Leo Liu <sdl.web@gmail.com>
14245
14246 * subr.el (sha1): Implement sha1 using secure-hash.
14247
14248 2011-06-21 Martin Rudalics <rudalics@gmx.at>
14249
14250 * window.el (display-buffer-alist): In default value do not
14251 enforce searching a window on any but the selected frame.
14252 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
14253 (display-buffer-select-window): Remove function.
14254 (display-buffer-in-window): When a window on another frame gets
14255 reused, do not select it any more but just raise its frame if
14256 necessary (Bug#8851) and (Bug#8856).
14257 (display-buffer-normalize-options): Handle pop-up-frames related
14258 options more faithfully.
14259 (pop-to-buffer): Don't rely on `display-buffer' selecting the
14260 window if it is on another frame.
14261 (display-buffer-alist, display-buffer-default-specifiers):
14262 Don't make new frame unsplittable by default.
14263 (display-buffer-normalize-argument): Fix doc-string typo and use
14264 'same-frame-other-window instead of 'other-window when associating
14265 with display-buffer-macro-specifiers.
14266
14267 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
14268
14269 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
14270 New functions.
14271 (5x5-mode-map, 5x5-mode-menu): Bind them.
14272 (5x5-draw-grid): Tweak the solver's rendering.
14273
14274 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
14275
14276 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
14277 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
14278
14279 2011-06-21 Drew Adams <drew.adams@oracle.com>
14280
14281 * menu-bar.el: Use function variable instead of switch-to-buffer.
14282 (menu-bar-select-buffer-function): New variable.
14283 (menu-bar-update-buffers): Use it (bug#8876).
14284
14285 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
14286
14287 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
14288 variable's status.
14289
14290 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
14291
14292 * x-dnd.el (x-dnd-version-from-flags)
14293 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
14294 and long as number (Bug#8899).
14295 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
14296
14297 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
14298
14299 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
14300 (completion-try-completion, completion-all-completions): Compute the
14301 metadata argument if it's missing; make it optional (bug#8795).
14302
14303 * wid-edit.el: Use lex-bind and move towards completion-at-point.
14304 (widget-complete): Use new :completion-function property.
14305 (widget-completions-at-point): New function.
14306 (default): Use :completion-function instead of :complete.
14307 (widget-default-completions): Rename from widget-default-complete;
14308 Rewrite.
14309 (widget-string-complete, widget-file-complete, widget-color-complete):
14310 Remove functions.
14311 (file, symbol, function, variable, coding-system, color):
14312 * international/mule-cmds.el (default-input-method, charset)
14313 (language-info-custom-alist):
14314 * cus-edit.el (face): Use new property :completions.
14315
14316 * progmodes/pascal.el (pascal-completions-at-point): New function.
14317 (pascal-mode): Use it.
14318 (pascal-mode-map): Use completion-at-point.
14319 (pascal-toggle-completions): Make obsolete.
14320 (pascal-complete-word, pascal-show-completions):
14321 * progmodes/octave-mod.el (octave-complete-symbol):
14322 Redefine as obsolete alias.
14323 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
14324 Signal absence of completion info for old Octave,
14325 (inferior-octave-complete): Redefine as obsolete alias.
14326 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
14327 (meta-completions-at-point): Rename from meta-complete-symbol and
14328 adapt it for use on completion-at-point-functions.
14329 (meta-common-mode): Use it.
14330 (meta-looking-at-backward, meta-match-buffer): Remove.
14331 (meta-complete-symbol): Redefine as obsolete alias.
14332 (meta-common-mode-map): Use completion-at-point.
14333 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
14334 (makefile-mode-map): Use completion-at-point.
14335 (makefile-completions-at-point): Rename from makefile-complete and
14336 adapt it for use on completion-at-point-functions.
14337 (makefile-mode): Use it.
14338 (makefile-complete): Redefine as obsolete alias.
14339
14340 2011-06-20 Deniz Dogan <deniz@dogan.se>
14341
14342 * net/rcirc.el: Delete trailing whitespaces once and for all.
14343
14344 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
14345
14346 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
14347
14348 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
14349
14350 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
14351
14352 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
14353
14354 2011-06-19 Martin Rudalics <rudalics@gmx.at>
14355
14356 * window.el (display-buffer-other-window-means-other-frame):
14357 Call display-buffer-normalize-alist.
14358 (display-buffer-normalize-specifiers-1): Rename to
14359 display-buffer-normalize-argument. New argument other-frame.
14360 Rewrite.
14361 (display-buffer-normalize-specifiers-2): Rename to
14362 display-buffer-normalize-options.
14363 (display-buffer-normalize-alist-1): New function.
14364 (display-buffer-normalize-specifiers-3): Rename to
14365 display-buffer-normalize-alist.
14366 Call display-buffer-normalize-alist-1.
14367 (display-buffer-normalize-options-inhibit): New variable.
14368 (display-buffer-normalize-specifiers): Rewrite calling
14369 display-buffer-normalize-alist,
14370 display-buffer-normalize-argument, and
14371 display-buffer-normalize-options. Don't call the latter if
14372 display-buffer-normalize-options-inhibit is non-nil.
14373 (frame-auto-delete): New option.
14374 (window-deletable-p): Use frame-auto-delete.
14375 (window-list-no-nils, window-state-ignored-parameters)
14376 (window-state-get-1, window-state-get, window-state-put-list)
14377 (window-state-put-1, window-state-put-2, window-state-put):
14378 New functions.
14379 (display-buffer-normalize-options): Move special-display-p group
14380 after pop-up-frame group (Bug#8851) and (Bug#8856).
14381
14382 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
14383
14384 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
14385 groups (Bug#8776).
14386 (rx-submatch-n): New function.
14387 (rx): Document it.
14388
14389 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
14390 (Bug#8768).
14391
14392 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
14393
14394 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
14395
14396 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
14397 anytime existing face settings are present (Bug#8889).
14398
14399 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
14400 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
14401 Remove unused argument.
14402
14403 2011-06-18 Martin Rudalics <rudalics@gmx.at>
14404
14405 * window.el (display-buffer-default-specifiers):
14406 Remove pop-up-frame. Add pop-up-window-min-height,
14407 pop-up-window-min-width, and another reuse-window specifier
14408 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
14409 (display-buffer-normalize-specifiers-2):
14410 Handle split-height-threshold and split-width-threshold also when
14411 pop-up-windows is unset. Add a reuse-window specifier for the
14412 case popping up a new window fails.
14413 (special-display-popup-frame): Remove double quoting.
14414 (display-buffer-normalize-specifiers-1): Fix thinko.
14415
14416 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
14417
14418 * shell.el (shell-completion-vars): Set pcomplete-termination-string
14419 according to comint-completion-addsuffix.
14420
14421 * pcomplete.el: Convert to lexical binding and fix bug#8819.
14422 (pcomplete-suffix-list): Mark as obsolete.
14423 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
14424 pcomplete-seen in the closure.
14425 (pcomplete-comint-setup): Setup completion-at-point as well.
14426 (pcomplete--entries): New function.
14427 (pcomplete--env-regexp): New var.
14428 (pcomplete-entries): Rewrite to work with partial-completion and
14429 without relying on pcomplete-suffix-list.
14430 (pcomplete-pare-list): Remove, unused.
14431
14432 2011-06-17 Martin Rudalics <rudalics@gmx.at>
14433
14434 * window.el (display-buffer-alist): Set pop-up-window-min-height
14435 and pop-up-window-min-width in default value. Reported by
14436 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
14437 other-window-means-other-frame.
14438 (display-buffer-macro-specifiers): Comment out entry for
14439 other-window specifier.
14440 (display-buffer-other-window-means-other-frame): New function.
14441 (display-buffer-normalize-specifiers-1): New arguments
14442 buffer-name and label. Treat other-window case specially.
14443 (display-buffer-normalize-specifiers-2): Treat other-window case
14444 specially.
14445 (display-buffer-normalize-specifiers-3): New function.
14446 (display-buffer-normalize-specifiers):
14447 Call display-buffer-normalize-specifiers-3.
14448
14449 2011-06-17 Martin Rudalics <rudalics@gmx.at>
14450
14451 * window.el (same-window-p): Fix two typos introduced when
14452 adding with-no-warnings.
14453 (display-buffer-normalize-specifiers-1): Don't check
14454 pop-up-frames for 'unset initialization.
14455 (display-buffer-normalize-specifiers-2): Major rewrite using
14456 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
14457 (pop-up-frames, display-buffer-reuse-frames)
14458 (display-buffer-mark-dedicated): Don't initialize to 'unset.
14459 Suggested by David Engster <deng@randomsample.de>.
14460 (even-window-heights): Initialize to 'unset.
14461 (display-buffer-alist-set): Handle new 'unset initializations.
14462 (display-buffer-macro-specifiers): Don't pop up a new frame in the
14463 other window case.
14464
14465 2011-06-16 Martin Rudalics <rudalics@gmx.at>
14466
14467 * window.el (display-buffer-normalize-specifiers-1):
14468 Respect current value of pop-up-frames for most reasonable values of
14469 second argument of display-buffer (Bug#8865).
14470 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
14471 (switch-to-buffer-other-window-same-frame)
14472 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
14473 Adams (Bug#8875).
14474 (display-buffer): Don't check noninteractive when calling
14475 display-buffer-pop-up-frame.
14476 (display-buffer-pop-up-frame): Never pop up a frame in
14477 noninteractive mode (Bug#8857).
14478 (enlarge-window, shrink-window): Don't report an error when the
14479 window can't be resized as requested (Bug#8862).
14480
14481 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14482
14483 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
14484
14485 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
14486
14487 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
14488
14489 2011-06-15 Alan Mackenzie <acm@muc.de>
14490
14491 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
14492 for declarators, disable knr checking to speed up for normal files.
14493 2: Refactor, replacing a sequence of nested if forms by a cond form.
14494
14495 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
14496
14497 * net/network-stream.el (open-network-stream): Add the keyword
14498 :always-query-capabilities for the case where you want to force a
14499 `plain' network connection, but the protocol still requires the
14500 capabilitiy command (i.e., SMTP and EHLO).
14501
14502 * subr.el (process-live-p): Rename from `process-alive-p' for
14503 consistency with other `-live-p' functions.
14504
14505 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14506
14507 * window.el (same-window-buffer-names, same-window-regexps)
14508 (special-display-frame-alist, special-display-popup-frame)
14509 (special-display-function, special-display-buffer-names)
14510 (special-display-regexps, pop-up-frame-alist)
14511 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
14512 (pop-up-windows, split-window-preferred-function)
14513 (split-height-threshold, split-width-threshold, even-window-heights)
14514 (display-buffer-mark-dedicated): Don't encourage the use of
14515 display-buffer-alist from Elisp code.
14516
14517 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
14518
14519 * progmodes/python.el (python-mode): Derive from prog-mode.
14520 * progmodes/ps-mode.el (ps-mode):
14521 * progmodes/mixal-mode.el (mixal-mode):
14522 * progmodes/cfengine.el (cfengine-mode):
14523 * progmodes/ld-script.el (ld-script-mode): Likewise.
14524
14525 2011-06-15 Martin Rudalics <rudalics@gmx.at>
14526
14527 * window.el (display-buffer-alist): Trim default value to avoid
14528 popping up a new frame (Bug#8857) or reusing an arbitrary window
14529 on another frame.
14530 (display-buffer): Do not fall back on popping up a new frame in
14531 batch mode (Bug#8857).
14532
14533 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
14534
14535 * cus-theme.el (describe-theme-1): Use custom-theme-p.
14536 (custom-theme-summary): New function.
14537 (customize-themes): Use it.
14538
14539 2011-06-13 Glenn Morris <rgm@gnu.org>
14540
14541 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
14542
14543 2011-06-13 Martin Rudalics <rudalics@gmx.at>
14544
14545 * help.el (help-window): Remove variable.
14546 (help-window-point-marker, temp-buffer-max-height)
14547 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
14548 (help-print-return-message): Don't set help-window.
14549 (resize-temp-buffer-window): Rewrite cod eand doc-string.
14550 (help-window-setup-finish): Remove.
14551 (help-window-display-message, help-window-setup)
14552 (with-help-window): Major rewrite based on new
14553 display-buffer-window variable.
14554
14555 * help-mode.el (help-mode-finish): Remove help-window related
14556 code.
14557
14558 * view.el (view-exits-all-viewing-windows): Remove reference to
14559 view-return-to-alist in doc-string.
14560 (view-return-to-alist): Make obsolete.
14561 (view-buffer): Call pop-to-buffer-same-window and remove
14562 undo-window code.
14563 (view-buffer-other-window): Call pop-to-buffer-other-window and
14564 simplify code. Ignore second argument.
14565 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
14566 simplify code. Ignore second argument.
14567 (view-return-to-alist-update): Make obsolete.
14568 (view-mode-enter): Rename second argument to QUIT-RESTORE.
14569 Rewrite using quit-restore window parameters.
14570 (view-mode-exit): Rename second argument to EXIT-ONLY.
14571 Rewrite using quit-restore-window.
14572 (View-exit, View-exit-and-edit, View-leave, View-quit)
14573 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
14574 appropriate arguments.
14575 (view-end-message): Use quit-restore window parameter.
14576
14577 * window.el (display-buffer-function): Rewrite doc-string.
14578 (display-buffer-window, display-buffer-alist): New variables.
14579 (display-buffer-split-specifiers)
14580 (display-buffer-side-specifiers)
14581 (display-buffer-macro-specifiers): New constants.
14582 (display-buffer-even-window-sizes, display-buffer-set-height)
14583 (display-buffer-set-width, display-buffer-select-window)
14584 (display-buffer-in-window, display-buffer-reuse-window)
14585 (display-buffer-split-window-1, display-buffer-split-window)
14586 (display-buffer-split-atom-window, display-buffer-pop-up-window)
14587 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
14588 (display-buffer-in-side-window, normalize-buffer-to-display)
14589 (display-buffer-normalize-specifiers-1)
14590 (display-buffer-normalize-specifiers-2)
14591 (display-buffer-normalize-specifiers, display-buffer-frame):
14592 New functions.
14593 (display-buffer): Major rewrite.
14594 (display-buffer-other-window, display-buffer-other-frame)
14595 (pop-to-buffer, switch-to-buffer-other-window)
14596 (switch-to-buffer-other-frame): Rewrite.
14597 (display-buffer-same-window, display-buffer-same-frame)
14598 (display-buffer-same-frame-other-window)
14599 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
14600 (pop-to-buffer-other-window)
14601 (pop-to-buffer-same-frame-other-window)
14602 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
14603 (switch-to-buffer-other-window-same-frame): New functions.
14604 (same-window-p, special-display-p): Rewrite disabling warnings.
14605 Make obsolete.
14606 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
14607 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
14608 Make obsolete
14609 (same-window-buffer-names, same-window-regexps)
14610 (special-display-frame-alist, special-display-popup-frame)
14611 (special-display-function, special-display-buffer-names)
14612 (special-display-regexps, pop-up-frame-alist)
14613 (pop-up-frame-function, split-window-preferred-function)
14614 (split-height-threshold, split-width-threshold)
14615 (even-window-heights): Make obsolete.
14616
14617 2011-06-12 Glenn Morris <rgm@gnu.org>
14618
14619 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
14620 Misc simplifications.
14621
14622 2011-06-12 Martin Rudalics <rudalics@gmx.at>
14623
14624 * window.el (window-safely-shrinkable-p): Restore function which
14625 was inadvertently removed in change from 2011-06-11. Declare as
14626 obsolete.
14627
14628 * calendar/calendar.el (calendar-generate-window):
14629 Use window-iso-combined-p instead of combination of one-window-p and
14630 window-safely-shrinkable-p.
14631
14632 2011-06-12 Glenn Morris <rgm@gnu.org>
14633
14634 * progmodes/fortran.el (fortran-mode-syntax-table):
14635 * progmodes/f90.el (f90-mode-syntax-table):
14636 Set % to punctuation. (Bug#8820)
14637 (f90-find-tag-default): Remove, no longer needed.
14638
14639 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
14640
14641 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
14642
14643 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
14644
14645 * image.el (image-animated-p): Return animation delay in seconds.
14646 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
14647 (image-animate-timeout): Remove DELAY argument. Don't assume
14648 every subimage has the same delay; get it from image-animated-p.
14649 (image-animate): Caller changed.
14650
14651 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
14652
14653 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
14654 to ignored backtrace functions.
14655
14656 2011-06-11 Glenn Morris <rgm@gnu.org>
14657
14658 * calendar/appt.el (appt-disp-window-function): Doc fix.
14659 (appt-check): Handle overlapping appointments. (Bug#8337)
14660
14661 2011-06-11 Martin Rudalics <rudalics@gmx.at>
14662
14663 * window.el (window-tree-1, window-tree): New functions, moving
14664 the latter to window.el.
14665 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
14666 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
14667 (bw-refresh-edges): Remove.
14668 (balance-windows-1, balance-windows-2): New functions.
14669 (balance-windows): Rewrite in terms of window tree functions,
14670 balance-windows-1 and balance-windows-2.
14671 (bw-adjust-window): Remove.
14672 (balance-windows-area-adjust): New function with functionality of
14673 bw-adjust-window but using resize-window.
14674 (set-window-text-height): Rewrite doc-string.
14675 Use normalize-live-window and resize-window.
14676 (enlarge-window-horizontally, shrink-window-horizontally):
14677 Rename argument to DELTA.
14678 (window-buffer-height): New function.
14679 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
14680 Rewrite using new window resize routines.
14681 (kill-buffer-and-window, mouse-autoselect-window-select):
14682 Use ignore-errors instead of condition-case.
14683 (quit-window): Call delete-frame instead of delete-windows-on
14684 for the only buffer on frame.
14685
14686 2011-06-10 Martin Rudalics <rudalics@gmx.at>
14687
14688 * loadup.el (top-level): Load window before files for the sake
14689 of replace-buffer-in-windows.
14690
14691 * files.el (read-buffer-to-switch)
14692 (switch-to-buffer-other-window)
14693 (switch-to-buffer-other-frame, display-buffer-other-frame):
14694 Move to window.el.
14695
14696 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
14697 (previous-buffer): Move to window.el.
14698
14699 * bindings.el (unbury-buffer): Move to window.el.
14700
14701 * window.el (delete-other-windows-vertically): Move after
14702 definition of delete-other-windows.
14703 (other-window, delete-windows-on, replace-buffer-in-windows):
14704 Move here from window.c.
14705 (record-window-buffer, unrecord-window-buffer)
14706 (set-window-buffer-start-and-point, switch-to-prev-buffer)
14707 (switch-to-next-buffer): New functions.
14708 (get-next-valid-buffer, last-buffer, next-buffer): Move here
14709 from simple.el. Call switch-to-next-buffer.
14710 (previous-buffer): Move here from simple.el.
14711 Call switch-to-prev-buffer.
14712 (bury-buffer): Move here from buffer.c. Switch to previous
14713 buffer when window cannot be deleted.
14714 (unbury-buffer): Move here from bindings.el.
14715 (ctl-x-map): Move binding for other-window from window.c to
14716 here.
14717 (read-buffer-to-switch, switch-to-buffer-other-window)
14718 (switch-to-buffer-other-frame): Move here from files.el.
14719 (normalize-buffer-to-switch-to): New functions.
14720 (switch-to-buffer): Move here from buffer.c.
14721 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
14722
14723 2011-06-10 Martin Rudalics <rudalics@gmx.at>
14724
14725 * window.el (window-min-height, window-min-width): Move here
14726 from window.c. Add defcustoms and rewrite doc-strings.
14727 (resize-mini-window, resize-window): New functions.
14728 (adjust-window-trailing-edge, enlarge-window, shrink-window):
14729 Move here from window.c.
14730 (maximize-window, minimize-window): New functions.
14731 (delete-window, delete-other-windows, split-window): Move here
14732 from window.c.
14733 (window-split-min-size): New function.
14734 (split-window-keep-point): Mention split-window-above-each-other
14735 instead of split-window-vertically.
14736 (split-window-above-each-other, split-window-vertically):
14737 Rename split-window-vertically to split-window-above-each-other
14738 and provide defalias for old definition.
14739 (split-window-side-by-side, split-window-horizontally):
14740 Rename split-window-horizontally to split-window-side-by-side
14741 and provide defalias for the old definition.
14742 (ctl-x-map): Move bindings for delete-window,
14743 delete-other-windows and enlarge-window here from window.c.
14744 Replace bindings for split-window-vertically and
14745 split-window-horizontally by bindings for
14746 split-window-above-each-other and split-window-side-by-side.
14747
14748 * cus-start.el (all): Remove entries for window-min-height and
14749 window-min-width. Add entries for window-splits and
14750 window-nest.
14751
14752 2011-06-09 Glenn Morris <rgm@gnu.org>
14753
14754 * calendar/appt.el (appt-mode-line): New function.
14755 (appt-check, appt-disp-window): Use it.
14756
14757 * files.el (hack-one-local-variable-eval-safep):
14758 Allow minor-modes with explicit +/-1 arguments.
14759
14760 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
14761
14762 * term/xterm.el (xterm): Add defgroup.
14763 (xterm-extra-capabilities): Add defcustom to supply known xterm
14764 capabilities, skip querying them, or query them (default).
14765 (terminal-init-xterm): Use it.
14766 (terminal-init-xterm-modify-other-keys): New function to set up
14767 modifyOtherKeys support to simplify `terminal-init-xterm'.
14768
14769 2011-06-09 Martin Rudalics <rudalics@gmx.at>
14770
14771 * window.el (resize-window-reset, resize-window-reset-1)
14772 (resize-subwindows-skip-p, resize-subwindows-normal)
14773 (resize-subwindows, resize-other-windows, resize-this-window)
14774 (resize-root-window, resize-root-window-vertically)
14775 (window-deletable-p, window-or-subwindow-p)
14776 (frame-root-window-p): New functions.
14777
14778 2011-06-09 Glenn Morris <rgm@gnu.org>
14779
14780 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
14781 (ange-ftp-get-files): Use it.
14782
14783 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
14784
14785 * mail/sendmail.el (mail-recover-1, mail-recover):
14786 * files.el (recover-file, recover-session):
14787 Handle dired-listing-switches not being just a single short option.
14788
14789 2011-06-09 Glenn Morris <rgm@gnu.org>
14790
14791 * calendar/appt.el (appt-display-message, appt-disp-window):
14792 Handle lists of appointments.
14793
14794 2011-06-08 Martin Rudalics <rudalics@gmx.at>
14795
14796 * window.el (one-window-p): Move down in code.
14797 Rewrite doc-string.
14798 (window-current-scroll-bars): Rewrite doc-string.
14799 Normalize live window argument.
14800 (walk-windows, get-window-with-predicate, count-windows):
14801 Rewrite doc-string. Use window-list-1.
14802 (window-in-direction-2, window-in-direction, get-mru-window):
14803 New functions.
14804
14805 2011-06-08 Reuben Thomas <rrt@sc3d.org>
14806
14807 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
14808 Doc fix (Bug#8713).
14809
14810 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
14811
14812 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
14813
14814 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
14815
14816 * loadhist.el (unload-feature-special-hooks):
14817 Add `comint-output-filter-functions'.
14818
14819 2011-06-08 Ivan Kanis <gnu@kanis.fr>
14820
14821 * calendar/appt.el (appt-check): Move some initializations into the let.
14822
14823 2011-06-08 Martin Rudalics <rudalics@gmx.at>
14824
14825 * window.el (window-height): Defalias to window-total-height.
14826 (window-width): Defalias to window-body-width.
14827
14828 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
14829
14830 * image-mode.el (image-toggle-animation): New command.
14831 (image-mode-map): Bind it to RET.
14832 (image-mode): Update message.
14833 (image-toggle-display-image): Avoid a spurious cache flush.
14834 (image-transform-rotation): Doc fix.
14835 (image-transform-properties): Return quickly in the normal case.
14836 (image-animate-loop): Rename from image-animate-max-time.
14837
14838 * image.el (image-animate-max-time): Move to image-mode.el.
14839 (create-animated-image): Remove unnecessary function.
14840 (image-animate): Rename from image-animate-start. New arg.
14841 (image-animate-stop): Remove; just use image-animate-timer.
14842 (image-animate-timer): Use car-safe.
14843 (image-animate-timeout): Rename argument.
14844
14845 2011-06-07 Martin Rudalics <rudalics@gmx.at>
14846
14847 * window.el (get-lru-window, get-largest-window): Move here from
14848 window.c. Rename first argument to ALL-FRAMES.
14849 Rephrase doc-strings.
14850 (get-buffer-window-list): Rewrite using window-list-1.
14851 Rephrase doc-string.
14852 (window-safe-min-height, window-safe-min-width): New constants.
14853 (window-size-ignore, window-min-size, window-min-size-1)
14854 (window-sizable, window-sizable-p, window-size-fixed-1)
14855 (window-size-fixed-p, window-min-delta-1, window-min-delta)
14856 (window-max-delta-1, window-max-delta, window-resizable)
14857 (window-resizable-p, window-total-height, window-total-width)
14858 (window-body-width): New functions.
14859 (window-full-height-p, window-full-width-p): Rewrite using
14860 window-total-size.
14861 (window-body-height): Rewrite using window-body-size.
14862
14863 2011-06-06 Martin Rudalics <rudalics@gmx.at>
14864
14865 * window.el (window-right, window-left, window-child)
14866 (window-child-count, window-last-child, window-any-p)
14867 (normalize-live-buffer, normalize-live-frame)
14868 (normalize-any-window, normalize-live-window)
14869 (window-iso-combination-p, window-iso-combined-p)
14870 (window-iso-combinations)
14871 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
14872 (windows-with-parameter, window-with-parameter)
14873 (window-atom-root, make-window-atom, window-atom-check-1)
14874 (window-atom-check, window-side-check, window-check):
14875 New functions.
14876 (ignore-window-parameters, window-sides, window-sides-vertical)
14877 (window-sides-slots): New variables.
14878 (window-size-fixed): Move down in code. Minor doc-string fix.
14879
14880 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
14881
14882 * comint.el (comint-dynamic-complete-as-filename)
14883 (comint-dynamic-complete-filename): Correctly call
14884 completion-in-region.
14885
14886 2011-06-05 Deniz Dogan <deniz@dogan.se>
14887
14888 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
14889 in last change.
14890
14891 2011-06-05 Deniz Dogan <deniz@dogan.se>
14892
14893 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
14894 (rcirc): Use it to prompt for encryption.
14895
14896 2011-06-05 Roland Winkler <winkler@gnu.org>
14897
14898 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
14899 (bibtex-search-entries): New command bound to C-c C-a.
14900 (bibtex-display-entries): New function.
14901
14902 2011-06-05 Roland Winkler <winkler@gnu.org>
14903
14904 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
14905 (bibtex-insert-kill): After yanking insert newline if necessary.
14906 (bibtex-initialize): Call bibtex-string-files-init only once.
14907 (bibtex-mode): Do not call easy-menu-add.
14908 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
14909 (bibtex-yank): Set arg properly if nil.
14910
14911 2011-06-05 Roland Winkler <winkler@gnu.org>
14912
14913 * textmodes/bibtex.el (bibtex-search-entry-globally):
14914 New variable.
14915 (bibtex-search-entry): Use it.
14916
14917 2011-06-05 Roland Winkler <winkler@gnu.org>
14918
14919 * textmodes/bibtex.el (bibtex-entry-format): New option
14920 sort-fields.
14921 (bibtex-format-entry, bibtex-reformat): Honor this option.
14922 (bibtex-parse-entry): Return fields in proper order.
14923
14924 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
14925
14926 * doc-view.el (doc-view-remove-if): Move computation of result out
14927 of `dolist' to silence misleading lexical-binding warning.
14928
14929 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
14930
14931 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
14932 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
14933
14934 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
14935
14936 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
14937 "SunOS 5.10".
14938
14939 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
14940
14941 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
14942 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
14943 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
14944 (tramp-parse-putty):
14945 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
14946 (tramp-completion-function-alist-ssh)
14947 (tramp-completion-function-alist-telnet)
14948 (tramp-completion-function-alist-su)
14949 (tramp-completion-function-alist-putty): Set `tramp-autoload'
14950 cookie.
14951
14952 * net/tramp-ftp.el:
14953 * net/tramp-sh.el:
14954 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
14955 load "tramp.el" `tramp-set-completion-function'.
14956
14957 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
14958
14959 * shell.el: Require and use pcomplete.
14960 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
14961 (shell-completion-vars): Set pcomplete-default-completion-function.
14962
14963 2011-06-04 Deniz Dogan <deniz@dogan.se>
14964
14965 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
14966 `memq' (Bug#8799).
14967
14968 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14969
14970 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
14971
14972 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
14973
14974 * bs.el (bs--mark-unmark, bs--nth-wrapper):
14975 * mpc.el (mpc-select-extend, mpc-songpointer-context):
14976 * vc/log-view.el (log-view-beginning-of-defun):
14977 * vc/smerge-mode.el (smerge-apply-resolution-patch)
14978 (smerge-refine-forward, smerge-refine-chopup-region):
14979 Silence warning for unused `dotimes' counter variables.
14980
14981 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14982
14983 * net/tramp.el (tramp-with-progress-reporter): Rename from
14984 with-progress-reporter. Use `declare'.
14985 * net/tramp-smb.el:
14986 * net/tramp-sh.el:
14987 * net/tramp-gvfs.el: Update all uses.
14988
14989 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
14990
14991 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
14992 buffer isn't killed before making it current.
14993
14994 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14995
14996 Silence various byte-compiler warnings.
14997 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
14998 `access-type' and new obsolescence format.
14999 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
15000 new format.
15001 (byte-compile-check-variable): New `access-type' argument.
15002 Only warn if the access-type is obsolete.
15003 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15004 (byte-compile-variable-set): Adjust callers.
15005 * help-fns.el (describe-variable): Adjust to new obsolescence format.
15006 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
15007 setting it as obsolete.
15008 * simple.el (minibuffer-completing-symbol):
15009 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
15010 access as obsolete.
15011 * minibuffer.el (minibuffer-completing-file-name): Don't make it
15012 obsolete yet.
15013 * international/quail.el (quail-mouse-choose-completion): Remove unused
15014 code referring to obsolete var.
15015 (quail-choose-completion-string): Remove.
15016 * server.el (server-clients-with, server-kill-buffer-query-function)
15017 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
15018 * proced.el (proced-send-signal):
15019 * emacs-lisp/lisp.el (lisp-complete-symbol):
15020 Replace completion-annotate-function with completion-extra-properties.
15021
15022 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15023
15024 * simple.el (goto-line): Use read-number.
15025 (overriding-map-is-bound): Remove.
15026 (saved-overriding-map): Change default.
15027 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
15028 Take the map as argument.
15029 (universal-argument, negative-argument, digit-argument): Use it.
15030 (restore-overriding-map): Adjust.
15031 (do-auto-fill): Use fill-forward-paragraph.
15032 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
15033
15034 * minibuffer.el (minibuffer-inactive-mode-map): New var.
15035 (minibuffer-inactive-mode): New major mode.
15036 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
15037 the *Messages* buffer" hack.
15038 (mouse-popup-menubar): Don't burp if the event is a normal key.
15039
15040 Miscellaneous tweaks.
15041 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
15042 lexical scoping as in subr.el's dolist and dotimes.
15043 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
15044 Silence compiler warning.
15045 * thingatpt.el (forward-whitespace): Trivial coding style fix.
15046 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
15047 * international/ccl.el (ccl-compile): Trivial simplification.
15048 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
15049 * emacs-lisp/testcover.el (testcover-end): Remove spurious
15050 `printflag' argument.
15051 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
15052 Purecopy the whole obsolescence data.
15053
15054 2011-06-01 Leo Liu <sdl.web@gmail.com>
15055
15056 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
15057 improve doc-string as suggested by Marco Pessotto
15058 <melmothx@gmail.com>.
15059 (rcirc-print): Fix last change.
15060
15061 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15062
15063 * minibuffer.el (complete-with-action): Return nil for the metadata and
15064 boundaries of non-functional tables.
15065 (completion-table-dynamic): Return nil for the metadata.
15066 (completion-table-with-terminator): Add default case, using
15067 complete-with-action.
15068 (completion--metadata): New function.
15069 (completion-all-sorted-completions, minibuffer-completion-help): Use it
15070 to try and avoid pathological performance problems.
15071 (completion--embedded-envvar-table): Return `category' metadata.
15072
15073 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
15074
15075 * subr.el (process-alive-p): New tiny convenience function.
15076
15077 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15078
15079 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
15080 content but also its previous major mode.
15081
15082 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
15083
15084 * emacs-lisp/debug.el (debug): Restore the previous content of the
15085 *Backtrace* buffer when we exit with C-M-c.
15086
15087 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15088
15089 * minibuffer.el: Add metadata method to completion tables.
15090 (completion-category-overrides): New defcustom.
15091 (completion-metadata, completion--field-metadata)
15092 (completion-metadata-get, completion--styles)
15093 (completion--cycle-threshold): New functions.
15094 (completion-try-completion, completion-all-completions):
15095 Add `metadata' argument to choose completion-styles.
15096 (completion--do-completion): Use metadata to choose cycling.
15097 (completion-all-sorted-completions): Use metadata for sorting.
15098 Remove :completion-cycle-penalty which is not needed any more.
15099 (completion--try-word-completion): Add `metadata' argument.
15100 (minibuffer-completion-help): Check metadata for annotation function
15101 and sorting.
15102 (completion-file-name-table): Return `category' metadata.
15103 (minibuffer-completing-file-name): Make obsolete.
15104 * simple.el (minibuffer-completing-symbol): Make obsolete.
15105 * icomplete.el (icomplete-completions): Pass new `metadata' param to
15106 completion-try-completion.
15107
15108 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
15109
15110 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
15111
15112 2011-05-30 Leo Liu <sdl.web@gmail.com>
15113
15114 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
15115 (rcirc-print): Decode all incoming messages (bug#8744).
15116 (rcirc-decode-coding-system): Allow value nil for automatic coding
15117 system detection.
15118
15119 2011-06-01 Glenn Morris <rgm@gnu.org>
15120
15121 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
15122
15123 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15124
15125 * image.el (image-animate-max-time): Allow nil and t values.
15126 Default to nil.
15127 (create-animated-image): Doc fix.
15128 (image-animate-start): Remove second arg; just use
15129 image-animate-max-time.
15130 (image-animate-timeout): Doc fix. Args changed.
15131
15132 * image-mode.el (image-toggle-display-image): Ensure that the
15133 image spec passed to the animate timer is the same object as in
15134 the buffer's display property (Bug#6981).
15135 (image-transform-properties): Doc fix.
15136
15137 * image.el (image-animate-max-time): Default to nil.
15138
15139 2011-05-29 Martin Rudalics <rudalics@gmx.at>
15140
15141 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
15142 entire buffer list (Bug#8184).
15143
15144 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15145
15146 * image.el (imagemagick-types-inhibit)
15147 (imagemagick-register-types): Doc fix.
15148
15149 2011-05-29 Deniz Dogan <deniz@dogan.se>
15150
15151 * net/rcirc.el (rcirc): Use the user's stored encryption method by
15152 default.
15153
15154 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15155
15156 * select.el: Don't perform clipboard-manager saving in hooks;
15157 leave the hooks empty.
15158
15159 2011-05-28 Leo Liu <sdl.web@gmail.com>
15160
15161 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
15162 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
15163 (occur-edit-mode): New major mode (Bug#8463).
15164 (occur-after-change-function): New function.
15165 (occur-engine): Give Occur tags a read-only property.
15166
15167 2011-05-28 Kevin Ryde <user42@zip.com.au>
15168
15169 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
15170
15171 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15172
15173 * bindings.el (help-echo): Make the initial non-indicator dash
15174 empty on graphical terminals (Bug#7295).
15175
15176 * files.el (auto-mode-alist): Move config rule after the
15177 in-stripping one (Bug#8547).
15178
15179 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
15180
15181 * startup.el (normal-splash-screen): Remove gratuitous mode-line
15182 setting (Bug#8740).
15183
15184 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
15185
15186 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
15187 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
15188 (Bug#8539).
15189
15190 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15191
15192 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
15193
15194 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
15195
15196 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
15197 (hs-hide-block-at-point, hs-find-block-beginning)
15198 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
15199 (Bug#8279).
15200
15201 2011-05-28 Glenn Morris <rgm@gnu.org>
15202
15203 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
15204
15205 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15206
15207 * help-fns.el (describe-function-1): If the function is a derived
15208 major mode, print the parent mode.
15209
15210 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
15211 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
15212
15213 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
15214
15215 * minibuffer.el (completion--capf-wrapper): Check applicability before
15216 returning non-nil for non-exclusive completion data.
15217 * progmodes/etags.el (tags-completion-at-point-function):
15218 * info-look.el (info-lookup-completions-at-point): Mark as
15219 non-exclusive.
15220 (info-complete): Adjust accordingly.
15221
15222 * info-look.el: Convert to lexical-binding and completion-at-point.
15223 (info-lookup-completions-at-point): New function.
15224 (info-complete): Use it and completion-in-region.
15225
15226 2011-05-28 Drew Adams <drew.adams@oracle.com>
15227
15228 * isearch.el: Let M-e start with point at the first mismatched char.
15229 (isearch-fail-pos): New function.
15230 (isearch-edit-string): Use it.
15231
15232 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
15233
15234 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
15235
15236 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
15237
15238 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
15239 traversal functions for avl-trees.
15240 (avl-tree--stack): New struct.
15241 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
15242 (avl-tree-enter): Add optional `updatefun' arg.
15243 (avl-tree--do-enter): Add optional `updatefun' arg.
15244 Change return value.
15245 (avl-tree-delete): Add optional `test' and `nilflag' args.
15246 (avl-tree--do-delete): Add `test' and `nilflag' args.
15247 Change return value.
15248 (avl-tree-member): Add optional `nilflag'
15249 (avl-tree-member-p): New function.
15250 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
15251 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
15252 (avl-tree-stack-empty-p): New functions.
15253
15254 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
15255 avl-tree--del-balance1 and make it work both ways.
15256 (avl-tree--del-balance2): Remove.
15257 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
15258 make it work both ways.
15259 (avl-tree--enter-balance2): Remove.
15260 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
15261 New macros.
15262 (avl-tree--mapc, avl-tree-map): Add direction argument.
15263
15264 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
15265
15266 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
15267
15268 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
15269
15270 * select.el: Support clipboard managers with built-in function
15271 x-clipboard-manager-save, via delete-frame-functions and
15272 kill-emacs-hook.
15273 (xselect-convert-to-targets): Add MULTIPLE target to list.
15274 (xselect-convert-to-save-targets): New function.
15275
15276 2011-05-27 Kenichi Handa <handa@m17n.org>
15277
15278 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
15279 let-binding rfc2047-encode-encoded-words to nil.
15280
15281 2011-05-27 Glenn Morris <rgm@gnu.org>
15282
15283 * mail/emacsbug.el: Don't require url-util.
15284
15285 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
15286
15287 * files.el (set-auto-mode):
15288 Also respect mode: entries at the end of the file. (Bug#8586)
15289
15290 2011-05-26 Glenn Morris <rgm@gnu.org>
15291
15292 * files.el (hack-local-variables-prop-line, hack-local-variables):
15293 Downcase mode names, as seems to be traditional.
15294 (hack-local-variables, hack-local-variables-apply): Doc fixes.
15295
15296 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
15297 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
15298
15299 2011-05-25 Julien Danjou <julien@danjou.info>
15300
15301 * textmodes/rst.el (rst-define-level-faces): Do not define face
15302 symbol if it is already defined.
15303
15304 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
15305
15306 * play/5x5.el (5x5-new-game, 5x5-randomize):
15307 Reset 5x5-solver-output to nil when a new grid is cast.
15308 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
15309 these debugging traces, as defmacro breaks the compiled code.
15310
15311 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
15312
15313 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
15314
15315 2011-05-24 Leo Liu <sdl.web@gmail.com>
15316
15317 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
15318 (vc-bzr-sha1): Adapt.
15319
15320 * sha1.el: Remove. Function `sha1' is now builtin.
15321
15322 * bindings.el: Provide sha1 feature.
15323
15324 2011-05-24 Kenichi Handa <handa@m17n.org>
15325
15326 * mail/sendmail.el: Require `rfc2047'.
15327 (mail-insert-from-field): Do not perform RFC2047 encoding.
15328 (mail-encode-header): New function.
15329 (sendmail-send-it): Set buffer-file-coding-system of the work
15330 buffer to the return value of select-message-coding-system.
15331 Call mail-encode-header.
15332
15333 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
15334
15335 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
15336
15337 * mail/supercite.el (sc-default-cite-frame):
15338 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
15339
15340 2011-05-24 Glenn Morris <rgm@gnu.org>
15341
15342 * progmodes/python.el (brm-menu): Declare.
15343
15344 * emulation/viper.el (viper-set-hooks): Declare.
15345
15346 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
15347 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
15348 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
15349 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
15350 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
15351 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
15352
15353 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
15354
15355 Add an :exit-function for completion-at-point.
15356
15357 * minibuffer.el (completion--done): New fun.
15358 (completion--do-completion): Use it. New arg `expect-exact'.
15359 (minibuffer-complete, minibuffer-complete-word): Don't output message,
15360 since completion--do-completion does it for us now.
15361 (minibuffer-force-complete): Use completion--done and
15362 completion--replace. Handle sole-completion case with more care.
15363 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
15364 (completion-extra-properties): New var.
15365 (completion-annotate-function): Make obsolete.
15366 (minibuffer-completion-help): Adjust accordingly.
15367 Use completion-list-insert-choice-function.
15368 (completion-at-point, completion-help-at-point):
15369 Bind completion-extra-properties.
15370 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
15371 * simple.el (completion-list-insert-choice-function): New var.
15372 (completion-setup-function): Preserve it.
15373 (choose-completion): Pay attention to it, shuffle the code a bit.
15374 (choose-completion-string): New arg `insert-function'.
15375
15376 * textmodes/bibtex.el: Convert to lexical binding.
15377 (bibtex-mode-map): Use completion-at-point.
15378 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
15379 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
15380 (bibtex-complete): Define as obsolete alias.
15381 (bibtex-complete-internal): Remove.
15382 (bibtex-format-entry): Remove unused sub-group in regexp.
15383 * shell.el (shell--command-completion-data)
15384 (shell-environment-variable-completion):
15385 * pcomplete.el (pcomplete-completions-at-point):
15386 * comint.el (comint--complete-file-name-data): Use :exit-function
15387 instead of completion-table-with-terminator so it also works for
15388 choose-completion.
15389
15390 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
15391
15392 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
15393
15394 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
15395 (bug#8710).
15396
15397 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
15398
15399 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
15400
15401 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
15402 customization variable and implement: If non-nil, auto-fill will
15403 be inhibited while on topic's header line.
15404
15405 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
15406
15407 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
15408 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
15409 always have a solution in grid size = 5 cases.
15410 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
15411 (5x5-solver-output, 5x5-log-buffer): New vars.
15412 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
15413 Make these variables buffer local to achieve 5x5 multi-session-ness.
15414 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
15415 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
15416 (5x5-solve-suggest): New funs.
15417 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
15418 randomize a grid so that we ensure that there is always a solution.
15419 (5x5-make-random-grid): Allow other movement than flipping.
15420
15421 2011-05-23 Kevin Ryde <user42@zip.com.au>
15422
15423 * emacs-lisp/advice.el (ad-read-advised-function):
15424 Use `function-called-at-point' as the default, if it has
15425 advice and passes PREDICATE.
15426
15427 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
15428
15429 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
15430 byte-compile-lambda if it's actually a lambda.
15431
15432 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
15433 Fix function quoting. Use backquote better.
15434
15435 2011-05-22 Yuanle Song <sylecn@gmail.com>
15436
15437 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
15438 matching (Bug#8516).
15439
15440 2011-01-22 Jari Aalto <jari.aalto@cante.net>
15441
15442 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
15443 different face (Bug#8178).
15444
15445 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
15446
15447 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
15448 defface (Bug#8144).
15449
15450 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
15451
15452 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
15453 funcall as well (bug#8712). Warn when performing those conversions.
15454 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
15455
15456 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
15457
15458 2011-05-22 Glenn Morris <rgm@gnu.org>
15459
15460 * files.el (hack-local-variables-prop-line): Small simplifications.
15461 (hack-local-variables, hack-local-variables-prop-line):
15462 If MODE-ONLY, return the mode, rather than just `t'.
15463
15464 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
15465
15466 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
15467
15468 2011-05-21 Glenn Morris <rgm@gnu.org>
15469
15470 * files.el (hack-local-variables-prop-line, hack-local-variables):
15471 If only interested in the mode, don't bother doing the other stuff.
15472
15473 * image-mode.el (image-after-revert-hook):
15474 Redraw all frames on which the image is visible. (Bug#8567)
15475
15476 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
15477
15478 * wid-edit.el (widget-checklist-match-inline):
15479 Fix 2011-04-19 change. (Bug#8649)
15480
15481 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
15482
15483 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
15484 Also allow singlespace after single-letter capitals followed by a dot.
15485
15486 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
15487 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
15488
15489 2011-05-20 Nix <nix@esperi.org.uk>
15490
15491 * files.el (basic-save-buffer-2):
15492 Fix handling of break-hardlink-on-save with non-existent files.
15493
15494 2011-05-19 Deniz Dogan <deniz@dogan.se>
15495
15496 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
15497 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
15498
15499 2011-05-19 Glenn Morris <rgm@gnu.org>
15500
15501 * progmodes/f90.el (f90-type-def-re):
15502 Handle "type, bind(c)". (Bug#8691)
15503
15504 * emacs-lisp/autoload.el (batch-update-autoloads):
15505 Set autoload-excludes by parsing loadup.el rather than Makefiles.
15506
15507 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
15508
15509 * net/tramp.el (tramp-process-actions): Set "first-password-request"
15510 property for the correct connection in case of multihops.
15511
15512 2011-05-18 Glenn Morris <rgm@gnu.org>
15513
15514 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
15515 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
15516
15517 Rationalize calendar handling of day and month abbrev-arrays.
15518 * calendar/calendar.el (calendar-customized-p): New function.
15519 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
15520 (calendar-day-name-array, calendar-month-name-array): Doc fix.
15521 Add :set function.
15522 (calendar-abbrev-length, calendar-day-abbrev-array)
15523 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
15524 (calendar-day-abbrev-array, calendar-month-abbrev-array):
15525 Elements may no longer be nil.
15526 (calendar-day-name, calendar-month-name):
15527 Update for changed nature of abbrev arrays.
15528 * calendar/diary-lib.el (diary-name-pattern):
15529 Update for changed nature of abbrev arrays.
15530 (diary-mark-entries-1): Update calendar-make-alist calls.
15531 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
15532 * calendar/cal-html.el (cal-html-day-abbrev-array):
15533 Simply inherit from calendar-day-abbrev-array.
15534
15535 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
15536
15537 * progmodes/grep.el (grep-mode): Disable default
15538 compilation-directory-matcher setting (bug#8684).
15539
15540 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
15541
15542 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
15543 instead of "head" and "tail". There were problems with SunOS 5.9,
15544 and it performs better.
15545
15546 2011-05-17 Glenn Morris <rgm@gnu.org>
15547
15548 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
15549
15550 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
15551 Replace obsolete function.
15552
15553 * shell.el (pcomplete-parse-arguments-function): Declare.
15554
15555 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
15556 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
15557 (appt-check): Doc fixes.
15558 (appt-disp-window-function, appt-delete-window-function):
15559 Remove needless special case in custom :type.
15560 (appt-display-count): Default to 0, not nil.
15561 (appt-check): Reset appt-display-count to 0, not nil.
15562
15563 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
15564
15565 * progmodes/python.el (python-font-lock-keywords):
15566 Add the Python 3.X keyword "nonlocal" (bug#8639).
15567
15568 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
15569
15570 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
15571
15572 2011-05-16 Kevin Ryde <user42@zip.com.au>
15573
15574 * info-look.el (makefile-automake-mode): New setups, looking in
15575 automake manual, then makefile-mode.
15576 (makefile-mode): Remove automake manual, have it just in
15577 makefile-automake-mode since there's various things different or
15578 not relevant to plain make.
15579 (makefile-mode): Remove "other-modes" non-existent automake-mode,
15580 believe a hypothetical automake-mode would go to makefile-mode,
15581 not the other way around.
15582
15583 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
15584
15585 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
15586 hunk-end tags (Bug#8672).
15587
15588 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
15589 vc-annotate-show-diff-revision-at-line (Bug#8671).
15590
15591 2011-05-14 Glenn Morris <rgm@gnu.org>
15592
15593 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
15594 in the middle of an existing one with multiple authors. (Bug#8645)
15595 (change-log-font-lock-keywords): Also handle multiple author lines
15596 with leading tabs. (Bug#8644)
15597
15598 * calendar/appt.el (appt-check): Rename some local variables.
15599 Some simplification/reordering.
15600
15601 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
15602 (feedmail-sendmail-f-doesnt-sell-me-out)
15603 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
15604 (feedmail-debug-sit-for, feedmail-queue-express-hook)
15605 (feedmail-queue-runner-message-sender): Set :version.
15606 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
15607 (bbdb-dwim-net-address, vm-mail): Declare.
15608 (feedmail-binmail-gnulinuxish-template):
15609 Rename from feedmail-binmail-linuxish-template.
15610 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
15611 Use insert-buffer-substring.
15612
15613 2011-05-14 Bill Carpenter <bill@carpenter.org>
15614
15615 * mail/feedmail.el (feedmail-patch-level): Increase.
15616 (feedmail-debug): New custom group.
15617 (feedmail-confirm-outgoing-timeout)
15618 (feedmail-sendmail-f-doesnt-sell-me-out)
15619 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
15620 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
15621 (feedmail-sender-line, feedmail-from-line)
15622 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
15623 (feedmail-spray-this-address)
15624 (feedmail-spray-address-fiddle-plex-list)
15625 (feedmail-queue-use-send-time-for-date)
15626 (feedmail-queue-use-send-time-for-message-id)
15627 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
15628 (feedmail-buffer-eating-function):
15629 Doc fixes.
15630 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
15631 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
15632 (feedmail-message-action-scroll-down): New functions.
15633 (feedmail-queue-directory, feedmail-queue-draft-directory):
15634 Use expand-file-name.
15635 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
15636 Remove C-v help entry.
15637 (feedmail-queue-buffer-file-name): New variable.
15638 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
15639 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
15640 (feedmail-message-action-send-strong, feedmail-message-action-edit)
15641 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
15642 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
15643 (feedmail-message-action-toggle-spray)
15644 (feedmail-run-the-queue-no-prompts)
15645 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
15646 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
15647 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
15648 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
15649 (feedmail-envelope-deducer, feedmail-fiddle-from)
15650 (feedmail-fiddle-sender, feedmail-default-date-generator)
15651 (feedmail-fiddle-date, feedmail-fiddle-message-id)
15652 (feedmail-fiddle-spray-address)
15653 (feedmail-fiddle-list-of-spray-fiddle-plexes)
15654 (feedmail-fiddle-list-of-fiddle-plexes)
15655 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
15656 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
15657 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
15658 Change default. Doc fix.
15659 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
15660 (feedmail-binmail-linuxish-template): New constant.
15661 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
15662 Respect feedmail-sendmail-f-doesnt-sell-me-out.
15663 (feedmail-send-it): Add debug call.
15664 Use feedmail-queue-buffer-file-name, and
15665 feedmail-send-it-immediately-wrapper.
15666 (feedmail-message-action-send): Add debug call.
15667 Use feedmail-send-it-immediately-wrapper.
15668 (feedmail-queue-express-to-queue): Add debug call.
15669 Run feedmail-queue-express-hook.
15670 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
15671 (feedmail-message-action-help-blat):
15672 Rename from feedmail-queue-send-edit-prompt-help-first.
15673 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
15674 Check line-endings. Handle errors better.
15675 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
15676 Doc fix. Add debug call.
15677 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
15678 Use feedmail-queue-send-edit-prompt-inner.
15679 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
15680 (feedmail-queue-send-edit-prompt-inner): New function, extracted
15681 from feedmail-queue-send-edit-prompt.
15682 (feedmail-queue-send-edit-prompt-help)
15683 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
15684 (feedmail-tidy-up-slug): Add debug call.
15685 Respect feedmail-queue-slug-suspect-regexp.
15686 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
15687 (feedmail-dump-message-to-queue): Add debug call.
15688 Expand queue-directory.
15689 (feedmail-dump-message-to-queue): Change message slightly.
15690 Use feedmail-say-chatter.
15691 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
15692 (feedmail-send-it-immediately-wrapper): New function.
15693 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
15694 Insert empty string rather than newline. Handle full-frame case.
15695 Use catch/throw. Use feedmail-say-chatter.
15696 (feedmail-fiddle-from): Try mail-host-address.
15697 (feedmail-default-message-id-generator): Doc fix.
15698 Bind system-time-locale. Handle missing end.
15699 (feedmail-fiddle-x-mailer): Add debug call.
15700 Handle feedmail-x-mailer-line being nil.
15701 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
15702 Add debug call. Use buffer-substring-no-properties.
15703 (feedmail-say-debug, feedmail-say-chatter): New functions.
15704 (feedmail-find-eoh): Give an explicit error.
15705
15706 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
15707
15708 * net/newst-treeview.el (newsticker-treeview-face): Change default
15709 family from helvetica to sans.
15710 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
15711 etc/images/newsticker.
15712
15713 * net/newst-reader.el (newsticker-feed-face): Change default
15714 family from helvetica to sans.
15715
15716 * net/newst-plainview.el (newsticker-new-item-face)
15717 (newsticker-old-item-face, newsticker-immortal-item-face)
15718 (newsticker-obsolete-item-face, newsticker-date-face)
15719 (newsticker-statistics-face): Change default family from
15720 helvetica to sans.
15721 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
15722 etc/images/newsticker.
15723
15724 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
15725 (newsticker--process-auto-mark-filter-match): Tell user about
15726 auto-marking.
15727
15728 2011-05-13 Didier Verna <didier@xemacs.org>
15729
15730 Common Lisp indentation improvements on defmethod and lambda-lists.
15731 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
15732 TODO entries.
15733 (lisp-lambda-list-keyword-parameter-indentation)
15734 (lisp-lambda-list-keyword-parameter-alignment)
15735 (lisp-lambda-list-keyword-alignment): New customizable user options.
15736 (lisp-indent-defun-method): Improve docstring.
15737 (extended-loop-p): Fix comment.
15738 (lisp-indent-lambda-list-keywords-regexp): New variable.
15739 (lisp-indent-lambda-list): New function.
15740 (lisp-indent-259): Use it.
15741 (lisp-indent-defmethod): Support for more than one
15742 method qualifier and properly indent methods lambda-lists.
15743 (defgeneric): Provide a missing common-lisp-indent-function property.
15744
15745 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
15746
15747 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
15748 bounds for the empty string (bug#8667).
15749
15750 2011-05-13 Glenn Morris <rgm@gnu.org>
15751
15752 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
15753
15754 * mail/sendmail.el (sendmail-program): Try executable-find first.
15755 (sendmail-send-it): `sendmail-program' cannot be unbound.
15756
15757 * calendar/appt.el (appt-make-list): Simplify.
15758 (appt-time-msg-list): Doc fix.
15759 (appt-check): Change mode-line message at the time of the appointment.
15760
15761 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
15762
15763 * progmodes/ld-script.el (ld-script-keywords)
15764 (ld-script-builtins): Update keywords list.
15765
15766 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
15767
15768 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
15769
15770 * shell.el (shell-completion-vars): New function.
15771 (shell-mode):
15772 * simple.el (read-shell-command): Use it.
15773 (blink-matching-open): No need for " [...]" in minibuffer-message.
15774
15775 2011-05-12 Glenn Morris <rgm@gnu.org>
15776
15777 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
15778 (appt-check): Simplify.
15779
15780 2011-05-12 Eli Zaretskii <eliz@gnu.org>
15781
15782 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
15783 literal "/dev/null".
15784
15785 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
15786
15787 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
15788 Fix typo.
15789
15790 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
15791
15792 * progmodes/which-func.el (which-function):
15793 Use add-log-current-defun instead of add-log-current-defun-function,
15794 which might not be defined (Bug#8260).
15795
15796 2011-05-12 Glenn Morris <rgm@gnu.org>
15797
15798 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
15799 Let byte-compile-initial-macro-environment always take precedence.
15800
15801 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
15802
15803 * net/rcirc.el: Add support for SSL/TLS connections.
15804 (rcirc-server-alist): New field `encryption'.
15805 (rcirc): Check `encryption' settings.
15806 (rcirc-connect): New arg `encryption'. Use open-network-stream.
15807 Merge make-local-variable into `set'.
15808 (rcirc--connection-open-p): New function.
15809 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
15810 the process is not a network process (e.g. running gnutls-cli).
15811 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
15812 Make rcirc-(en|de)code-coding-system local here.
15813 (rcirc-mode): Merge make-local-variable into `set'.
15814 (rcirc-parent-buffer): Make permanent buffer-local.
15815 (rcirc-multiline-minor-mode): Don't do it here.
15816 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
15817 there's no server buffer.
15818
15819 2011-05-11 Glenn Morris <rgm@gnu.org>
15820
15821 * newcomment.el (comment-kill): Prefix "unused" local.
15822
15823 * term/w32console.el (get-screen-color): Declare.
15824
15825 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
15826 Handle symbol elements of byte-compile-initial-macro-environment.
15827
15828 2011-05-10 Leo Liu <sdl.web@gmail.com>
15829
15830 * bookmark.el (bookmark-bmenu-mode-map):
15831 Bind bookmark-bmenu-search to `/'.
15832
15833 * mail/footnote.el: Convert to utf-8 encoding.
15834 (footnote-unicode-string, footnote-unicode-regexp): New variable.
15835 (Footnote-unicode): New function.
15836 (footnote-style-alist): Add unicode style to the list.
15837 (footnote-style): Doc fix.
15838
15839 2011-05-10 Jim Meyering <meyering@redhat.com>
15840
15841 Fix doubled-word typos.
15842 * international/quail.el (quail-insert-kbd-layout): and and -> and
15843 * kermit.el: and and -> and
15844 * net/ldap.el (ldap-search-internal): to to -> to
15845 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
15846 * progmodes/js.el (js-mode): and and -> and
15847 * textmodes/artist.el (artist-move-to-xy): at at -> at
15848 (artist-draw-region-trim-line-endings): if if -> if
15849 And Safetyc -> Safety.
15850 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
15851
15852 2011-05-10 Glenn Morris <rgm@gnu.org>
15853 Stefan Monnier <monnier@iro.umontreal.ca>
15854
15855 * files.el (hack-one-local-variable-eval-safep):
15856 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
15857
15858 2011-05-10 Glenn Morris <rgm@gnu.org>
15859
15860 * calendar/diary-lib.el (diary-list-entries-hook)
15861 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
15862 (diary-nongregorian-marking-hook, diary-list-entries)
15863 (diary-include-other-diary-files, diary-mark-entries)
15864 (diary-mark-included-diary-files): Doc fixes.
15865
15866 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
15867
15868 * misc.el: Require tabulated-list.el during compilation.
15869
15870 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
15871
15872 * progmodes/compile.el (compilation-start):
15873 Run compilation-filter-hook for the async case too.
15874 (compilation-filter-hook): Doc fix.
15875
15876 2011-05-09 Deniz Dogan <deniz@dogan.se>
15877
15878 * wdired.el: Remove outdated installation comment. Fix usage
15879 comment.
15880
15881 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
15882
15883 * misc.el: Implement new command `list-dynamic-libraries'.
15884 (list-dynamic-libraries--loaded-only-p): New variable.
15885 (list-dynamic-libraries--refresh): New function.
15886 (list-dynamic-libraries): New command.
15887
15888 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
15889
15890 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15891 Fix the ant regexp to handle end-line and end-column info from jikes.
15892 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
15893 higher priority to avoid clobbering by gnu.
15894
15895 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
15896
15897 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
15898 if the face has existing theme settings (Bug#8454).
15899
15900 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
15901
15902 * progmodes/perl-mode.el (perl-imenu-generic-expression):
15903 Only match variables declared via `my' or `our' (Bug#8261).
15904
15905 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
15906 special file names `.' and `..' (Bug#8259).
15907
15908 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
15909
15910 * progmodes/grep.el (grep-mode-font-lock-keywords):
15911 Remove buffer-changing entries.
15912 (grep-filter): New function.
15913 (grep-mode): Add it to compilation-filter-hook.
15914
15915 * progmodes/compile.el (compilation-filter-hook)
15916 (compilation-filter-start): New defvars.
15917 (compilation-filter): Call compilation-filter-hook prior to
15918 updating the process mark.
15919
15920 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15921
15922 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
15923
15924 2011-05-07 Eli Zaretskii <eliz@gnu.org>
15925
15926 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
15927 mailclient-send-it even if window-system is nil. (Bug#8595)
15928
15929 * term/w32console.el (terminal-init-w32console):
15930 Call get-screen-color and use its output to set the frame
15931 background-mode. (Bug#8597)
15932
15933 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15934
15935 Make bytecomp.el understand that defmethod defines funs (bug#8631).
15936 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
15937 New functions.
15938 (defgeneric, eieio--defmethod): Use them.
15939 (eieio-defgeneric): Remove.
15940 (defmethod): Call defgeneric in a way visible to the byte-compiler.
15941
15942 2011-05-07 Glenn Morris <rgm@gnu.org>
15943
15944 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
15945 Use let rather than let*.
15946 (timeclock-find-discrep): Remove unused local.
15947
15948 * calendar/diary-lib.el (diary-comment-start): Doc fix.
15949
15950 * calendar/appt.el (appt-time-msg-list): Doc fix.
15951
15952 2011-05-06 Noah Friedman <friedman@splode.com>
15953
15954 * apropos.el (apropos-print-doc): Only use
15955 emacs-lisp-docstring-fill-column when it is bound to an integer,
15956 per that variable's documentation.
15957
15958 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15959
15960 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
15961 and warnings are not silently discarded (e.g. use -d instead of -P).
15962
15963 2011-05-06 Glenn Morris <rgm@gnu.org>
15964
15965 * calendar/appt.el (appt-message-warning-time): Doc fix.
15966 (appt-warning-time-regexp): New option.
15967 (appt-make-list): Respect appt-message-warning-time.
15968
15969 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
15970 New options.
15971 (diary-add-to-list): Strip comments from the displayed string.
15972 (diary-mode): Set comment-start and comment-end.
15973
15974 * vc/diff-mode.el (smerge-refine-subst): Declare.
15975 (diff-refine-hunk): Don't require smerge-mode when compiling.
15976
15977 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
15978
15979 * simple.el (list-processes): Return nil as the docstring says.
15980
15981 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
15982
15983 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
15984 to "".
15985 (ange-ftp-write-region, ange-ftp-insert-file-contents)
15986 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
15987 determining of binary transfer. (Bug#7383)
15988
15989 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
15990
15991 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15992 Fix port computation bug. (Bug#8618)
15993
15994 2011-05-05 Glenn Morris <rgm@gnu.org>
15995
15996 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
15997
15998 * simple.el (shell-dynamic-complete-functions)
15999 (comint-dynamic-complete-functions): Declare.
16000
16001 * net/network-stream.el (gnutls-negotiate):
16002 * simple.el (tabulated-list-print): Fix declarations.
16003
16004 * progmodes/gud.el (syntax-symbol, syntax-point):
16005 Remove unnecessary and incorrect declarations.
16006
16007 * emacs-lisp/check-declare.el (check-declare-scan):
16008 Handle byte-compile-initial-macro-environment in bytecomp.el
16009
16010 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
16011
16012 Fix earlier half-done eieio-defmethod change (bug#8338).
16013 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
16014 Streamline and change calling convention.
16015 (defmethod): Adjust accordingly and simplify.
16016 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
16017 new eieio--defmethod.
16018 (slot-boundp): Minor CSE simplification.
16019
16020 2011-05-05 Milan Zamazal <pdm@zamazal.org>
16021
16022 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
16023 (glasses-make-readable): Use glasses-separate-capital-groups.
16024
16025 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
16026
16027 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
16028 (warning-series): Doc fix.
16029 (display-warning): Don't try to create the buffer if we just found it.
16030
16031 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
16032
16033 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
16034 (autoload-find-generated-file): New function.
16035 (generate-file-autoloads): Bind generated-autoload-file to
16036 buffer-file-name.
16037 (update-file-autoloads, update-directory-autoloads):
16038 Use autoload-find-generated-file. If called interactively, prompt for
16039 output file (Bug#7989).
16040 (batch-update-autoloads): Doc fix.
16041
16042 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16043
16044 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
16045
16046 2011-05-04 Glenn Morris <rgm@gnu.org>
16047
16048 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
16049 function, so it follows changes in calendar-date-style.
16050 (diary-fancy-date-matcher): New function.
16051 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
16052 (diary-fancy-font-lock-fontify-region-function):
16053 Use diary-fancy-date-pattern as a function.
16054
16055 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
16056 non-numbers for `year' etc pseudo-variables. (Bug#8583)
16057
16058 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
16059
16060 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
16061 instead of positional arguments. Allow :keylist and :crlfiles
16062 arguments.
16063 (open-gnutls-stream): Call it.
16064
16065 * net/network-stream.el (network-stream-open-starttls): Adjust to
16066 call `gnutls-negotiate' with :process and :hostname arguments.
16067
16068 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
16069
16070 * minibuffer.el (completion--message): New function.
16071 (completion--do-completion, minibuffer-complete)
16072 (minibuffer-force-complete, minibuffer-complete-word): Use it.
16073 (completion--do-completion): Don't ignore completion-auto-help when in
16074 icomplete-mode.
16075
16076 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
16077 internal encoding (e.g. tibetan zero is not whitespace).
16078 (global-whitespace-mode): Prefer save-current-buffer.
16079 (whitespace-trailing-regexp): Remove useless save-match-data.
16080 (whitespace-empty-at-bob-regexp): Minor simplification.
16081
16082 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
16083
16084 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
16085
16086 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16087
16088 * textmodes/ispell.el (ispell-add-per-file-word-list):
16089 Use `concat' to create string for insertion.
16090
16091 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
16092
16093 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
16094 Avoid open-line which runs post-self-insert-hook.
16095 (bibtex-fill-entry): Remove unused `end' var.
16096
16097 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
16098
16099 * textmodes/ispell.el (ispell-add-per-file-word-list):
16100 Protect against `nil' value of `comment-start' (Bug#8579).
16101
16102 2011-05-03 Leo Liu <sdl.web@gmail.com>
16103
16104 * isearch.el (isearch-yank-pop): New command.
16105 (isearch-mode-map): Bind it to `M-y'.
16106 (isearch-forward): Mention it.
16107
16108 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
16109
16110 * simple.el (minibuffer-complete-shell-command): Remove.
16111 (minibuffer-local-shell-command-map): Use completion-at-point.
16112 (read-shell-command): Setup completion vars here instead.
16113 (read-expression-map): Bind TAB to symbol completion.
16114
16115 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
16116 error directly rather via storing it into `results'.
16117
16118 2011-05-02 Leo Liu <sdl.web@gmail.com>
16119
16120 * vc/diff.el: Fix description.
16121
16122 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16123
16124 * server.el (server-eval-at): New function.
16125
16126 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16127
16128 * net/network-stream.el (open-network-stream): Take a :nowait
16129 parameter and pass it on to `make-network-process'.
16130 (network-stream-open-plain): Ditto.
16131
16132 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
16133
16134 * faces.el (face-spec-set-match-display): Don't match toolkit
16135 options on terminal frames.
16136
16137 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
16138
16139 * progmodes/pascal.el: Use lexical binding.
16140 (pascal-mode-map): Remove author preferences.
16141
16142 * pcomplete.el (pcomplete-std-complete): Don't abuse
16143 completion-at-point.
16144
16145 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16146
16147 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
16148 removing code that has been dead since 1991 or so.
16149
16150 * startup.el (command-line): When warning about "_emacs", use a
16151 delayed warning to allow the user to filter it out.
16152
16153 2011-04-28 Deniz Dogan <deniz@dogan.se>
16154
16155 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
16156 user has not joined.
16157
16158 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16159
16160 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
16161 aren't any completions at point.
16162
16163 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16164
16165 * subr.el (display-delayed-warnings): New function.
16166 (delayed-warnings-hook): New variable.
16167
16168 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16169
16170 * minibuffer.el (completion-at-point, completion-help-at-point):
16171 Don't presume that a given completion-at-point-function will always
16172 use the same calling convention.
16173
16174 * pcomplete.el (pcomplete-completions-at-point):
16175 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
16176 pcomplete-seen is non-nil.
16177 (pcomplete-comint-setup): Also recognize the new comint/shell
16178 completion functions.
16179 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
16180 pcomplete-seen is non-nil.
16181
16182 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
16183
16184 * calendar/icalendar.el (diary-lib): Add require statement.
16185 (icalendar--create-uid): Read out a uid from a text-property on
16186 the first character in the entry. This allows for code to add its
16187 own uid to the entry.
16188 (icalendar--convert-float-to-ical): Add export of
16189 `diary-float'-entries save for those with the optional DAY
16190 argument.
16191
16192 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
16193
16194 * subr.el (shell-quote-argument): Use alternate escaping strategy
16195 when we spot a variable reference in a string.
16196
16197 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16198
16199 * cus-start.el (all): Define customization for debug-on-event.
16200
16201 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16202
16203 * subr.el (shell-quote-argument): Escape correctly under Windows.
16204
16205 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16206
16207 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
16208
16209 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
16210
16211 * net/tramp.el (tramp-process-actions): Add POS argument.
16212 Delete region between POS and (pos).
16213
16214 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16215 Use `nil' position in `tramp-process-actions' call.
16216 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
16217
16218 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
16219 position in `tramp-process-actions' call.
16220
16221 * net/trampver.el: Update release number.
16222
16223 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16224
16225 * custom.el (defcustom): Obey lexical-binding.
16226
16227 Fix octave-inf completion problems reported by Alexander Klimov.
16228 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
16229 Inherit from octave-mode-syntax-table.
16230 (inferior-octave-mode): Set info-lookup-mode.
16231 (inferior-octave-completion-at-point): New function.
16232 (inferior-octave-complete): Use it and completion-in-region.
16233 (inferior-octave-dynamic-complete-functions): Use it as well, and use
16234 comint-filename-completion.
16235 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
16236 symbol elements which shouldn't be word elements.
16237 (octave-font-lock-keywords, octave-beginning-of-defun)
16238 (octave-function-header-regexp): Adjust regexps accordingly.
16239 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
16240
16241 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
16242
16243 * net/gnutls.el (gnutls-errorp): Declare before first use.
16244
16245 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
16246
16247 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
16248 verify-error, and verify-hostname-error parameters. Check whether
16249 default trustfile exists before going to use it. Add missing
16250 argument to gnutls-message-maybe call. Return value.
16251 Reported by Claudio Bley <claudio.bley@gmail.com>.
16252 (open-gnutls-stream): Add usage example.
16253
16254 * net/network-stream.el (network-stream-open-starttls): Give host
16255 parameter to `gnutls-negotiate'.
16256 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
16257 * subr.el (shell-quote-argument): Escape correctly under Windows.
16258
16259 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
16260
16261 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
16262 Use correct match group (bug#8438).
16263
16264 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
16265
16266 * emacs-lisp/package.el (package-built-in-p): Fix typo.
16267 (package-menu--generate): New arg specifying packages to show.
16268 (package-menu-refresh, package-menu-execute, list-packages):
16269 Callers changed.
16270 (package-show-package-list): New function, replacing deleted
16271 package--list-packages (renamed because it is non-internal).
16272
16273 * finder.el (finder-list-matches): Use package-show-package-list
16274 instead of deleted package--list-packages.
16275
16276 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
16277 Based on a previous implementation by Juanma Barranquero (Bug#8366).
16278 (vc-annotate-mode-map): Bind it to RET.
16279
16280 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
16281
16282 * progmodes/etags.el (next-file): Don't use set-buffer to change
16283 buffers (Bug#8478).
16284
16285 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
16286
16287 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
16288
16289 * apropos.el (apropos-label-face): Avoid variable-pitch face.
16290 (apropos-accumulator): Doc fix.
16291 (apropos-function, apropos-macro, apropos-command)
16292 (apropos-variable, apropos-face, apropos-group, apropos-widget)
16293 (apropos-plist): Add face property.
16294 (apropos-symbols-internal): Fix indentation.
16295 (apropos-print): Simplify help, and recognize apropos-multi-type.
16296 (apropos-print-doc): Use button-type-get to extract the button's
16297 face property. Fill docstring (Bug#8352).
16298
16299 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
16300
16301 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
16302
16303 * play/mpuz.el (mpuz-silent): Doc fix.
16304 (mpuz-mode-map): Use mapc.
16305 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
16306 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
16307 Fix typos in docstrings.
16308
16309 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
16310 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
16311
16312 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
16313
16314 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
16315
16316 * minibuffer.el (completion--do-completion): Avoid the "Next char
16317 not unique" prompt if icomplete-mode is enabled (Bug#5849).
16318
16319 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
16320 mouse-2 into unread-command-events, it is interpreted correctly.
16321
16322 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
16323 (image-toggle-display): Doc fix.
16324
16325 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
16326
16327 * textmodes/page.el (what-page): Use line-number-at-pos to
16328 calculate line number (Bug#6825).
16329
16330 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
16331
16332 * eshell/esh-mode.el (find-tag-interactive): Declare function.
16333 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
16334 Pass argument NO-DEFAULT to `find-tag-interactive'.
16335
16336 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
16337
16338 Lexical-binding cleanup.
16339
16340 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
16341 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
16342 * progmodes/ada-prj.el (ada-prj-initialize-values)
16343 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
16344 (ada-prj-show-value):
16345 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
16346 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
16347 (antlr-invalidate-context-cache, antlr-options-menu-filter)
16348 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
16349 * progmodes/bug-reference.el (bug-reference-push-button):
16350 * progmodes/fortran.el (fortran-line-length):
16351 * progmodes/glasses.el (glasses-change):
16352 * progmodes/octave-mod.el (octave-fill-paragraph):
16353 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
16354 (python-pdbtrack-grub-for-buffer, python-sentinel):
16355 * progmodes/sql.el (sql-save-connection):
16356 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
16357 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
16358 Mark unused parameters.
16359
16360 * progmodes/compile.el (compilation--flush-directory-cache)
16361 (compilation--flush-parse, compile-internal): Mark unused parameters.
16362 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
16363 (compilation-next-error-function): Remove unused variable `timestamp'.
16364
16365 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
16366 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
16367
16368 * progmodes/dcl-mode.el (dcl-end-of-command):
16369 Remove unused variable `start'.
16370 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
16371 (dcl-option-value-basic, dcl-option-value-offset)
16372 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
16373 Mark unused parameters.
16374 (dcl-save-local-variable): Remove unused variable `val'.
16375 (mode): Declare.
16376
16377 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
16378 Mark unused parameters.
16379 (delphi-ignore-changes): Move before first use.
16380 (delphi-charset-token-at): Remove unused variable `start'.
16381 (delphi-else-start): Remove unused variable `if-count'.
16382 (delphi-comment-block-start, delphi-comment-block-end):
16383 Remove unused variable `kind'.
16384 (delphi-indent-line): Remove unused variable `new-point'.
16385
16386 * progmodes/ebrowse.el (ebrowse-files-list)
16387 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
16388 Mark unused parameters. Don't quote `lambda'.
16389 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
16390 Don't quote `lambda'.
16391 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
16392 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
16393 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
16394 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
16395 Use `ignore-errors'.
16396 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
16397 (ebrowse-view/find-file-and-search-pattern)
16398 (ebrowse-view/find-member-declaration/definition):
16399 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
16400 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
16401 Rename parameter PREFIX-ARG to PREFIX.
16402 (ebrowse-tags-read-name): Remove unused variables `start' and
16403 `member-info'.
16404 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
16405 to `tags-file'.
16406
16407 * progmodes/etags.el (local-find-tag-hook): Declare.
16408 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
16409 Mark unused parameters.
16410
16411 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
16412 (executable-interpret): Mark unused parameter.
16413
16414 * progmodes/flymake.el (flymake-process-sentinel)
16415 (flymake-after-change-function)
16416 (flymake-create-temp-with-folder-structure)
16417 (flymake-get-include-dirs-dot): Mark unused parameters.
16418 (flymake-safe-delete-directory): Remove unused variable `err'.
16419
16420 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
16421 (speedbar-timer-fn, speedbar-line-text)
16422 (speedbar-change-expand-button-char, speedbar-delete-subblock)
16423 (speedbar-center-buffer-smartly): Declare functions.
16424 (gdb-find-watch-expression): Remove unused variable `array'.
16425 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
16426 (gdb-starting): Mark unused parameters.
16427 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
16428 (gdb-table-string): Remove unused variable `res'.
16429 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
16430 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
16431 (gdb-display-buffer): Remove unused variable `cur-size'.
16432
16433 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
16434 allow lexical-binding compilation.
16435 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
16436 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
16437 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
16438 Mark unused parameters.
16439 (gud-gdb-marker-filter): Remove unused variable `match'.
16440 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
16441 lambda expressions and funcall them, instead of using `fset'.
16442
16443 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
16444 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
16445
16446 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
16447 variable `header-beg'; use `let'.
16448
16449 * progmodes/icon.el (indent-icon-exp): Remove unused variables
16450 `restart', `last-sexp' and `at-do'.
16451
16452 * progmodes/js.el (js--debug): Mark unused parameter.
16453 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
16454 (js--splice-into-items): Remove unused variable `item'.
16455 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
16456
16457 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
16458 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
16459 (makefile-complete): Remove unused variable `try'.
16460 (makefile-fill-paragraph, makefile-match-function-end):
16461 Mark unused parameters.
16462
16463 * progmodes/octave-inf.el (inferior-octave-complete):
16464 Remove unused variable `proc'.
16465 (inferior-octave-output-digest): Mark unused parameter.
16466
16467 * progmodes/perl-mode.el (perl-calculate-indent):
16468 Remove unused variable `err'.
16469
16470 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
16471 (prolog-indent-line): Mark unused parameters.
16472 (prolog-indent-line): Remove unused variable `beg'.
16473
16474 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
16475 (reporter-dont-compact-list): Declare.
16476
16477 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
16478 Remove unused variable `char'.
16479 (sh-debug): Mark unused parameter.
16480 (sh-get-indent-info): Remove unused variable `start'.
16481 (sh-calculate-indent): Remove unused variable `var'.
16482
16483 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
16484 (simula-electric-keyword): Remove unused variable `null'.
16485 (simula-search-backward, simula-search-forward): Remove unused
16486 variables `begin' and `end'.
16487
16488 * progmodes/vera-mode.el (vera-guess-basic-syntax):
16489 Remove unused variable `pos'.
16490 (vera-electric-tab, vera-comment-uncomment-region):
16491 Mark unused parameters.
16492 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
16493
16494 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
16495
16496 * emacs-lisp/package.el (package--builtins, package-alist)
16497 (package-load-descriptor, package-built-in-p, package-activate)
16498 (define-package, package-installed-p)
16499 (package-compute-transaction, package-buffer-info)
16500 (package--push): Doc fix. Distinguish more clearly between
16501 version strings and version lists.
16502
16503 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
16504
16505 Lexical-binding cleanup.
16506
16507 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
16508 (5x5-make-mutate-best):
16509 * play/fortune.el (fortune-in-buffer):
16510 * play/gomoku.el (gomoku-init-display):
16511 * play/solitaire.el (solitaire, solitaire-do-check):
16512 * play/tetris.el (tetris-default-update-speed-function):
16513 Mark unused parameters.
16514
16515 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
16516 (bubbles--shift): Remove unused variable `char-org'.
16517 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
16518 (bubbles--show-images): Remove unused variable `char'.
16519
16520 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
16521 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
16522 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
16523 (decipher-analyze-buffer): Use ?\s.
16524 (decipher-make-checkpoint): Remove unused variable `mapping'.
16525
16526 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
16527
16528 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
16529 Remove unused variable `result'; use `let'.
16530
16531 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
16532 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
16533 (gametree-children-shown-p, gametree-compute-reduced-score):
16534 Use `ignore-errors'.
16535
16536 * play/handwrite.el (ps-lpr-switches): Declare.
16537 (handwrite): Remove unused variables `pmin' and `lastp'.
16538
16539 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
16540
16541 * play/landmark.el (landmark-init-display)
16542 (landmark-update-naught-weights): Mark unused parameters.
16543 (landmark-y): Remove unused variable `noise'. Simplify.
16544 (landmark-human-plays): Remove unused variable `score'.
16545
16546 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
16547 (mpuz-try-proposal): Remove unused variable `game'.
16548
16549 * play/zone.el (life-patterns): Declare.
16550
16551 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
16552
16553 * vc/vc.el (ediff-vc-internal): Declare function.
16554
16555 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16556
16557 * shell.el: Use lexical-binding and std completion UI.
16558 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
16559 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
16560 comint-preoutput-filter-functions rather than on
16561 comint-output-filter-functions.
16562 (shell-command-completion, shell--command-completion-data)
16563 (shell-filename-completion, shell-environment-variable-completion)
16564 (shell-c-a-p-replace-by-expanded-directory): New functions.
16565 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
16566 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
16567 (shell-dynamic-complete-environment-variable): Use them.
16568 (shell-dynamic-complete-as-environment-variable)
16569 (shell-dynamic-complete-as-command): Remove.
16570 (shell-match-partial-variable): Match past point.
16571 * comint.el: Clean up use of completion-at-point-functions.
16572 (comint-completion-at-point): New function.
16573 (comint-mode): Use it completion-at-point-functions.
16574 (comint-dynamic-complete): Make it obsolete.
16575 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
16576 (comint-c-a-p-replace-by-expanded-history): New function.
16577 (comint-dynamic-complete-functions)
16578 (comint-replace-by-expanded-history): Use it.
16579 * minibuffer.el (completion-table-with-terminator): Allow dynamic
16580 termination strings. Try harder to avoid second try-completion.
16581 (completion-in-region-mode-map): Disable bindings that don't work yet.
16582
16583 * comint.el: Use lexical-binding. Require CL.
16584 (comint-dynamic-complete-functions): Use comint-filename-completion.
16585 (comint-completion-addsuffix): Tweak custom type.
16586 (comint-filename-completion, comint--common-suffix)
16587 (comint--common-quoted-suffix, comint--table-subvert)
16588 (comint--complete-file-name-data): New functions.
16589 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
16590 (comint-dynamic-list-filename-completions): Use them.
16591 (comint-dynamic-simple-complete): Make obsolete.
16592
16593 * minibuffer.el (completion-in-region-mode):
16594 Keep completion-in-region-mode--predicate global.
16595 (completion-in-region--postch):
16596 Assume completion-in-region-mode--predicate is not null.
16597
16598 * progmodes/flymake.el (flymake-start-syntax-check-process):
16599 Obey `dir'. Simplify.
16600
16601 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
16602 we're in VC after all.
16603
16604 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
16605
16606 * vc/vc.el (vc-diff-build-argument-list-internal)
16607 (vc-version-ediff, vc-ediff): New commands.
16608 (vc-version-diff): Use vc-diff-build-argument-list-internal.
16609
16610 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16611
16612 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
16613 add sanity check.
16614
16615 * obsolete/erc-hecomplete.el: Make obsolete.
16616 * obsolete/: Standardize obsolescence info in the header.
16617
16618 2011-04-20 Glenn Morris <rgm@gnu.org>
16619
16620 * calendar/solar.el (solar-horizontal-coordinates):
16621 Use the longitude argument rather than `calendar-longitude'.
16622 (solar-date-next-longitude): Remove unused locals.
16623
16624 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16625
16626 * whitespace.el: New version 13.2.1.
16627
16628 2011-04-20 felix <EmacsWiki> (tiny change)
16629
16630 * whitespace.el (global-whitespace-mode): Keep highlight when
16631 switching between major modes on a file.
16632
16633 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
16634
16635 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
16636 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
16637 multi-line comments as well.
16638
16639 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
16640
16641 Lexical-binding cleanup.
16642
16643 * arc-mode.el (archive-mode-revert):
16644 * cmuscheme.el (scheme-interactively-start-process):
16645 * custom.el (custom-initialize-delay):
16646 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
16647 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
16648 * emacs-lock.el (emacs-lock-clear-sentinel):
16649 * ezimage.el (defezimage):
16650 * follow.el (follow-avoid-tail-recenter):
16651 * fringe.el (set-fringe-mode-1):
16652 * generic-x.el (bat-generic-mode-compile):
16653 * help-mode.el (help-info-variable, help-do-xref)
16654 (help-mode-revert-buffer):
16655 * help.el (view-emacs-todo):
16656 * iswitchb.el (iswitchb-completion-help):
16657 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
16658 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
16659 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
16660 * locate.el (locate-update):
16661 * longlines.el (longlines-encode-region)
16662 (longlines-after-change-function):
16663 * outline.el (outline-isearch-open-invisible):
16664 * ps-def.el (declare-function, charset-dimension, char-width)
16665 (encode-char):
16666 * ps-mule.el (ps-mule-plot-string):
16667 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
16668 (recentf-edit-list-select, recentf-edit-list-validate)
16669 (recentf-open-files-action):
16670 * rect.el (delete-whitespace-rectangle-line)
16671 (rectangle-number-line-callback):
16672 * register.el (window-configuration-to-register)
16673 (frame-configuration-to-register):
16674 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
16675 * select.el (xselect-convert-to-string, xselect-convert-to-length)
16676 (xselect-convert-to-targets, xselect-convert-to-delete)
16677 (xselect-convert-to-filename, xselect-convert-to-charpos)
16678 (xselect-convert-to-lineno, xselect-convert-to-colno)
16679 (xselect-convert-to-os, xselect-convert-to-host)
16680 (xselect-convert-to-user, xselect-convert-to-class)
16681 (xselect-convert-to-name, xselect-convert-to-integer)
16682 (xselect-convert-to-atom, xselect-convert-to-identity):
16683 * subr.el (declare, ignore, process-kill-without-query)
16684 (text-clone-maintain):
16685 * terminal.el (te-get-char, te-tic-sentinel):
16686 * tool-bar.el (tool-bar-make-keymap):
16687 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
16688 * type-break.el (type-break-mode, type-break-noninteractive-query):
16689 * view.el (View-back-to-mark):
16690 * wid-browse.el (widget-browse-action, widget-browse-widget)
16691 (widget-browse-widgets, widget-browse-sexp):
16692 * widget.el (define-widget-keywords):
16693 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
16694 Mark unused parameters.
16695
16696 * align.el (align-adjust-col-for-rule): Mark unused parameter.
16697 (align-areas): Remove unused variable `look'.
16698 (align-region): Remove unused variables `real-end' and `pos-list'.
16699
16700 * apropos.el (apropos-score-doc): Remove unused variable `i'.
16701
16702 * bindings.el (mode-line-modified, mode-line-remote):
16703 Mark unused parameters.
16704 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
16705
16706 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
16707 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
16708
16709 * comint.el (comint-history-isearch-pop-state)
16710 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
16711 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
16712 (comint-substitute-in-file-name): Doc fix.
16713
16714 * completion.el (cmpl-statistics-block): Mark unused parameter.
16715 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
16716 (save-completions-to-file, load-completions-from-file):
16717 Remove unused local variable `e'.
16718
16719 * composite.el (compose-chars): Remove unused variable `len'.
16720 (lgstring-insert-glyph): Remove unused variable `g'.
16721 (compose-glyph-string): Remove unused variables `ascent',
16722 `descent', `lbearing' and `rbearing'.
16723 (compose-glyph-string-relative): Remove unused variables
16724 `lbearing', `rbearing' and `wadjust'.
16725 (compose-gstring-for-graphic): Remove unused variables `header',
16726 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
16727 (compose-gstring-for-terminal): Remove unused variables `header'
16728 and `nchars'. Use `let', not `let*'.
16729
16730 * cus-edit.el (Custom-set, Custom-save, custom-reset)
16731 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
16732 (Custom-buffer-done, custom-buffer-create-internal)
16733 (custom-browse-visibility-action, custom-browse-group-tag-action)
16734 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
16735 (widget-magic-mouse-down-action, custom-toggle-parent)
16736 (custom-add-parent-links, custom-toggle-hide-variable)
16737 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
16738 (custom-toggle-hide-face, face, hook, custom-group-link-action)
16739 (custom-face-menu-create, custom-variable-menu-create, get)
16740 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
16741 (custom-reset-standard-save-and-update): Remove unused variable `value'.
16742 (customize-apropos): Remove unused variable `tests'.
16743 (custom-group-value-create): Remove unused variable `hidden-p'.
16744 (sort-fold-case): Declare.
16745
16746 * cus-theme.el (custom-reset-standard-faces-list)
16747 (custom-reset-standard-variables-list): Declare.
16748 (customize-create-theme, custom-theme-revert, custom-theme-write)
16749 (custom-theme-choose-mode, customize-themes, custom-theme-save):
16750 Mark unused parameters.
16751
16752 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
16753
16754 * delim-col.el (delimit-columns-max): Move defvar before first use.
16755
16756 * descr-text.el (describe-char-categories): Don't quote `lambda'.
16757 (describe-char): Don't quote `lambda'. Mark unused parameter.
16758
16759 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
16760 (auto-insert): Declare.
16761 (desktop-restore-file-buffer): Rename desktop-* parameters;
16762 mark unused ones.
16763 (desktop-create-buffer): Rename desktop-* parameters and bind them.
16764 (desktop-buffer): Rename desktop-* parameters.
16765
16766 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
16767 (dframe-reposition-frame-xemacs, dframe-help-echo)
16768 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
16769 Mark unused parameters.
16770
16771 * dired-aux.el (backup-extract-version-start, overwrite-query)
16772 (overwrite-backup-query, rename-regexp-query)
16773 (rename-non-directory-query): Declare.
16774 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
16775 (dired-add-entry): Remove unused variable `orig-file-name'.
16776 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
16777 Use parameter PRESERVE-TIME instead of accessing dynamic variable
16778 `dired-copy-preserve-time' directly.
16779 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
16780 (dired-insert-subdir-newpos): Rename unused variable `pos'.
16781
16782 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
16783 (dired-virtual-revert, dired-make-relative-symlink):
16784 Mark unused parameters.
16785 (manual-program): Declare.
16786 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
16787 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
16788 wrapped in `with-no-warnings' to avoid replacing one warning by another.
16789
16790 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
16791
16792 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
16793
16794 * echistory.el (electric-history-in-progress, Helper-return-blurb):
16795 Declare.
16796
16797 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
16798
16799 * electric.el (Electric-command-loop): Rename parameter
16800 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
16801
16802 * expand.el (expand-in-literal): Remove unused variable `here'.
16803
16804 * facemenu.el (facemenu-add-new-color):
16805 Remove unused variable `docstring'.
16806
16807 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
16808 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
16809 (face-attr-construct): Mark unused parameter. Doc fix.
16810 (read-color): Remove unused variable `hex-string'.
16811
16812 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
16813 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
16814 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
16815 (display-buffer-other-frame): Remove unused variable `old-window'.
16816 (kill-buffer-hook): Declare.
16817 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
16818 Mark unused parameters.
16819 (after-find-file): Pass 1 to `auto-save-mode', not t.
16820
16821 * files-x.el (auto-insert): Declare.
16822 (modify-file-local-variable-prop-line): Remove unused variable `val'.
16823
16824 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
16825 variable `buf'. Mark unused parameter.
16826 (find-lisp-insert-directory): Mark unused parameter.
16827
16828 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
16829 (format-encode-region): Remove unused variables `cur-buf' and `result'.
16830 (format-common-tail): Remove, unused.
16831 (format-deannotate-region): Remove unused variable `loc'.
16832 (format-annotate-region): Remove unused variable `p'.
16833 (format-annotate-single-property-change): Remove unused variables
16834 `default' and `tail'.
16835
16836 * forms.el (read-file-filter): Declare.
16837 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
16838
16839 * frame.el (frame-creation-function-alist): Mark unused parameter.
16840 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
16841
16842 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
16843 Remove unused parameters.
16844 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
16845 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
16846
16847 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
16848 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
16849 (hfy-prepare-tag-map): Mark unused parameters.
16850 (htmlfontify-buffer): Use `called-interactively-p'.
16851
16852 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
16853 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
16854 (ibuffer-do-occur): Mark unused parameters.
16855 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
16856 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
16857
16858 * ibuffer.el: Don't quote `lambda'.
16859 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
16860 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
16861 Mark unused parameters.
16862
16863 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
16864 (ido-completing-read): Mark unused parameters.
16865 (ido-copy-current-word): Mark unused parameters;
16866 remove unused variable `name'.
16867 (ido-sort-merged-list): Remove unused parameter `dirs'.
16868
16869 * ielm.el (ielm-input-sender): Mark unused parameter.
16870 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
16871 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
16872 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
16873 `ielm-string' as a dynamic variable accessible from the IELM prompt.
16874 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
16875
16876 * image-dired.el (image-dired-display-thumbs): Remove unused
16877 variables `curr-file' and `count'.
16878 (image-dired-remove-tag): Remove unused variable `start'.
16879 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
16880 variable `curr-file'
16881 (image-dired-rotate-original): Remove unused variable `temp-file'.
16882 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
16883 Remove unused variable `file'.
16884 (image-dired-gallery-generate): Remove unused variable `curr'.
16885 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
16886
16887 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
16888
16889 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
16890
16891 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
16892
16893 * isearch.el (minibuffer-history-symbol): Declare.
16894 (isearch-edit-string): Remove unused variable `err'.
16895 (isearch-message-prefix, isearch-message-suffix):
16896 Mark unused parameters.
16897
16898 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
16899
16900 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
16901
16902 * makesum.el (double-column): Remove unused variable `cnt'.
16903
16904 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
16905 (ido-ignore-item-temp-list): Declare.
16906
16907 * mouse-drag.el (mouse-drag-throw): Remove unused variables
16908 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
16909 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
16910 (mouse-drag-drag): Remove unused variables `mouse-delta' and
16911 `mouse-col-delta'.
16912
16913 * mouse-sel.el (mouse-extend-internal):
16914 Remove unused variable `orig-window-frame'.
16915
16916 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
16917 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
16918 Move declarations before first use.
16919 (pcomplete-opt): Mark unused parameters; doc fix.
16920
16921 * proced.el (proced-revert): Mark unused parameter.
16922 (proced-send-signal): Remove unused variable `err'.
16923
16924 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
16925 Rename parameter PREFIX-ARG to ARG.
16926 (ps-basic-plot-string, ps-basic-plot-whitespace):
16927 Mark unused parameters.
16928
16929 * replace.el (replace-count): Define.
16930 (occur-revert-function): Mark unused parameters.
16931 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
16932 (isearch-case-fold-search, isearch-string): Declare.
16933 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
16934 bind `case-fold-search'. Remove unused variables `beg' and `end',
16935 and simplify.
16936 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
16937 COUNT and bind `replace-count'.
16938 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
16939 to COUNT.
16940
16941 * savehist.el (print-readably, print-string-length): Declare.
16942
16943 * shadowfile.el (shadow-expand-cluster-in-file-name):
16944 Remove unused variable `cluster'.
16945 (shadow-copy-file): Remove unused variable `i'.
16946 (shadow-noquery, shadow-clusters, shadow-site-cluster)
16947 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
16948 (shadow-define-literal-group, shadow-define-regexp-group)
16949 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
16950
16951 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
16952 (shell): Use `called-interactively-p'.
16953 (shell-directory-tracker): Remove unused variable `chdir-failure'.
16954
16955 * simple.el (compilation-context-lines, comint-file-name-quote-list)
16956 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
16957 (delete-backward-char): Remove unused variable `ocol'.
16958 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
16959 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
16960 (event-apply-hyper-modifier, event-apply-shift-modifier)
16961 (event-apply-control-modifier, event-apply-meta-modifier):
16962 Mark unused parameters.
16963 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
16964 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
16965
16966 * speedbar.el (speedbar-ignored-directory-expressions)
16967 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
16968 (speedbar-find-file, speedbar-dir-follow)
16969 (speedbar-directory-buttons-follow, speedbar-tag-find)
16970 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
16971 (speedbar-buffers-line-directory, speedbar-buffer-click):
16972 Mark unused parameters.
16973 (speedbar-tag-file): Remove unused variable `mode'.
16974 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
16975
16976 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
16977
16978 * talk.el (talk): Remove unused variable `display'.
16979
16980 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
16981 (tar-write-region-annotate): Mark unused parameter.
16982
16983 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
16984 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
16985 Declare them, wrapped in `with-no-warnings' to avoid replacing one
16986 warning by another.
16987
16988 * time-stamp.el (time-stamp-string-preprocess):
16989 Remove unused variable `require-padding'.
16990
16991 * tree-widget.el (widget-glyph-enable): Declare.
16992 (tree-widget-action): Mark unused parameter.
16993
16994 * w32-fns.el (x-get-selection): Mark unused parameter.
16995 (autoload-make-program, generated-autoload-file): Declare.
16996
16997 * wdired.el (wdired-revert): Mark unused parameters.
16998 (wdired-xcase-word): Remove unused variable `err'.
16999
17000 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
17001 (whitespace-help-scroll): Remove unused variable `data-help'.
17002
17003 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
17004 (widget-image-insert, widget-after-change, default)
17005 (widget-default-format-handler, widget-default-notify)
17006 (widget-default-prompt-value, widget-info-link-action)
17007 (widget-url-link-action, widget-function-link-action)
17008 (widget-variable-link-action, widget-file-link-action)
17009 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
17010 (widget-field-prompt-internal, widget-field-action, widget-field-match)
17011 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
17012 (widget-insert-button-action, widget-delete-button-action, visibility)
17013 (widget-documentation-link-action, widget-documentation-string-action)
17014 (widget-const-prompt-value, widget-regexp-match, symbol)
17015 (widget-coding-system-prompt-value)
17016 (widget-key-sequence-value-to-external, sexp)
17017 (widget-sexp-value-to-internal, character, vector, cons)
17018 (widget-choice-prompt-value, widget-boolean-prompt-value)
17019 (widget-color--choose-action): Mark unused parameters.
17020 (widget-item-match-inline, widget-choice-match-inline)
17021 (widget-checklist-match, widget-checklist-match-inline)
17022 (widget-group-match): Rename parameter VALUES to VALS.
17023 (widget-field-value-set): Remove unused variable `size'.
17024 (widget-color-action): Remove unused variables `value' and `start'.
17025
17026 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
17027 variable `dir'. Doc fix.
17028 (windmove-find-other-window): Don't pass it.
17029
17030 * window.el (count-windows): Mark unused parameter.
17031 (bw-adjust-window): Remove unused variable `err'.
17032
17033 * woman.el (woman-file-name): Remove unused variable `default'.
17034 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
17035 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
17036 (global-font-lock-mode): Declare.
17037 (woman-decode-region): Mark unused parameter.
17038 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
17039
17040 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
17041 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
17042 (x-dnd-handle-moz-url): Remove unused variable `title'.
17043 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
17044
17045 * xml.el (xml-parse-tag, xml-parse-attlist):
17046 Remove unused variable `pos'.
17047
17048 2011-04-19 Glenn Morris <rgm@gnu.org>
17049
17050 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
17051 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
17052 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
17053 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
17054 * calendar/cal-html.el (cal-html-insert-minical):
17055 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
17056 (calendar-mark-date-pattern):
17057 Prefix "unused" locals.
17058
17059 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
17060 optional argument `style'.
17061
17062 * calendar/appt.el (appt-make-list):
17063 * calendar/cal-china.el (calendar-chinese-date-string):
17064 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
17065 (diary-hebrew-yahrzeit):
17066 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
17067 * calendar/calendar.el (calendar-generate-window):
17068 * calendar/time-date.el (time-to-days):
17069 Remove unused local variables.
17070
17071 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
17072
17073 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
17074 glyphless-char-display table.
17075 (tabulated-list-glyphless-char-display): New var.
17076
17077 2011-04-18 Sam Steingold <sds@gnu.org>
17078
17079 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
17080 to acknowledgments.
17081
17082 2011-04-17 Glenn Morris <rgm@gnu.org>
17083
17084 * calendar/diary-lib.el (diary-sexp-entry):
17085 * calendar/holidays.el (holiday-sexp):
17086 Set debug-on-error rather than the removed stack-trace-on-error.
17087
17088 2011-04-16 Glenn Morris <rgm@gnu.org>
17089
17090 * progmodes/f90.el: Use lexical-binding.
17091 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
17092
17093 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
17094
17095 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
17096 (mail-mode): Setup mailalias completion here instead.
17097 * mail/mailalias.el: Use lexical-binding.
17098 (pattern, mailalias-done): Declare dynamic.
17099 (mail-completion-at-point-function): New function, from mail-complete.
17100 (mail-complete): Use it.
17101 (mail-completion-expand): New function.
17102 (mail-get-names): Use it.
17103 (mail-directory, mail-directory-process, mail-directory-stream):
17104 Don't use `pattern' for lexically bound arg.
17105
17106 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
17107
17108 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
17109 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
17110 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
17111
17112 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
17113 (byte-save-window-excursion, byte-temp-output-buffer-setup)
17114 (byte-interactive-p): Define them again, for use when inlining
17115 old code.
17116
17117 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
17118
17119 * loadup.el: Use `string-to-number', not `string-to-int'.
17120
17121 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
17122
17123 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
17124 gud-gdb-complete-command.
17125 (gud-gdb-completions): New function, from gud-gdb-complete-command.
17126 (gud-gdb-completion-at-point): New function.
17127 (gud-gdb-completions): Remove.
17128
17129 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
17130
17131 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
17132 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
17133 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
17134 whether `executable-find' is bound.
17135
17136 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
17137
17138 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
17139
17140 * minibuffer.el (completion-in-region-mode-predicate)
17141 (completion-in-region-mode--predicate): New vars.
17142 (completion-in-region, completion-in-region--postch)
17143 (completion-in-region-mode): Use them.
17144 (completion--capf-wrapper): Also return the hook function.
17145 (completion-at-point, completion-help-at-point):
17146 Adjust and provide a predicate.
17147
17148 Preserve arg names for advice of subr and lexical functions (bug#8457).
17149 * help-fns.el (help-function-arglist): Consolidate the subr and
17150 new-byte-code cases. Add argument `preserve-names' to extract names
17151 from the docstring when needed.
17152 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
17153 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
17154 (ad-arglist): Use help-function-arglist's new arg.
17155 (ad-definition-type): Use cond.
17156
17157 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
17158
17159 * autorevert.el (auto-revert-handler):
17160 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
17161 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
17162 Don't quote lambda.
17163
17164 * image-mode.el (image-transform-set-scale):
17165 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
17166
17167 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17168
17169 * net/network-stream.el (network-stream-open-starttls): Only do
17170 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
17171 Upgrades via gnutls-cli are too slow to be done opportunistically.
17172
17173 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
17174
17175 * dframe.el (dframe-current-frame): Remove spurious quote.
17176
17177 2011-04-12 Glenn Morris <rgm@gnu.org>
17178
17179 * calendar/cal-tex.el (cal-tex-end-document):
17180 Try to automatically use latin1 input if needed.
17181
17182 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
17183 Don't try to cons a mark onto an empty element.
17184
17185 2011-04-11 Leo Liu <sdl.web@gmail.com>
17186
17187 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
17188 buffers.
17189 (ido-kill-buffer-at-head): Support killing virtual buffers.
17190
17191 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
17192
17193 * minibuffer.el (completion-show-inline-help): New var.
17194 (completion--do-completion, minibuffer-complete)
17195 (minibuffer-force-complete, minibuffer-complete-word):
17196 Inhibit minibuffer messages if completion-show-inline-help is nil.
17197
17198 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
17199 to avoid interference from inline help (Bug#5849).
17200
17201 2011-04-10 Leo Liu <sdl.web@gmail.com>
17202
17203 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
17204 Fix typo.
17205
17206 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
17207
17208 * image-mode.el (image-toggle-display-image): Signal an error if
17209 not in Image mode.
17210 (image-transform-mode, image-transform-resize)
17211 (image-transform-set-rotation): Doc fix.
17212 (image-transform-set-resize): Delete.
17213 (image-transform-set-scale, image-transform-fit-to-height)
17214 (image-transform-fit-to-width): Handle image-toggle-display-image
17215 and image-transform-resize directly.
17216
17217 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
17218
17219 * doc-view.el (doc-view-fit-width-to-window)
17220 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
17221 New functions for fitting the shown image to the Emacs window size.
17222 (doc-view-mode-map): Add bindings for the new functions.
17223
17224 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
17225
17226 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
17227 Fix typo in docstring.
17228
17229 2011-04-08 Eli Zaretskii <eliz@gnu.org>
17230
17231 * files.el (file-size-human-readable): Produce one digit after
17232 decimal, like "ls -lh" does.
17233
17234 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
17235 the file size representation.
17236
17237 * simple.el (list-processes): If async subprocesses are not
17238 available, error out with a clear error message.
17239
17240 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
17241
17242 * help.el (help-form-show): New function, to be called from C.
17243 Put help-form output in a buffer named differently than *Help*.
17244
17245 2011-04-08 Eli Zaretskii <eliz@gnu.org>
17246
17247 * files.el (file-size-human-readable): New function.
17248
17249 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
17250 computing the representation inline. Don't require `cl'.
17251
17252 2011-04-08 Glenn Morris <rgm@gnu.org>
17253
17254 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
17255
17256 * net/browse-url.el (browse-url-firefox):
17257 Test system-type, not system-configuration.
17258
17259 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
17260 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
17261 Use log-edit-empty-buffer-p. (Bug#7598)
17262
17263 * net/rlogin.el (rlogin-process-connection-type): Simplify.
17264 (rlogin-mode-map): Initialize in the defvar.
17265 (rlogin): Use ignore-errors.
17266
17267 * replace.el (occur-mode-map): Some fixes for menu items.
17268
17269 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
17270
17271 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
17272
17273 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17274
17275 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
17276 issuing unused warnings.
17277
17278 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
17279 macro directly.
17280
17281 * simple.el: Lisp reimplement of list-processes. Based on an
17282 earlier reimplementation by Leo Liu, but using tabulated-list.el.
17283 (process-menu-mode): New major mode.
17284 (list-processes--refresh, list-processes):
17285 (process-menu-visit-buffer): New functions.
17286
17287 * files.el (save-buffers-kill-emacs): Don't assume any return
17288 value of list-processes, which is undocumented anyway.
17289
17290 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17291
17292 * emacs-lisp/tabulated-list.el: New file.
17293
17294 * emacs-lisp/package.el: Use Tabulated List mode.
17295 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
17296 (package-menu-mode): Derive from tabulated-list-mode. Set up the
17297 table format using Tabulated List mode variables.
17298 (package--push): New macro, replacing package-list-maybe-add.
17299 (package-menu--generate): Use package--push. Renamed from
17300 package--generate-package-list.
17301 (package-menu-refresh, list-packages): Use it.
17302 (package-menu--print-info): Rename from package-print-package.
17303 Return insertion data instead of inserting it directly.
17304 (package-menu-describe-package, package-menu-execute):
17305 Use tabulated-list-get-id.
17306 (package-menu-mark-delete, package-menu-mark-install)
17307 (package-menu-mark-unmark, package-menu-backup-unmark)
17308 (package-menu-mark-obsolete-for-deletion):
17309 Use tabulated-list-put-tag.
17310 (package--list-packages, package-menu-revert)
17311 (package-menu-get-package, package-menu-get-version)
17312 (package-menu-sort-by-column): Functions deleted.
17313 (package-menu-package-list, package-menu-sort-key): Vars deleted.
17314 (package-menu--status-predicate, package-menu--version-predicate)
17315 (package-menu--name-predicate)
17316 (package-menu--description-predicate): Handle arguments in the
17317 Tabulated List format.
17318 (package-list-packages-no-fetch): Call list-packages.
17319
17320 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
17321
17322 * files.el (after-find-file-from-revert-buffer): Remove variable.
17323 (after-find-file): Don't bind it.
17324 (revert-buffer-in-progress-p): New variable.
17325 (revert-buffer): Bind it.
17326 Pass nil for `after-find-file-from-revert-buffer'.
17327
17328 * saveplace.el (save-place-find-file-hook): Use new variable
17329 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
17330
17331 2011-04-06 Glenn Morris <rgm@gnu.org>
17332
17333 * Makefile.in (AUTOGEN_VCS): New variable.
17334 (autoloads): Use $AUTOGEN_VCS.
17335
17336 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
17337 * calendar/calendar.el (calendar-mode-map):
17338 Check for toolkit scroll bars. (Bug#8305)
17339
17340 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
17341
17342 * minibuffer.el (completion-in-region--postch)
17343 (completion-in-region-mode): Remove unnecessary messages.
17344
17345 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
17346
17347 * font-lock.el (font-lock-refresh-defaults):
17348 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
17349 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
17350
17351 * info.el (Info-directory-list, Info-read-node-name-2)
17352 (Info-split-parameter-string): Doc fixes.
17353 (Info-virtual-nodes): Reflow docstring.
17354 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
17355 (Info-apropos-toc-nodes, info-finder, Info-get-token)
17356 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
17357 Fix typos in docstrings.
17358 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
17359 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
17360 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
17361 (Info-restore-desktop-buffer): Mark unused parameters.
17362 (Info-directory-find-file, Info-directory-find-node)
17363 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
17364 (Info-virtual-index-find-node, Info-apropos-find-file)
17365 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
17366 Mark unused parameters; fix typos in docstrings.
17367 (Info-virtual-index): Remove unused local variable `nodename'.
17368
17369 2011-04-05 Deniz Dogan <deniz@dogan.se>
17370
17371 * net/rcirc.el: Update my e-mail address.
17372 (rcirc-mode-map): Remove M-o binding.
17373
17374 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
17375
17376 * startup.el (command-line): Save the cursor's theme-face
17377 directly, instead of using face-override-spec.
17378
17379 * custom.el (load-theme): Minor optimization in assigning faces.
17380
17381 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
17382
17383 * help-fns.el (describe-variable): Complete all variables having
17384 documentation, including keywords.
17385 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
17386
17387 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
17388
17389 Convert to lexical-binding.
17390
17391 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
17392 (bs--get-marked-string, bs--get-modified-string)
17393 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
17394 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
17395 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
17396
17397 * ehelp.el (electric-help-execute-extended)
17398 (electric-help-ctrl-x-prefix):
17399 * hexl.el (hexl-revert-buffer-function):
17400 * linum.el (linum-after-change, linum-after-scroll):
17401 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
17402
17403 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
17404
17405 2011-04-04 Daiki Ueno <ueno@unixuser.org>
17406
17407 * epa-dired.el:
17408 * epa-mail.el:
17409 * epa-hook.el:
17410 * epa-file.el:
17411 * epa.el:
17412 * epg.el: Use lexical binding.
17413
17414 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
17415
17416 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
17417
17418 * textmodes/flyspell.el (flyspell-word): Recognize default
17419 dictionary case for flyspell-mark-duplications-exceptions.
17420 Use regexp matching for languages.
17421 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
17422 default dictionary (Bug#7926).
17423
17424 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
17425
17426 * emacs-lisp/package.el (package--with-work-buffer):
17427 Recognize https URLs.
17428
17429 * net/network-stream.el: Move from gnus/proto-stream.el.
17430 Change prefix to network-stream throughout.
17431 (open-protocol-stream): Merge into open-network-stream, leaving
17432 open-protocol-stream as an alias. Handle nil BUFFER args.
17433
17434 * subr.el (open-network-stream): Move to net/network-stream.el.
17435
17436 2011-04-02 Glenn Morris <rgm@gnu.org>
17437
17438 * find-dired.el (find-exec-terminator): New option.
17439 (find-ls-option): Test for -ls support.
17440 (find-ls-subdir-switches): Test for -b in find-ls-option.
17441 (find-dired, find-grep-dired): Doc fixes.
17442 (find-dired): Use find-exec-terminator.
17443
17444 * find-dired.el (find-ls-option, find-ls-subdir-switches)
17445 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
17446 (find-name-arg): Remove purecopy.
17447
17448 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
17449 (grep-compute-defaults): Check for `-exec COMMAND +' support.
17450 Set grep-find-use-xargs, grep-find-command, and grep-find-template
17451 accordingly. Don't add the null-device if not needed.
17452
17453 * files.el (save-some-buffers): Doc fix.
17454
17455 2011-04-02 Eli Zaretskii <eliz@gnu.org>
17456
17457 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
17458
17459 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
17460
17461 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
17462 Use `dolist' rather than `mapcar'.
17463
17464 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
17465
17466 Add lexical binding.
17467
17468 * subr.el (apply-partially): Use new closures rather than CL.
17469 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
17470 (dolist, dotimes): Use slightly different expansion for lexical code.
17471 (functionp): Move to C.
17472 (letrec): New macro.
17473 (with-wrapper-hook): Use it and apply-partially instead of CL.
17474 (eval-after-load): Preserve lexical-binding.
17475 (save-window-excursion, with-output-to-temp-buffer): Turn them
17476 into macros.
17477
17478 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
17479
17480 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
17481 than the arglist.
17482 (help-add-fundoc-usage): Don't add `Not documented'.
17483 (help-function-arglist): Handle closures, subroutines, and new
17484 byte-code-functions.
17485 (help-make-usage): Remove leading underscores.
17486 (describe-function-1): Handle closures.
17487 (describe-variable): Use special-variable-p for completion.
17488
17489 * files.el (lexical-binding): Declare safe.
17490
17491 * emacs-lisp/pcase.el: Don't use destructuring-bind.
17492 (pcase--memoize): Rename from pcase-memoize. Change weakness.
17493 (pcase): Add `let' pattern.
17494 Change memoization so it actually works.
17495 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
17496 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
17497 <let>: New case.
17498
17499 * emacs-lisp/macroexp.el: Use lexical binding.
17500 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
17501 Don't convert ' to #' without checking that it's indeed quoting
17502 a lambda.
17503
17504 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
17505 Use eval-sexp-add-defvars.
17506 (eval-sexp-add-defvars): New fun.
17507
17508 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
17509
17510 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
17511 Don't autoload.
17512 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
17513 than the internal `byte-compile-lambda'.
17514 (defmethod): Don't hide code under quotes.
17515 (eieio-defmethod): New `code' argument.
17516
17517 * emacs-lisp/eieio-comp.el: Remove.
17518
17519 * emacs-lisp/edebug.el (edebug-eval-defun)
17520 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
17521 (edebug-toggle): Avoid `eval'.
17522
17523 * emacs-lisp/disass.el (disassemble-internal): Handle new
17524 `closure' objects.
17525 (disassemble-1): Handle new byte codes.
17526
17527 * emacs-lisp/cl.el (pushnew): Silence warning.
17528
17529 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
17530 (cl-byte-compile-throw): Remove.
17531 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
17532
17533 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
17534 closures.
17535
17536 * emacs-lisp/cconv.el: New file.
17537
17538 * emacs-lisp/bytecomp.el: Use lexical binding instead of
17539 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
17540 (byte-compile-initial-macro-environment):
17541 Handle declare-function here.
17542 (byte-compile--lexical-environment): New var.
17543 (byte-stack-ref, byte-stack-set, byte-discardN)
17544 (byte-discardN-preserve-tos): New lap codes.
17545 (byte-interactive-p): Don't use any more.
17546 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
17547 New macros.
17548 (byte-compile-lapcode): Use them and handle new lap codes.
17549 (byte-compile-obsolete): Remove.
17550 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
17551 (byte-compile-arglist-warn): Check late def of inlinable funs.
17552 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
17553 since they should have been expanded by now.
17554 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
17555 (byte-compile-from-buffer): Remove unused second arg.
17556 (byte-compile-preprocess): New function.
17557 (byte-compile-toplevel-file-form): New function to distinguish
17558 file-form calls from outside from file-form calls from hunk-handlers.
17559 (byte-compile-file-form): Simplify.
17560 (byte-compile-file-form-defsubst): Remove.
17561 (byte-compile-file-form-defmumble): Simplify now that
17562 byte-compile-lambda always returns a byte-code-function.
17563 (byte-compile): Preprocess.
17564 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
17565 Remove, not used any more.
17566 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
17567 (byte-compile-make-args-desc): New funs.
17568 (byte-compile-lambda): Handle lexical functions. Always return
17569 a byte-code-function.
17570 (byte-compile-reserved-constants): New var, to make up room for
17571 closed-over variables.
17572 (byte-compile-constants-vector): Obey it.
17573 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
17574 (byte-compile-macroexpand-declare-function): New function.
17575 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
17576 byte-code-functions.
17577 (byte-compile-form): Check obsolescence here.
17578 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
17579 (byte-compile-variable-ref): Remove.
17580 (byte-compile-dynamic-variable-op): New fun.
17581 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
17582 (byte-compile-variable-set): New funs.
17583 (byte-compile-discard): Add 2 args.
17584 (byte-compile-stack-ref, byte-compile-stack-set)
17585 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
17586 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
17587 macroexpand-all instead.
17588 (byte-compile-quote-form): Remove.
17589 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
17590 (byte-compile-bind, byte-compile-unbind): New funs.
17591 (byte-compile-let): Handle let* and lexical binding.
17592 (byte-compile-let*): Remove.
17593 (byte-compile-catch, byte-compile-unwind-protect)
17594 (byte-compile-track-mouse, byte-compile-condition-case):
17595 Handle a new :fun-body form, used for lexical scoping.
17596 (byte-compile-save-window-excursion)
17597 (byte-compile-with-output-to-temp-buffer): Remove.
17598 (byte-compile-defun): Simplify.
17599 (byte-compile-stack-adjustment): New fun.
17600 (byte-compile-out): Use it.
17601 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
17602
17603 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
17604 handler any more.
17605
17606 * emacs-lisp/byte-opt.el: Use lexical binding.
17607 (byte-inline-lapcode): Remove (to bytecomp).
17608 (byte-compile-inline-expand): Pay attention to inlining to/from
17609 lexically bound code.
17610 (byte-compile-unfold-lambda): Don't handle byte-code-functions
17611 any more.
17612 (byte-optimize-form-code-walker): Don't handle save-window-excursion
17613 any more and don't call compiler-macros.
17614 (byte-compile-splice-in-already-compiled-code): Remove.
17615 (byte-code): Don't inline any more.
17616 (disassemble-offset): Receive `bytes' as argument rather than via
17617 dynamic scoping.
17618 (byte-compile-tag-number): Declare before first use.
17619 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
17620 `return' even if make-spliceable.
17621 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
17622 obsolete interactive-p.
17623 (byte-optimize-lapcode): Optimize new lap-codes.
17624 Don't trip up on new form of `byte-constant' lap code.
17625
17626 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
17627
17628 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
17629
17630 * custom.el (custom-initialize-default, custom-declare-variable):
17631 Use `defvar'.
17632
17633 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
17634 New variables.
17635 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
17636 (COMPILE_FIRST): Add macroexp and cconv.
17637 * makefile.w32-in: Mirror changes in Makefile.in.
17638
17639 * vc/cvs-status.el:
17640 * vc/diff-mode.el:
17641 * vc/log-edit.el:
17642 * vc/log-view.el:
17643 * vc/smerge-mode.el:
17644 * textmodes/bibtex-style.el:
17645 * textmodes/css-mode.el:
17646 * startup.el:
17647 * uniquify.el:
17648 * minibuffer.el:
17649 * newcomment.el:
17650 * reveal.el:
17651 * server.el:
17652 * mpc.el:
17653 * emacs-lisp/smie.el:
17654 * doc-view.el:
17655 * dired.el:
17656 * abbrev.el: Use lexical binding.
17657
17658 2011-04-01 Eli Zaretskii <eliz@gnu.org>
17659
17660 * info.el (info-display-manual): New function.
17661
17662 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
17663
17664 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
17665
17666 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
17667
17668 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
17669 an entry for that server in rcirc-authinfo. (Bug#8385)
17670
17671 2011-03-31 Glenn Morris <rgm@gnu.org>
17672
17673 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
17674
17675 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
17676
17677 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
17678
17679 * progmodes/python.el (python-default-interpreter)
17680 (python-python-command-args, python-jython-command-args)
17681 (python-which-shell, python-which-args, python-which-bufname)
17682 (python-file-queue, python-comint-output-filter-function)
17683 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
17684 variables and functions.
17685
17686 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
17687
17688 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
17689 (completion-in-region-mode): New minor mode.
17690 (completion-in-region): Use it.
17691 (completion-in-region--data, completion-in-region-mode-map): New vars.
17692 (completion-in-region--postch): New function.
17693 (completion--capf-misbehave-funs, completion--capf-safe-funs):
17694 New vars.
17695 (completion--capf-wrapper): New function.
17696 (completion-at-point): Use it to track well-behavedness of
17697 hook functions.
17698 (completion-help-at-point): New command.
17699
17700 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
17701
17702 * vc/add-log.el (add-change-log-entry): Don't use whitespace
17703 syntax class to search for whitespace on a single line
17704 (Message-ID: <4D938140.4030905@redhat.com>).
17705
17706 2011-03-30 Leo Liu <sdl.web@gmail.com>
17707
17708 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
17709 New commands.
17710 (edit-abbrevs-map): Bind them here.
17711 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
17712
17713 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
17714
17715 * allout.el (allout-hide-by-annotation, allout-flag-region):
17716 Reduce possibility of overlay leakage by making them volatile.
17717
17718 * allout-widgets.el (allout-widgets-tally): Define as nil so the
17719 hash is not shared between buffers. Mode initialization is
17720 responsible for giving it a useful starting value.
17721 (allout-item-span): Reduce possibility of overlay leakage by
17722 making them volatile.
17723 (allout-widgets-count-buttons-in-region): Add diagnostic function
17724 for tracking down button overlay leaks.
17725
17726 2011-03-29 Leo Liu <sdl.web@gmail.com>
17727
17728 * ido.el (ido-read-internal): Use the default history var
17729 minibuffer-history if no HISTORY is specified.
17730
17731 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
17732
17733 * net/imap.el (imap-shell-open, imap-process-connection-type):
17734 Use imap-process-connection-type for 'shell' streams as well as
17735 Kerberos, SSL, other subprocesses.
17736
17737 2011-03-28 Leo Liu <sdl.web@gmail.com>
17738
17739 * abbrev.el (abbrev-table-empty-p): New function.
17740 (prepare-abbrev-list-buffer): Place empty abbrev tables after
17741 nonempty ones. (Bug#5937)
17742
17743 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
17744
17745 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
17746
17747 2011-03-27 Leo Liu <sdl.web@gmail.com>
17748
17749 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
17750 for foreground and background colors.
17751 (ansi-color-make-color-map): Adapt.
17752
17753 2011-03-25 Leo Liu <sdl.web@gmail.com>
17754
17755 * midnight.el (midnight-time-float): Remove. Note it calculates
17756 the microsecond component incorrectly and seconds-to-time does the
17757 same job.
17758 Remove redundant (require 'timer).
17759
17760 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
17761 (ido-completions): Remove unused arguments. (Bug#8329)
17762
17763 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
17764
17765 * minibuffer.el (completion--flush-all-sorted-completions):
17766 Remove itself from hook.
17767 (completion-at-point): Let the functions perform the completion
17768 immediately and return nil or t.
17769 * comint.el (comint-dynamic-complete-functions): Now identical to
17770 completion-at-point-functions.
17771 (comint-dynamic-list-input-ring): Remove unused var `index'.
17772 (comint--match-partial-filename, comint--unquote&expand-filename):
17773 New funs, split from comint-match-partial-filename.
17774 (comint-dynamic-complete): Use completion-at-point.
17775 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
17776
17777 2011-03-24 Drew Adams <drew.adams@oracle.com>
17778
17779 * thingatpt.el: Support `defun'.
17780
17781 2011-03-23 Leo Liu <sdl.web@gmail.com>
17782
17783 * abbrevlist.el: Move to obsolete/abbrevlist.el.
17784
17785 * help-mode.el (help-mode-finish): Tweak regexp.
17786
17787 2011-03-23 Glenn Morris <rgm@gnu.org>
17788
17789 * eshell/esh-opt.el (eshell-eval-using-options):
17790 Do not bind unused local variable `eshell-option-stub'.
17791
17792 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
17793
17794 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
17795
17796 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
17797 keymap variable in `with-no-warnings' to avoid a warning when the
17798 keymap has been already `defconst'ed.
17799
17800 2011-03-22 Leo Liu <sdl.web@gmail.com>
17801
17802 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
17803 encode all chars in abbrevs; otherwise use emacs-mule or
17804 utf-8-emacs. (Bug#8308)
17805
17806 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
17807
17808 * simple.el (backward-delete-char-untabify):
17809 Avoid warning about using `delete-backward-char'.
17810
17811 * image.el (image-type-file-name-regexps): Make it variable.
17812 `imagemagick-register-types' modifies it, and the user may want
17813 to add new extensions for known image types.
17814 (imagemagick-register-types): Throw error if not using ImageMagick.
17815
17816 2011-03-22 Leo Liu <sdl.web@gmail.com>
17817
17818 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
17819 located before rcirc-prompt-end-marker.
17820 (rcirc-complete): Error if point is not after rcirc prompt.
17821 Handle the case when table is nil.
17822 (rcirc-user-authenticated): Define to fix compiler warning.
17823
17824 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
17825
17826 * custom.el (custom--inhibit-theme-enable): Make it affect only
17827 custom-theme-set-variables and custom-theme-set-faces.
17828 (provide-theme): Ignore custom--inhibit-theme-enable.
17829 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
17830 (custom-enabling-themes): Delete variable.
17831 (enable-theme): Accept only loaded themes as arguments.
17832 Ignore the special custom-enabled-themes variable.
17833 (custom-enabled-themes): Forbid themes from setting this.
17834 Eliminate use of custom-enabling-themes.
17835 (custom-push-theme): Quote "changed" custom var entry.
17836
17837 2011-03-21 Leo Liu <sdl.web@gmail.com>
17838
17839 * ido.el (ido-read-internal): Add ido-selected to history instead
17840 of user input.
17841
17842 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
17843
17844 * subr.el (deferred-action-list, deferred-action-function):
17845 Mark obsolete.
17846
17847 2011-03-21 Leo Liu <sdl.web@gmail.com>
17848
17849 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
17850 change on 2011-02-13 (bug#8309).
17851
17852 * minibuffer.el (read-file-name-function): Change default value.
17853 (read-file-name--defaults): Rename from read-file-name-defaults.
17854 (read-file-name-default): Rename from read-file-name.
17855 (read-file-name): Call read-file-name-function.
17856
17857 2011-03-21 Glenn Morris <rgm@gnu.org>
17858
17859 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
17860 Doc fixes.
17861
17862 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
17863
17864 * cus-theme.el: Add missing provide statement.
17865 (customize-create-theme): Extract theme value correctly.
17866 (custom-theme-visit-theme): Autoload.
17867 (customize-create-theme): Prompt before inserting default faces.
17868
17869 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
17870
17871 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
17872 units and musical notes.
17873
17874 2011-03-20 Leo Liu <sdl.web@gmail.com>
17875
17876 * ido.el (ido-read-internal): Use completing-read-default.
17877 (ido-completing-read): Fix compatibility with completing-read.
17878
17879 2011-03-20 Christian Ohler <ohler@gnu.org>
17880
17881 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
17882 (ert-delete-all-tests): Use `called-interactively-p' rather than
17883 `interactive-p'.
17884 (ert--make-xrefs-region): Respect END.
17885
17886 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
17887
17888 * dired-aux.el (dired-create-directory): Signal an error if the
17889 directory already exists (Bug#8246).
17890
17891 * facemenu.el (list-colors-display): Call list-faces-display
17892 inside with-help-window.
17893 (list-colors-print): Use display property to align the final
17894 column, instead of checking window-width.
17895
17896 2011-03-19 Eli Zaretskii <eliz@gnu.org>
17897
17898 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
17899 windows-nt systems.
17900 (emerge-protect-metachars): Quote correctly for ms-dos and
17901 windows-nt systems.
17902
17903 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
17904
17905 * info.el (info-initialize): Replace all uses of `:' with
17906 path-separator for compatibility with non-Unix systems.
17907 Cache quoting of path-separator. (Bug#8258)
17908
17909 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
17910
17911 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
17912 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
17913 (mouse-avoidance-mode): Fix typos in docstrings.
17914
17915 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
17916
17917 * startup.el (package-subdirectory-regexp): Move from package.el.
17918 Omit \\` and \\', and let callers add them.
17919
17920 * emacs-lisp/package.el (package-strip-version)
17921 (package-load-all-descriptors): Add \\` and \\' to
17922 package-subdirectory-regexp before using it.
17923 (package-untar-buffer): New arg DIR; ensure that file untars only
17924 into this expected directory. Remove superfluous delete-region.
17925 (package-unpack): Caller changed.
17926 (package-tar-file-info): Use package-subdirectory-regexp.
17927
17928 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
17929
17930 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
17931 diff-mode-shared-map (bug#8284).
17932 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
17933
17934 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
17935
17936 * calendar/time-date.el (format-seconds): Use assoc instead of
17937 assoc-string, since assoc-string doesn't exist in XEmacs.
17938
17939 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
17940
17941 * custom.el (custom-known-themes): Reflow docstring.
17942 (custom-theme-load-path): Fix typo in docstring.
17943 (load-theme): Fix typo in error message.
17944 (custom-available-themes, custom-variable-theme-value):
17945 Use `let', not `let*'.
17946
17947 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
17948
17949 * calc/README: Mention inclusion of musical notes.
17950
17951 * calc/calc-units.el (calc-lu-quant): Rename from
17952 `calc-logunits-quantity'.
17953 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
17954 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
17955 (calc-db): Rename from `calc-dblevel'.
17956 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
17957 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
17958 (calc-np): Rename from `calc-nplevel'.
17959 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
17960 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
17961 (calc-lu-plus): Rename from `calc-logunits-add'.
17962 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
17963 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
17964 (calc-lu-minus): Rename from `calc-logunits-sub'.
17965 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
17966 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
17967 (calc-lu-times): Rename from `calc-logunits-mul'.
17968 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
17969 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
17970 (calc-lu-divide): Rename from `calc-logunits-div'.
17971 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
17972 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
17973
17974 * calc/calc-ext.el (calc-init-extensions): Update the names of the
17975 functions being autoloaded.
17976
17977 * calc/calc.el (calc-lu-power-reference): Rename from
17978 `calc-logunits-power-reference'.
17979 (calc-lu-field-reference): Rename from
17980 `calc-logunits-field-reference'.
17981
17982 * calc/calc-help.el (calc-l-prefix-help):
17983 Mention musical note functions.
17984
17985 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
17986
17987 * minibuffer.el (completion-all-sorted-completions):
17988 Use :completion-cycle-penalty text property if present.
17989
17990 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
17991
17992 * allout.el (allout-yank-processing): Adjust for new rebulleting
17993 regime so bullet being yanked is used without prompting the user
17994 for a choice.
17995
17996 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
17997
17998 * startup.el (command-line): Warn the user that _emacs is deprecated.
17999
18000 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
18001
18002 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
18003 (delphi-verbose, delphi-comment-face, delphi-string-face)
18004 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
18005 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
18006 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
18007 (delphi-new-comment-line, delphi-font-lock-defaults)
18008 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
18009 Fix typos in docstrings.
18010
18011 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
18012
18013 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
18014 Invert the roles of character and string values for INSTEAD, so a
18015 string is used for the more common case of a defaulting prompt.
18016
18017 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
18018
18019 * progmodes/ruby-mode.el (ruby-backward-sexp):
18020 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
18021 * play/gamegrid.el (gamegrid-make-face):
18022 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
18023 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
18024 * notifications.el (notifications-notify):
18025 * net/xesam.el (xesam-search-engines):
18026 * net/quickurl.el (quickurl-list-insert):
18027 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
18028
18029 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
18030
18031 * startup.el (command-line): Update package subdirectory regexp.
18032
18033 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
18034
18035 * allout.el (allout-abbreviate-flattened-numbering)
18036 (allout-mode-deactivate-hook): Fix up obsolescence "date".
18037
18038 * subr.el (read-char-choice): Only show the cursor after the prompt,
18039 not after the answer.
18040
18041 2011-03-15 Kevin Ryde <user42@zip.com.au>
18042
18043 * help-fns.el (variable-at-point): Skip leading quotes, if any
18044 (bug#8253).
18045
18046 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
18047
18048 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
18049 warning message.
18050
18051 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
18052
18053 * shell.el (shell): When called interactively, offer to change the
18054 shell file name on remote hosts.
18055
18056 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
18057
18058 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
18059 integration for LDAP parameters. The host, base, user or binddn,
18060 and secret tokens can be specified in a netrc file, for instance.
18061 This is optional because an `auth-source' parameter must be
18062 specified in the search attributes.
18063
18064 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
18065
18066 * help.el (describe-mode): Link to the mode's definition (bug#8185).
18067
18068 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
18069
18070 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
18071 into declaration. Remove redundant and harmful binding.
18072
18073 2011-03-12 Eli Zaretskii <eliz@gnu.org>
18074
18075 * files.el (file-ownership-preserved-p): Pass `integer' as an
18076 explicit 2nd argument to `file-attributes'. If the file's owner
18077 is the Administrators group on Windows, and the current user is
18078 Administrator, consider that a match.
18079
18080 * server.el (server-ensure-safe-dir): Consider server directory
18081 safe on MS-Windows if its owner is the Administrators group while
18082 the current Emacs user is Administrator. Use `=' to compare
18083 numerical UIDs, since they could be integers or floats.
18084
18085 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
18086
18087 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
18088
18089 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
18090
18091 Sync with Tramp 2.2.1.
18092
18093 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
18094
18095 * net/trampver.el: Update release number.
18096
18097 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
18098
18099 * progmodes/compile.el (compilation--previous-directory): Fix up
18100 various nil/dead-marker mismatches (bug#8014).
18101 (compilation-directory-properties, compilation-error-properties):
18102 Don't call it at a position past the one we're about to change.
18103
18104 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
18105 Disable obsolescence warnings in the file that declares it.
18106
18107 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
18108
18109 * allout-widgets.el (allout-widgets-tally):
18110 Initialize allout-widgets-tally as a hash table rather than nil to
18111 prevent mode-line redisplay warnings. Also, clarify the module
18112 description and fix a comment typo.
18113
18114 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
18115
18116 * help-fns.el (describe-variable): Don't complete keywords.
18117 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
18118
18119 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
18120
18121 * emacs-lisp/package.el (package-version-join): Impose a standard
18122 string representation for pre/alpha/beta version lists.
18123 (package-unpack-single): Standardize the directory name by passing
18124 it through package-version-join.
18125 (package-strip-rcs-id): Accept any version string that does not
18126 signal an error in version-to-list.
18127
18128 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
18129
18130 * simple.el (delete-trailing-whitespace): Return nil for the
18131 benefit of `write-file-functions'.
18132
18133 2011-03-10 Glenn Morris <rgm@gnu.org>
18134
18135 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
18136
18137 * vc/vc-git.el (vc-git-program): New option.
18138 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
18139 (vc-git--call): Use it.
18140
18141 * eshell/esh-util.el (eshell-condition-case): Doc fix.
18142
18143 * cus-edit.el (Custom-newline): If no button at point, look
18144 for a subgroup button at start-of-line. (Bug#2298)
18145
18146 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
18147
18148 2011-03-10 Julien Danjou <julien@danjou.info>
18149
18150 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
18151 `cursor-type' is nil.
18152
18153 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
18154
18155 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
18156
18157 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
18158
18159 * allout.el: Change so yank of distinctive-bullet items
18160 preserves the existing header prefix, rebulleting it if necessary,
18161 rather than replacing it. This is necessary for proper operation
18162 of cooperative addons like allout-widgets.
18163 (allout-make-topic-prefix, allout-rebullet-heading):
18164 Change SOLICIT arg to INSTEAD, and interpret additionally a string
18165 value as alternate bullet to be used, instead of prompting the user
18166 for a bullet character.
18167
18168 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
18169
18170 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
18171 Do not use `tramp-file-name-port', because this returns also
18172 `tramp-default-port'.
18173
18174 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
18175
18176 * net/rcirc.el (rcirc-handler-001): Remove useless
18177 with-rcirc-process-buffer.
18178 (rcirc-check-auth-status): Swap arguments to string-match.
18179
18180 2011-03-09 Glenn Morris <rgm@gnu.org>
18181
18182 * shell.el (shell-mode):
18183 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
18184
18185 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
18186 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
18187
18188 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
18189
18190 * emacs-lisp/package.el (package-refresh-contents)
18191 (package-menu-execute): Use condition-case-no-debug.
18192
18193 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
18194
18195 * simple.el (shell-command-to-string): Use `process-file'.
18196
18197 * emacs-lisp/package.el (package-tar-file-info): Handle also
18198 remote files.
18199
18200 * emacs-lisp/package-x.el (package-upload-buffer-internal):
18201 Use `equal' for upload base check.
18202
18203 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
18204
18205 * textmodes/texinfo.el (texinfo-environments):
18206 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
18207
18208 2011-03-08 Glenn Morris <rgm@gnu.org>
18209
18210 * cus-start.el (cursor-in-non-selected-windows):
18211 Fix :set quoting oddness. (Bug#8192)
18212
18213 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
18214 in some setf expressions. (Bug#2159)
18215
18216 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
18217
18218 * custom.el (custom-available-themes): Return themes in
18219 alphabetical order.
18220
18221 See ChangeLog.15 for earlier changes.
18222
18223 ;; Local Variables:
18224 ;; coding: utf-8
18225 ;; End:
18226
18227 Copyright (C) 2011-2012 Free Software Foundation, Inc.
18228
18229 This file is part of GNU Emacs.
18230
18231 GNU Emacs is free software: you can redistribute it and/or modify
18232 it under the terms of the GNU General Public License as published by
18233 the Free Software Foundation, either version 3 of the License, or
18234 (at your option) any later version.
18235
18236 GNU Emacs is distributed in the hope that it will be useful,
18237 but WITHOUT ANY WARRANTY; without even the implied warranty of
18238 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18239 GNU General Public License for more details.
18240
18241 You should have received a copy of the GNU General Public License
18242 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.