]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* minibuffer.el (comps): Declare for byte-compiler.
[gnu-emacs] / lisp / ChangeLog
1 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
2
3 * minibuffer.el (comps): Declare for byte-compiler.
4
5 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
6 * emulation/cua-base.el (cua-repeat-replace-region):
7 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
8 (cua-cut-region-to-global-mark):
9 Remove text properties with `set-text-properties'.
10
11 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
12
13 * net/tramp.el (top, with-progress-reporter): Use
14 `symbol-function' inside `funcall'.
15
16 * net/tramp-compat.el (tramp-compat-file-attributes)
17 (tramp-compat-delete-file, tramp-compat-delete-directory): Handle
18 only `wrong-number-of-arguments' error.
19
20 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
21 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
22 inside `funcall'.
23
24 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
25
26 * minibuffer.el (completion--sreverse, completion--common-suffix):
27 New functions.
28 (completion-pcm--merge-completions): Extract common suffix when safe.
29
30 * emacs-lisp/easy-mmode.el (define-minor-mode):
31 Make :variable more flexible.
32 * files.el (auto-save-mode): Use it to define using define-minor-mode.
33
34 2010-05-05 Juri Linkov <juri@jurta.org>
35
36 Add `slow' and `history' tags to the desktop data.
37
38 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
39 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
40 (Info-finder-find-node): Require `finder.el' to be able
41 to restore node from the desktop.
42 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
43 data `Info-history' and `slow' tag in the assoc list.
44 (Info-restore-desktop-buffer): Don't restore nodes with the
45 `slow' tag. Restore `Info-history'.
46
47 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
48
49 Add FORCE argument to `delete-file'.
50
51 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
52 forcing to delete the temporary file.
53 (ange-ftp-delete-file): Add FORCE arg.
54 (ange-ftp-rename-remote-to-remote)
55 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
56 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
57 Force file deletion.
58
59 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
60
61 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
62 (tramp-handle-make-symbolic-link, tramp-handle-load)
63 (tramp-do-copy-or-rename-file-via-buffer)
64 (tramp-do-copy-or-rename-file-directly)
65 (tramp-do-copy-or-rename-file-out-of-band)
66 (tramp-handle-process-file, tramp-handle-call-process-region)
67 (tramp-handle-shell-command, tramp-handle-file-local-copy)
68 (tramp-handle-insert-file-contents, tramp-handle-write-region)
69 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
70
71 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
72 (tramp-fish-handle-make-symbolic-link)
73 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
74
75 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
76 Use `tramp-compat-delete-file'.
77
78 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
79 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
80
81 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
82 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
83
84 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
85 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
86 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
87 `tramp-compat-delete-file'.
88
89 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
90
91 Minor cleanups.
92 * subr.el (add-minor-mode): Use push.
93 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
94 * emulation/edt.el (edt-select-mode): Simplify.
95
96 Use define-minor-mode in more cases.
97 * term/tvi970.el (tvi970-set-keypad-mode):
98 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
99 (normal-erase-is-backspace-mode):
100 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
101 (set-scroll-bar-mode-1): (Re)move to its sole caller.
102 (get-scroll-bar-mode): New function.
103 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
104
105 Use define-minor-mode for less obvious cases.
106 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
107 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
108 * international/iso-ascii.el (iso-ascii-mode):
109 * frame.el (auto-raise-mode, auto-lower-mode):
110 * composite.el (global-auto-composition-mode): Use define-minor-mode.
111
112 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
113
114 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
115 in order to see error messages for failed logins.
116
117 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
118
119 * diff.el (diff-sentinel):
120
121 * epg.el (epg--make-temp-file, epg-decrypt-string)
122 (epg-verify-string, epg-sign-string, epg-encrypt-string):
123
124 * jka-compr.el (jka-compr-partial-uncompress)
125 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
126
127 * server.el (server-sentinel): Use delete-file's new FORCE arg
128 (Bug#6070).
129
130 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
131
132 Use define-minor-mode where applicable.
133 * view.el (view-mode):
134 * type-break.el (type-break-query-mode)
135 (type-break-mode-line-message-mode):
136 * textmodes/reftex.el (reftex-mode):
137 * term/vt100.el (vt100-wide-mode):
138 * tar-mode.el (tar-subfile-mode):
139 * savehist.el (savehist-mode):
140 * ibuf-ext.el (ibuffer-auto-mode):
141 * composite.el (auto-composition-mode):
142 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
143 Use define-minor-mode.
144 (vhdl-mode): Use static mode-line format.
145 (vhdl-mode-line-update): Delete.
146 (vhdl-create-mode-menu, vhdl-activate-customizations)
147 (vhdl-hs-minor-mode): Don't bother calling it.
148
149 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
150
151 * simple.el (with-wrapper-hook): Move.
152 (buffer-substring-filters): Mark obsolete.
153 (filter-buffer-substring-functions): New variable.
154 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
155
156 Use a mode-line spec rather than a static string in Semantic.
157 * cedet/semantic/util-modes.el:
158 (semantic-minor-modes-format): New var to replace...
159 (semantic-minor-modes-status): Remove.
160 (semantic-mode-line-update): Construct a mode-line spec rather than
161 a static string so that mouse buttons can be used on individual minor
162 modes and so that semantic-mode-line-update only needs to be called
163 when global settings are changed.
164 (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
165 Call semantic-mode-line-update.
166 (semantic-toggle-minor-mode-globally): Don't assume mode is on
167 minor-mode-alist, check semantic-minor-mode-alist as well.
168 (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
169 (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
170 (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
171 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
172 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
173 (define-semantic-idle-service, semantic-idle-summary-mode):
174 * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
175 Don't call semantic-mode-line-update any more.
176
177 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
178
179 Use define-minor-mode in CEDET where applicable.
180
181 * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
182 Use define-minor-mode.
183
184 * cedet/semantic/util-modes.el (semantic-add-minor-mode):
185 Remove unused arg `keymap' and code redundant with define-minor-mode.
186 (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
187 (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
188 (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
189 (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
190 (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
191 (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
192 Use define-minor-mode.
193 (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
194 (semantic-show-unmatched-syntax-mode-setup)
195 (semantic-show-parser-state-mode-setup)
196 (semantic-highlight-func-mode-setup): Inline into sole caller.
197
198 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
199 (semantic-mru-bookmark-mode): Use define-minor-mode.
200 (semantic-mru-bookmark-mode-setup): Inline into sole caller.
201
202 * cedet/semantic/idle.el (define-semantic-idle-service):
203 Use define-minor-mode and inline setup function into its sole caller.
204 (semantic-idle-scheduler-mode-setup)
205 (semantic-idle-summary-mode-setup): Inline into sole caller.
206 (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
207 Use define-minor-mode.
208
209 * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
210 (semantic-decoration-mode): Use define-minor-mode.
211 (semantic-decoration-mode-setup): Inline into sole caller.
212
213 * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
214 (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
215 (ede-dired-add-to-target): Use dolist.
216
217 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
218 Michael Albinus <michael.albinus@gmx.de>
219
220 Implement compression for inline methods.
221
222 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
223 (tramp-copy-size-limit): Allow also nil.
224 (tramp-inline-compress-commands): New defconst.
225 (tramp-find-inline-compress, tramp-get-inline-compress)
226 (tramp-get-inline-coding): New defuns.
227 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
228 replaced by `tramp-get-inline-coding'.
229 (tramp-handle-file-local-copy, tramp-handle-write-region)
230 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
231
232 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
233
234 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
235 Remove unused functions.
236
237 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
238 Set find-tag-default-function as a variable rather than a property.
239
240 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
241 * progmodes/etags.el (tags-completion-at-point-function):
242 Remove left over interactive spec. Add autoloading stub.
243 (complete-tag): Use tags-completion-at-point-function.
244
245 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
246
247 * minibuffer.el (tags-completion-at-point-function): Fix return value.
248
249 2010-04-30 Eli Zaretskii <eliz@gnu.org>
250
251 * composite.el (compose-region, reference-point-alist): Fix typos
252 in the doc strings.
253
254 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
255
256 * ido.el (ido-init-completion-maps): Remove C-v binding.
257 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
258
259 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
260
261 * minibuffer.el (tags-completion-at-point-function): New function.
262 (completion-at-point-functions): Use it.
263
264 * cedet/semantic.el (semantic-completion-at-point-function): New function.
265 (semantic-mode): Use semantic-completion-at-point-function for
266 completion-at-point-functions instead.
267
268 * progmodes/etags.el (complete-tag): Revert last change.
269
270 2010-04-29 Alan Mackenzie <acm@muc.de>
271
272 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
273 off-by-one error (in end of macro position).
274
275 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
276
277 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
278 firefox is absent. Don't autoload.
279 (browse-url-galeon-program): Don't autoload.
280
281 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
282
283 * bindings.el (complete-symbol): Move into minibuffer.el.
284
285 * minibuffer.el (complete-tag): Move from etags.el. If tags
286 completion cannot be performed, return nil instead of signalling
287 an error.
288 (completion-at-point): Make it an alias for complete-symbol.
289 (complete-symbol): Move from bindings.el, and replace with the
290 body of completion-at-point.
291
292 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
293
294 * cedet/semantic.el (semantic-mode): When enabled, add
295 semantic-ia-complete-symbol to completion-at-point-functions.
296
297 * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
298 if Semantic is not active.
299
300 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
301
302 * net/tramp.el (tramp-remote-selinux-p): New defun.
303 (tramp-handle-file-selinux-context)
304 (tramp-handle-set-file-selinux-context): Use it.
305
306 2010-04-28 Sam Steingold <sds@gnu.org>
307
308 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
309 `safe-local-variable' if the value is a string or a symbol with
310 the property `bug-reference-url-format'.
311
312 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
313
314 * progmodes/bug-reference.el (bug-reference-url-format): Revert
315 2010-04-27 change due to security risk.
316
317 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
318
319 Make it possible to locally disable a globally enabled mode.
320 * simple.el (fundamental-mode): Run fundamental-mode-hook.
321 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
322 rather than kill-all-local-variables so it runs fundamental-mode-hook.
323 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
324 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
325 that subsequent hooks get a chance to disable it.
326
327 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
328
329 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
330 Avoid re-enabling a minor mode after the user turned the minor mode
331 off if MODE-enable-in-buffers is run twice (typically once from
332 fundamental-mode's after-change-major-mode-hook and a second time from
333 run-mode-hook's own after-change-major-mode-hook).
334
335 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
336
337 2010-04-27 Sam Steingold <sds@gnu.org>
338
339 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
340 `safe-local-variable' if the value is a string or a function, as
341 documented and implemented on 2010-04-02.
342
343 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
344
345 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
346 when method is 'kill.
347
348 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
349
350 * ispell.el (ispell-init-process): Fix personal dictionary condition
351 in default directory check.
352 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
353 Kill ispell process when killing its associated buffer.
354
355 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
356
357 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
358 but we aren't using it.
359
360 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
361
362 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
363 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
364
365 2010-04-24 Glenn Morris <rgm@gnu.org>
366
367 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
368 Ignore VCS-ignore files, and deleted nextstep preferences files.
369 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
370 (authors-ambiguous-files): New list.
371 (authors-valid-file-names): Add some deleted files.
372 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
373 (authors-disambiguate-file-name): New function. (Bug#5501)
374 (authors-canonical-file-name): Doc fix.
375 Don't warn about obsolete files.
376 (authors-canonical-file-name, authors-scan-el):
377 Use authors-disambiguate-file-name.
378
379 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
380 Add autoload cookies.
381 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
382 (generated-autoload-file): Set file-local value to "htmlfontify.el".
383 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
384 They have definitions / compiler macros in cl.el.
385 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
386 Replace manual autoloads with generated ones.
387 (htmlfontify-unload-rgb-file): Remove autoload.
388 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
389
390 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
391
392 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
393 (byte-compile-setq-default): Optimize for the
394 single-var case and don't call byte-compile-form in this case to avoid
395 inf-loop with byte-compile-set-default.
396
397 * progmodes/compile.el (compilation-start): Abbreviate default directory.
398
399 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
400
401 Implement SELINUX backends.
402
403 * net/tramp.el (tramp-file-name-handler-alist):
404 Add `file-selinux-context' and `set-file-selinux-context'.
405 (tramp-handle-file-selinux-context)
406 (tramp-handle-set-file-selinux-context): New defuns.
407 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
408 Handle PRESERVE-SELINUX-CONTEXT.
409
410 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
411 Add `file-selinux-context' and `set-file-selinux-context'.
412 (tramp-gvfs-handle-file-selinux-context)
413 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
414 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
415
416 * net/ange-ftp.el (ange-ftp-copy-file):
417 * net/tramp-fish.el (tramp-fish-handle-copy-file):
418 * net/tramp-imap.el (tramp-imap-handle-copy-file):
419 * net/tramp-smb.el (tramp-smb-handle-copy-file):
420 Add PRESERVE-SELINUX-CONTEXT.
421
422 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
423
424 Synchronize with Tramp repository.
425
426 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
427 (tramp-action-process-alive, tramp-action-out-of-band)
428 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
429 (tramp-exists-file-name-handler): Fix docstring.
430 (with-progress-reporter): New defmacro.
431 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
432 (tramp-maybe-open-connection): Use it.
433
434 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
435
436 Detect ssh 'ControlMaster' argument automatically in some cases.
437
438 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
439 (tramp-default-method): Use it.
440
441 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
442
443 * net/tramp.el (tramp-handle-copy-file): Add new optional
444 parameter `preserve-selinux-context'.
445 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
446
447 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
448
449 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
450 Ensure, that non remote files are still checked. Oops.
451
452 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
453
454 Fix Bug#5840.
455
456 * icomplete.el (icomplete-completions): Use `non-essential'.
457
458 * net/tramp.el (tramp-connectable-p): New defun.
459 (tramp-handle-expand-file-name)
460 (tramp-completion-handle-file-name-all-completions)
461 (tramp-completion-handle-file-name-completion): Use it.
462
463 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
464
465 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
466
467 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
468
469 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
470
471 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
472
473 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
474 is present.
475
476 * info.el (info-tool-bar-map): Add labels.
477
478 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
479
480 * cus-edit.el (custom-commands): Add labels for tool bar.
481 (custom-buffer-create-internal, Custom-mode): Adjust for
482 labels in custom-commands.
483
484 * dynamic-setting.el: Renamed from font-setting.el.
485
486 2010-04-21 John Wiegley <jwiegley@gmail.com>
487
488 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
489 toggles the use of virtual buffers.
490 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global
491 value.
492 (ido-toggle-virtual-buffers): New function.
493
494 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
495
496 Use `define-derived-mode'; fix window selection; doc fixes.
497 * play/tetris.el (tetris, tetris-update-speed-function)
498 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
499 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
500 (tetris-rotate-next, tetris-end-game, tetris-start-game)
501 (tetris-pause-game): Fix typos in docstrings.
502 (tetris-mode-map, tetris-null-map):
503 Move initialization into declaration.
504 (tetris-mode): Define with `define-derived-mode';
505 set show-trailing-whitespace to nil.
506 (tetris): Prefer window already displaying the "*Tetris*" buffer.
507
508 2010-04-21 Karel Klíč <kklic@redhat.com>
509
510 * files.el (backup-buffer): Handle SELinux context, and return it
511 if a backup was made by renaming.
512 (backup-buffer-copy): Set SELinux context to the target file.
513 (basic-save-buffer): Set SELinux context of the newly written file.
514 (basic-save-buffer-1): Now it also returns any SELinux context.
515 (basic-save-buffer-2): Set SELinux context of the newly created file,
516 and return it.
517 * net/tramp.el (tramp-file-name-for-operation):
518 Add file-selinux-context.
519
520 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
521
522 * vc.el (vc-checkin, vc-modify-change-comment):
523 Adjust to new vc-start/finish-logentry.
524 (vc-find-conflicted-file): New command.
525 (vc-transfer-file): Adjust to new vc-checkin.
526 (vc-next-action): Improve scoping.
527
528 * vc-hg.el (vc-hg-log-edit-mode): Remove.
529 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
530
531 * vc-git.el (vc-git-log-edit-mode): Remove.
532 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
533 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
534
535 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
536 (vc-start-logentry): Remove argument `extra'.
537 (vc-finish-logentry): Remove extra args.
538
539 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
540 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
541 (vc-bzr-conflicted-files): New function.
542
543 * log-edit.el (log-edit-extra-flags)
544 (log-edit-before-checkin-process): Remove.
545 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
546 (log-edit-headers-alist): New var.
547 (log-edit-header-contents-regexp): New const.
548 (log-edit-match-to-eoh): New function.
549 (log-edit-font-lock-keywords): Use them.
550 (log-edit): Insert a "Summary:" header as default.
551 (log-edit-mode): Mark font-lock rules as case-insensitive.
552 (log-edit-done): Cleanup headers.
553 (log-view-process-buffer): Remove.
554 (log-edit-extract-headers): New function to replace it.
555
556 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
557
558 * subr.el (default-direction-reversed): Remove obsolescence info.
559
560 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
561
562 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
563 windows/frames.
564
565 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
566 I.e. include text after point in the completion region.
567 Also, return nil when we're not after/in a symbol.
568
569 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
570 default enable-multibyte-characters.
571
572 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
573
574 * international/mule.el: Help the user choose a valid coding-system.
575 (read-buffer-file-coding-system): New function.
576 (set-buffer-file-coding-system): Use it. Prompt the user if the
577 coding-system cannot encode all the chars.
578
579 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
580 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
581 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
582 Don't use *vc-bzr-shelve*.
583
584 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
585
586 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
587 Don't destroy list before using it.
588
589 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
590
591 Fix the version number for added files.
592 * vc-hg.el (vc-hg-working-revision): Check if the file is
593 registered after hg parent fails (Bug#5961).
594
595 2010-04-19 Glenn Morris <rgm@gnu.org>
596
597 * htmlfontify.el (htmlfontify-buffer)
598 (htmlfontify-copy-and-link-dir): Autoload entry points.
599
600 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
601
602 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
603 name relative to the project root (Bug#5960).
604
605 2010-04-19 Glenn Morris <rgm@gnu.org>
606
607 * vc-git.el (vc-git-print-log): Doc fix.
608
609 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
610
611 * ido.el (ido-file-internal): Fix 2009-12-02 change.
612
613 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
614
615 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
616 default settings (Bug#5928).
617
618 2010-04-19 Glenn Morris <rgm@gnu.org>
619
620 * progmodes/fortran.el (fortran-match-and-skip-declaration):
621 New function.
622 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
623
624 2010-04-19 Kenichi Handa <handa@m17n.org>
625
626 * language/indian.el (malayalam-composable-pattern): Fix previous
627 change (add U+0D4D "SIGN VIRAMA").
628 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
629 (tamil-composable-pattern): Fix typo in the regexp.
630 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
631 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
632 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
633
634 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
635
636 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
637 paragraph-separate (Bug#5821).
638
639 2010-04-19 Juri Linkov <juri@jurta.org>
640
641 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
642
643 * info.el (Info-find-node-2): Comment out code that skips
644 breadcrumbs line.
645 (Info-mouse-follow-link): New command.
646 (Info-link-keymap): New keymap.
647 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
648 Return a string with links instead of inserting breadcrumbs
649 to the Info buffer.
650 (Info-fontify-node): Comment out code that inserts breadcrumbs.
651 Instead of putting the `invisible' text property over the Info
652 header, make an overlay over the Info header with the `invisible'
653 property and `after-string' set to the string returned by
654 `Info-breadcrumbs'.
655
656 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
657
658 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
659 Reported by monkey@sandpframing.com.
660
661 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
662
663 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
664 (tmm-get-keymap): Add key-binding shortcuts now that they're not
665 available in the "keyseq cache" any more.
666
667 * custom.el (defcustom): Add edebug spec.
668
669 2010-04-18 Juri Linkov <juri@jurta.org>
670
671 Test for special mode-class in view-buffer instead of view-file (bug#5513).
672
673 * view.el (view-file, view-buffer): Move test for special mode-class
674 from view-file to view-buffer.
675
676 * tar-mode.el (tar-extract): Turn if's into one cond
677 like in arc-mode.el.
678
679 2010-04-18 Juri Linkov <juri@jurta.org>
680
681 Add 7z archive format support (bug#5475).
682
683 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
684 (archive-7z-extract): New defcustom.
685 (archive-find-type): Add magic string for 7z.
686 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
687 If `stderr-file' is non-nil, use `(t stderr-file)' for the
688 `buffer' arg of `call-process'.
689 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
690 call the function `archive-7z-extract' with the variable
691 `archive-7z-extract' let-bound to `archive-zip-extract'.
692 (archive-7z-summarize, archive-7z-extract): New functions.
693
694 * international/mule.el (auto-coding-alist):
695 * files.el (auto-mode-alist): Add 7z file extension.
696
697 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
698
699 * loadup.el: Setup hash-cons for pure data.
700
701 Fix duplicate entries in cedet's loaddefs.el files.
702 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
703 Should make most file-local generated-autoload-file unnecessary.
704 (print-readably): Silence warnings.
705 (autoload-find-destination): Take load-name as an arg to make sure
706 it's the same as the one that will be in the file.
707 (autoload-generate-file-autoloads): Adjust to above changes.
708 Try to make the dataflow a bit simpler.
709
710 * cvs-status.el (cvs-refontify): Remove unused.
711
712 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
713
714 * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
715
716 * calc-bin.el (calc-radix): Have the "O" option turn on
717 twos-complement mode.
718
719 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
720
721 * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
722 Add `calc-option-prefix-help' to calc-help autoloads.
723 (calc-inverse): Add "Option" to message, as appropriate.
724 (calc-hyperbolic): Add "Option" to message, as appropriate.
725 (calc-option, calc-is-option): New functions.
726
727 * calc-help.el (calc-full-help): Add `calc-option-help'.
728 (calc-option-prefix-help): New function.
729
730 * calc-misc.el (calc-help): Add "Option" entry.
731
732 * calc.el (calc-local-var-list): Add `calc-option-flag'.
733 (calc-option-flag): New variable.
734 (calc-do): Set `calc-option-flag to nil.
735 (calc-set-mode-line): Add "Opt " as appropriate.
736
737 2010-04-16 Juri Linkov <juri@jurta.org>
738
739 Move scrolling commands from simple.el to window.el
740 because their primitives are implemented in window.c.
741
742 * simple.el (scroll-error-top-bottom)
743 (scroll-up-command, scroll-down-command, scroll-up-line)
744 (scroll-down-line, scroll-other-window-down)
745 (beginning-of-buffer-other-window, end-of-buffer-other-window):
746 * window.el (scroll-error-top-bottom)
747 (scroll-up-command, scroll-down-command, scroll-up-line)
748 (scroll-down-line, scroll-other-window-down)
749 (beginning-of-buffer-other-window, end-of-buffer-other-window):
750 Move from simple.el to window.el because their primitives are
751 implemented in window.c.
752
753 2010-04-16 Juri Linkov <juri@jurta.org>
754
755 * isearch.el (isearch-lookup-scroll-key): Check both
756 `isearch-scroll' and `scroll-command' properties.
757 (scroll-up, scroll-down): Remove `isearch-scroll' property.
758
759 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
760
761 * simple.el (scroll-up-command, scroll-down-command)
762 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
763
764 2010-04-15 Juri Linkov <juri@jurta.org>
765
766 * simple.el (scroll-up-command, scroll-down-command)
767 (scroll-up-line, scroll-down-line): Put `scroll-command'
768 property on the these symbols. Remove them from
769 `scroll-preserve-screen-position-commands'.
770
771 * mwheel.el (mwheel-scroll): Put `scroll-command' and
772 `isearch-scroll' properties on the `mwheel-scroll' symbol.
773 Remove it from `scroll-preserve-screen-position-commands'.
774
775 * isearch.el (isearch-allow-scroll): Doc fix.
776
777 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
778
779 * net/tramp.el (tramp-error-with-buffer): Don't show the
780 connection buffer when we are in completion mode.
781 (tramp-file-name-handler): Catch the error for some operations
782 when we are in completion mode. This gives the user the chance to
783 correct the file name in the minibuffer.
784
785 2010-04-15 Glenn Morris <rgm@gnu.org>
786
787 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
788
789 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
790
791 Simplify by using `define-derived-mode'.
792 * info.el (Info-mode):
793 * calendar/todo-mode.el (todo-mode):
794 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
795 (gomoku-mode-map): Move initialization into declaration.
796
797 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
798
799 Fix Bug#5840.
800 * ido.el (ido-file-name-all-completions-1):
801 * minibuffer.el (minibuffer-completion-help):
802 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
803
804 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
805
806 * simple.el (non-essential): New var.
807
808 Add a new field `location' to bookmarks for non-file bookmarks.
809 * bookmark.el (bookmark-location): Use the new field, if present.
810 (bookmark-insert-location): Undo last change, not needed any more.
811 * man.el (Man-bookmark-make-record):
812 * woman.el (woman-bookmark-make-record): Add `location' field.
813
814 2010-04-14 Juri Linkov <juri@jurta.org>
815
816 * simple.el (scroll-error-top-bottom): New defcustom.
817 (scroll-up-command, scroll-down-command): Use it. Doc fix.
818
819 * emulation/pc-select.el (pc-select-override-scroll-error):
820 Obsolete in favor of `scroll-error-top-bottom'.
821
822 2010-04-14 Juri Linkov <juri@jurta.org>
823
824 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
825 `scroll-up-command' and `M-v' to `scroll-down-command'.
826
827 * emulation/cua-rect.el (cua--init-rectangles):
828 * forms.el (forms--change-commands):
829 * image-mode.el (image-mode-map):
830 Remap scroll-down-command and scroll-up-command
831 in addition to scroll-down and scroll-up.
832
833 2010-04-14 Juri Linkov <juri@jurta.org>
834
835 * mwheel.el (scroll-preserve-screen-position-commands):
836 Add mwheel-scroll to this list of commands.
837
838 * simple.el (scroll-preserve-screen-position-commands):
839 Add scroll-up-command, scroll-down-command, scroll-up-line,
840 scroll-down-line to this list of commands.
841
842 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
843
844 * obsolete/complete.el: Move from lisp/complete.el.
845
846 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
847
848 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
849 to the minor mode function now turns the mode ON unconditionally.
850
851 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
852
853 * vc-dir.el (vc-dir-kill-line): New command.
854 (vc-dir-mode-map): Bind it to C-k.
855
856 * bookmark.el (bookmark-insert-location): Handle a nil filename.
857
858 * woman.el: Add bookmark declarations to silence the compiler.
859 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
860 step to compatibility between man and woman bookmarks.
861 Adjust for Man-default-bookmark-title renaming.
862 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
863
864 * man.el: Add bookmark declarations to silence the compiler.
865 (Man-name-local-regexp): Make it match NAME as well.
866 (Man-getpage-in-background): Return the buffer.
867 (Man-notify-when-ready): Use `case'.
868 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
869 Don't hardcode "NAME". Simplify.
870 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
871 Rename from Man-bookmark-make-record.
872 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
873 we have the actual man-args. Use Man-getpage-in-background rather
874 than `man' since the arg is already processed. Let bookmark.el do the
875 window handling. Only wait for the relevant process.
876 Don't forget to autoload.
877
878 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
879
880 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
881
882 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
883 New functions.
884 (woman-mode): Setup bookmark support.
885
886 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
887 (man-bookmark-jump): New functions.
888 (Man-mode): Setup bookmark support.
889
890 2010-04-10 Jari Aalto <jari.aalto@cante.net>
891
892 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
893 recognize ssh-keygen prompt (Bug#2817).
894
895 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
896
897 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
898
899 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
900
901 Synchronize with Tramp repository.
902
903 * net/tramp.el (tramp-completion-function-alist)
904 (tramp-file-name-regexp, tramp-chunksize)
905 (tramp-local-coding-commands, tramp-remote-coding-commands):
906 Fix docstring.
907 (tramp-remote-process-environment): Use `format' instead of `concat'.
908 (tramp-handle-directory-files-and-attributes)
909 (tramp-get-remote-path): Use `copy-tree'.
910 (tramp-handle-file-name-all-completions): Backward/ XEmacs
911 compatibility: Use `completion-ignore-case' if
912 `read-file-name-completion-ignore-case' does not exist.
913 (tramp-do-copy-or-rename-file-directly): Do not use
914 `tramp-handle-file-remote-p'.
915 (tramp-do-copy-or-rename-file-out-of-band):
916 Use `tramp-compat-delete-directory'.
917 (tramp-do-copy-or-rename-file-out-of-band)
918 (tramp-compute-multi-hops, tramp-maybe-open-connection):
919 Use `format-spec-make'.
920 (tramp-find-foreign-file-name-handler)
921 (tramp-advice-make-auto-save-file-name)
922 (tramp-set-auto-save-file-modes): Remove superfluous check for
923 `stringp'. This is done inside `tramp-tramp-file-p'.
924 (tramp-debug-outline-regexp): New defconst.
925 (tramp-get-debug-buffer): Use it.
926 (tramp-check-for-regexp): Use (forward-line 1).
927 (tramp-set-auto-save-file-modes): Adapt version check.
928
929 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
930 Wrap call of `featurep' for 2nd argument.
931 (tramp-compat-make-temp-file): Simplify fallback implementation.
932 (tramp-compat-copy-tree): Remove function.
933 (tramp-compat-delete-directory): Provide implementation for older
934 Emacsen.
935
936 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
937 Do not use `tramp-fish-handle-file-attributes.
938
939 * net/trampver.el: Update release number.
940
941 2010-04-10 Glenn Morris <rgm@gnu.org>
942
943 * progmodes/compile.el (compilation-save-buffers-predicate):
944 Add missing :version tag.
945
946 2010-04-09 Sam Steingold <sds@gnu.org>
947
948 * progmodes/compile.el (compilation-save-buffers-predicate):
949 Remove the "autoload" cookie.
950
951 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
952 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
953 and `bug-reference-prog-mode' can be used in hooks directly.
954
955 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
956
957 Add --author support to git commit.
958 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
959 (vc-git-log-edit-mode): New minor mode.
960 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
961 New declarations.
962
963 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
964
965 * vc-hooks.el, vc-git.el: Improve documentation comments.
966
967 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
968
969 Fix some of the problems in defsubst* (bug#5728).
970 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
971 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
972
973 2010-04-07 Sam Steingold <sds@gnu.org>
974
975 * progmodes/compile.el (compilation-save-buffers-predicate):
976 New custom variable.
977 (compile, recompile): Pass it to `save-some-buffers'.
978
979 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
980
981 * wid-edit.el (widget-choose): Move cursor to the second line of
982 the buffer (Bug#5695).
983
984 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
985
986 Add new VC methods: vc-log-incoming and vc-log-outgoing.
987 * vc.el (vc-print-log-setup-buttons): New function split out from
988 vc-print-log-internal.
989 (vc-log-internal-common): New function, a parametrized version of
990 vc-print-log-internal.
991 (vc-print-log-internal): Just call vc-log-internal-common with the
992 right arguments.
993 (vc-incoming-outgoing-internal):
994 (vc-log-incoming, vc-log-outgoing): New functions.
995 (vc-log-view-type): New permanent local variable.
996
997 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
998
999 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
1000 of the dynamic bound vc-short-log.
1001 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
1002
1003 * vc-git.el (vc-git-log-outgoing): New function.
1004 (vc-git-log-view-mode): Use vc-log-view-type instead
1005 of the dynamic bound vc-short-log.
1006
1007 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
1008 of the dynamic bound vc-short-log. Highlight the tag.
1009 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
1010 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
1011 (vc-hg-incoming-mode): Remove.
1012 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
1013
1014 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
1015
1016 Fix default-directory for vc-root-diff.
1017 * vc.el (vc-root-diff): Bind default-directory to the root
1018 directory for the diff command.
1019
1020 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
1021
1022 * progmodes/verilog-mode.el (verilog-forward-sexp):
1023 (verilog-calc-1): Support "disable fork" and "fork wait" multi
1024 word keywords, suggested by Steve Pearlmutter.
1025 (verilog-pretty-declarations): Support lineup of declarations in
1026 port lists.
1027 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
1028 fix bug for /* / comments
1029 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
1030 Speed up and simplfy as this is never called with a bound.
1031 (verilog-pretty-declarations): Enhance to line up declarations
1032 inside a parameter list, suggested by Alan Morgan.
1033 (verilog-pretty-expr): Tune assignment regular expression match
1034 string for corner cases; also use markers instead of character
1035 number as indent changes the later.
1036
1037 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
1038
1039 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
1040 as missing keyword.
1041 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
1042 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
1043 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
1044 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
1045 Tennant.
1046 (verilog-keywords):
1047 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
1048 1800-2009 keywords, including "global.".
1049
1050 2010-04-06 John Wiegley <jwiegley@gmail.com>
1051
1052 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
1053 appearing in buffer list (if a live buffer name matched a recentf
1054 file basename). Should use uniquify to offer a real solution.
1055
1056 2010-04-06 John Wiegley <jwiegley@gmail.com>
1057
1058 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
1059 comment to code, and add a :version tag.
1060 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
1061
1062 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
1063
1064 Enable recentf-mode if using virtual buffers.
1065 * ido.el (recentf-list): Declare for byte-compiler.
1066 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
1067 (ido-make-buffer-list): Simplify.
1068 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
1069
1070 2010-04-05 Juri Linkov <juri@jurta.org>
1071
1072 Scrolling commands which scroll a line instead of full screen.
1073 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
1074
1075 * simple.el (scroll-up-line, scroll-down-line): New commands.
1076 Put property isearch-scroll=t on them.
1077
1078 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
1079 Remove commands.
1080
1081 2010-04-05 Juri Linkov <juri@jurta.org>
1082
1083 Scrolling commands which do not signal errors at top/bottom.
1084 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
1085
1086 * simple.el (scroll-up-command, scroll-down-command): New commands.
1087 Put property isearch-scroll=t on them.
1088
1089 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
1090 `scroll-down-command' and [next] from `scroll-up' to
1091 `scroll-up-command'.
1092
1093 * emulation/cua-base.el: Put property CUA=move on
1094 `scroll-up-command' and `scroll-down-command'.
1095 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
1096 and `scroll-down-command' to `cua-scroll-down'.
1097
1098 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
1099
1100 * help.el (describe-mode): Return nil.
1101
1102 2010-04-04 John Wiegley <jwiegley@gmail.com>
1103
1104 * ido.el (ido-use-virtual-buffers): New variable to indicate
1105 whether "virtual buffer" support is enabled for IDO.
1106 (ido-virtual): Face used to indicate virtual buffers in the list.
1107 (ido-buffer-internal): If a buffer is chosen, and no such buffer
1108 exists, but a virtual buffer of that name does (which would be why
1109 it was in the list), recreate the buffer by reopening the file.
1110 (ido-make-buffer-list): If virtual buffers are being used, call
1111 `ido-add-virtual-buffers-to-list' before the make list hook.
1112 (ido-virtual-buffers): New variable which contains a copy of the
1113 current contents of the `recentf-list', albeit pared down for the
1114 sake of speed, and with proper faces applied.
1115 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
1116 create a list of "virtual buffers" to present to the user in
1117 addition to the currently open set. Note that this logic could
1118 get rather slow if that list is too large. With the default
1119 `recentf-max-saved-items' of 200, there is little speed penalty.
1120
1121 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1122
1123 * font-lock.el: Require CL when compiling.
1124 (font-lock-turn-on-thing-lock): Use `case'.
1125
1126 2010-04-03 Eli Zaretskii <eliz@gnu.org>
1127
1128 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
1129 Zaretskii.
1130
1131 2010-04-02 Juanma Barranquero <lekktu@gmail.com>
1132
1133 * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
1134 (semantic-create-imenu-directory-index): Fix typos in docstrings.
1135 (semantic-imenu-goto-function): Reflow docstring.
1136
1137 2010-04-02 Juri Linkov <juri@jurta.org>
1138
1139 * ehelp.el (electric-help-orig-major-mode):
1140 New buffer-local variable.
1141 (electric-help-mode): Set it to original major-mode. Doc fix.
1142 (with-electric-help): Use `electric-help-orig-major-mode' instead
1143 of (default-value 'major-mode). Doc fix.
1144 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
1145
1146 2010-04-02 Sam Steingold <sds@gnu.org>
1147
1148 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
1149 `vc-hg-command' with a list of flags.
1150
1151 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1152 Also accept "patch" and "RFE".
1153 (bug-reference-fontify): `bug-reference-url-format' can also be a
1154 function to be able to handle the bug kind.
1155 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
1156
1157 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
1158
1159 * tmm.el (tmm-get-keymap): Check with symbolp before passing
1160 value to fboundp, it may not be a symbol.
1161
1162 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1163
1164 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
1165
1166 2010-03-31 Juri Linkov <juri@jurta.org>
1167
1168 * simple.el (next-line, previous-line): Re-throw a signal
1169 with `signal' instead of using `ding'.
1170 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
1171
1172 2010-03-31 Juri Linkov <juri@jurta.org>
1173
1174 * simple.el (keyboard-escape-quit): Raise deselecting the active
1175 region higher than exiting the minibuffer.
1176 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
1177
1178 2010-03-31 Juri Linkov <juri@jurta.org>
1179
1180 * image.el (image-animated-p): Use `image-metadata' instead of
1181 `image-extension-data'. Get GIF extenstion data from metadata
1182 property `extension-data'.
1183
1184 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1185
1186 * simple.el (append-to-buffer): Simplify.
1187
1188 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
1189
1190 * textmodes/artist.el (artist-mode): Fix typo in docstring.
1191 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
1192
1193 2010-03-31 Kenichi Handa <handa@m17n.org>
1194
1195 * language/sinhala.el (composition-function-table): Fix regexp for
1196 the new Unicode specification.
1197
1198 * language/indian.el (devanagari-composable-pattern)
1199 (tamil-composable-pattern, kannada-composable-pattern)
1200 (malayalam-composable-pattern): Adjust for the new Unicode
1201 specification.
1202 (bengali-composable-pattern, gurmukhi-composable-pattern)
1203 (gujarati-composable-pattern, oriya-composable-pattern)
1204 (telugu-composable-pattern): New variables to cope with the new
1205 Unicode specification. Use them in composition-function-table.
1206
1207 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1208
1209 Make tmm-menubar work for the Buffers menu again (bug#5726).
1210 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1211 vectors rather than cons cells, as used in menu-bar-update-buffers.
1212
1213 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1214
1215 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1216 (js-insert-and-indent): Revert 2009-08-15 change, restoring
1217 electric punctuation for "{}();,:" (Bug#5586).
1218
1219 * mail/sendmail.el (mail-default-directory): Doc fix.
1220
1221 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1222
1223 * mail/sendmail.el (mail-default-directory): Doc fix.
1224
1225 2010-03-31 Eli Zaretskii <eliz@gnu.org>
1226
1227 * subr.el (version-regexp-alist, version-to-list)
1228 (version-list-<, version-list-=, version-list-<=)
1229 (version-list-not-zero, version<, version<=, version=): Doc fix.
1230 (Bug#5744).
1231
1232 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
1233
1234 * vc.el (vc-root-diff): Doc fix.
1235
1236 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1237
1238 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1239
1240 * simple.el (append-to-buffer): Fix last change.
1241
1242 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1243
1244 * simple.el (append-to-buffer): Ensure that point is preserved if
1245 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
1246 (Bug#5749)
1247
1248 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1249
1250 * files.el (auto-mode-case-fold): Change default to t.
1251
1252 2010-03-30 Juri Linkov <juri@jurta.org>
1253
1254 * dired-x.el (dired-omit-mode): Doc fix.
1255
1256 2010-03-30 Juri Linkov <juri@jurta.org>
1257
1258 * replace.el (occur-accumulate-lines): Move occur-engine related
1259 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
1260 to be located after `occur-engine'.
1261
1262 2010-03-30 Juri Linkov <juri@jurta.org>
1263
1264 Make occur handle multi-line matches cleanly with context.
1265 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
1266
1267 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
1268 (occur-engine): Add local variables `ret', `prev-after-lines',
1269 `prev-lines'. Use more arguments for `occur-context-lines'.
1270 Set first elem of its returned list to `data', and the second elem
1271 to `prev-after-lines'. Don't print the separator line.
1272 In the end, print remaining context after-lines.
1273 (occur-context-lines): Add new arguments `begpt', `endpt',
1274 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
1275 after-lines of the previous match with before-lines of the
1276 current match and not overlap them. Return a list with two
1277 values: the output line and the list of context after-lines.
1278
1279 2010-03-30 Juri Linkov <juri@jurta.org>
1280
1281 * replace.el (occur-accumulate-lines): Fix a bug where the first
1282 context line at the beginning of the buffer was missing.
1283
1284 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1285
1286 * files.el: Make bidi-display-reordering safe variable for boolean
1287 values.
1288
1289 2010-03-29 Phil Hagelberg <phil@evri.com>
1290 Chong Yidong <cyd@stupidchicken.com>
1291
1292 * subr.el: Extend progress reporters to perform "spinning".
1293 (progress-reporter-update, progress-reporter-do-update):
1294 Handle non-numeric value arguments.
1295 (progress-reporter--pulse-characters): New var.
1296
1297 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
1298
1299 * progmodes/compile.el (compilation-start): Fix regexp detection
1300 of initial cd command (Bug#5771).
1301
1302 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
1303
1304 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
1305
1306 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
1307
1308 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
1309 * lisp/progmodes/gdb-mi.el: Restore.
1310 * lisp/progmodes/gdb-ui.el: Remove.
1311 * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
1312
1313 2010-03-25 Glenn Morris <rgm@gnu.org>
1314
1315 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1316 all dired buffers, even tramp ones. (Bug#5755)
1317
1318 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
1319
1320 Add "union tags" in mpc.el.
1321 * mpc.el: Remove backward compatibility code.
1322 (mpc-browser-tags): Change default.
1323 (mpc--find-memoize-union-tags): New var.
1324 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
1325 (mpc-cmd-find): Handle the case where the playlist does not exist.
1326 Handle union-tags.
1327 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
1328 (mpc-cmd-add): Use mpc-cmd-flush.
1329 (mpc-tagbrowser-tag-name): New fun.
1330 (mpc-tagbrowser-buf): Use it.
1331 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
1332
1333 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1334
1335 Misc cleanup.
1336 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
1337 Use replace-regexp-in-string.
1338 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
1339 (makefile-imake-mode-syntax-table): Move init into defvar.
1340 (makefile-mode): Use define-derived-mode.
1341
1342 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1343 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1344 not be present any more.
1345
1346 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1347
1348 * faces.el (set-face-attribute): Fix typo in docstring.
1349 (face-valid-attribute-values): Reflow docstring.
1350
1351 * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
1352
1353 2010-03-24 Glenn Morris <rgm@gnu.org>
1354
1355 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
1356
1357 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
1358
1359 * indent.el (indent-for-tab-command): Doc fix.
1360
1361 2010-03-24 Alan Mackenzie <acm@muc.de>
1362
1363 * progmodes/cc-engine.el (c-remove-stale-state-cache):
1364 Fix off-by-one error. Fixes bug #5747.
1365
1366 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1367
1368 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
1369 (image-dired-read-comment): Doc fix.
1370
1371 * json.el (json-object-type, json-array-type, json-key-type)
1372 (json-false, json-null, json-read-number):
1373 * minibuffer.el (completion-in-region-functions):
1374 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
1375 (cal-tex-cursor-week):
1376 * emacs-lisp/trace.el (trace-function):
1377 * eshell/em-basic.el (eshell/printnl):
1378 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
1379 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
1380 * obsolete/levents.el (allocate-event, event-key, event-object)
1381 (event-point, event-process, event-timestamp, event-to-character)
1382 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
1383 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
1384 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
1385 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
1386 (reftex-highlight-selection): Fix typos in docstrings.
1387
1388 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1389
1390 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
1391
1392 2010-03-24 Glenn Morris <rgm@gnu.org>
1393
1394 * mail/rmail.el (rmail-highlight-face): Restore option deleted
1395 2008-02-13 without comment; mark it obsolete.
1396 (rmail-highlight-headers): Use rmail-highlight-face once more.
1397
1398 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
1399
1400 * woman.el (woman2-process-escapes): Only consume the newline if
1401 the filler character is on a line by itself (Bug#5729).
1402
1403 2010-03-24 Kenichi Handa <handa@m17n.org>
1404
1405 * language/indian.el (devanagari-composable-pattern): Add more
1406 consonants.
1407
1408 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
1409
1410 * net/trampver.el: Update release number.
1411
1412 2010-03-24 Glenn Morris <rgm@gnu.org>
1413
1414 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
1415
1416 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
1417
1418 * net/tramp.el (tramp-find-executable):
1419 Use `tramp-get-connection-buffer'. Make the regexp for checking
1420 output of "wc -l" more robust.
1421 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
1422 (tramp-open-connection-setup-interactive-shell): Remove workaround
1423 for OpenSolaris bug, it is not needed anymore.
1424
1425 2010-03-24 Eric M. Ludlam <zappo@gnu.org>
1426
1427 * cedet/semantic/imenu.el: New file, from the CEDET repository
1428 (Bug#5412).
1429
1430 2010-03-24 Glenn Morris <rgm@gnu.org>
1431
1432 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
1433
1434 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
1435
1436 * files.el (auto-mode-alist): Accept more verilog file patterns.
1437
1438 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1439
1440 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
1441
1442 2010-03-24 Glenn Morris <rgm@gnu.org>
1443
1444 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
1445 log-edit-before-checkin-process.
1446
1447 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
1448
1449 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
1450
1451 * vc-dispatcher.el (vc-start-logentry): Doc fix.
1452 (log-view-process-buffer, log-edit-extra-flags): Declare.
1453
1454 * log-edit.el (log-edit-before-checkin-process): Doc fix.
1455
1456 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
1457 Consistently check ede-object is bound throughout.
1458
1459 * cedet/ede/project-am.el (ede-shell-run-something): Declare.
1460
1461 2010-03-23 Sam Steingold <sds@gnu.org>
1462
1463 Fix bug#5620: recalculate all markers on compilation buffer
1464 modifications, not on file modifications.
1465 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
1466 the buffer modification time, for buffers not associated with files.
1467 (compilation-mode): Create it.
1468 (compilation-filter): Update it.
1469 (compilation-next-error-function): Use it instead of
1470 `visited-file-modtime' for timestamp.
1471
1472 2010-03-23 Juri Linkov <juri@jurta.org>
1473
1474 Implement Occur multi-line matches.
1475 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
1476
1477 * replace.el (occur): Doc fix.
1478 (occur-engine): Set `begpt' to the beginning of the first line.
1479 Set `endpt' to the end of the last match line. At first, count
1480 line numbers between `origpt' and `begpt'. Split out code from
1481 `out-line' variable to new let-bindings `match-prefix' and
1482 `match-str'. In `out-line' add non-numeric prefix to all
1483 non-first lines of multi-line matches. Finally, count lines
1484 between `begpt' and `endpt' and add to `lines'.
1485
1486 2010-03-23 Juri Linkov <juri@jurta.org>
1487
1488 * replace.el (occur-accumulate-lines, occur-engine):
1489 Use `occur-engine-line' instead of duplicate code.
1490 (occur-engine-line): New function created from duplicate code
1491 in `occur-accumulate-lines' and `occur-engine'.
1492
1493 * replace.el (occur-engine-line): Add optional arg `keep-props'.
1494 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
1495
1496 2010-03-23 Juri Linkov <juri@jurta.org>
1497
1498 * finder.el: Remove TODO tasks.
1499
1500 * info.el (Info-finder-find-node): Add node "all"
1501 with all package info. Handle a list of multiple keywords
1502 separated by comma.
1503 (info-finder): In interactive use with a prefix argument,
1504 use `completing-read-multiple' to read a list of keywords
1505 separated by comma.
1506
1507 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
1508
1509 Add a new completion style `substring'.
1510 * minibuffer.el (completion-basic--pattern): New function.
1511 (completion-basic-try-completion, completion-basic-all-completions):
1512 Use it.
1513 (completion-substring--all-completions)
1514 (completion-substring-try-completion)
1515 (completion-substring-all-completions): New functions.
1516 (completion-styles-alist): New style `substring'.
1517
1518 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
1519
1520 Get rid of .elc files after removal of the corresponding .el.
1521 * Makefile.in (compile-clean): New target.
1522 (compile-main): Use it.
1523
1524 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
1525
1526 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
1527 don't do make there. When compiling with separate object dir, there
1528 is no Makefile there.
1529
1530 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
1531
1532 Get rid of the ELCFILES abomination, again.
1533 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
1534 (all, compile): Don't call compile-last.
1535 (compile-main): Build the "elcfiles" list dynamically.
1536 (compile-targets): New (internal) target.
1537
1538 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
1539
1540 * Makefile.in (top_srcdir): Define.
1541 (abs_top_builddir): Define.
1542 (srcdir): Don't append `/..'.
1543 (EMACS): Use ${abs_top_builddir}.
1544 (all, compile, compile-always, compile-last): Don't set emacswd.
1545 (update-subdirs, update-authors): Use $(top_srcdir) instead of
1546 $(srcdir).
1547 (lisp): Use $(srcdir) instead of @srcdir@.
1548
1549 2010-03-21 Juri Linkov <juri@jurta.org>
1550
1551 Fix message of multi-line occur regexps and multi-buffer header lines.
1552 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
1553
1554 * replace.el (occur-1): Don't display regexp if it is longer
1555 than window-width. Use `query-replace-descr' to display regexp.
1556 (occur-engine): Don't display regexp in the buffer header for
1557 multi-buffer occur. Display a separate header line with total
1558 match count and regexp for multi-buffer occur.
1559 Use `query-replace-descr' to display regexp.
1560
1561 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
1562
1563 * net/secrets.el: Fix parenthesis.
1564 (secrets-enabled): Fix parenthesis.
1565
1566 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
1567
1568 Use more relative file and directory names.
1569 * Makefile.in (EMACS): Arrange for it to work when we chdir.
1570 (setwins, setwins_almost, setwins_for_subdirs):
1571 Don't `cd'; output relative names.
1572 (all, compile, compile-always, compile-last): Set emacswd.
1573 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
1574 Just cd to the lisp source dir so we can use relative file names.
1575
1576 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
1577
1578 2010-03-20 Glenn Morris <rgm@gnu.org>
1579
1580 * textmodes/rst.el: Use faces for font-lock customization, and make the
1581 old -face variables obsolete.
1582 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
1583 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
1584 (rst-block-face, rst-external-face, rst-definition-face)
1585 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
1586 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
1587 Make obsolete.
1588 (rst-font-lock-keywords-function): Update for above changes.
1589
1590 2010-03-20 Juri Linkov <juri@jurta.org>
1591
1592 * s-region.el:
1593 * obsolete/s-region.el: Move to obsolete.
1594
1595 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
1596
1597 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
1598
1599 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
1600
1601 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
1602
1603 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
1604
1605 Add special markup processing for commit logs.
1606 * log-edit.el (log-edit-extra-flags): New variable.
1607 (log-edit): Add new argument MODE. Use that mode when non-nil
1608 instead of the log-view-mode.
1609 (log-view-process-buffer): New function.
1610
1611 * vc.el: Document that the checkin method takes optional
1612 arguments. Document new backend specific method: log-view-mode.
1613 (vc-default-log-edit-mode): New function.
1614 (vc-checkin): Use a backend specific log-view-mode.
1615 Pass extra arguments to the checkin method.
1616 (vc-modify-change-comment): Pass a dummy extra argument.
1617
1618 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
1619 log-edit.
1620 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
1621 (vc-finish-logentry): Process the log buffer before passing it
1622 down. Pass log-edit-extra-flags.
1623
1624 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
1625 command.
1626 (log-edit-extra-flags, log-edit-before-checkin-process):
1627 New declarations.
1628
1629 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
1630 command.
1631 (log-edit-extra-flags, log-edit-before-checkin-process):
1632 New declarations.
1633 (vc-hg-log-edit-mode): New derived mode.
1634
1635 * vc-arch.el (vc-arch-checkin):
1636 * vc-cvs.el (vc-cvs-checkin):
1637 * vc-git.el (vc-git-checkin):
1638 * vc-mtn.el (vc-mtn-checkin):
1639 * vc-rcs.el (vc-rcs-checkin):
1640 * vc-sccs.el (vc-sccs-checkin):
1641 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
1642
1643 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
1644
1645 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
1646 parent typo).
1647
1648 2010-03-19 Glenn Morris <rgm@gnu.org>
1649
1650 * password-cache.el (password-cache, password-cache-expiry): Autoload.
1651
1652 2010-03-18 Glenn Morris <rgm@gnu.org>
1653
1654 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
1655
1656 * replace.el (query-replace-history): Give it a doc string.
1657 (map-query-replace-regexp): Use query-replace-from-history-variable
1658 and query-replace-to-history-variable.
1659
1660 * mail/hashcash.el (declare-function): Remove duplicate definition.
1661
1662 * mail/emacsbug.el (report-emacs-bug-pretest-address):
1663 Make it an obsolete alias for report-emacs-bug-address.
1664 (message-strip-special-text-properties): Declare.
1665 (report-emacs-bug): Remove test for a pretest bug address.
1666 Combine message-mode-specific code.
1667
1668 * mail/supercite.el: Don't require sendmail.
1669 (mh-in-header-p): Declare rather than using with-no-warnings.
1670 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
1671 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
1672
1673 * calendar/cal-french.el: Convert to utf-8.
1674
1675 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
1676 Emacs scripts.
1677
1678 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
1679
1680 * net/secrets.el (secrets-enabled): New variable. Use it instead
1681 of a subfeature.
1682
1683 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
1684
1685 * net/secrets.el (top): Register the D-Bus signals only when the
1686 service "org.freedesktop.secrets" can be pinged.
1687 Provide subfeature `enabled'.
1688
1689 2010-03-14 Juri Linkov <juri@jurta.org>
1690
1691 Add finder unknown keywords.
1692
1693 * finder.el (finder-unknown-keywords): New function.
1694
1695 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
1696 to create a Finder node with unknown keywords.
1697
1698 2010-03-14 Juri Linkov <juri@jurta.org>
1699
1700 * finder.el (finder-compile-keywords): Replace `princ' with
1701 `prin1' on a list of symbols interned from keyword strings.
1702
1703 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
1704 a comma, then split keywords using a comma and optional whitespace.
1705 Otherwise, split by whitespace.
1706
1707 * complete.el:
1708 * face-remap.el:
1709 * log-view.el:
1710 * net/hmac-def.el:
1711 * net/hmac-md5.el:
1712 * net/netrc.el:
1713 * progmodes/mixal-mode.el: Fix keywords.
1714
1715 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
1716
1717 * Makefile.in (ELCFILES): Add net/secrets.elc.
1718
1719 * net/secrets.el: New file.
1720
1721 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
1722
1723 * facemenu.el (list-colors-display, list-colors-print): New arg
1724 callback. Use it to allow selecting colors.
1725
1726 * wid-edit.el (widget-image-insert): Insert image prop even if the
1727 current display is non-graphic.
1728 (widget-field-value-set): New fun.
1729 (editable-field): Use it.
1730 (widget-field-value-get): Clean up unused var.
1731 (widget-color-value-create, widget-color--choose-action):
1732 New funs. Allow using list-colors-display to choose color.
1733
1734 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
1735
1736 * cus-edit.el: Resort topmost custom groups.
1737 (custom-buffer-sort-alphabetically): Default to t.
1738 (customize-apropos): Use apropos-parse-pattern.
1739 (custom-search-field): New var.
1740 (custom-buffer-create-internal): Add custom-apropos search field.
1741 (custom-add-parent-links): Don't display parent doc.
1742 (custom-group-value-create): Don't sort top-level custom group.
1743 (custom-magic-value-create): Show visibility button before option name.
1744
1745 (custom-variable-state): New fun, from custom-variable-state-set.
1746 (custom-variable-state-set): Use it.
1747 (custom-group-value-create): Hide options with standard values
1748 using the :hidden-states property. Use progress reporter.
1749
1750 (custom-show): Simplify.
1751 (custom-visibility): Disable images by default.
1752 (custom-variable): New property :hidden-states.
1753 (custom-variable-value-create): Enable images for
1754 custom-visibility widgets. Use :hidden-states property to
1755 determine initial visibility.
1756
1757 * wid-edit.el (widget-image-find): Give images center ascent.
1758 (visibility): Add :on-image and :off-image properties.
1759 (widget-visibility-value-create): Use them.
1760
1761 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
1762
1763 * cus-edit.el (processes): Remove from development group.
1764 (oop, hypermedia): Delete group.
1765 (comm): Promote to top-level group.
1766
1767 * net/browse-url.el (browse-url):
1768 * net/xesam.el (xesam):
1769 * net/tramp.el (tramp):
1770 * net/goto-addr.el (goto-address):
1771 * net/ange-ftp.el (ange-ftp): Put in comm group.
1772
1773 * view.el (view): Remove from editing group.
1774
1775 * uniquify.el (uniquify): Put in files group.
1776
1777 * net/browse-url.el (browse-url):
1778 * ps-print.el (postscript): Put in external group.
1779
1780 * cus-edit.el (outlines):
1781 * textmodes/text-mode.el (text-mode-hook):
1782 * textmodes/table.el (table):
1783 * textmodes/picture.el (picture):
1784 * outline.el (outlines): Put in wp group.
1785
1786 * nxml/nxml-mode.el (nxml): Remove from wp group.
1787
1788 * net/tramp-imap.el (tramp-imap): Put in tramp group.
1789
1790 * mail/metamail.el (metamail): Remove from hypermedia group.
1791
1792 * cus-edit.el (abbrev):
1793 * whitespace.el (whitespace):
1794 * vcursor.el (vcursor):
1795 * reveal.el (reveal):
1796 * hl-line.el (hl-line): Put in convenience group.
1797
1798 * epg-config.el (epg): Put in data group.
1799
1800 * emulation/pc-select.el (pc-select): Put in emulations group.
1801
1802 * calculator.el (calculator): Put in applications group.
1803
1804 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
1805
1806 Add .dir-locals.el support for file-less buffers.
1807 * files.el (hack-local-variables): Split out code to apply local
1808 variable settings ...
1809 (hack-local-variables-apply): ... here. New function.
1810 (hack-dir-local-variables): Use the default directory for when the
1811 buffer does not have an associated file.
1812 (hack-dir-local-variables-non-file-buffer): New function.
1813 * diff-mode.el (diff-mode):
1814 * vc-annotate.el (vc-annotate-mode):
1815 * vc-dir.el (vc-dir-mode):
1816 * log-edit.el (log-edit-mode):
1817 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
1818
1819 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
1820
1821 Add support for shelving snapshots and for showing shelves.
1822 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
1823 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
1824 New functions.
1825 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
1826 (vc-bzr-extra-menu-map): Map them.
1827
1828 2010-03-11 Glenn Morris <rgm@gnu.org>
1829
1830 * cus-edit.el (customize-changed-options-previous-release):
1831 Bump to 23.1.
1832
1833 * image.el (image-animate-max-time): Fix :version tag.
1834
1835 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
1836
1837 * Branch for 23.2.
1838
1839 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
1840
1841 * vc-git.el (vc-git-revision-table): Include remote branches.
1842
1843 2010-03-10 Kim F. Storm <storm@cua.dk>
1844
1845 Animated image API.
1846 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
1847
1848 * image.el (image-animate-max-time): New defcustom.
1849 (image-animated-types): New defconst.
1850 (create-animated-image, image-animate-timer)
1851 (image-animate-start, image-animate-stop, image-animate-timeout)
1852 (image-animated-p): New functions.
1853
1854 * image-mode.el (image-toggle-display-image):
1855 Replace `create-image' with `create-animated-image'.
1856
1857 2010-03-09 Miles Bader <miles@gnu.org>
1858
1859 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
1860 instead of "format:"; this ensures that the output is
1861 newline-terminated.
1862
1863 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
1864
1865 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
1866 that all errors are caught, and that the return value is always a
1867 list (Bug#5692).
1868
1869 2010-03-08 Kenichi Handa <handa@m17n.org>
1870
1871 * language/misc-lang.el (windows-1256): New coding system.
1872 (cp1256): New alias of windows-1256 (bug#5690).
1873
1874 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
1875
1876 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
1877 call to rfc822-bad-address. (Bug#5692)
1878
1879 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
1880
1881 * vc-git.el (vc-git-annotate-extract-revision-at-line):
1882 Use vc-git-root as default directory for revision path (Bug#5657).
1883
1884 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
1885
1886 * calculator.el (calculator): Don't bind split-window-keep-point
1887 (Bug#5674).
1888
1889 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
1890
1891 * vc-git.el: Re-flow to fit into 80 columns.
1892 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
1893 Remove spurious `quote' element in each case alternative.
1894 (vc-git-show-log-entry): Use prog1.
1895 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
1896
1897 2010-03-06 Glenn Morris <rgm@gnu.org>
1898
1899 * cedet/semantic/grammar.el (semantic-grammar-header-template):
1900 Update template copyright to GPLv3+.
1901
1902 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
1903
1904 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
1905
1906 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
1907
1908 * macros.el (insert-kbd-macro): Look up keyboard macro using the
1909 definition, not the name (Bug#5481).
1910
1911 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
1912
1913 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
1914 argument with a local variable. (Bug#5670)
1915
1916 2010-03-02 Juri Linkov <juri@jurta.org>
1917
1918 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
1919
1920 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
1921
1922 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
1923 error when FILENAME and NEWNAME are existing remote directories.
1924
1925 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
1926 parameter DIR-FLAG.
1927
1928 2010-03-02 Glenn Morris <rgm@gnu.org>
1929
1930 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
1931 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
1932
1933 2010-03-01 Kenichi Handa <handa@m17n.org>
1934
1935 * language/burmese.el (burmese-composable-pattern): Rename from
1936 myanmar-composable-pattern.
1937
1938 * international/characters.el (script-list):
1939 * international/fontset.el (script-representative-chars):
1940 Change myanmar to burmese.
1941 (otf-script-alist): Likewise.
1942 (setup-default-fontset): Likewise. Re-fix :otf spec.
1943
1944 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
1945
1946 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
1947
1948 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
1949
1950 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
1951
1952 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1953
1954 * net/tramp.el (tramp-handle-write-region): START can be a string.
1955 Take care in the checks. Reported by Dan Davison
1956 <davison@stats.ox.ac.uk>.
1957
1958 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1959
1960 * net/dbus.el (dbus-introspect, dbus-get-property)
1961 (dbus-set-property, dbus-get-all-properties):
1962 Use `dbus-call-method' when noninteractive. (Bug#5645)
1963
1964 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
1965
1966 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1967 * emacs-lisp/elint.el (elint-add-required-env):
1968 * cedet/semantic/db-find.el
1969 (semanticdb-find-translate-path-brutish-default):
1970 * cedet/ede/make.el (ede-make-check-version):
1971 * calendar/icalendar.el (icalendar--add-diary-entry):
1972 * calc/calcalg2.el (math-tracing-integral):
1973 * files.el (recover-session-finish): Use with-current-buffer
1974 instead of save-excursion.
1975
1976 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
1977
1978 Fix in-buffer completion when after-change-functions modify the buffer.
1979 * minibuffer.el (completion--replace): New function.
1980 (completion--do-completion): Use it and use relative movement.
1981
1982 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
1983
1984 * international/fontset.el (setup-default-fontset): Fix :otf spec.
1985
1986 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
1987
1988 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1989 Allow the characters _<> in the stack entry (Bug#5653).
1990
1991 2010-02-26 Kenichi Handa <handa@m17n.org>
1992
1993 * language/burmese.el: Fix entries in composition-function-table.
1994 (myanmar-composable-pattern): New variable.
1995
1996 * international/fontset.el (setup-default-fontset): Add an entry
1997 for myanmar.
1998
1999 * international/characters.el (script-list): Add Myanmar
2000 Extended-A.
2001
2002 2010-02-26 Glenn Morris <rgm@gnu.org>
2003
2004 * custom.el (custom-initialize-delay): Doc fix.
2005
2006 * mail/sendmail.el (send-mail-function): Autoload the call
2007 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
2008
2009 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
2010
2011 * files.el (hack-local-variables-filter): For eval forms, also
2012 check safe-local-variable-p (Bug#5636).
2013
2014 2010-02-24 Eduard Wiebe <usenet@pusto.de>
2015
2016 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
2017 and use c(ad)r of cddr (Bug#5640).
2018
2019 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
2020
2021 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
2022 setting the modes by `ignore-errors'. It might fail, for example
2023 if the file is not owned by the user but the group.
2024 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
2025
2026 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2027
2028 * files.el (directory-listing-before-filename-regexp): Use
2029 stricter matching for iso-style dates, to avoid false matches with
2030 date-like filenames (Bug#5597).
2031
2032 * htmlfontify.el (htmlfontify): Doc fix.
2033
2034 * eshell/eshell.el (eshell): Doc fix.
2035
2036 * startup.el (fancy-about-screen): In mode-line, apply
2037 mode-line-buffer-id face only to the buffer name (Bug#5613).
2038
2039 2010-02-20 Kevin Ryde <user42@zip.com.au>
2040
2041 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2042 In `watcom' anchor regexp to start of line, to avoid slowness
2043 (Bug#5599).
2044
2045 2010-02-20 Eli Zaretskii <eliz@gnu.org>
2046
2047 * subr.el (remove-yank-excluded-properties): Explain in a comment
2048 why `category' property is removed.
2049
2050 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
2051
2052 * isearch.el (isearch-update-post-hook, isearch-update): Revert
2053 2010-02-17 change.
2054
2055 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
2056
2057 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
2058 (icalendar--convert-weekly-to-ical)
2059 (icalendar--convert-yearly-to-ical)
2060 (icalendar--convert-block-to-ical)
2061 (icalendar--convert-cyclic-to-ical)
2062 (icalendar--convert-anniversary-to-ical): Take care of time
2063 specifications where hour has 1-digit only (Bug#5549).
2064
2065 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
2066
2067 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
2068 of disassemble output in GDB 7.1.
2069
2070 2010-02-19 Glenn Morris <rgm@gnu.org>
2071
2072 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
2073 property. (Bug#5593)
2074
2075 2010-02-18 Sam Steingold <sds@gnu.org>
2076
2077 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
2078
2079 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2080
2081 Use abbreviated file names in bookmarks (bug#5591).
2082 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
2083 calls to expand-file-name.
2084 (bookmark-relocate): Use abbreviated file names in bookmarks.
2085 (bookmark-load): Use abbreviated file names in messages.
2086
2087 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2088
2089 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
2090 expand "." and "..". Reported by Thierry Volpiatto
2091 <thierry.volpiatto@gmail.com>.
2092
2093 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2094
2095 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
2096 permissions of the temporary file to "0600". In case the remote
2097 file has no read permissions for the owner, there might be
2098 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
2099
2100 22010-02-18 Glenn Morris <rgm@gnu.org>
2101
2102 * emacs-lisp/authors.el (authors-renamed-files-alist):
2103 Add entries for INSTALL.CVS.
2104
2105 2010-02-17 Mark A. Hershberger <mah@everybody.org>
2106
2107 * vc-bzr.el: Fix typo in Known Bugs section.
2108
2109 * isearch.el (isearch-update-post-hook): New hook.
2110 (isearch-update): Use the new hook.
2111
2112 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
2113
2114 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
2115 Fix errors in copying directories.
2116 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
2117 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
2118 (tramp-handle-delete-file)
2119 (tramp-handle-dired-recursive-delete-directory)
2120 (tramp-handle-write-region): Flush also the cache for the upper
2121 directory.
2122
2123 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
2124
2125 * simple.el (save-interprogram-paste-before-kill): Doc fix.
2126
2127 * cus-edit.el (hardware): Doc fix.
2128
2129 * man.el (man): Add to external custom group.
2130
2131 * delim-col.el (columns): Move to wp custom group.
2132
2133 * doc-view.el (doc-view): Add to data custom group.
2134
2135 * cedet/data-debug.el (data-debug): Move to extensions group.
2136
2137 * cedet/ede.el (ede):
2138 * cedet/srecode.el (srecode):
2139 * cedet/semantic.el (semantic): Put in tools and extensions group.
2140
2141 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
2142
2143 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
2144 by ispell-parse-output (Bug#5575).
2145
2146 2010-02-16 Kenichi Handa <handa@m17n.org>
2147
2148 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
2149 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
2150 (skkdic-convert): Use `euc-japan' coding system for writing.
2151
2152 2010-02-16 Glenn Morris <rgm@gnu.org>
2153
2154 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
2155 tex-main-file before using it. (Bug#5562)
2156
2157 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
2158
2159 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
2160 warnings, since it is annoying for the user to see them each time he
2161 runs the code.
2162
2163 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
2164
2165 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
2166 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
2167 instead of PROC for caching "first-password-request". Otherwise,
2168 new processes would not profit from passwords already entered.
2169
2170 * net/tramp-cache.el (tramp-dump-connection-properties):
2171 Don't save "first-password-request" property.
2172
2173 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
2174
2175 * outline.el (outline-head-from-level):
2176 * simple.el (with-wrapper-hook):
2177 * cedet/ede.el (ede-run-target, project-delete-target)
2178 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
2179 (ede-adebug-project, ede-adebug-project-parent)
2180 (ede-adebug-project-root):
2181 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
2182 (elint-defun, elint-buffer-env, elint-top-form-logged)
2183 (elint-unbound-variable):
2184 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
2185 Fix typos in docstrings.
2186
2187 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
2188
2189 * files.el (insert-directory): When WILDCARD-REGEXP and
2190 FULL-DIRECTORY-P are nil, insert the file entry instead of the
2191 whole directory. (Bug#5551)
2192
2193 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
2194 dired's alignment sanity. (Bug#5516)
2195
2196 2010-02-14 Juri Linkov <juri@jurta.org>
2197
2198 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
2199 Remove remaining ^H with their preceding chars. (Bug#5566)
2200
2201 2010-02-13 Glenn Morris <rgm@gnu.org>
2202
2203 * simple.el (transpose-subr): Give it a doc-string.
2204
2205 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
2206 Doc fixes.
2207
2208 2010-02-12 Juri Linkov <juri@jurta.org>
2209
2210 * arc-mode.el (archive-unique-fname): Make directories for nested
2211 archives. (Bug#5540)
2212
2213 2010-02-12 Juri Linkov <juri@jurta.org>
2214
2215 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
2216
2217 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2218
2219 * subr.el (copy-overlay): Handle deleted overlays.
2220
2221 * man.el (Man-completion-table): Don't signal an error if we can't run
2222 manual-program (bug#4056).
2223
2224 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
2225
2226 * textmodes/artist.el (artist-mt): Fix typos in docstring.
2227
2228 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2229
2230 * info.el (Info-bookmark-jump): Simplify.
2231
2232 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
2233 (bookmark-default-handler): Accept new bookmark field `buffer'.
2234
2235 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
2236
2237 * iswitchb.el (iswitchb-completions): Revert last change.
2238
2239 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
2240
2241 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
2242 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
2243 This prevents file names like "~/" being listed literally.
2244
2245 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
2246
2247 * term/xterm.el (xterm-maybe-set-dark-background-mode):
2248 Remove dead code. (Bug#5546)
2249
2250 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
2251
2252 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
2253 correctly (Bug#5548).
2254
2255 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
2256
2257 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
2258 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
2259
2260 2010-02-08 Kenichi Handa <handa@m17n.org>
2261
2262 * international/mule-util.el (with-coding-priority): Add autoload
2263 cookie for putting `lisp-indent-function'.
2264
2265 2010-02-07 Glenn Morris <rgm@gnu.org>
2266
2267 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
2268 Move F2003 named interfaces from keywords-2 to keywords-1, and
2269 use function-name-face rather than constant-face.
2270 Simplify "abstract interface" regexp.
2271
2272 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
2273
2274 * eshell/esh-util.el (eshell-file-attributes): New optional arg
2275 ID-FORMAT. Pass it to `file-attributes'.
2276
2277 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
2278
2279 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
2280
2281 * faces.el (set-face-attribute): Allow calling
2282 internal-set-lisp-face-attribute with 'unspecified family and
2283 foundry argument (Bug#5536).
2284
2285 2010-02-07 Glenn Morris <rgm@gnu.org>
2286
2287 * progmodes/f90.el (f90-font-lock-keywords-2)
2288 (f90-looking-at-type-like, f90-looking-at-program-block-end):
2289 Handle F2003 named interfaces.
2290
2291 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2292
2293 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
2294 beg and end before calling c-get-state-before-change-functions.
2295
2296 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
2297
2298 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
2299
2300 2010-02-05 Juri Linkov <juri@jurta.org>
2301
2302 * doc-view.el (doc-view-mode):
2303 * image-mode.el (image-mode): Put property mode-class=special.
2304 (Bug#4896)
2305
2306 2010-02-05 Mark A. Hershberger <mah@everybody.org>
2307
2308 * vc-svn.el (vc-svn-revision-table): New function.
2309
2310 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
2311
2312 * net/ange-ftp.el (ange-ftp-insert-directory):
2313 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2314 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2315 Handle also directories. (Bug#5478)
2316
2317 2010-02-05 Glenn Morris <rgm@gnu.org>
2318
2319 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
2320
2321 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2322
2323 * startup.el (command-line-1): Convert options beginning with a
2324 single dash as well (Bug#5519).
2325
2326 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
2327
2328 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
2329 * minibuffer.el (completion-initials-expand): Only check the presence
2330 of delims *within* the boundaries, since otherwise the / delim is
2331 always found for files.
2332
2333 Fix up various corner case problems.
2334 * doc-view.el (doc-view-last-page-number): New function.
2335 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
2336 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
2337 (doc-view-kill-proc): Avoid inf-loop in freak cases.
2338 (doc-view-reconvert-doc): Use the new recursive delete-directory.
2339 (doc-view-convert-current-doc): Don't create the resolution.el file
2340 here any more.
2341 (doc-view-pdf/ps->png): Do it here instead.
2342 (doc-view-already-converted-p): Check that resolution.el is present.
2343 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
2344 windows that are not yet showing images.
2345
2346 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
2347
2348 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
2349 `dired-uncache' for every elemnt which is an absolute file name.
2350
2351 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
2352 directory, handle its directory component.
2353 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
2354 function is called permanently and creates noise, otherwise.
2355
2356 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2357 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2358 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
2359
2360 2010-02-04 David Burger <dburger@google.com> (tiny change)
2361
2362 * macros.el (apply-macro-to-region-lines):
2363 Minor simplification. (Bug#5485)
2364
2365 2010-02-04 Glenn Morris <rgm@gnu.org>
2366
2367 * mail/rmail.el (rmail-show-message-1): Handle malformed
2368 quoted-printable text. (Bug#5441)
2369
2370 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
2371
2372 * simple.el (visual-line-mode): Capitalize lighter.
2373
2374 2010-02-03 John Wiegley <jwiegley@gmail.com>
2375
2376 * iswitchb.el (iswitchb-completions): Add bookmark files to the
2377 list of files considered for "virtual buffer" completions.
2378
2379 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
2380
2381 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
2382 also in case of (and (not full) (not wildcard)). This is needed,
2383 when dired is called with a list of files, which are not in
2384 `default-directory'. (Bug#5478)
2385
2386 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
2387
2388 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
2389
2390 2010-02-02 Juri Linkov <juri@jurta.org>
2391
2392 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
2393 from unidiff to allow function-line after @@.
2394
2395 2010-02-02 Juri Linkov <juri@jurta.org>
2396
2397 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
2398 '(RCS SCCS) with inverted condition.
2399
2400 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
2401
2402 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
2403 messages.
2404
2405 2010-02-01 Juri Linkov <juri@jurta.org>
2406
2407 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
2408 compare with "pkunzip" and "pkzip" instead of only "pkzip".
2409 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
2410 only when (car archive-zip-extract) is "unzip". (Bug#5475)
2411
2412 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2413
2414 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
2415 (doc-view-revert-buffer): New command.
2416 (doc-view-mode-map): Use it.
2417
2418 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
2419
2420 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
2421 pending merge is detected.
2422
2423 2010-01-31 Juri Linkov <juri@jurta.org>
2424
2425 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
2426 beginning of interactive spec like all other grep commands do.
2427 Put "all" in front of "gz". (Bug#5260)
2428
2429 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
2430
2431 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
2432
2433 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2434
2435 * dirtrack.el (dirtrack): Warn instead of signalling error if the
2436 regexp is incorrect (Bug#5476).
2437
2438 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
2439
2440 * net/tramp.el (tramp-handle-insert-directory): Handle also
2441 symlinks, when FILENAME is not in `default-directory'.
2442
2443 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2444
2445 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
2446 FILE is not in `default-directory'. (Bug#5478)
2447
2448 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
2449 of SWITCHES. Handle the case, FILENAME is not in
2450 `default-directory'. (Bug#5478)
2451 (tramp-register-file-name-handlers): Add safe-magic property.
2452
2453 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2454
2455 * arc-mode.el (archive-zip-extract): Quote the argument passed to
2456 unzip (Bug#5475).
2457
2458 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
2459
2460 * progmodes/flymake.el (flymake-allowed-file-name-masks)
2461 (flymake-master-make-header-init): Add other C++ filename masks.
2462 (flymake-find-possible-master-files)
2463 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
2464
2465 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2466
2467 Fix some busybox annoyances.
2468
2469 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
2470 not responding." string.
2471 (tramp-open-connection-setup-interactive-shell): Dump stty
2472 settings. Enable "neveropen" arg for all `tramp-send-command'
2473 calls. Handle "=" in variable values properly.
2474 (tramp-find-inline-encoding): Raise an error, when no encoding is
2475 found.
2476 (tramp-wait-for-output): Check, whether PROC buffer is available.
2477 Remove spurious " ^H" sequences, sent by busybox.
2478 (tramp-get-ls-command): Suppress coloring, if possible.
2479
2480 2010-01-28 Glenn Morris <rgm@gnu.org>
2481
2482 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
2483
2484 * log-edit.el (log-edit-strip-single-file-name): Add missing
2485 :safe, :group, and :version tags.
2486
2487 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
2488
2489 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
2490 buffers. (Bug#5477)
2491
2492 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2493
2494 * files.el (delete-directory): Handle moving to trash without
2495 first doing recursion (Bug#5436).
2496
2497 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
2498
2499 * vc-hooks.el (vc-path): Mark as obsolete.
2500
2501 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
2502
2503 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
2504 names too.
2505
2506 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
2507 for the short log.
2508 (vc-bzr-log-view-mode): Adjust regexp for the above change.
2509
2510 2010-01-25 Mark A. Hershberger <mah@everybody.org>
2511
2512 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
2513
2514 * vc-bzr.el (vc-bzr-revision-table): New function.
2515
2516 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
2517
2518 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
2519 diff-index command. This requires at least git-1.5.5. (Bug#1589).
2520
2521 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
2522
2523 Remove support for adding --signoff on commit.
2524 Future support will use an incompatible generic mechanism.
2525 * vc-git.el (vc-git-add-signoff): Remove variable.
2526 (vc-git-toggle-signoff): Remove function.
2527 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
2528
2529 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
2530 from xterm-set-background-mode. Return t if the background mode
2531 was set.
2532 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2533 earlier, call it again in case the background mode has changed.
2534
2535 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
2536
2537 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2538 (Bug#3541).
2539
2540 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
2541
2542 * emacs-lisp/assoc.el (aelement): Doc fix.
2543 (aput, adelete, amake): Use lexical-let (Bug#5450).
2544
2545 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
2546
2547 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2548 is the same as subprogram call, not declaration. (Bug#5435).
2549
2550 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
2551
2552 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2553 (tramp-smb-maybe-open-connection): Use it.
2554
2555 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
2556
2557 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
2558
2559 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2560
2561 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2562 just because we see "encoding: 8bit".
2563 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2564
2565 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
2566
2567 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2568
2569 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2570
2571 * jka-compr.el (jka-compr-load): If load-file is not in
2572 load-history, try its file-truename version. (bug#5447)
2573
2574 2010-01-21 Alan Mackenzie <acm@muc.de>
2575
2576 Fix a situation where deletion of a cpp construct throws an error.
2577 * progmodes/cc-engine.el (c-invalidate-state-cache): Before
2578 invoking c-with-all-but-one-cpps-commented-out, check that the
2579 special cpp construct is still in the buffer.
2580 (c-parse-state): Record the special cpp with markers, not numbers.
2581
2582 2010-01-21 Kenichi Handa <handa@m17n.org>
2583
2584 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
2585 process last-command-event, as it is now decoded first (Bug#5380).
2586
2587 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
2588
2589 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
2590
2591 2010-01-20 Glenn Morris <rgm@gnu.org>
2592
2593 * indent.el (tab-always-indent): Fix custom-type.
2594
2595 2010-01-19 Alan Mackenzie <acm@muc.de>
2596
2597 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
2598 buffer throws "args out of range".
2599 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
2600 playing the role of delimiter.
2601
2602 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
2603
2604 * progmodes/ada-mode.el: Fix bug#5400.
2605 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
2606 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
2607 changed. Delete RECURSIVE parameter; never used. Improve doc string.
2608 Improve comments in "is" portion. Handle null procedure declaration.
2609 (ada-move-to-end): Improve doc string.
2610
2611 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
2612
2613 * ido.el (ido-cur-list): Initialize to nil.
2614 Remove obsolete information from commentary.
2615 (ido-choice-list): Initialize to nil.
2616 (ido-get-bufname): Reject minibuffers.
2617 (ido-make-buffer-list): If "default" is a nonexistent
2618 buffer, ignore it, as per the function's comment.
2619 (ido-kill-buffer-internal): New function.
2620 (ido-kill-buffer-at-head): Use it.
2621 (ido-visit-buffer): Likewise.
2622
2623 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2624
2625 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
2626
2627 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
2628
2629 * cedet/ede/locate.el (ede-locate-file-in-project)
2630 (ede-locate-file-in-project-impl): Fix typos in docstrings.
2631 (ede-enable-locate-on-project): Fix typos in error messages.
2632
2633 * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
2634 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
2635 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
2636 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
2637 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
2638 Fix typos in menu help.
2639
2640 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2641 Fix typos in chart titles.
2642
2643 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2644 * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
2645 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
2646 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
2647 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
2648 (semantic-parse-stream, semantic-parse-region)
2649 (semantic-parse-region-default, semantic--set-buffer-cache)
2650 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
2651 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
2652 (semantic-default-submodes):
2653 * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
2654 (semanticdb-create-ebrowse-database)
2655 (semanticdb-find-tags-for-completion-method)
2656 (semanticdb-find-tags-by-class-method)
2657 (semanticdb-deep-find-tags-by-name-method)
2658 (semanticdb-deep-find-tags-for-completion-method):
2659 * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
2660 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
2661 (semanticdb-find-tags-for-completion-method)
2662 (semanticdb-find-tags-by-class-method)
2663 (semanticdb-deep-find-tags-for-completion-method):
2664 * cedet/semantic/db-find.el (semanticdb-find-translate-path)
2665 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
2666 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
2667 (semanticdb-find-tags-by-name-method)
2668 (semanticdb-find-tags-by-name-regexp-method)
2669 (semanticdb-find-tags-for-completion-method)
2670 (semanticdb-find-tags-by-class-method)
2671 (semanticdb-find-tags-external-children-of-type-method)
2672 (semanticdb-find-tags-subclasses-of-type-method)
2673 (semanticdb-deep-find-tags-by-name-method)
2674 (semanticdb-deep-find-tags-by-name-regexp-method)
2675 (semanticdb-deep-find-tags-for-completion-method):
2676 * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
2677 (semanticdb-enable-gnu-global-in-buffer)
2678 (semanticdb-find-tags-for-completion-method)
2679 (semanticdb-deep-find-tags-by-name-method)
2680 (semanticdb-deep-find-tags-for-completion-method):
2681 * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
2682 (javascript-mode, semanticdb-find-translate-path)
2683 (semanticdb-find-tags-for-completion-method)
2684 (semanticdb-find-tags-by-class-method)
2685 (semanticdb-deep-find-tags-by-name-method)
2686 (semanticdb-deep-find-tags-for-completion-method)
2687 (semanticdb-find-tags-external-children-of-type-method):
2688 * cedet/semantic/idle.el (semantic-idle-work-core-handler)
2689 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
2690 (global-semantic-idle-scheduler-mode):
2691 * cedet/srecode/dictionary.el (srecode-field-value)
2692 (srecode-dictionary-add-section-dictionary):
2693 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2694 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2695 (describe-class, eieio-describe-generic, describe-generic):
2696 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2697 (eieio-speedbar-expand):
2698 * emulation/viper-cmd.el (viper-exec-form-in-vi)
2699 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2700 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2701 (viper-del-backward-char-in-replace, viper-backward-indent)
2702 (viper-brac-function, viper-register-to-point, viper-submit-report):
2703 * net/tramp.el (tramp-remote-coding-commands):
2704 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2705 Fix typos in docstrings.
2706
2707 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
2708
2709 * mail/sendmail.el (mail-yank-original): Set the mark if the
2710 specified function for yanking does not do it.
2711
2712 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
2713
2714 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
2715
2716 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2717 resyncing a directory.
2718
2719 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
2720
2721 * progmodes/ada-mode.el: Fix bug#1920.
2722 (ada-ident-re): Delete ., allow multibyte characters.
2723 (ada-goto-label-re): New; matches goto labels.
2724 (ada-block-label-re): New; matches block labels.
2725 (ada-label-re): New; matches both.
2726 (ada-named-block-re): Deleted; callers changed to use
2727 `ada-block-label-re' instead.
2728 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2729 Use `ada-block-label-re'.
2730 (ada-indent-on-previous-lines): Improve handling of goto labels.
2731 (ada-get-indent-block-start): Special-case block label.
2732 (ada-get-indent-label): Split into `ada-indent-block-label' and
2733 `ada-indent-goto-label'.
2734 (ada-goto-stmt-start, ada-goto-next-non-ws):
2735 Optionally ignore goto labels.
2736 (ada-goto-next-word): Simplify.
2737 (ada-indent-newline-indent-conditional): Insert newline before
2738 trying to fix indentation; doc fix.
2739
2740 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
2741
2742 * calc/calc.el (calc-command-flags): Give it an initial value.
2743
2744 2010-01-17 Glenn Morris <rgm@gnu.org>
2745
2746 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
2747
2748 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
2749
2750 * cedet/semantic.el (semantic-mode):
2751 * files.el (minibuffer-with-setup-hook):
2752 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2753 (artist-key-draw-continously, artist-key-do-continously-continously)
2754 (artist-key-set-point-continously, artist-mouse-draw-continously):
2755 Fix typos in docstrings.
2756
2757 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
2758
2759 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
2760 return t (Bug#3898).
2761
2762 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
2763
2764 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2765 can parse the output of the external commands (Bug#5279).
2766
2767 2010-01-16 Jari Aalto <jari.aalto@cante.net>
2768
2769 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2770
2771 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2772
2773 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2774
2775 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2776
2777 * startup.el (command-line): Remove unused --icon-type arg.
2778 Handle --display arg, passing it to command-line-1 (Bug#5392).
2779
2780 2010-01-16 Mario Lang <mlang@delysid.org>
2781
2782 * cedet/ede/cpp-root.el (ede-cpp-root-project):
2783 * cedet/ede/files.el (ede-expand-filename):
2784 * cedet/ede/simple.el (ede-simple-project):
2785 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
2786 (semantic-complete-inline-tag-engine):
2787 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
2788 * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
2789 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
2790 * cedet/semantic/db.el (semanticdb-equivalent-mode):
2791 * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
2792 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
2793 * emacs-lisp/chart.el (chart-translate-namezone):
2794 * textmodes/artist.el (artist-compute-popup-menu-table):
2795 Remove duplicated words in doc-strings.
2796
2797 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
2798
2799 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2800 to mairix-search to suppress threading (Bug#5342).
2801
2802 2010-01-15 Kenichi Handa <handa@m17n.org>
2803
2804 * international/mule-cmds.el (canonicalize-coding-system-name):
2805 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2806
2807 2010-01-15 Glenn Morris <rgm@gnu.org>
2808
2809 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
2810
2811 * wid-edit.el (widget-keymap): Doc fix.
2812
2813 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2814 former seems to be more widely accepted by various svn versions.
2815
2816 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2817
2818 * find-cmd.el (find-constituents):
2819 * vc-arch.el (vc-arch-root):
2820 * window.el (window-body-height, pop-up-frames):
2821 * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
2822 (semantic-no-reparse-needed-change-hook):
2823 * cedet/srecode/insert.el (srecode-resolve-argument-list)
2824 (srecode-template-inserter-blank, srecode-template-inserter-variable)
2825 (srecode-template-inserter-ask, srecode-template-inserter-width)
2826 (srecode-template-inserter-section-start)
2827 (srecode-template-inserter-section-end, srecode-insert-method):
2828 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2829 * progmodes/ada-stmt.el (ada-if):
2830 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2831 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2832 (ispell-encoding8-command, ispell-aspell-supports-utf8)
2833 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2834
2835 * progmodes/flymake.el (flymake-post-syntax-check):
2836 Fix typo in error message.
2837
2838 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2839
2840 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2841 which is always a string. (Bug#5313)
2842
2843 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2844
2845 * progmodes/ada-xref.el (ada-default-prj-properties):
2846 Simplify previous change.
2847
2848 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2849
2850 * progmodes/ada-xref.el (ada-default-prj-properties):
2851 Default ada_project_path to $ADA_PROJECT_PATH.
2852
2853 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2854
2855 * progmodes/ada-mode.el (ada-create-keymap):
2856 Override `narrow-to-defun' with `ada-narrow-to-defun'.
2857
2858 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2859
2860 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2861 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2862 (ada-get-current-indent, ada-imenu-generic-expression)
2863 (ada-which-function): Check for it.
2864
2865 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2866
2867 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2868 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2869
2870 2010-01-14 Glenn Morris <rgm@gnu.org>
2871
2872 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
2873
2874 2010-01-14 Kenichi Handa <handa@m17n.org>
2875
2876 * composite.el (auto-composition-mode): Make it a buffer local
2877 variable (permanent-local).
2878 (auto-composition-function): Set the default value to
2879 auto-compose-chars.
2880 (auto-composition-mode): Make it a simple function, not a minor mode.
2881 (global-auto-composition-mode): Likewise.
2882 (turn-on-auto-composition-if-enabled): Delete it.
2883
2884 2010-01-13 Karl Fogel <kfogel@red-bean.com>
2885
2886 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
2887
2888 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
2889
2890 * files.el (copy-directory): Compute target for recursive
2891 directories with identical names. (Bug#5343)
2892
2893 2010-01-12 Glenn Morris <rgm@gnu.org>
2894
2895 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
2896 it to bug-gnu-emacs rather than emacs-pretest-bug.
2897
2898 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
2899
2900 * cedet/data-debug.el (data-debug): Fix customization group reference.
2901
2902 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
2903
2904 * cedet/semantic/analyze.el (semantic-analyze-push-error)
2905 (semantic-analyze-context, semantic-analyze-context-assignment)
2906 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
2907 * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
2908 (semantic-java-doc-keywords-map):
2909 * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
2910 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
2911 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
2912 (semantic-c-classname, semantic-format-tag-uml-prototype)
2913 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
2914 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
2915 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
2916 (semantic-get-local-variables, semantic-end-of-command)
2917 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
2918 (lisp-mode):
2919 * cedet/semantic/bovine/make.el (makefile-mode):
2920 * cedet/semantic/wisent/python.el (wisent-python-string-re)
2921 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
2922 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
2923 (semantic-lex, semantic-get-local-variables, python-mode):
2924 * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
2925 * cedet/srecode/extract.el (srecode-extract-state-set)
2926 (srecode-extract-method): Fix typos in docstrings.
2927
2928 2010-01-11 Sam Steingold <sds@gnu.org>
2929
2930 * imenu.el (imenu-default-create-index-function): Detect infinite
2931 loops caused by imenu-prev-index-position-function.
2932
2933 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2934
2935 * htmlfontify.el (htmlfontify-load-rgb-file)
2936 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2937 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2938 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2939 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2940 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2941 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2942 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2943 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2944 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2945 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2946 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2947 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2948 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2949 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2950 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2951 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2952 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2953 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2954 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2955 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2956 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2957 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2958 backslash-quoting from parentheses, etc.
2959
2960 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
2961
2962 * progmodes/js.el: Autoload javascript-mode alias.
2963
2964 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2965
2966 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2967 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2968 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2969 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2970 Fix typos in docstrings.
2971 (ffap-url-regexp): Doc fix.
2972 (ffap-at-mouse): Fix typo in message.
2973
2974 2010-01-11 Glenn Morris <rgm@gnu.org>
2975
2976 * version.el (emacs-copyright): Set copyright year to 2010.
2977
2978 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2979
2980 * format.el (format-annotate-function): Only set
2981 write-region-post-annotation-function after running to-fn so as not to
2982 affect nested write-region calls (bug#5273).
2983
2984 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
2985
2986 * cedet/semantic.el (semantic-new-buffer-setup-functions):
2987 Add python parser.
2988
2989 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2990 wisent/python.el.
2991
2992 2010-01-10 Richard Kim <emacs18@gmail.com>
2993
2994 * cedet/semantic/wisent/python-wy.el:
2995 * cedet/semantic/wisent/python.el: New files.
2996
2997 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2998
2999 * man.el (Man-goto-section): Signal error if the section is not
3000 found (Bug#5317).
3001
3002 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
3003
3004 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
3005 URLs with a leading triple slash in the file: scheme. (Bug#5345)
3006
3007 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
3008
3009 * progmodes/compile.el: Don't treat compile-command as safe if
3010 compilation-read-command might be nil (Bug#4218).
3011
3012 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
3013
3014 * startup.el (command-line-1): Use orig-argi to check for ignored X and
3015 NS options.
3016
3017 2010-01-08 Kenichi Handa <handa@m17n.org>
3018
3019 * international/fontset.el (build-default-fontset-data):
3020 Exclude characters in scripts kana, hangul, han, or cjk-misc.
3021
3022 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
3023
3024 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
3025 to `create-file-buffer' as it expects, not just a buffer name.
3026 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
3027 to help uniquify. (Bug#3224)
3028
3029 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
3030
3031 * font-setting.el (font-setting-change-default-font): Use user-spec
3032 instead of name.
3033
3034 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
3035
3036 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
3037
3038 2010-01-05 Tom Tromey <tromey@redhat.com>
3039
3040 * progmodes/python.el (python-font-lock-keywords):
3041 Handle qualified decorators (Bug#881).
3042
3043 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
3044
3045 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
3046 in a lightweight checkout.
3047
3048 2010-01-05 Kenichi Handa <handa@m17n.org>
3049
3050 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
3051
3052 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
3053
3054 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
3055
3056 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
3057
3058 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
3059 checkouts. (Bug#618)
3060 (vc-bzr-log-view-mode): Also highlight the author.
3061 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
3062 (vc-bzr-shelve-menu-map):
3063 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
3064 (vc-bzr-shelve-apply): Make prompt more explicit.
3065
3066 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
3067
3068 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
3069 They are valid characters in URL paths (rfc3986), and at least
3070 Firefox does not understand the encoded version (Bug#3166).
3071
3072 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
3073
3074 * progmodes/octave-mod.el (octave-end-keywords)
3075 (octave-block-begin-or-end-regexp, octave-block-match-alist):
3076 Add "end" keyword (Bug#3061).
3077 (octave-end-as-array-index-p): New function.
3078 (calculate-octave-indent): Use it.
3079
3080 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3081
3082 * bookmark.el: Consistently put the text property on the bookmark name.
3083 (bookmark-bmenu-marks-width): Bump back to 2, to include
3084 annotation marks.
3085 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
3086 property on the bookmark name, instead of not putting it at all.
3087 (bookmark-bmenu-list): Fix where we put the text property.
3088
3089 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3090
3091 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
3092 for showing buffer modified state (as added in the previous change).
3093
3094 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3095
3096 * bookmark.el: Show modified state of bookmark buffer more accurately.
3097 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
3098 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
3099 (with-buffer-modified-unmodified): New macro.
3100 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
3101 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
3102 Use new macro to preserve the buffer modified state.
3103
3104 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3105
3106 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
3107 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
3108 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
3109 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
3110 (bookmark-bmenu-rename, bookmark-bmenu-locate)
3111 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
3112 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
3113
3114 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3115
3116 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
3117 Make the lines in the generated doc string shorter. (Bug#4668)
3118
3119 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
3120
3121 * net/rcirc.el: Add follow-link binding (Bug#4738).
3122
3123 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3124
3125 * Makefile.in (bzr-update): Rename from cvs-update.
3126 (cvs-update): New target for backward compatibility.
3127
3128 * makefile.w32-in (bzr-update): Rename from cvs-update.
3129 (cvs-update): New target for backward compatibility.
3130
3131 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3132
3133 * bookmark.el: Remove gratuitous gratitude.
3134
3135 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3136
3137 * bookmark.el (bookmark-bmenu-any-marks): New function
3138 (bookmark-bmenu-save): Clear buffer modification if no marks.
3139
3140 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3141
3142 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
3143 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
3144 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
3145 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
3146
3147 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
3148 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
3149 To: emacs-devel {_AT_} gnu.org
3150 Subject: bookmark.el bug report
3151 Date: Mon, 28 Dec 2009 14:19:16 +0800
3152 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
3153
3154 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3155
3156 * bookmark.el: Improvements suggested by Drew Adams:
3157 (bookmark-bmenu-ensure-position): New name for
3158 `bookmark-bmenu-check-position'. Just ensure the position,
3159 don't return any meaningful value.
3160 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
3161 New constants.
3162
3163 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
3164
3165 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
3166 (bookmark-yank-point, bookmark-bmenu-check-position):
3167 Fix typos in docstrings.
3168 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
3169 (bookmark-name-from-full-record, bookmark-get-position)
3170 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
3171 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
3172 Remove useless quoting of parenthesis, etc. in docstrings.
3173
3174 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
3175 (ediff-append-custom-diff): Fix typo in error message.
3176 (ediff-meta-mark-equal-files): Fix typos in messages.
3177
3178 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
3179
3180 * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
3181 Fix typo in docstring.
3182
3183 * net/imap-hash.el (imap-hash-make): Doc fix.
3184 (imap-hash-test): Fix typo in error message; reflow docstring.
3185 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
3186 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
3187 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
3188 Fix typos in docstrings.
3189 (imap-hash-open-connection): Fix typo in error message.
3190
3191 * play/gomoku.el (gomoku): Fix typos in docstring.
3192
3193 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
3194 (gdb-jsonify-buffer): Fix typos in docstring.
3195 (gdb-goto-breakpoint): Fix typo in error message.
3196 ("Display Other Windows"): Fix typo in help message.
3197 (gdb-speedbar-expand-node): Fix typo in question.
3198
3199 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
3200 (idlwave-html-system-help-location, idlwave-html-help-location)
3201 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
3202 (idlwave-help-browser-generic-args, idlwave-help-directory)
3203 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
3204 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
3205 (idlwave-online-help, idlwave-help-html-link)
3206 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
3207 Fix typos in docstrings.
3208 (idlwave-help-with-source, idlwave-help-find-routine-definition):
3209 Reflow docstrings.
3210 (idlwave-help-assistant-start): Fix typo in error message.
3211
3212 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
3213 (octave-electric-space): Fix typos in docstrings.
3214
3215 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
3216
3217 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
3218
3219 2010-01-01 Juri Linkov <juri@jurta.org>
3220
3221 * comint.el (comint-input-ring-size): Make it a defcustom and
3222 increase the default to 500 (Bug#5148).
3223
3224 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
3225
3226 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
3227 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
3228 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
3229
3230 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
3231
3232 Show working revision correctly for mercurial.
3233 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
3234 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
3235
3236 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
3237
3238 Declare some functions for the byte-compiler.
3239 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
3240 (speedbar-timer-fn, speedbar-change-expand-button-char)
3241 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
3242
3243 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
3244
3245 This changeset reverts GDB Graphical Interface to use annotations.
3246 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
3247
3248 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
3249
3250 Make vc-dir work on subdirectories of the bzr root.
3251 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
3252 file names relative to it.
3253 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
3254 relative directory to vc-bzr-after-dir-status.
3255
3256 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
3257
3258 * font-lock.el (font-lock-refresh-defaults): New function, which
3259 can be used to let font-lock react to external changes in
3260 variables like font-lock-defaults and keywords.
3261 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
3262
3263 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
3264
3265 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
3266
3267 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
3268
3269 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
3270
3271 Supersede color.diff settings in git log (bug#5211).
3272
3273 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
3274 escape chars in its output when the user has color.diff set to `always'.
3275 This fix works on git 1.4.2 and newer (released on 2006-08-13).
3276
3277 2009-12-26 Kevin Ryde <user42@zip.com.au>
3278
3279 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
3280 node. Keep previous "Index" name to work with past coreutils too.
3281
3282 * man.el (man): Revise docstring a bit to show -a and -l as
3283 examples. Add -k description since support for it has otherwise
3284 been a secret. (Further to bug#3717.)
3285 (Man-bgproc-sentinel): When "-k foo" produces no output show error
3286 "no matches" rather than "Can't find manpage", as the latter reads
3287 like -k was interpreted as a page name, which is not so. (Bug#5431)
3288
3289 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
3290
3291 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
3292 switches. Check also for //SUBDIRED// line.
3293
3294 2009-12-25 Kenichi Handa <handa@m17n.org>
3295
3296 * language/indian.el (devanagari-composable-pattern): Fixed to
3297 handle ZWNJ and ZWJ. Use it in composition-function-table for
3298 Devanagari.
3299 (malayalam-composable-pattern): Fix previous change.
3300
3301 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3302
3303 * ps-print.el (ps-face-attributes): It was not returning the
3304 attribute face for faces specified as string. Reported by harven
3305 <harven@free.fr>.
3306 (ps-print-version): New version 7.3.5.
3307
3308 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
3309
3310 * calendar/icalendar.el (icalendar--convert-tz-offset):
3311 Fix timezone names.
3312 (icalendar--convert-tz-offset): Fix the "last-day-problem".
3313 (icalendar--add-diary-entry): Remove the trailing blank that
3314 diary-make-entry inserts.
3315
3316 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
3317
3318 Make `file-expand-wildcards' work for remote files.
3319
3320 * files.el (file-expand-wildcards): In case of remote files, check
3321 only local file name part for wildcards. Provide feature 'files
3322 and subfeature 'remote-wildcards. (Bug#5198)
3323
3324 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
3325 if there is already an established connection.
3326 (tramp-advice-file-expand-wildcards): Remove it.
3327
3328 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
3329 (tramp-advice-file-expand-wildcards): Move from tramp.el.
3330 Activate advice for older GNU Emacs versions. (Bug#5237)
3331
3332 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
3333
3334 Some doc fixes (more needed).
3335
3336 * find-cmd.el (find-constituents): Reflow docstring.
3337 (find-cmd, find-prune, find-command): Fix typos in docstrings.
3338 (find-generic): Doc fix.
3339
3340 2009-12-17 Juri Linkov <juri@jurta.org>
3341
3342 Fix regression from 23.1 to allow multiple modes in Local Variables.
3343
3344 * files.el (hack-local-variables-filter): While ignoring duplicates,
3345 don't take `mode' into account.
3346 (hack-local-variables-filter, hack-dir-local-variables):
3347 Don't remove duplicate `mode' from local-variables-alist (like `eval').
3348
3349 2009-12-17 Juri Linkov <juri@jurta.org>
3350
3351 Make `dired-diff' safer. (Bug#5225)
3352
3353 * dired-aux.el (dired-diff): Signal an error when `file' equals to
3354 `current' or when `file' is a directory of the `current' file.
3355
3356 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
3357
3358 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
3359 unconditionally preloaded files.
3360
3361 2009-12-16 Juri Linkov <juri@jurta.org>
3362
3363 Revert to old 23.1 logic of using the file at the mark as default.
3364 * dired-aux.el (dired-diff): Use the file at the mark as default
3365 if it's not the same as the current file, and the target dir is
3366 the current dir or the mark is active. Add the current file
3367 as the arg of `dired-dwim-target-defaults'. Use the default file
3368 in the prompt. (Bug#5225)
3369
3370 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
3371
3372 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
3373 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
3374 (tramp-check-for-regexp): Check also, when an echoing shell stops
3375 to echo sent commands.
3376
3377 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3378
3379 * Makefile.in: Revert last change (Bug#5191).
3380
3381 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
3382
3383 * vc-hg.el (vc-hg-print-log): Fix argument order.
3384 (vc-hg-working-revision): Make sure the command is executed in a
3385 known environment so that we can parse the output. (Bug#4417)
3386
3387 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3388
3389 * progmodes/python.el (python-symbol-completions): Remove text
3390 properties from symbol string before calling python-send-receive.
3391
3392 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
3393
3394 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
3395 when there are values for both file and line. (Bug#5060)
3396
3397 2009-12-14 Juri Linkov <juri@jurta.org>
3398
3399 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
3400 whitespace after the file name of the first line of unified format,
3401 because git-diff doesn't output whitespace and file modification time
3402 after the file name.
3403
3404 2009-12-14 David Kastrup <dak@gnu.org>
3405
3406 * info.el (Info-hide-cookies-node): Before hiding a cookie,
3407 check if it already has the `display' property added by
3408 `Info-display-images-node', and not put the `invisible' property
3409 in this case.
3410
3411 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3412
3413 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
3414 (semantic-mru-bookmark-mode): Doc fixes.
3415
3416 * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
3417 of assert.
3418
3419 2009-12-13 Glenn Morris <rgm@gnu.org>
3420
3421 * mail/emacsbug.el (message-sort-headers): Define for compiler.
3422 (report-emacs-bug): In message-mode, sort manually before storing
3423 original report text. (Bug#5178)
3424 Remove superfluous save-excursion.
3425
3426 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
3427
3428 * net/dbus.el (dbus-property-handler): Filter lambda forms out
3429 when responding to "GetAll" properties.
3430
3431 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
3432
3433 * simple.el (compose-mail): Remove mail-setup-with-from from
3434 customization checks.
3435
3436 2009-12-12 Eli Zaretskii <eliz@gnu.org>
3437
3438 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
3439 RAR archives created on Unix systems.
3440
3441 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3442
3443 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
3444 the varalias that was accidentally removed by the 2009-11-19 change
3445 (bug#5186).
3446
3447 2009-12-12 Kenichi Handa <handa@m17n.org>
3448
3449 * language/indian.el (indian-compose-regexp): New function.
3450 (malayalam-composable-pattern): Fix the pattern.
3451 (composition-function-table): Set malayalam-composable-pattern for
3452 Malayalam characters.
3453
3454 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
3455
3456 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
3457 rather than down-mouse-1, based on follow-link conventions.
3458
3459 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
3460 are compiled.
3461
3462 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
3463
3464 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
3465 (verilog-vmm-statement-re, verilog-ovm-statement-re)
3466 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
3467 (verilog-leap-to-head, verilog-backward-token):
3468 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
3469
3470 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
3471
3472 * progmodes/verilog-mode.el (verilog-auto-lineup)
3473 (verilog-nameable-item-re): Cleanup user-visible spelling and
3474 documentation errors. One reported by Gary Delp.
3475 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
3476 (verilog-read-decls): Fix AUTOWIRE with types declared in a
3477 package, bug195. Reported by Pierre-David Pfister.
3478
3479 2009-12-11 Glenn Morris <rgm@gnu.org>
3480
3481 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
3482
3483 * mail/emacsbug.el: No longer require sendmail.
3484 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
3485 (report-emacs-bug-orig-text): Doc fix.
3486 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
3487 New local variables, to adapt to different mail-user-agents.
3488 (report-emacs-bug): Fix test for a gnu.org address.
3489 Use overlays for emphasis, since font-lock defeats 'face property.
3490 Pretest bugs also end up at the newsgroup these days.
3491 Stop message-mode stripping text properties.
3492 Set and use the new buffer-local variables.
3493 (report-emacs-bug-hook): Add doc-string.
3494 Remove some unnecessary save-excursions and simplify.
3495 Use the appropriate hook and send-command.
3496
3497 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
3498 capitalization of some menu entries.
3499
3500 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3501
3502 * whitespace.el (whitespace-display-char-on): Ensure
3503 `buffer-display-table' is unique when two or more windows are
3504 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
3505 New version 12.1.
3506
3507 2009-12-10 Eli Zaretskii <eliz@gnu.org>
3508
3509 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
3510 characters in the Attribute field.
3511
3512 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
3513
3514 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
3515
3516 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3517
3518 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
3519 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3520 Disregard autoload-excludes.
3521 (update-directory-autoloads): Obey autoload-excludes here instead.
3522 But don't store its contents in no-autoloads and remove entries that
3523 refer to excludes files.
3524
3525 2009-12-10 Glenn Morris <rgm@gnu.org>
3526
3527 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
3528 (expand-mail-aliases): Define for compiler.
3529
3530 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
3531 Define for compiler.
3532
3533 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
3534 appropriate for the mail-user-agent in use.
3535
3536 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
3537
3538 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
3539
3540 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
3541
3542 Fix short log parsing and fontification.
3543 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
3544 Fix fontification for the [merge] label.
3545
3546 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
3547
3548 Drop some properties to avoid surprises (bug#5002).
3549 * htmlfontify.el (hfy-ignored-properties): New defcustom.
3550 (hfy-fontify-buffer): Use it.
3551
3552 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
3553
3554 Minor cleanup.
3555 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
3556 Adjust all callers.
3557 (ffap-locate-file): Remove unused arg `dir-ok' and make other
3558 args compulsory. Adjust callers.
3559 (ffap-gopher-at-point): Remove unused var `name'.
3560
3561 Get rid of the ELCFILES abomination.
3562 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
3563 (compile-elcfiles): New phony target.
3564 (compile-main): Compute ELCFILES dynamically.
3565 (compile-clean): New target to remove left-over elc files.
3566 (compile, all): Use it.
3567
3568 2009-12-09 Kenichi Handa <handa@etlken>
3569
3570 * international/mule-diag.el: Require help-mode instead of help-fns.
3571
3572 2009-12-09 Kenichi Handa <handa@m17n.org>
3573
3574 * international/mule-cmds.el (ucs-names): Supply sufficiently
3575 fine ranges instead of pre-calculating accurate ranges.
3576 Iterate with bigger gc-cons-threshold.
3577
3578 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
3579
3580 Add support for stashing a snapshot of the current tree.
3581 * vc-git.el (vc-git-stash-snapshot): New function.
3582 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
3583
3584 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
3585
3586 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
3587 instead of `(beginning|end)-of-line'.
3588
3589 2009-12-08 Glenn Morris <rgm@gnu.org>
3590
3591 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
3592
3593 * Makefile.in (ELCFILES): Regenerate.
3594
3595 2009-12-07 Juri Linkov <juri@jurta.org>
3596
3597 Don't lazy-highlight the comint output in history Isearch mode.
3598
3599 * comint.el (comint-history-isearch-search): Instead of
3600 `comint-line-beginning-position', use `comint-after-pmark-p'
3601 to check if point if before the process mark, and go to
3602 `process-mark' in this case.
3603
3604 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3605
3606 * textmodes/tex-mode.el (latex-complete)
3607 (latex-indent-or-complete): Remove.
3608 (latex-mode): Set completion-at-point-functions instead.
3609
3610 Provide a standard completion command and hook it into TAB.
3611 * minibuffer.el (completion-at-point-functions): New var.
3612 (completion-at-point): New command.
3613 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
3614 * progmodes/python.el (python-mode-map): Use completion-at-point.
3615 (python-completion-at-point): Rename from python-partial-symbol and
3616 adjust for use in completion-at-point-functions.
3617 (python-mode): Setup completion-at-point for Python completion.
3618 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
3619 extracted from lisp-complete-symbol.
3620 (lisp-complete-symbol): Use it.
3621 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
3622 setup completion-at-point for Elisp completion.
3623 (emacs-lisp-mode-map, lisp-interaction-mode-map):
3624 Use completion-at-point.
3625 * ielm.el (ielm-map): Use completion-at-point.
3626 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
3627 * progmodes/sym-comp.el: Move to...
3628 * obsolete/sym-comp.el: Move from progmodes.
3629
3630 2009-12-07 Eli Zaretskii <eliz@gnu.org>
3631
3632 Prevent save-buffer in Rmail buffers from using the coding-system
3633 of the current message, and from clobbering the encoding mnemonics
3634 in the mode line (Bug#4623).
3635
3636 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
3637 flag, too.
3638 (rmail-message-encoding): New variable.
3639 (rmail-write-region-annotate): Record the encoding of the current
3640 message in rmail-message-encoding.
3641 (rmail-after-save-hook): New function, restores the encoding of
3642 the current message after the message collection is saved.
3643
3644 2009-12-07 Juri Linkov <juri@jurta.org>
3645
3646 * progmodes/grep.el (grep-read-files): Use `completing-read'
3647 instead of `read-string'. Set its `collection' arg to
3648 `read-file-name-internal'. (Bug#4301)
3649
3650 2009-12-07 Juri Linkov <juri@jurta.org>
3651
3652 Correctly restore original Isearch point. (Bug#4994)
3653
3654 * isearch.el (isearch-mode): Move `isearch-push-state' after
3655 `(run-hooks 'isearch-mode-hook)'.
3656 (isearch-cancel): When `isearch-push-state-function' is defined,
3657 let-bind `isearch-cmds' to the first state (the last element of
3658 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
3659 function and restores the original point). Otherwise, move point
3660 to `isearch-opoint'.
3661
3662 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3663
3664 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3665 chars that don't have names, so the table can be built much faster at
3666 run-time.
3667
3668 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
3669
3670 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3671 change. Suggested by David Kastrup.
3672
3673 * simple.el (compose-mail): Check for incompatibilities and warn.
3674 (compose-mail-user-agent-warnings): New option.
3675
3676 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3677
3678 Support showing a single log entry from vc-annotate.
3679 * vc.el (print-log): Add a new argument: START-REVISION.
3680 (vc-print-log-internal): Add a new optional argument and
3681 pass it to the backend.
3682 (vc-print-log, vc-print-root-log): Adjust callers.
3683 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3684 buffer already displays the requested log entry, use it.
3685 Otherwise display only the log entry in question.
3686 * vc-svn.el (vc-svn-print-log):
3687 * vc-mtn.el (vc-mtn-print-log):
3688 * vc-hg.el (vc-hg-state):
3689 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3690 (vc-git-show-log-entry): Return t on success.
3691 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3692 (vc-bzr-show-log-entry): Return t on success.
3693 * vc-rcs.el (vc-rcs-print-log):
3694 * vc-sccs.el (vc-sccs-print-log):
3695 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3696
3697 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3698
3699 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3700 Add menus to the meta mode. (Bug#5043)
3701
3702 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
3703
3704 * ediff-init.el (ediff-event-key): Use event-to-character instead of
3705 event-key.
3706
3707 * ediff.el (ediff-buffers-internal): Add unwind-protect.
3708
3709 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
3710
3711 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
3712 Berbain <raphael.berbain@gmail.com>.
3713
3714 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
3715 characters.
3716 (tramp-initial-end-of-output): New defconst.
3717 (tramp-methods, tramp-find-shell)
3718 (tramp-open-connection-setup-interactive-shell)
3719 (tramp-maybe-open-connection): Use it.
3720 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
3721 existence of `#' and `$'.
3722
3723 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
3724 `tramp-initial-end-of-output'.
3725
3726 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3727
3728 Get the background mode from the terminal for xterm, and set
3729 faces accordingly.
3730 * term/xterm.el (xterm-set-background-mode): New function.
3731 (terminal-init-xterm): Use it in case xterm supports background
3732 color queries. Recompute faces after getting the background
3733 color.
3734
3735 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
3736
3737 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3738 number comment back on its own line, for easier parsing.
3739
3740 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3741
3742 Make it work for non-file buffers (bug#5102).
3743 * doc-view.el (doc-view-current-cache-dir):
3744 Use doc-view-buffer-file-name rather than buffer-file-name.
3745 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3746
3747 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
3748
3749 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3750 author field is too short.
3751
3752 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
3753
3754 * vc-git.el (vc-git-print-log): Handle a limit argument.
3755 Display the short log in graph form and with labels.
3756 (vc-git-log-view-mode): Handle labels.
3757
3758 Make vc-revert change VC state from 'added to 'unregistered.
3759 * vc-git.el (vc-git-revert): Call git reset first.
3760
3761 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3762
3763 * net/newst-backend.el, net/newst-plainview.el:
3764 * net/newst-reader.el, net/newst-ticker.el:
3765 * net/newst-treeview.el, net/newsticker.el:
3766 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
3767
3768 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3769
3770 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3771
3772 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3773 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
3774 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3775 Update annotation regexp.
3776
3777 * simple.el (beginning-of-visual-line): Constrain to field
3778 boundaries (Bug#5106).
3779
3780 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3781
3782 * xml.el (xml-substitute-numeric-entities): Move
3783 newsticker--decode-numeric-entities in newst-backend.el to
3784 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3785 * net/newst-backend.el (newsticker--parse-generic-feed)
3786 (newsticker--parse-generic-items)
3787 (newsticker--decode-numeric-entities): Move
3788 newsticker--decode-numeric-entities in newst-backend.el to
3789 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3790
3791 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
3792
3793 * progmodes/js.el (js--js-not): Add null to the list of values.
3794
3795 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3796
3797 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3798
3799 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3800
3801 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3802 delimiter if it is at the end of the current line.
3803 (bibtex-generate-url-list): Fix docstring.
3804
3805 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3806
3807 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3808 minibuffer's content with itself.
3809 Fold the confirm-after-completion case into the `confirm' case.
3810 (completion-pcm-word-delimiters): Add : and / to the delimiters.
3811
3812 2009-12-06 Kevin Ryde <user42@zip.com.au>
3813
3814 * ffap.el (ffap-rfc-path): Make this a defcustom since
3815 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
3816
3817 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3818 manuals, similar to existing setup for help-mode. (Bug#3913.)
3819
3820 2009-12-05 Juri Linkov <juri@jurta.org>
3821
3822 Save and restore dired buffer's point positions too. (Bug#4880)
3823
3824 * dired.el (dired-save-positions): Return in the first element
3825 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3826 Doc fix.
3827 (dired-restore-positions): First restore buffer's position.
3828 While restoring window's positions, check if window still displays
3829 the original buffer.
3830
3831 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
3832
3833 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3834 if possible.
3835
3836 * cedet/semantic/ia.el (semantic-ia-complete-symbol):
3837 Make argument optional.
3838
3839 * shell.el (shell): Require ansi-color (Bug#5113).
3840
3841 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3842
3843 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3844
3845 2009-12-05 Alan Mackenzie <acm@muc.de>
3846
3847 * progmodes/cc-mode.el (c-before-hack-hook)
3848 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3849 `c-file-style' to work again. This reversion restores the current
3850 software to its state in Emacs 23.1. (Bug#4146)
3851
3852 2009-12-05 Kevin Ryde <user42@zip.com.au>
3853
3854 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
3855 comment-start-skip to comment-end-skip as comment (Bug#4781).
3856
3857 2009-12-05 Juri Linkov <juri@jurta.org>
3858
3859 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3860 for virtual nodes. (Bug#4147)
3861 (Info-find-node-2): Set `Info-current-node-virtual' to nil
3862 when moving from a virtual node.
3863 (Info-mode-menu): Add `Info-virtual-index' to the menu.
3864 (Info-mode): Add `Info-virtual-index' to the docstring.
3865
3866 2009-12-05 Eric Ludlam <zappo@gnu.org>
3867
3868 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
3869 Describe project macro symbols.
3870
3871 * cedet/semantic/complete.el (semantic-complete-do-completion):
3872 Don't call semantic-collector-current-exact-match.
3873
3874 * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
3875 ede-objects as targets.
3876
3877 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
3878 a target's object list even if compiler vars are already in the
3879 Makefile.
3880
3881 * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
3882 list of headers producing necessary macros.
3883
3884 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3885
3886 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3887 track of the buffer position of the end of a BibTeX entry as this
3888 position may change during reformatting.
3889 (bibtex-format-entry): Remove whitespace before processing
3890 numerical fields so that we recognize the latter properly.
3891 (bibtex-reformat): Do not use push which changes the global value
3892 of bibtex-entry-format.
3893 (bibtex-field-braces-alist, bibtex-field-strings-alist)
3894 (bibtex-field-re-init): Replace only space characters by regexp
3895 for whitespace.
3896 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3897 (bibtex-initialize): Also update bibtex-strings.
3898 (bibtex-kill-field): Preserve white space at end of entry.
3899 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3900 Update bibtex-reference-keys.
3901
3902 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
3903
3904 * minibuffer.el (completion-pcm--merge-try): Also consider placing
3905 point after a star, if that's the only place where modifications can
3906 make progress.
3907
3908 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
3909
3910 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3911 in docstrings.
3912
3913 2009-12-04 Juri Linkov <juri@jurta.org>
3914
3915 * proced.el (proced): Call `(proced-update t)' to update process
3916 information instead of only running proced-post-display-hook.
3917 (proced-send-signal): Add a leading space to the buffer name
3918 " *Marked Processes*" to make this buffer ephemeral.
3919
3920 2009-12-04 Juri Linkov <juri@jurta.org>
3921
3922 * dired.el (dired-auto-revert-buffer): New defcustom.
3923 (dired-internal-noselect): Use it.
3924
3925 2009-12-04 Juri Linkov <juri@jurta.org>
3926
3927 Change roles of modes and functions in image-mode.el (Bug#5062).
3928
3929 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3930 in `auto-mode-alist'.
3931 (image-mode-previous-major-mode): New variable.
3932 (image-minor-mode-map): Rename from `image-mode-text-map'.
3933 (image-mode): Move graceful error-handling code from
3934 `image-minor-mode' to here. On errors call `image-mode-as-text'.
3935 (image-minor-mode): Remove all image-handling code.
3936 Replace `image-mode-text-map' with `image-minor-mode-map'.
3937 Check for `image-type' in mode-line format string.
3938 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3939 (image-mode-as-text): New function with most code from
3940 `image-mode-maybe'.
3941 (image-toggle-display-text): Move code that removes image
3942 properties from `image-toggle-display' to here.
3943 (image-toggle-display-image): New function with code that adds
3944 image properties copied from `image-toggle-display'.
3945 (image-toggle-display): Remove most code with leaving only code
3946 that toggles between `image-mode-as-text' and `image-mode'.
3947
3948 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
3949
3950 * net/newst-treeview.el
3951 (newsticker--treeview-list-highlight-start): Restored call to
3952 save-excursion: Selected item was stuck.
3953 (newsticker--treeview-list-select): New.
3954 (newsticker--treeview-item-show-text)
3955 (newsticker--treeview-item-show)
3956 (newsticker--treeview-item-update): Use new
3957 newsticker-treeview-item-mode.
3958 (newsticker-treeview-update): Keep current item.
3959 (newsticker-treeview-next-new-or-immortal-item): Doc change.
3960 (newsticker--treeview-first-feed): Doc change.
3961 (newsticker-treeview-list-menu)
3962 (newsticker-treeview-item-menu): Added menu entries.
3963 (newsticker-treeview-item-mode): New.
3964
3965 * net/newst-backend.el (newsticker-customize): Delete other
3966 windows.
3967
3968 2009-12-04 Sam Steingold <sds@gnu.org>
3969
3970 * log-view.el (log-view-mode-map): "q" calls quit-window,
3971 like in all the other non-self-insert buffers.
3972
3973 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3974
3975 Minor cleanup.
3976 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3977 key decoding rather than do it manually via last-input-event +
3978 ascii-character.
3979 (term-exec): Use delete-and-extract-region.
3980 (term-handle-ansi-terminal-messages): Remove unused var `end'.
3981 (term-process-pager): Remove unused var `i'.
3982 (term-dynamic-simple-complete): Make obsolete.
3983 (serial-update-config-menu): Remove unused vars `y' and `str'.
3984 (term-update-mode-line): Remove unused var `temp'.
3985
3986 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3987
3988 Limit the number of log entries displayed by default.
3989 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3990 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3991 using a prefix argument.
3992
3993 2009-12-03 Glenn Morris <rgm@gnu.org>
3994
3995 * progmodes/idlwave.el (class): Restore still useful declaration.
3996
3997 2009-12-03 Alan Mackenzie <acm@muc.de>
3998
3999 Enhance `c-parse-state' to run efficiently in "brace deserts".
4000
4001 * progmodes/cc-mode.el (c-basic-common-init):
4002 Call c-state-cache-init.
4003 (c-neutralize-syntax-in-and-mark-CPP): Rename from
4004 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
4005 placing `category' properties value 'c-cpp-delimiter at its boundaries.
4006
4007 * progmodes/cc-langs.el (c-before-font-lock-function):
4008 c-extend-and-neutralize-syntax-in-CPP has been renamed
4009 c-neutralize-syntax-in-and-mark-CPP.
4010
4011 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
4012 with `category' properties now, not `syntax-table' ones.
4013
4014 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
4015 enhanced (but slower) version of c-end-of-macro that won't land
4016 inside a literal or on another awkward character.
4017 (c-state-cache-too-far, c-state-cache-start)
4018 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
4019 (c-state-nonlit-pos-cache-limit, c-state-point-min)
4020 (c-state-point-min-lit-type, c-state-point-min-lit-start)
4021 (c-state-min-scan-pos, c-state-brace-pair-desert)
4022 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
4023 buffer local variables.
4024 (c-state-literal-at, c-state-lit-beg)
4025 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
4026 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
4027 (c-state-cache-top-paren, c-state-cache-after-top-paren)
4028 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
4029 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
4030 (c-renarrow-state-cache)
4031 (c-append-lower-brace-pair-to-state-cache)
4032 (c-state-push-any-brace-pair, c-append-to-state-cache)
4033 (c-remove-stale-state-cache)
4034 (c-remove-stale-state-cache-backwards, c-state-cache-init)
4035 (c-invalidate-state-cache-1, c-parse-state-1)
4036 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
4037 (c-parse-state): Enhance and refactor.
4038 (c-debug-parse-state): Amend to deal with all the new variables.
4039
4040 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
4041 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
4042 modify to use category text properties rather than syntax-table ones.
4043 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
4044 to switch off/on the syntactic paren property of C++ template
4045 delimiters using the category property.
4046 (c-with-<->-as-parens-suppressed): Macro to invoke code with
4047 template delims suppressed.
4048 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
4049 New constant/macros which apply category properties to the start
4050 and end of preprocessor constructs.
4051 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
4052 "comment out" the syntactic value of characters in preprocessor
4053 constructs.
4054 (c-with-cpps-commented-out)
4055 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
4056 with characters in all or all but one preprocessor constructs
4057 "commented out".
4058
4059 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4060
4061 * proced.el (proced-filter-alist): Use regexp-quote.
4062
4063 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
4064
4065 Cleanup.
4066 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
4067 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
4068 arguments. Expand `default-directory'.
4069
4070 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
4071 the benefit of returning an expanded localname.
4072 (tramp-tramp-file-p): Handle the case NAME is not a string.
4073
4074 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4075
4076 Add support for bzr shelve/unshelve.
4077 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
4078 (vc-bzr-extra-menu-map): New variables.
4079 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
4080 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
4081 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
4082 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
4083 (vc-bzr-dir-extra-headers): Display shelves.
4084
4085 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
4086
4087 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4088
4089 * textmodes/bibtex.el (bibtex-complete-internal):
4090 Use completion-in-region.
4091 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
4092
4093 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4094
4095 Support applying stashes. Improve UI.
4096 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
4097 (vc-git-stash-apply, vc-git-stash-pop)
4098 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
4099 (vc-git-stash-menu): New functions.
4100 (vc-git-stash-menu-map): New variable.
4101 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
4102
4103 2009-12-03 Glenn Morris <rgm@gnu.org>
4104
4105 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
4106 (vc-print-log-internal): Fix previous change.
4107 (vc-revert): Correct pluralization.
4108
4109 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4110
4111 * progmodes/make-mode.el (makefile-special-targets-list): No need for
4112 it to be an alist any more.
4113 (makefile-complete): Use completion-in-region.
4114
4115 * progmodes/octave-mod.el (octave-complete-symbol):
4116 Use completion-in-region.
4117
4118 Misc cleanup.
4119 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
4120 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
4121 (idlwave-complete-class): Don't quote lambda.
4122 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
4123 (idlwave-mode-map): Move initialization into declaration.
4124 (idlwave-action-and-binding): Use backquotes.
4125 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
4126 Simplify.
4127 (idlwave-is-pointer-dereference): Remove unused var `pos'.
4128 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
4129 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
4130 `parts', and `all-parts'.
4131 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
4132 (idlwave-convert-xml-system-routine-info): Remove unused string
4133 `version-string'.
4134 (idlwave-display-user-catalog-widget): Use dolist.
4135 (idlwave-scanning-lib): Declare dynamically-scoped var.
4136 (idlwave-scan-library-catalogs): Remove unused var `flags'.
4137 (completion-highlight-first-word-only): Declare to silence bytecomp.
4138 (idlwave-popup-select): Tighten scope of `resp'.
4139 (idlwave-find-struct-tag): Remove unused var `beg'.
4140 (idlwave-after-load-rinfo-hook): Declare.
4141 (idlwave-sintern-class-info): Remove unused var `taglist'.
4142 (idlwave-find-class-definition): Remove unused var `list'.
4143 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
4144 (idlwave-what-module-find-class): Remove unused var `classes'.
4145
4146 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
4147
4148 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
4149
4150 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4151
4152 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
4153 buffers visited. Remove redundant current-buffer-saving.
4154
4155 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4156
4157 Use completion-in-buffer and remove uses of dynamic scoping.
4158 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
4159 (pascal-buffer-to-use, pascal-flag): Don't declare.
4160 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
4161 (pascal-get-completion-decl, pascal-keyword-completion):
4162 Add `pascal-str' argument, save-excursion,
4163 return the found completions, and don't filter with pascal-pred.
4164 (pascal-completion-cache): New var.
4165 (pascal-completion): Don't switch buffer any more (it was never
4166 necessary). Don't save-excursion any more (it's done by the called
4167 subroutines). Use a cache to avoid redundant computations.
4168 Use complete-with-action rather than pascal-completion-response and
4169 let it apply the predicate as well.
4170 (pascal-complete-word): Use completion-in-buffer when
4171 pascal-toggle-completions is nil.
4172 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
4173 not used any more.
4174 (pascal-comp-defun): Don't change buffer any more.
4175 Use complete-with-action rather than pascal-completion-response and
4176 let it apply the predicate as well.
4177 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
4178 when neded.
4179
4180 2009-12-02 Kenichi Handa <handa@m17n.org>
4181
4182 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
4183 shape for all Indic scripts.
4184
4185 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4186
4187 Use completion-in-buffer.
4188 * wid-edit.el (widget-field-text-end): New function.
4189 (widget-field-value-get): Use it.
4190 (widget-string-complete, widget-file-complete)
4191 (widget-color-complete): Use it and completion-in-region.
4192 (widget-complete): Don't narrow the buffer.
4193
4194 2009-12-02 Glenn Morris <rgm@gnu.org>
4195
4196 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
4197 (rmail-select-summary): Use rmail-pop-to-buffer.
4198 * mail/rmailsum.el: Replace all pop-to-buffer calls with
4199 rmail-pop-to-buffer, to prevent horizontal splits.
4200
4201 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
4202 save-excursion with save-current-buffer.
4203 Widen before searching. (Bug#5093)
4204 (diary-list-sexp-entries): Remove superfluous save-excursion.
4205
4206 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
4207
4208 * woman.el (woman-make-bufname): Handle man-pages with "." in the
4209 name. (Bug#5038)
4210
4211 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
4212
4213 * ido.el (ido-file-internal): Handle filenames at point that do
4214 not have a directory part. (Bug#5049)
4215
4216 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
4217
4218 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
4219 (mpc-songs-jump-to, mpc-resume): Doc fixes.
4220
4221 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
4222
4223 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
4224 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
4225 any more.
4226
4227 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4228
4229 * comint.el (comint-insert-input): Ignore clicks to the right of
4230 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
4231
4232 * vc.el (vc-print-log-internal): Don't wait for the process to
4233 terminate before setting up the major mode.
4234
4235 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
4236 in case.
4237
4238 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
4239 the last element.
4240
4241 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
4242
4243 2009-12-01 Glenn Morris <rgm@gnu.org>
4244
4245 * window.el (window--display-buffer-2): Fix previous changes.
4246
4247 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
4248
4249 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
4250
4251 2009-12-01 Glenn Morris <rgm@gnu.org>
4252
4253 * Makefile.in (ELCFILES): Add mpc.elc.
4254
4255 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4256
4257 * mpc.el: New file.
4258
4259 2009-12-01 Glenn Morris <rgm@gnu.org>
4260
4261 * window.el (window-to-use): Define for compiler.
4262
4263 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
4264 consistent with others (no final period).
4265
4266 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
4267 (rmail-mime-show): Downcase the encoding. (Bug#5070)
4268
4269 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
4270
4271 Make vc-print-log buttons work.
4272 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
4273
4274 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
4275
4276 * savehist.el (savehist-autosave-interval): Allow setting to nil
4277 through customize. (Bug#5056)
4278
4279 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
4280
4281 Fix references to jit-lock properties.
4282 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4283 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
4284 (perl-font-lock-special-syntactic-constructs):
4285 Quote jit-lock-defer-multiline property.
4286
4287 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
4288
4289 * vc-git.el (vc-git-registered): Call vc-git-root only once.
4290
4291 2009-11-30 Juri Linkov <juri@jurta.org>
4292
4293 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
4294 value `buffer' of `multi-isearch-next-buffer-current-function'.
4295 Use `(current-buffer)' when `buffer' is nil.
4296 (multi-isearch-next-buffer-from-list): Don't fallback to
4297 `(current-buffer)' when `buffer' is nil. (Bug#4947)
4298
4299 2009-11-30 Juri Linkov <juri@jurta.org>
4300
4301 * misearch.el (multi-isearch-read-buffers): Move canonicalization
4302 of buffers with `get-buffer' to `multi-isearch-buffers'.
4303 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4304 Canonicalize BUFFERS with `get-buffer'. Doc fix.
4305 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
4306 FILES with `expand-file-name' converting relative file names
4307 to absolute. Doc fix. (Bug#4727)
4308
4309 2009-11-30 Juri Linkov <juri@jurta.org>
4310
4311 * misearch.el (multi-isearch-read-buffers)
4312 (multi-isearch-read-matching-buffers): New functions.
4313 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4314 Use them in the `interactive' spec. Doc fix.
4315 (multi-isearch-read-files, multi-isearch-read-matching-files):
4316 New functions.
4317 (multi-isearch-files, multi-isearch-files-regexp):
4318 Use them in the `interactive' spec. Doc fix. (Bug#4725)
4319
4320 2009-11-30 Juri Linkov <juri@jurta.org>
4321
4322 * doc-view.el (doc-view-continuous):
4323 Rename from `doc-view-continuous-mode'.
4324 (doc-view-menu): Move "Toggle display" to the top.
4325 Add submenu "Continuous" with radio buttons "Off"/"On"
4326 and "Save as Default".
4327 (doc-view-scroll-up-or-next-page)
4328 (doc-view-scroll-down-or-previous-page)
4329 (doc-view-next-line-or-next-page)
4330 (doc-view-previous-line-or-previous-page): Rename
4331 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
4332
4333 2009-11-30 Juri Linkov <juri@jurta.org>
4334
4335 * comint.el (comint-mode-map): Rebind `M-r' from
4336 `comint-previous-matching-input' to
4337 `comint-history-isearch-backward-regexp'.
4338 Unbind `M-s' to allow global key binding `M-s'.
4339 Add menu items for `comint-history-isearch-backward' and
4340 `comint-history-isearch-backward-regexp'. (Bug#3746)
4341
4342 2009-11-30 Juri Linkov <juri@jurta.org>
4343
4344 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
4345 For def=recenter, replace `recenter' with `recenter-top-bottom'
4346 that is called with `this-command' and `last-command' let-bound
4347 to `recenter-top-bottom'. When the last `def' was not `recenter',
4348 set `recenter-last-op' to nil. (Bug#4981)
4349
4350 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
4351
4352 Minor cleanup and simplification.
4353 * filecache.el (file-cache-add-directory)
4354 (file-cache-add-directory-recursively)
4355 (file-cache-add-from-file-cache-buffer)
4356 (file-cache-delete-file-regexp, file-cache-delete-directory)
4357 (file-cache-files-matching-internal, file-cache-display): Use dolist.
4358 (file-cache-temp-minibuffer-message): Delete function.
4359 (file-cache-minibuffer-complete): Use minibuffer-message instead.
4360
4361 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
4362 Don't signal an error when bumping into EOB in tr, s, or y.
4363
4364 2009-11-29 Juri Linkov <juri@jurta.org>
4365
4366 * startup.el (fancy-about-text): Fix wording of Guided Tour.
4367 (Bug#4960)
4368
4369 * descr-text.el (describe-char-unidata-list): Use lowercase name
4370 for "Unicode name" like in other tags.
4371
4372 2009-11-29 Juri Linkov <juri@jurta.org>
4373
4374 * ediff-util.el (ediff-minibuffer-with-setup-hook):
4375 New compatibility macro.
4376 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
4377
4378 2009-11-29 Juri Linkov <juri@jurta.org>
4379
4380 Add defcustom to define the cycling order of `recenter-top-bottom'.
4381 (Bug#4981)
4382
4383 * window.el (recenter-last-op): Doc fix.
4384 (recenter-positions): New defcustom.
4385 (recenter-top-bottom): Rewrite to use `recenter-positions'.
4386 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
4387
4388 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
4389
4390 Improve integration of Tramp and ange-ftp in eshell.
4391
4392 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
4393 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
4394 (eshell/sudo): Flatten args. Let-bind `default-directory'.
4395
4396 * eshell/esh-util.el (top): Require also Tramp when compiling.
4397 (eshell-directory-files-and-attributes): Check for FTP remote
4398 connection.
4399 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
4400 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
4401 (eshell-file-attributes): Handle ".". Return `entry'.
4402
4403 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
4404 (ange-ftp-directory-files-and-attributes)
4405 (ange-ftp-real-directory-files-and-attributes): New defuns.
4406
4407 * net/tramp.el (tramp-maybe-open-connection): Open the remote
4408 shell with "exec" when possible. This prevents trailing prompts
4409 in `start-file-process'.
4410
4411 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4412
4413 Try and remove assumptions about point-min==1.
4414 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
4415 (rng-compute-mode-line-string): Show the validation percentage in
4416 terms of the narrowed text, not the widened text.
4417 (rng-do-some-validation): Don't catch internal errors when debugging.
4418 (rng-first-error): Simplify.
4419 (rng-after-change-function): Remove work around. AFAIK the bug has
4420 been fixed a while ago.
4421
4422 * image-mode.el (image-minor-mode): Exit more gracefully when the image
4423 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
4424
4425 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
4426
4427 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
4428 `cd' doesn't always do it for us (bug#5067).
4429
4430 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
4431 on 2009-10-25 as part of some other change (bug#5067).
4432
4433 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4434
4435 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4436 `suspicious'.
4437 (byte-compile-warnings): Use byte-compile-warning-types.
4438 (byte-compile-save-excursion): Warn about use of set-buffer right
4439 after save-excursion.
4440
4441 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
4442 the excursion as well.
4443
4444 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
4445
4446 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
4447 providing a Tramp related implementation of "su" and "sudo".
4448 (eshell-unix-initialize): Add "su" and "sudo".
4449
4450 2009-11-27 Daiki Ueno <ueno@unixuser.org>
4451
4452 * net/socks.el (socks-send-command): Convert binary request to
4453 unibyte before sending. This fixes mishandling of some port
4454 numbers such as 129.
4455
4456 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4457
4458 * help.el (describe-bindings-internal): Remove `interactive'.
4459
4460 * man.el (Man-completion-table): Trim a terminating "(".
4461 Remove the space between name page a section.
4462 Add the command's description on the `help-echo' property.
4463 Remove `process-connection-type' binding since it's unused by
4464 call-process.
4465 Provide completion for the "<section> <name>" format as well.
4466 (Man-default-man-entry): Remove spurious var shadowing the argument.
4467
4468 2009-11-26 Kevin Ryde <user42@zip.com.au>
4469
4470 * log-view.el: Add "Keywords: tools", since its other keywords
4471 aren't in finder-known-keywords, and following vc.el.
4472
4473 * sha1.el (sha1-string-external): default-directory "/" in case
4474 otherwise non-existent. process-connection-type pipe for touch of
4475 efficiency recommended by elisp manual. (An aside in Bug#3911.)
4476
4477 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4478
4479 Misc coding convention cleanups.
4480 * htmlfontify.el (hfy-init-kludge-hook): Rename from
4481 hfy-init-kludge-hooks.
4482 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
4483 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
4484 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
4485 and push.
4486 (hfy-slant, hfy-weight): Use tables rather than code.
4487 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
4488 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
4489 (hfy-face-attr-for-class): Initialize `face-spec' directly.
4490 (hfy-face-to-css): Remove `nconc' with single arg.
4491 (hfy-p-to-face-lennart): Use `or'.
4492 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
4493 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
4494 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
4495 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
4496 (hfy-force-fontification): Use run-hooks.
4497
4498 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
4499
4500 Various minor fixes.
4501 * htmlfontify.el (hfy-default-header): Add toggle_invis since
4502 Javascript belongs in the header, not the body.
4503 (hfy-javascript): Remove.
4504 (hfy-fontify-buffer): Don't insert it any more.
4505 (hfy-face-at): Handle (face0 face1 face2) style face properties.
4506 Fix bug in invis handling when there were no invis props in a chunk.
4507
4508 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4509
4510 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
4511
4512 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
4513
4514 * finder.el (finder-mode-map): Add a menu.
4515
4516 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
4517
4518 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
4519 "unsigned" structs.
4520
4521 (verilog-leap-to-head, verilog-backward-token): Handle "disable
4522 fork" statement better.
4523
4524 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
4525
4526 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
4527 (verilog-delete-auto, verilog-delete-empty-auto-pair)
4528 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
4529 Reported by Clay Douglass.
4530
4531 (verilog-auto-inst, verilog-auto-star-safe)
4532 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
4533 Fix removing "// Interfaces" when saving .* expansions. Reported by
4534 Pierre-David Pfister.
4535
4536 2009-11-26 Glenn Morris <rgm@gnu.org>
4537
4538 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
4539 the scope.
4540
4541 2009-11-25 Johan Bockgård <bojohan@gnu.org>
4542
4543 * vc-annotate.el (vc-annotate-revision-previous-to-line):
4544 Really use previous revision.
4545
4546 2009-11-25 Kevin Ryde <user42@zip.com.au>
4547
4548 * man.el (Man-completion-table): default-directory "/" in case
4549 doesn't otherwise exist. process-environment COLUMNS=999 so as
4550 not to truncate long names. process-connection-type pipe to avoid
4551 any chance of hitting the pseudo-tty TIOCGWINSZ.
4552 (man): completion-ignore-case t for friendliness and since man
4553 itself is case-insensitive on the command line.
4554 Further to Bug#3717.
4555
4556 * arc-mode.el: Add "Keywords: files", so the details in its
4557 commentary can be reached from finder-by-keyword.
4558 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
4559 editing mode, but it's comms related and sgml-mode.el has "comm"
4560 on that basis too.
4561 * textmodes/bibtex-style.el: Add "Keywords: tex".
4562 * international/isearch-x.el, international/ja-dic-cnv.el:
4563 * international/ja-dic-utl.el, international/kkc.el:
4564 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
4565
4566 2009-11-25 Juri Linkov <juri@jurta.org>
4567
4568 * man.el (Man-completion-table): Modify regexp to include
4569 section names to completion strings. (Bug#3717)
4570
4571 2009-11-25 Juri Linkov <juri@jurta.org>
4572
4573 Search recursively in gzipped files. (Bug#4982)
4574
4575 * progmodes/grep.el (grep-highlight-matches): Add new options
4576 `always' and `auto'. Doc fix.
4577 (grep-process-setup): Check `grep-highlight-matches' for
4578 `auto-detect' to determine the need to compute grep defaults.
4579 Move Windows/DOS specific --colors settings handling
4580 to `grep-compute-defaults'. Check `grep-highlight-matches'
4581 to get the value of "--color=".
4582 (grep-compute-defaults): Compute `grep-highlight-matches' when it
4583 has the value `auto-detect'. Move Windows/DOS specific settings
4584 from `grep-process-setup'.
4585 (zrgrep): New command with alias `rzgrep'.
4586
4587 2009-11-25 Juri Linkov <juri@jurta.org>
4588
4589 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
4590 to nil instead of switching off view-mode. (Bug#4896)
4591
4592 2009-11-25 Juri Linkov <juri@jurta.org>
4593
4594 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
4595
4596 * mwheel.el (mwheel-scroll-up-function)
4597 (mwheel-scroll-down-function): New defvars.
4598 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
4599 `scroll-up', and `mwheel-scroll-down-function' instead of
4600 `scroll-down'.
4601
4602 * doc-view.el (doc-view-scroll-up-or-next-page)
4603 (doc-view-scroll-down-or-previous-page): Add optional ARG.
4604 Use this ARG in the call to image-scroll-up/image-scroll-down.
4605 Change `interactive' spec to "P". Goto next/previous page only
4606 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
4607 SPC/DEL case). Doc fix.
4608 (doc-view-next-line-or-next-page)
4609 (doc-view-previous-line-or-previous-page): Rename arg to ARG
4610 for consistency.
4611 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
4612 `doc-view-scroll-up-or-next-page', and buffer-local
4613 `mwheel-scroll-down-function' to
4614 `doc-view-scroll-down-or-previous-page'.
4615
4616 2009-11-25 Juri Linkov <juri@jurta.org>
4617
4618 Provide additional default values (directories at other Dired
4619 windows) via M-n in the minibuffer of some Dired commands.
4620
4621 * dired-aux.el (dired-diff, dired-compare-directories)
4622 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
4623 `minibuffer-default' in `minibuffer-with-setup-hook'.
4624 (dired-dwim-target-directory): Find a window that displays Dired
4625 buffer instead of failing when the next window is not Dired.
4626 Use `get-window-with-predicate' to find for the next Dired window.
4627 (dired-dwim-target-defaults): New function.
4628
4629 * ediff-util.el (ediff-read-file-name):
4630 Use `dired-dwim-target-defaults' to set `minibuffer-default'
4631 in `minibuffer-with-setup-hook'.
4632
4633 2009-11-25 Juri Linkov <juri@jurta.org>
4634
4635 Provide additional default values (file name at point or at the
4636 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
4637
4638 * minibuffer.el (read-file-name-defaults): New function.
4639 (read-file-name): Reset `minibuffer-default' to nil when
4640 it duplicates initial input `insdef'.
4641 Bind `minibuffer-default-add-function' to lambda that
4642 calls `read-file-name-defaults' in `minibuffer-selected-window'.
4643 (minibuffer-insert-file-name-at-point): New command.
4644
4645 * files.el (file-name-at-point-functions): New defcustom.
4646 (find-file-default): Remove defvar.
4647 (find-file-read-args): Don't use `find-file-default'.
4648 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4649 to `read-file-name'.
4650 (find-file-literally): Use `read-file-name' with
4651 `confirm-nonexistent-file-or-buffer'.
4652
4653 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
4654
4655 * dired.el (dired-read-dir-and-switches):
4656 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4657 to `read-file-name'.
4658 (dired-file-name-at-point): New function.
4659 (dired-mode): Add hook `dired-file-name-at-point' to
4660 `file-name-at-point-functions'.
4661
4662 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4663
4664 Really make the *Completions* window soft-dedicated (bug#5030).
4665 * window.el (window--display-buffer-2): Add `dedicated' argument.
4666 (display-buffer): Pass it when needed so the dedicated flag is set
4667 after calling set-window-buffer, which would otherwise reset it.
4668
4669 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4670
4671 * progmodes/meta-mode.el (meta-complete-symbol):
4672 * progmodes/etags.el (complete-tag):
4673 * mail/mailabbrev.el (mail-abbrev-complete-alias):
4674 Use completion-in-region.
4675
4676 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
4677 (dabbrev-completion): Use completion-in-region.
4678 (dabbrev--abbrev-at-point): Simplify regexp.
4679
4680 * abbrev.el (abbrev--before-point): Use word-motion functions
4681 if :regexp is not specified (bug#5031).
4682
4683 * subr.el (string-prefix-p): New function.
4684
4685 * man.el (Man-completion-cache): New var.
4686 (Man-completion-table): Use it.
4687
4688 * vc.el (vc-print-log-internal): Make `limit' optional for better
4689 compatibility (e.g. with vc-annotate.el).
4690
4691 2009-11-24 Kevin Ryde <user42@zip.com.au>
4692
4693 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4694 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
4695
4696 * emacs-lisp/elint.el (elint-add-required-env): Better error message
4697 when .el source file not found or other error.
4698
4699 2009-11-24 Markus Triska <markus.triska@gmx.at>
4700
4701 * linum.el (linum-update-window): Ignore intangible (bug#4996).
4702
4703 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4704
4705 Handle the [back] button properly (bug#4979).
4706 * descr-text.el (describe-text-properties): Add a `buffer' argument.
4707 Use help-setup-xref, help-buffer, and with-help-window.
4708 (describe-char): Add `buffer' argument.
4709 Pass proper command to help-setup-xref. Don't meddle with
4710 help-xref-stack-item directly.
4711 (describe-text-category): Use with-help-window and help-buffer.
4712
4713 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4714 for the displayed buffer (bug#4887).
4715
4716 * man.el (Man-completion-table): New function.
4717 (man): Use it.
4718
4719 2009-11-24 David Reitter <david.reitter@gmail.com>
4720
4721 * vc-git.el (vc-git-registered): Use checkout directory (where
4722 .git is) rather than the file's directory and a relative path spec
4723 to work around a bug in git.
4724
4725 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
4726
4727 Improve handling of processes on remote hosts.
4728
4729 * eshell/esh-util.el (eshell-path-env): New defvar.
4730 (eshell-parse-colon-path): New defun.
4731 (eshell-file-attributes): Use `eshell-parse-colon-path'.
4732
4733 * eshell/esh-ext.el (eshell-search-path):
4734 Use `eshell-parse-colon-path'.
4735 (eshell-remote-command): Remove argument HANDLER.
4736 (eshell-external-command): Check for FTP remote connection.
4737
4738 * eshell/esh-proc.el (eshell-gather-process-output):
4739 Use `file-truename', in order to start also symlinked files.
4740 Apply `start-file-process' instead of `start-process'.
4741 Shorten `command' to the local file name part.
4742
4743 * eshell/em-cmpl.el (eshell-complete-commands-list):
4744 Use `eshell-parse-colon-path'.
4745
4746 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4747
4748 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
4749 to `eshell-directory-change-hook'.
4750
4751 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
4752
4753 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4754 because it could be enabled automatically if view-read-only is non-nil.
4755
4756 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
4757
4758 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4759 made on 2009-11-22.
4760
4761 2009-11-24 Glenn Morris <rgm@gnu.org>
4762
4763 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4764 deleted variable bookmark-bmenu-bookmark-column.
4765
4766 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
4767 Move after definition of global-semantic-idle-tag-highlight-mode.
4768
4769 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4770
4771 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4772
4773 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
4774
4775 * net/browse-url.el (browse-url-filename-alist): On Windows, add
4776 two slashes to the "file:" prefix.
4777 (browse-url-file-url): De-munge Cygwin filenames before passing
4778 them to Windows browser.
4779 (browse-url-default-windows-browser): Use call-process.
4780
4781 2009-11-23 Juri Linkov <juri@jurta.org>
4782
4783 Implement DocView Continuous mode. (Bug#4896)
4784 * doc-view.el (doc-view-continuous-mode): New defcustom.
4785 (doc-view-mode-map): Bind C-n/<down> to
4786 `doc-view-next-line-or-next-page', C-p/<up> to
4787 `doc-view-previous-line-or-previous-page'.
4788 (doc-view-next-line-or-next-page)
4789 (doc-view-previous-line-or-previous-page): New commands.
4790
4791 2009-11-23 Juri Linkov <juri@jurta.org>
4792
4793 Implement Isearch in comint input history. (Bug#3746)
4794 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4795 `isearch-mode-hook'.
4796 (comint-history-isearch): New defcustom.
4797 (comint-history-isearch-backward)
4798 (comint-history-isearch-backward-regexp): New commands.
4799 (comint-history-isearch-message-overlay): New buffer-local variable.
4800 (comint-history-isearch-setup, comint-history-isearch-end)
4801 (comint-goto-input, comint-history-isearch-search)
4802 (comint-history-isearch-message, comint-history-isearch-wrap)
4803 (comint-history-isearch-push-state)
4804 (comint-history-isearch-pop-state): New functions.
4805
4806 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
4807
4808 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4809 return.
4810 (tramp-handle-make-symbolic-link)
4811 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4812 Quote file names.
4813 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4814 (tramp-handle-process-file): Use it.
4815
4816 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4817
4818 * window.el (move-to-window-line-last-op): Remove.
4819 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4820
4821 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4822
4823 Make M-r mirror the new cycling behavior of C-l.
4824 * window.el (move-to-window-line-last-op): New var.
4825 (move-to-window-line-top-bottom): New command.
4826 (global-map): Bind M-r move-to-window-line-top-bottom.
4827
4828 2009-11-23 Sven Joachim <svenjoac@gmx.de>
4829
4830 * dired-x.el (dired-guess-shell-alist-default):
4831 Support xz format. (Bug#4953)
4832
4833 2009-11-22 Chong Yidong <cyd@stupidchicken.com>
4834
4835 * cedet/srecode/map.el (srecode-get-maps):
4836 * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
4837 * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
4838 * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
4839 (semantic-toggle-decoration-style):
4840 * cedet/semantic/decorate/include.el
4841 (semantic-decoration-include-describe)
4842 (semantic-decoration-unknown-include-describe)
4843 (semantic-decoration-unparsed-include-describe)
4844 (semantic-decoration-all-include-summary):
4845 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
4846 * cedet/semantic/analyze/complete.el
4847 (semantic-analyze-possible-completions):
4848 * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
4849 (semantic-show-unmatched-syntax-mode)
4850 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
4851 (semantic-highlight-func-mode):
4852 * cedet/semantic/util.el (semantic-describe-buffer):
4853 * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
4854 (semantic-symref-find-tags-by-name)
4855 (semantic-symref-find-tags-by-regexp)
4856 (semantic-symref-find-tags-by-completion)
4857 (semantic-symref-find-file-references-by-name)
4858 (semantic-symref-find-text):
4859 * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
4860 (senator-yank-tag):
4861 * cedet/semantic/scope.el (semantic-calculate-scope):
4862 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
4863 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
4864 (define-semantic-idle-service):
4865 * cedet/semantic/complete.el (semantic-complete-analyze-inline)
4866 (semantic-complete-analyze-inline-idle):
4867 * cedet/semantic/analyze.el (semantic-analyze-current-context):
4868 * cedet/mode-local.el (describe-mode-local-bindings)
4869 (describe-mode-local-bindings-in-mode):
4870 * cedet/ede/make.el (ede-make-check-version):
4871 * cedet/ede/locate.el (ede-enable-locate-on-project):
4872 * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
4873 (cedet-idutils-version-check):
4874 * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
4875 (cedet-gnu-global-version-check):
4876 * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
4877 (cedet-cscope-version-check): Use called-interactively-p instead
4878 of interactive-p.
4879
4880 * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
4881 Use semantic-format-tag-prototype.
4882
4883 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
4884
4885 * emulation/viper-cmd.el: Use viper-last-command-char instead of
4886 last-command-char/last-command-event.
4887 (viper-prefix-arg-value): Do correct conversion of event-char for
4888 XEmacs.
4889
4890 * emulation/viper-util.el, emulation/viper.el:
4891 Use viper-last-command-char instead of
4892 last-command-char/last-command-event.
4893
4894 * ediff-init.el, ediff-mult.el, ediff-util.el:
4895 Replace last-command-char and last-command-event
4896 with (ediff-last-command-char) everywhere.
4897
4898 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4899 created in fundamental mode.
4900
4901 * ediff.el (ediff-version): Revert the change of interactive-p to
4902 called-interactively-p.
4903
4904 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
4905
4906 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4907 generation from word-movement command names.
4908
4909 2009-11-21 Chong Yidong <cyd@stupidchicken.com>
4910
4911 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
4912 (semantic-complete-jump-local, semantic-complete-jump):
4913 Improve prompt string.
4914
4915 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
4916
4917 * cus-start.el (all): Add native condition for font-use-system-font.
4918
4919 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
4920
4921 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4922 Correct the patch from 2009-11-18. (Bug#3910)
4923
4924 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
4925
4926 * progmodes/subword.el: Rename from lisp/subword.el.
4927
4928 * subword.el: Rename to progmodes/subword.el.
4929
4930 * Makefile.in (ELCFILES): Adapt to subword.el move.
4931
4932 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4933 Stefan Monnier <monnier@iro.umontreal.ca>
4934
4935 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4936 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4937 (bookmark-bmenu-show-filenames): Use push.
4938 (bookmark-bmenu-hide-filenames): Use local var instead of
4939 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
4940 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4941 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4942 filenames now that the bookmark names are always available.
4943
4944 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4945
4946 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4947 (bookmark-search-pattern): Move and leave unbound.
4948 (bookmark-bmenu-mode-map): Change binding.
4949 (bookmark-read-search-input): Simplify.
4950 Don't use text-char-description. Don't error on non-char events.
4951 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4952 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4953 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4954 Use a local var for the timer.
4955 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4956 (i.e. bookmark-bmenu-search).
4957
4958 2009-11-21 Glenn Morris <rgm@gnu.org>
4959
4960 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
4961
4962 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
4963
4964 * net/browse-url.el (browse-url-default-windows-browser):
4965 Use cygstart for cygwin.
4966
4967 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
4968
4969 * bookmark.el: Formatting and doc fixes only:
4970 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4971 (bookmark-bmenu-search): Wrap to fit within 80 columns.
4972 Minor grammar and punctuation fixes in doc string.
4973 (bookmark-read-search-input): Adjust to fit within 80 columns.
4974
4975 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4976
4977 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4978 (c-backward-into-nomenclature): Adapt to subword renaming.
4979
4980 * subword.el (subword-forward, subword-backward, subword-mark)
4981 (subword-kill, subword-backward-kill, subword-transpose)
4982 (subword-downcase, subword-upcase, subword-capitalize)
4983 (subword-forward-internal, subword-backward-internal):
4984 Rename from forward-subword, backward-subword, mark-subword,
4985 kill-subword, backward-kill-subword, transpose-subwords,
4986 downcase-subword, upcase-subword, capitalize-subword,
4987 forward-subword-internal, backward-subword-internal.
4988
4989 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4990
4991 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4992 New options.
4993 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4994 New vars.
4995 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4996 (bookmark-bmenu-filter-alist-by-regexp)
4997 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4998 (bookmark-bmenu-search): New command.
4999 (bookmark-bmenu-mode-map): Bind it.
5000
5001 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
5002
5003 * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
5004
5005 * cedet/semantic/idle.el (define-semantic-idle-service)
5006 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
5007
5008 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
5009
5010 * progmodes/cc-cmds.el: declare-functioned forward-subword and
5011 backward-subword to quit the byte-compiler.
5012
5013 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
5014
5015 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
5016
5017 * progmodes/cc-cmds.el (c-update-modeline)
5018 (c-forward-into-nomenclature, c-backward-into-nomenclature):
5019 Refer to subword.el functions instead of cc-subword.el.
5020
5021 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
5022 subword.el functions instead of cc-subword.el.
5023
5024 * progmodes/cc-subword.el: Rename to subword.el.
5025 * subword.el: Rename from progmodes/cc-subword.el.
5026 (subword-mode-map): Rename from c-subword-mode-map.
5027 (subword-mode): Rename from c-subword-mode.
5028 (global-subword-mode): New global minor mode.
5029 (forward-subword): Rename from c-forward-subword.
5030 (backward-subword): Rename from c-backward-subword.
5031 (mark-subword): Rename from c-mark-subword.
5032 (kill-subword): Rename from c-kill-subword.
5033 (backward-kill-subword): Rename from c-backward-kill-subword.
5034 (transpose-subwords): Rename from c-tranpose-subword.
5035 (downcase-subword): Rename from c-downcase-subword.
5036 (capitalize-subword): Rename from c-capitalize-subword.
5037 (forward-subword-internal): Rename from c-forward-subword-internal.
5038 (backward-subword-internal): Rename from c-backward-subword-internal.
5039
5040 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
5041
5042 * vc.el (vc-deduce-fileset): Allow non-state changing operations
5043 from a dired buffer.
5044 (vc-dired-deduce-fileset): New function.
5045 (vc-root-diff, vc-print-root-log): Use it.
5046
5047 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
5048 nil LIMIT argument to vc-print-log-internal.
5049
5050 2009-11-20 Glenn Morris <rgm@gnu.org>
5051
5052 * Makefile.in (ELCFILES): Regenerate.
5053
5054 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
5055
5056 * cedet/cedet.el (cedet-menu-map): Re-order menu items.
5057
5058 * cedet/semantic.el: Enable idle-mode menu items only if
5059 global-semantic-idle-scheduler-mode is enabled.
5060 (semantic-default-submodes): Doc fix.
5061
5062 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
5063 When turning off, disable other idle modes.
5064
5065 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
5066
5067 * calc/calc.el (calc-set-mode-line):
5068 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5069 (math-format-number): Rename `math-format-complement-signed' to
5070 `math-format-twos-complement'.
5071
5072 * calc/calc-bin.el (math-format-twos-complement): Rename from
5073 math-format-complement-signed.
5074 (calc-radix): Rename `calc-complement-signed-mode' to
5075 `calc-twos-complement-mode'.
5076 (calc-octal-radix, calc-hex-radix): Add an argument for
5077 two's complement.
5078
5079 * calc/calc-embed.el (calc-embedded-mode-vars):
5080 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5081
5082 * calc/calc-ext.el (calc-init-extensions):
5083 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5084 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
5085
5086 * calc/calc-units.el (math-build-units-table-buffer):
5087 Let `calc-twos-complement-mode' be nil.
5088
5089 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
5090 entries.
5091
5092 * calc/calc-vec.el (calcFunc-vunpack):
5093 * calc/calc-aent.el (calc-do-calc-eval):
5094 * calc/calc-forms.el (math-format-date):
5095 * calc/calc-graph.el (calc-graph-plot):
5096 * calc/calc-math.el (math-use-emacs-fn):
5097 * calc/calccomp.el (math-compose-expr):
5098 Let `calc-twos-complement-mode' be nil.
5099
5100 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5101
5102 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
5103 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
5104 * minibuffer.el (completion-in-region-functions): New hook.
5105 (completion-in-region): New function.
5106 * emacs-lisp/lisp.el (lisp-complete-symbol):
5107 * pcomplete.el (pcomplete-std-complete): Use it.
5108
5109 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5110
5111 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
5112 (latex-complete-alist): New vars.
5113 (latex-string-prefix-p, latex-complete-bibtex-keys)
5114 (latex-complete-envnames, latex-complete-refkeys)
5115 (latex-complete-data): New functions.
5116 (latex-complete, latex-indent-or-complete): New commands.
5117
5118 * window.el (display-buffer-mark-dedicated): New var.
5119 (display-buffer): Obey it.
5120 * minibuffer.el (minibuffer-completion-help): Use it.
5121
5122 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
5123
5124 * filecache.el (file-cache-add-file): Use push and cons.
5125 (file-cache-delete-file-regexp): Use push.
5126 (file-cache-complete): Use completion-in-region.
5127
5128 * simple.el (with-wrapper-hook): Fix thinko.
5129
5130 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
5131 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
5132 Use with-current-buffer and string-to-number.
5133 (hfy-fallback-colour-values): Use assoc-string.
5134 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
5135 (hfy-face-at): Remove unused var `found-face'.
5136 (hfy-compile-stylesheet): Remove unused var `css'.
5137 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
5138 and `orig-buffer'.
5139 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
5140 Use with-current-buffer.
5141 (hfy-text-p): Use expand-file-name and fewer setq.
5142
5143 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
5144
5145 * htmlfontify.el, hfy-cmap.el: New files.
5146
5147 2009-11-19 Juri Linkov <juri@jurta.org>
5148
5149 * minibuffer.el (completions-format): New defcustom.
5150 (completion--insert-strings): Implement vertical format.
5151
5152 * simple.el (switch-to-completions): Move point to the first
5153 completion when point was at the beginning of the buffer.
5154
5155 2009-11-19 Juri Linkov <juri@jurta.org>
5156
5157 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
5158
5159 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
5160
5161 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
5162
5163 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
5164 (mail-signature): Change default to t.
5165 (mail-from-style): Deprecate `system-default' value.
5166 (mail-insert-from-field): For default value of mail-from-style,
5167 default to `angles' unless `angles' needs quoting and `parens'
5168 does not.
5169 (mail-citation-prefix-regexp): Use citation regexp from
5170 message-mode.
5171
5172 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
5173
5174 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
5175 Set variables for computing the prompt for reading password.
5176
5177 2009-11-19 Glenn Morris <rgm@gnu.org>
5178
5179 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
5180
5181 * textmodes/flyspell.el (sgml-lexical-context): Declare.
5182
5183 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
5184 (newsticker-treeview-listwindow-height): Fix custom type.
5185
5186 2009-11-19 Kenichi Handa <handa@m17n.org>
5187
5188 * descr-text.el (describe-char-padded-string): Compose with TAB
5189 only if there's a font for CH.
5190 (describe-char): Fix the condition for detecting a trivial composition.
5191
5192 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
5193
5194 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
5195 more accurate version of the regexp. (Bug#3910)
5196
5197 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
5198
5199 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
5200
5201 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
5202
5203 * font-setting.el (font-use-system-font): Declare for byte-compiler.
5204 (font-setting-change-default-font): Fix typo in docstring.
5205
5206 2009-11-18 Alan Mackenzie <acm@muc.de>
5207
5208 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
5209
5210 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5211
5212 * font-setting.el (font-use-system-font): Move ...
5213
5214 * cus-start.el (all): ... to here.
5215
5216 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
5217
5218 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
5219 Don't set `ad-return-value' if `ad-do-it' doesn't.
5220
5221 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
5222 modification time.
5223
5224 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5225
5226 * menu-bar.el: Put "Use system font" in Option-menu.
5227 (menu-bar-options-save): Add font-use-system-font.
5228
5229 * loadup.el: If feature system-font-setting or font-render-setting is
5230 there, load font-setting.
5231
5232 * Makefile.in (ELCFILES): Add font-settings.el.
5233 * font-setting.el: New file.
5234
5235 2009-11-17 Glenn Morris <rgm@gnu.org>
5236
5237 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
5238
5239 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
5240 Preserve point in the list buffer. (Bug#4939)
5241 Use point-at-eol.
5242 (newsticker--treeview-list-update-highlight)
5243 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
5244
5245 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5246
5247 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
5248 Remove.
5249
5250 * calc/calc-ext.el (calc-init-extensions): Remove references to
5251 symclip.
5252
5253 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
5254
5255 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
5256 * calc/calc-help.el (calc-b-prefix-help): Remove references to
5257 `calc-symclip'.
5258
5259 2009-11-16 Kevin Ryde <user42@zip.com.au>
5260
5261 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
5262 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
5263
5264 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
5265 (lm-keywords-list): Allow comma-only separator like "foo,bar".
5266 Ignore trailing spaces by omit-nulls to split-string (fixing
5267 regression from Emacs 21 due to the incompatible split-string
5268 change). (Bug #4928.)
5269
5270 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
5271
5272 * vc.el (vc-log-show-limit): Default to 2000.
5273 (vc-print-log-internal): Insert buttons to request more entries
5274 when limiting the output.
5275
5276 * vc-sccs.el (vc-sccs-print-log):
5277 * vc-rcs.el (vc-rcs-print-log):
5278 * vc-cvs.el (vc-cvs-print-log):
5279 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
5280 LIMIT is non-nil.
5281
5282 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5283
5284 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
5285 error when `tramp-gvfs-dbus-event-vector' is set.
5286 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
5287
5288 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5289
5290 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
5291
5292 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5293
5294 * net/dbus.el (dbus-unregister-service): New defun.
5295 (dbus-register-property): Register the handlers of
5296 "org.freedesktop.DBus.Properties" for SERVICE.
5297 (dbus-property-handler): Fix docstring.
5298
5299 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5300
5301 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
5302 Quote doc string reference in defvaralias as it is not in special form.
5303 (byte-compile-output-docform): Doc fix.
5304
5305 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5306
5307 * calc/calc.el (math-2-word-size, math-half-2-word-size)
5308 (calc-complement-signed-mode): New variables.
5309 (calc-set-mode-line): Add indicator for twos-complements.
5310 (math-format-number): Format twos-complement notation.
5311
5312 * calc/calc-bin.el (calc-word-size): Reset the variables
5313 `math-2-word-size' and `math-half-2-word-size'.
5314 (math-format-complement-signed, math-symclip, calcFunc-symclip)
5315 (calc-symclip): New functions.
5316
5317 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
5318
5319 * calc/calc-embed.el (calc-embedded-mode-vars):
5320 Add `calc-complement-signed-mode' to the list of modes.
5321
5322 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
5323 (calc-b-oper-keys): Add `calc-symclip' to list.
5324
5325 * calc/calc-ext.el (math-read-number-fancy): Read complement
5326 signed numbers.
5327 (calc-init-extensions): Add binding for `calc-symclip'.
5328 Add autoload for `calcFunc-symclip' and `calc-symclip'.
5329
5330 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
5331 `calc-symclip'.
5332 (calc-modes-menu): Add item for twos complement mode.
5333
5334 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
5335
5336 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5337
5338 * register.el (jump-to-register, insert-register): Handle Semantic
5339 tags. From commented-out advice in semantic/senator.el.
5340
5341 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
5342
5343 * vc.el (vc-log-show-limit): New variable.
5344 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
5345 when using a prefix argument.
5346 (vc-print-log-internal): Add new argument LIMIT.
5347
5348 * vc-svn.el (vc-svn-print-log):
5349 * vc-mtn.el (vc-mtn-print-log):
5350 * vc-hg.el (vc-hg-print-log):
5351 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
5352 pass it to the log command when set. Make the BUFFER argument
5353 non-optional.
5354
5355 * vc-sccs.el (vc-sccs-print-log):
5356 * vc-rcs.el (vc-rcs-print-log):
5357 * vc-git.el (vc-git-print-log):
5358 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
5359 ignore it. Make the BUFFER argument non-optional
5360
5361 * bindings.el (mode-line-buffer-identification): Do not purecopy.
5362
5363 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5364
5365 * dired.el (dired-mode-map): Move encryption items to "Operate"
5366 menu (Bug#4703).
5367
5368 * strokes.el (strokes-update-window-configuration): Make strokes
5369 buffer current before erasing (Bug#4906).
5370
5371 * cedet/semantic/idle.el (semantic-idle-summary-mode)
5372 (semantic-idle-summary-mode): Define using define-minor-mode
5373 instead of define-semantic-idle-service.
5374 (semantic-idle-summary-mode): New function.
5375 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
5376 that mouse motion does not reset the echo area.
5377
5378 2009-11-15 Juri Linkov <juri@jurta.org>
5379
5380 * simple.el (set-mark-default-inactive): Add :type, :group
5381 and :version. (Bug#4876)
5382
5383 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
5384
5385 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
5386 (archive-unique-fname): ... here. (Bug#4929)
5387
5388 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
5389
5390 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
5391 with a real fix.
5392
5393 * novice.el (disabled-command-function): Add useful args.
5394 Setup the help buffer so that [back] works.
5395 Remove redundant call to help-mode.
5396 (disabled-command-function): Use `case'.
5397 (en/disable-command): New function extracted from enable-command.
5398 (enable-command, disable-command): Use it.
5399
5400 2009-11-14 Glenn Morris <rgm@gnu.org>
5401
5402 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
5403 constants. (Bug#4913)
5404
5405 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
5406
5407 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5408
5409 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
5410 defined in C that have no doc-strings. (Bug#1063)
5411
5412 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
5413
5414 * cus-edit.el (data, files):
5415 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
5416
5417 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
5418
5419 * simple.el (shell-command): Doc fix (Bug#4891).
5420
5421 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
5422
5423 2009-11-14 Glenn Morris <rgm@gnu.org>
5424
5425 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
5426 statements for vc-diff, emerge-quit, and rmail-cease-edit.
5427 If they are already loaded, eval-after-load will do the right thing.
5428
5429 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
5430 compiling.
5431
5432 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
5433
5434 * simple.el (x-selection-owner-p): Declare.
5435 (read-mail-command): Use custom radio type rather than choice.
5436 (completion-no-auto-exit): Doc fix.
5437
5438 * custom.el (defgroup):
5439 * epg-config.el (epg): Doc fixes.
5440
5441 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
5442
5443 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
5444 * international/ccl.el (define-ccl-program): Do not purecopy the
5445 docstring, defconst does it anyway.
5446
5447 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5448
5449 * add-log.el (add-change-log-entry): Avoid displaying the changelog
5450 a second time.
5451
5452 * x-dnd.el (x-dnd-maybe-call-test-function):
5453 * window.el (split-window-vertically):
5454 * whitespace.el (whitespace-help-on):
5455 * vc-rcs.el (vc-rcs-consult-headers):
5456 * userlock.el (ask-user-about-lock-help)
5457 (ask-user-about-supersession-help):
5458 * type-break.el (type-break-force-mode-line-update):
5459 * time-stamp.el (time-stamp-conv-warn):
5460 * terminal.el (te-set-output-log, te-more-break, te-filter)
5461 (te-sentinel, terminal-emulator):
5462 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
5463 (term-write-input-ring, term-check-source, term-start-output-log):
5464 (term-display-buffer-line, term-dynamic-list-completions):
5465 (term-ansi-make-term, serial-term):
5466 * subr.el (selective-display):
5467 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5468 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
5469 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
5470 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
5471 (speedbar-remove-localized-speedbar-support)
5472 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
5473 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
5474 (speedbar-buffers-line-directory):
5475 * simple.el (shell-command-on-region, append-to-buffer)
5476 (prepend-to-buffer):
5477 * shadowfile.el (shadow-save-todo-file):
5478 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
5479 (scroll-bar-maybe-set-window-start):
5480 * sb-image.el (speedbar-image-dump):
5481 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
5482 (load-save-place-alist-from-file):
5483 * ps-samp.el (ps-print-message-from-summary):
5484 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
5485 (ps-background-image, ps-begin-job, ps-do-despool):
5486 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
5487 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
5488 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
5489 (pr-call-process, pr-file-list, pr-interface-save):
5490 * novice.el (disabled-command-function)
5491 (enable-command, disable-command):
5492 * mouse.el (mouse-buffer-menu-alist):
5493 * mouse-copy.el (mouse-kill-preserving-secondary):
5494 * macros.el (kbd-macro-query):
5495 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
5496 * informat.el (batch-info-validate):
5497 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
5498 * hippie-exp.el (try-expand-dabbrev-visible):
5499 * help-mode.el (help-make-xrefs):
5500 * help-fns.el (describe-variable):
5501 * generic-x.el (bat-generic-mode-run-as-comint):
5502 * finder.el (finder-mouse-select):
5503 * find-dired.el (find-dired-sentinel):
5504 * filesets.el (filesets-file-close):
5505 * files.el (list-directory):
5506 * faces.el (list-faces-display, describe-face):
5507 * facemenu.el (list-colors-display):
5508 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
5509 * epg.el (epg--process-filter, epg-cancel):
5510 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
5511 (epa--read-signature-type):
5512 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
5513 (emerge-file-names):
5514 * ehelp.el (electric-helpify):
5515 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
5516 * ediff-vers.el (rcs-ediff-view-revision):
5517 * ediff-util.el (ediff-setup):
5518 * ediff-mult.el (ediff-append-custom-diff):
5519 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
5520 (ediff-wordify):
5521 * echistory.el (Electric-command-history-redo-expression):
5522 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
5523 * disp-table.el (describe-display-table):
5524 * dired.el (dired-find-buffer-nocreate):
5525 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
5526 * dabbrev.el (dabbrev--same-major-mode-p):
5527 * chistory.el (list-command-history):
5528 * apropos.el (apropos-documentation):
5529 * allout.el (allout-obtain-passphrase):
5530 (allout-copy-exposed-to-buffer):
5531 (allout-verify-passphrase): Use with-current-buffer.
5532
5533 2009-11-13 Glenn Morris <rgm@gnu.org>
5534
5535 * Makefile.in (ELCFILES): Regenerate.
5536
5537 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
5538
5539 * net/dbus.el (dbus-registered-objects-table): Rename from
5540 `dbus-registered-functions-table', because it contains also properties.
5541 (dbus-unregister-object): Unregister also properties.
5542 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5543 Use a timeout of 500 msec, in order to not block.
5544 (dbus-register-property, dbus-property-handler): New defuns.
5545
5546 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5547
5548 * simple.el (minibuffer-default-add-completions): Drop deprecated
5549 4th arg.
5550
5551 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
5552
5553 * textmodes/artist.el (artist-mouse-choose-operation):
5554 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5555 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
5556 (artist-compute-up-event-key): New function.
5557 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
5558
5559 2009-11-13 Kenichi Handa <handa@m17n.org>
5560
5561 * language/japan-util.el: Make sure that the value of jisx0208
5562 property is jisx0208 character.
5563
5564 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
5565
5566 * international/mule.el (auto-coding-regexp-alist): Only purecopy
5567 car or each item, not the whole list.
5568
5569 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
5570
5571 * minibuffer.el (minibuffer-completion-help):
5572 Use minibuffer-hide-completions.
5573
5574 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
5575
5576 * dired.el (dired-save-positions, dired-restore-positions): New funs.
5577 (dired-revert): Use them (bug#4880).
5578
5579 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5580
5581 * tooltip.el (tooltip-frame-parameters): Undo previous change.
5582
5583 2009-11-12 Juri Linkov <juri@jurta.org>
5584
5585 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
5586 New functions.
5587 (find-file-literally-at-point): Alias of `ffap-literally'.
5588
5589 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5590
5591 * textmodes/ispell.el (ispell-skip-region-alist):
5592 * textmodes/css-mode.el (auto-mode-alist):
5593 * progmodes/compile.el (auto-mode-alist):
5594 * international/mule.el (ctext-non-standard-encodings-alist)
5595 (ctext-non-standard-encodings-regexp):
5596 * simple.el (shell-command-switch, text-read-only):
5597 * replace.el (occur-mode-map):
5598 * paths.el (rmail-file-name):
5599 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
5600 * find-file.el (ff-special-constructs):
5601 * files.el (file-name-handler-alist):
5602 * composite.el: Purecopy strings.
5603
5604 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
5605
5606 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5607
5608 * widget.el (define-widget): Purecopy the docstring.
5609 * international/mule-cmds.el (charset): Do not purecopy the
5610 docstring here, define-widget does it.
5611
5612 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
5613 * textmodes/bibtex-style.el (auto-mode-alist):
5614 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5615 * progmodes/compile.el (compile-command):
5616 * language/korea-util.el (default-korean-keyboard):
5617 * international/mule-conf.el (file-coding-system-alist):
5618 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
5619 * tooltip.el (tooltip-frame-parameters):
5620 * newcomment.el (comment-end, comment-padding):
5621 * dired.el (dired-trivial-filenames):
5622 * comint.el (comint-file-name-prefix): Purecopy initial values.
5623
5624 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
5625
5626 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
5627 (tramp-advice-minibuffer-electric-tilde): Unload advices via
5628 `tramp-unload'.
5629 (tramp-advice-make-auto-save-file-name)
5630 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
5631 after removing the advice.
5632
5633 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5634
5635 * progmodes/grep.el (grep-regexp-alist):
5636 * international/mule-cmds.el (iso-2022-control-alist):
5637 * emacs-lisp/timer.el (timer-duration-words):
5638 * subr.el (version-separator, version-regexp-alist):
5639 * minibuffer.el (completion-styles-alist):
5640 * faces.el (face-attribute-name-alist, list-faces-sample-text):
5641 Change defvars to defconsts.
5642
5643 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
5644 * loadup.el ("international/mule-conf"): Load the byte compiled version.
5645 * international/mule-conf.el: Allow to be byte compiled.
5646
5647 * international/mule.el (define-charset): Purecopy props.
5648 (load-with-code-conversion): Purecopy doc string and file name.
5649 (put-charset-property): Purecopy strings.
5650 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
5651
5652 * international/mule-cmds.el (register-input-method): Purecopy arguments.
5653 (define-char-code-property): Correctly purecopy the table.
5654
5655 * international/ccl.el (define-ccl-program): Purecopy the docstring.
5656
5657 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
5658
5659 * subr.el (add-hook): Purecopy strings.
5660 (eval-after-load): Purecopy load-history-regexp and the form.
5661
5662 * custom.el (custom-declare-group): Purecopy load-file-name.
5663
5664 * subr.el (menu-bar-separator): New defconst.
5665 * net/eudc.el (eudc-tools-menu):
5666 * international/mule-cmds.el (set-coding-system-map)
5667 (mule-menu-keymap):
5668 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5669 * vc-hooks.el (vc-menu-map):
5670 * replace.el (occur-mode-map):
5671 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
5672 (menu-bar-edit-menu, menu-bar-goto-menu)
5673 (menu-bar-custom-menu, menu-bar-showhide-menu)
5674 (menu-bar-options-menu, menu-bar-tools-menu)
5675 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
5676 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
5677 (menu-bar-help-menu):
5678 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
5679 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
5680
5681 * term/x-win.el (x-gtk-stock-map):
5682 * progmodes/vera-mode.el (auto-mode-alist):
5683 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5684 (inferior-lisp-program, inferior-lisp-load-command):
5685 * progmodes/hideshow.el (hs-special-modes-alist):
5686 * progmodes/gud.el (same-window-regexps):
5687 * progmodes/grep.el (grep-program, find-program, xargs-program):
5688 * net/telnet.el (same-window-regexps):
5689 * net/rlogin.el (same-window-regexps):
5690 * language/ethiopic.el (font-ccl-encoder-alist):
5691 * vc-sccs.el (vc-sccs-master-templates):
5692 * vc-rcs.el (vc-rcs-master-templates):
5693 * subr.el (cl-assertion-failed):
5694 * simple.el (next-error-overlay-arrow-position):
5695 * lpr.el (lpr-command):
5696 * locate.el (locate-ls-subdir-switches):
5697 * info.el (same-window-regexps, info)
5698 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
5699 * image-mode.el (image-mode, auto-mode-alist):
5700 * hippie-exp.el (hippie-expand-ignore-buffers):
5701 * format.el (format-alist):
5702 * find-dired.el (find-ls-subdir-switches, find-grep-options)
5703 (find-name-arg):
5704 * facemenu.el (facemenu-keybindings):
5705 * dired.el (dired-listing-switches, dired-chown-program):
5706 * diff.el (diff-switches, diff-command):
5707 * cus-edit.el (same-window-regexps):
5708 * bindings.el (mode-line-mule-info)
5709 (mode-line-buffer-identification): Purecopy strings.
5710
5711 2009-11-11 Juri Linkov <juri@jurta.org>
5712
5713 * simple.el (dired-get-filename) <declare-function>:
5714 Tell the byte-compiler about dired-get-filename.
5715 (shell-command): In Dired mode, get filename from the current line
5716 as the default value.
5717
5718 2009-11-10 Glenn Morris <rgm@gnu.org>
5719
5720 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
5721 * calendar/holidays.el, progmodes/cperl-mode.el:
5722 Update x-popup-menu declarations.
5723
5724 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
5725 (list-load-path-shadows): Use dolist.
5726 (list-load-path-shadows): Use with-current-buffer.
5727
5728 2009-11-10 Juri Linkov <juri@jurta.org>
5729
5730 * minibuffer.el (read-file-name): Support a list of default values
5731 in `default-filename'. Use the first file name where only one
5732 element is required. Doc fix.
5733
5734 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
5735
5736 * net/dbus.el (dbus-unregister-object): Release service, if no
5737 other method is registered for it.
5738
5739 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
5740
5741 * bookmark.el (bookmark-completing-read): Sort bookmark names if
5742 bookmark-sort-flag is non-nil (Bug#4653).
5743
5744 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5745
5746 * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
5747 the progress reporter entirely.
5748
5749 * emulation/cua-base.el: Add CUA property to some CC mode commands
5750 (Bug#4100).
5751
5752 2009-11-08 Kevin Ryde <user42@zip.com.au>
5753
5754 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
5755 at end of sentence (Bug#4818).
5756
5757 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
5758
5759 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5760 Handle "see declaration of" MSFT statements (Bug#4100).
5761
5762 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
5763
5764 * net/tramp.el (tramp-advice-make-auto-save-file-name)
5765 (tramp-advice-file-expand-wildcards): Unload via
5766 `ad-remove-advice'.
5767
5768 * net/trampver.el: Update release number.
5769
5770 2009-11-08 Kevin Ryde <user42@zip.com.au>
5771
5772 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5773 `ad-do-it'.
5774
5775 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
5776
5777 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5778 in order to keep context in SELinux.
5779
5780 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5781
5782 * dired-aux.el (dired-query): Place cursor in echo area and allow
5783 C-g.
5784
5785 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5786 menu item if not on a directory (Bug#4701).
5787
5788 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
5789
5790 Sync with Tramp 2.1.17.
5791
5792 * net/tramp.el (tramp-handle-copy-directory): Don't use
5793 `file-remote-p' (due to compatibility).
5794
5795 * net/tramp-compat.el (tramp-compat-copy-directory)
5796 (tramp-compat-delete-directory): New defuns.
5797
5798 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5799 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
5800 `tramp-compat-delete-directory'.
5801
5802 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5803 (tramp-smb-handle-delete-directory): Use
5804 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5805
5806 * net/trampver.el: Update release number.
5807
5808 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
5809
5810 * tar-mode.el (tar-copy): Call write-region on the right buffer
5811 (Bug#4857).
5812
5813 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5814 by hand, if necessary (Bug#4878).
5815
5816 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
5817
5818 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5819 align size column (Bug#4839).
5820
5821 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5822 statement.
5823
5824 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5825
5826 * progmodes/ld-script.el (auto-mode-alist):
5827 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5828
5829 * cus-face.el (custom-declare-face): Purecopy face spec.
5830
5831 2009-11-06 Kenichi Handa <handa@m17n.org>
5832
5833 * international/uni-bidi.el: Re-generated.
5834 * international/uni-category.el: Re-generated.
5835 * international/uni-combining.el: Re-generated.
5836 * international/uni-mirrored.el: Re-generated.
5837
5838 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5839
5840 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5841 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5842 (tex-start-options, slitex-run-command, latex-run-command)
5843 (tex-run-command, tex-directory):
5844 * textmodes/ispell.el (ispell-html-skip-alists)
5845 (ispell-tex-skip-alists, ispell-tex-skip-alists):
5846 * textmodes/fill.el (adaptive-fill-first-line-regexp):
5847 (adaptive-fill-regexp):
5848 * textmodes/dns-mode.el (auto-mode-alist):
5849 * progmodes/python.el (interpreter-mode-alist):
5850 * progmodes/etags.el (tags-compression-info-list):
5851 * progmodes/etags.el (tags-file-name):
5852 * net/browse-url.el (browse-url-galeon-program)
5853 (browse-url-firefox-program):
5854 * mail/sendmail.el (mail-signature-file)
5855 (mail-citation-prefix-regexp):
5856 * international/mule-conf.el (eight-bit):
5857 * international/latexenc.el (latex-inputenc-coding-alist):
5858 * international/fontset.el (x-pixel-size-width-font-regexp):
5859 * emacs-lisp/warnings.el (warning-type-format):
5860 * emacs-lisp/trace.el (trace-buffer):
5861 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5862 (emacs-lisp-mode-map):
5863 * calendar/holidays.el (holiday-solar-holidays)
5864 (holiday-bahai-holidays, holiday-islamic-holidays)
5865 (holiday-christian-holidays, holiday-hebrew-holidays)
5866 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5867 (hebrew-holidays-1, holiday-oriental-holidays)
5868 (holiday-general-holidays):
5869 * x-dnd.el (x-dnd-known-types):
5870 * tool-bar.el (tool-bar):
5871 * startup.el (site-run-file):
5872 * shell.el (shell-dumb-shell-regexp):
5873 * rfn-eshadow.el (file-name-shadow-tty-properties)
5874 (file-name-shadow-properties):
5875 * paths.el (remote-shell-program, news-directory):
5876 * mouse.el ([C-down-mouse-3]):
5877 * menu-bar.el (menu-bar-tools-menu):
5878 * jka-cmpr-hook.el (jka-compr-load-suffixes)
5879 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5880 (jka-compr-compression-info-list):
5881 * isearch.el (search-whitespace-regexp):
5882 * image-file.el (image-file-name-extensions):
5883 * find-dired.el (find-ls-option):
5884 * files.el (directory-listing-before-filename-regexp)
5885 (directory-free-space-args, insert-directory-program)
5886 (list-directory-brief-switches, magic-fallback-mode-alist)
5887 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5888 (automount-dir-prefix):
5889 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5890 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5891 (face-font-registry-alternatives, face-font-registry-alternatives)
5892 (face-font-family-alternatives):
5893 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5894 (facemenu-foreground-menu, facemenu-face-menu):
5895 * epa-hook.el (epa-file-name-regexp):
5896 * dnd.el (dnd-protocol-alist):
5897 * textmodes/rst.el (auto-mode-alist):
5898 * button.el (default-button): Purecopy strings.
5899
5900 2009-11-06 Glenn Morris <rgm@gnu.org>
5901
5902 * Makefile.in (ELCFILES): Update.
5903
5904 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
5905
5906 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5907 * emacs-lisp/levents.el: Move to obsolete/levents.el.
5908
5909 * nxml/xsd-regexp.el (xsdre-gen-categories):
5910 * nxml/xmltok.el (xmltok-parse-entity):
5911 * nxml/rng-parse.el (rng-parse-validate-file):
5912 * nxml/rng-maint.el (rng-format-manual)
5913 (rng-manual-output-force-new-line):
5914 * nxml/rng-loc.el (rng-save-schema-location-1):
5915 * nxml/rng-cmpct.el (rng-c-parse-file):
5916 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5917 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5918
5919 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
5920
5921 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5922 Remove extra save-excursions and make-variable-buffer-local's.
5923 Suggested by Stefan Monnier.
5924
5925 (verilog-getopt-file, verilog-module-inside-filename-p)
5926 (verilog-set-define): Merge GNU 1.35 and repair changes from
5927 switching to using with-current-buffer.
5928
5929 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5930 being treated as a number and confusing AUTORESET.
5931 Reported by Dan Dever.
5932
5933 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5934 Add verilog-auto-ignore-concat to fix backward compatibility with
5935 older verilog-modes. Reported by Dan Katz.
5936
5937 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5938 containing closing anchors "...$".
5939
5940 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5941 Reported by Wade Smith.
5942
5943 (verilog-batch-execute-func): Comment on function usage.
5944
5945 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
5946
5947 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5948 for labels.
5949
5950 (verilog-label-re, verilog-calc-1): Support proper indent of named
5951 asserts.
5952
5953 (verilog-backward-token, verilog-basic-complete-re)
5954 (verilog-beg-of-statement, verilog-indent-re): Support proper
5955 indent of the assert statement at the beginning of a block of text.
5956
5957 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5958 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5959 tokens as begins.
5960
5961 2009-11-05 Glenn Morris <rgm@gnu.org>
5962
5963 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5964 Emacs 19. (Bug#1531)
5965 (byte-compile-fix-header): Update for the above change.
5966 Drop test for epoch::version.
5967
5968 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5969 * cus-dep.el (custom-make-dependencies):
5970 * finder.el (finder-compile-keywords):
5971 Use autoload-rubric's feature argument.
5972
5973 * calendar/diary-lib.el (top-level): Make load behave more like require.
5974
5975 * vc-git.el (vc-git-stash-map): Move definition before use.
5976
5977 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
5978
5979 * custom.el (custom-declare-group): Purecopy standard-value.
5980 (custom-declare-group): Purecopy custom-prefix.
5981
5982 * international/mule.el (load-with-code-conversion):
5983 Call do-after-load-evaluation unconditionally.
5984
5985 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5986
5987 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
5988
5989 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5990
5991 2009-11-04 Glenn Morris <rgm@gnu.org>
5992
5993 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5994 (byte-compile-compatibility): Remove option.
5995 (byte-compile-close-variables, byte-compile-fix-header)
5996 (byte-compile-insert-header, byte-compile-output-docform)
5997 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5998 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5999 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
6000 (byte-compile-insert, byte-compile-defun):
6001 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
6002 (byte-defop-compiler19): Remove.
6003 Without byte-compile-compatibility, the 'emacs19-opcode property is not
6004 used by anything. Replace all calls with byte-defop-compiler.
6005
6006 2009-11-04 Juri Linkov <juri@jurta.org>
6007
6008 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
6009 (menu-bar-options-menu): Don't quote the `prop' arg of
6010 `menu-bar-make-mm-toggle'.
6011
6012 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
6013
6014 * calendar/calendar.el (cal-loaddefs):
6015 * calendar/diary-lib.el (diary-loaddefs):
6016 * calendar/holidays.el (hol-loaddefs):
6017 * eshell/esh-module.el (esh-groups): Load rather than require.
6018
6019 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6020
6021 * calendar/todo-mode.el (todo-add-category): Don't hardcode
6022 point-min==1.
6023 (todo-top-priorities): Only display-buffer when called interactively.
6024 (todo-item-start): Don't save excursion point.
6025 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
6026 (todo-insert-item-here, todo-file-item, todo-remove-item):
6027 Adjust uses of todo-item-start and todo-item-end.
6028
6029 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
6030 (autoload-rubric): Don't use any more.
6031 * cedet/semantic/fw.el (semantic/loaddefs):
6032 * cedet/srecode.el (srecode/loaddefs):
6033 * cedet/ede.el (ede/loaddefs): Load rather than require.
6034 * cedet/ede/cpp-root.el:
6035 * cedet/ede/emacs.el:
6036 * cedet/ede/files.el:
6037 * cedet/ede/linux.el:
6038 * cedet/ede/locate.el:
6039 * cedet/ede/make.el:
6040 * cedet/ede/shell.el:
6041 * cedet/ede/speedbar.el:
6042 * cedet/ede/system.el:
6043 * cedet/ede/util.el:
6044 * cedet/semantic/analyze.el:
6045 * cedet/semantic/bovine.el:
6046 * cedet/semantic/complete.el:
6047 * cedet/semantic/ctxt.el:
6048 * cedet/semantic/db-file.el:
6049 * cedet/semantic/db-find.el:
6050 * cedet/semantic/db-global.el:
6051 * cedet/semantic/db-mode.el:
6052 * cedet/semantic/db-typecache.el:
6053 * cedet/semantic/db.el:
6054 * cedet/semantic/debug.el:
6055 * cedet/semantic/dep.el:
6056 * cedet/semantic/doc.el:
6057 * cedet/semantic/edit.el:
6058 * cedet/semantic/find.el:
6059 * cedet/semantic/format.el:
6060 * cedet/semantic/html.el:
6061 * cedet/semantic/ia-sb.el:
6062 * cedet/semantic/ia.el:
6063 * cedet/semantic/idle.el:
6064 * cedet/semantic/lex-spp.el:
6065 * cedet/semantic/lex.el:
6066 * cedet/semantic/mru-bookmark.el:
6067 * cedet/semantic/scope.el:
6068 * cedet/semantic/senator.el:
6069 * cedet/semantic/sort.el:
6070 * cedet/semantic/symref.el:
6071 * cedet/semantic/tag-file.el:
6072 * cedet/semantic/tag-ls.el:
6073 * cedet/semantic/tag-write.el:
6074 * cedet/semantic/tag.el:
6075 * cedet/semantic/util-modes.el:
6076 * cedet/semantic/analyze/complete.el:
6077 * cedet/semantic/analyze/refs.el:
6078 * cedet/semantic/bovine/c.el:
6079 * cedet/semantic/bovine/gcc.el:
6080 * cedet/semantic/bovine/make.el:
6081 * cedet/semantic/bovine/scm.el:
6082 * cedet/semantic/decorate/include.el:
6083 * cedet/semantic/decorate/mode.el:
6084 * cedet/semantic/symref/cscope.el:
6085 * cedet/semantic/symref/global.el:
6086 * cedet/semantic/symref/grep.el:
6087 * cedet/semantic/symref/idutils.el:
6088 * cedet/semantic/symref/list.el:
6089 * cedet/semantic/wisent/java-tags.el:
6090 * cedet/semantic/wisent/javascript.el:
6091 * cedet/srecode/compile.el:
6092 * cedet/srecode/cpp.el:
6093 * cedet/srecode/document.el:
6094 * cedet/srecode/el.el:
6095 * cedet/srecode/expandproto.el:
6096 * cedet/srecode/getset.el:
6097 * cedet/srecode/insert.el:
6098 * cedet/srecode/java.el:
6099 * cedet/srecode/map.el:
6100 * cedet/srecode/mode.el:
6101 * cedet/srecode/template.el:
6102 * cedet/srecode/texi.el: Remove the file-local setting of
6103 generated-autoload-feature.
6104
6105 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
6106 and only put a prop if it is non-nil.
6107
6108 2009-11-03 Juri Linkov <juri@jurta.org>
6109
6110 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
6111 (menu-bar-options-menu): Fix list quoting (Bug#4429).
6112
6113 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
6114 and "Menu" to make top-level menu item visually one unit (like
6115 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
6116 multi-word menu items). Fix :help string for quit-window.
6117
6118 2009-11-03 Glenn Morris <rgm@gnu.org>
6119
6120 * cedet/mode-local.el (with-mode-local): Doc fix.
6121
6122 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
6123 (byte-compile-file-form-define-abbrev-table)
6124 (byte-compile-file-form-custom-declare-variable)
6125 (byte-compile-variable-ref, byte-compile-defvar):
6126 Whether or not a warning is enabled should only affect whether we issue
6127 the warning, not whether or not we collect the relevant data.
6128 Eg warnings can be turned on and off throughout the course of a file.
6129
6130 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
6131 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
6132
6133 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6134
6135 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
6136 * play/mpuz.el (mpuz-create-buffer):
6137 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
6138 (lm-print-y,s,noise, lm-print-w0, lm-init):
6139 * play/gomoku.el (gomoku-prompt-for-move):
6140 * play/fortune.el (fortune-in-buffer):
6141 * play/dissociate.el (dissociated-press):
6142 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
6143 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
6144 * mail/supercite.el (sc-eref-show):
6145 * mail/smtpmail.el (smtpmail-send-it):
6146 * mail/rmailsum.el (rmail-summary-next-labeled-message)
6147 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
6148 (rmail-summary-undelete-many, rmail-summary-rmail-update)
6149 (rmail-summary-goto-msg, rmail-summary-expunge)
6150 (rmail-summary-get-new-mail, rmail-summary-search-backward)
6151 (rmail-summary-add-label, rmail-summary-output-menu)
6152 (rmail-summary-output-body):
6153 * mail/rfc822.el (rfc822-addresses):
6154 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
6155 * mail/mailpost.el (post-mail-send-it):
6156 * mail/hashcash.el (hashcash-generate-payment):
6157 * mail/feedmail.el (feedmail-run-the-queue)
6158 (feedmail-queue-send-edit-prompt-help-first)
6159 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
6160 (feedmail-deduce-address-list):
6161 * eshell/esh-ext.el (eshell-remote-command):
6162 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
6163 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
6164 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
6165 (viper-save-string-in-file, viper-valid-marker):
6166 * emulation/viper-keym.el (viper-toggle-key):
6167 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
6168 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
6169 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
6170 * emulation/viper-cmd.el (viper-exec-form-in-vi)
6171 (viper-exec-form-in-emacs, viper-brac-function):
6172 * emulation/viper.el (viper-delocalize-var):
6173 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
6174 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
6175 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
6176 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
6177 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
6178 * emulation/edt.el (edt-electric-helpify):
6179 * emulation/cua-rect.el (cua--rectangle-aux-replace):
6180 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
6181 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
6182 (cua-indent-to-global-mark-column):
6183 * calendar/diary-lib.el (calendar-mark-1):
6184 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
6185 Use with-current-buffer.
6186 * emulation/viper.el (viper-delocalize-var): Use dolist.
6187
6188 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
6189
6190 * comint.el (comint-replace-by-expanded-history-before-point):
6191 Replace !! with the previous input string literally (Bug#1795).
6192
6193 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
6194
6195 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
6196 to be made up of whitespace.
6197
6198 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
6199
6200 * minibuffer.el (read-file-name): Don't use file dialogs for
6201 remote directories (Bug#99).
6202
6203 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
6204
6205 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
6206
6207 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
6208
6209 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
6210 instead of deleting the window or frame.
6211
6212 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
6213
6214 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
6215 Support face colors.
6216
6217 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
6218 New function. Support face colors (Bug#1168).
6219 (tex-common-initialization): Use it.
6220
6221 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
6222 mode allows it (Bug#1168).
6223
6224 2009-10-31 Juri Linkov <juri@jurta.org>
6225
6226 * facemenu.el (list-colors-display): Don't mark buffer as
6227 modified (Bug#3948).
6228
6229 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
6230
6231 * international/mule-diag.el (list-character-sets-1): Minor
6232 message fix (Bug#3526).
6233
6234 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
6235 face property (Bug#4834).
6236 (etags-list-tags, etags-tags-apropos-additional)
6237 (etags-tags-apropos, tags-select-tags-table): Add follow-link
6238 property.
6239
6240 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
6241 items.
6242
6243 * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
6244 items.
6245
6246 * cedet/ede.el (ede-minor-mode):
6247 * cedet/semantic.el (semantic-mode): Toggle menu separators.
6248
6249 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
6250
6251 * textmodes/two-column.el (2C-split):
6252 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
6253 * textmodes/tex-mode.el (tex-set-buffer-directory):
6254 * textmodes/spell.el (spell-region, spell-string):
6255 * textmodes/reftex.el (reftex-erase-buffer):
6256 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
6257 * textmodes/reftex-toc.el (reftex-toc-promote-action):
6258 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
6259 (reftex-select-item):
6260 * textmodes/reftex-ref.el (reftex-label-info-update)
6261 (reftex-offer-label-menu):
6262 * textmodes/reftex-index.el (reftex-index-change-entry)
6263 (reftex-index-phrases-info):
6264 * textmodes/reftex-global.el (reftex-create-tags-file)
6265 (reftex-save-all-document-buffers, reftex-ensure-write-access):
6266 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
6267 (reftex-view-crossref-from-bibtex):
6268 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
6269 (reftex-extract-bib-entries-from-thebibliography)
6270 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
6271 * textmodes/refbib.el (r2b-capitalize-title):
6272 (r2b-convert-buffer, r2b-help):
6273 * textmodes/page-ext.el (pages-directory)
6274 (pages-directory-goto-with-mouse):
6275 * textmodes/bibtex.el (bibtex-validate-globally):
6276 * textmodes/bib-mode.el (bib-capitalize-title):
6277 * textmodes/artist.el (artist-clear-buffer, artist-system):
6278 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
6279 (local-set-scheme-interaction-buffer, xscheme-process-filter)
6280 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
6281 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
6282 (xscheme-send-control-g-interrupt, xscheme-start-process)
6283 (xscheme-process-sentinel, xscheme-cd):
6284 * progmodes/verilog-mode.el (verilog-read-always-signals)
6285 (verilog-set-define, verilog-getopt-file)
6286 (verilog-module-inside-filename-p):
6287 * progmodes/sh-script.el:
6288 * progmodes/python.el (python-pdbtrack-get-source-buffer)
6289 (python-pdbtrack-grub-for-buffer, python-execute-file):
6290 * progmodes/octave-inf.el (inferior-octave):
6291 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6292 (idlwave-shell-compile-helper-routines, idlwave-set-local)
6293 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
6294 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
6295 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
6296 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
6297 (idlwave-shell-filter, idlwave-shell-examine-highlight)
6298 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
6299 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
6300 (idlwave-shell-examine-display, idlwave-shell-run-region)
6301 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
6302 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
6303 * progmodes/idlw-help.el (idlwave-help-get-special-help)
6304 (idlwave-help-get-help-buffer):
6305 * progmodes/gud.el (gud-basic-call, gud-find-class)
6306 (gud-tooltip-activate-mouse-motions-if-enabled):
6307 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
6308 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
6309 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
6310 (ebrowse-tags-next-file):
6311 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
6312 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
6313 (ebnf-eps-finish-and-write):
6314 * progmodes/cpp.el (cpp-edit-save):
6315 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
6316 * progmodes/cc-defs.el (c-emacs-features):
6317 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
6318 (antlr-directory-dependencies):
6319 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
6320 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
6321 (ada-find-any-references, ada-make-filename-from-adaname)
6322 (ada-make-body-gnatstub):
6323 * obsolete/rnews.el (news-list-news-groups):
6324 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
6325 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
6326 * net/rcirc.el (rcirc-debug):
6327 * net/newst-treeview.el (newsticker--treeview-list-add-item)
6328 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
6329 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
6330 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
6331 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
6332 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
6333 (newsticker--treeview-list-clear-highlight)
6334 (newsticker--treeview-list-update-highlight)
6335 (newsticker--treeview-list-highlight-start)
6336 (newsticker--treeview-tree-update-highlight)
6337 (newsticker--treeview-get-selected-item)
6338 (newsticker-treeview-mark-list-items-old)
6339 (newsticker--treeview-set-current-node):
6340 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
6341 * net/newst-backend.el (newsticker--get-news-by-funcall)
6342 (newsticker--get-news-by-wget, newsticker--image-get)
6343 (newsticker--image-sentinel):
6344 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
6345 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
6346 (eudc-ph-close-session):
6347 * net/eudc.el (eudc-save-options):
6348 * language/thai-word.el (thai-update-word-table):
6349 * language/japan-util.el (japanese-string-conversion):
6350 * international/titdic-cnv.el (tsang-quick-converter)
6351 (ziranma-converter, ctlau-converter):
6352 * international/mule-cmds.el (describe-language-environment):
6353 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
6354 (skkdic-convert-postfix, skkdic-convert-prefix):
6355 (skkdic-convert-okuri-nasi, skkdic-convert):
6356 * emacs-lisp/re-builder.el (reb-update-overlays):
6357 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
6358 * emacs-lisp/gulp.el (gulp-send-requests):
6359 * emacs-lisp/find-gc.el (trace-call-tree):
6360 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
6361 (eieio-describe-generic):
6362 * emacs-lisp/eieio-base.el (eieio-persistent-read):
6363 * emacs-lisp/edebug.el (edebug-outside-excursion):
6364 * emacs-lisp/debug.el (debugger-make-xrefs):
6365 * emacs-lisp/cust-print.el (custom-prin1-to-string):
6366 * emacs-lisp/chart.el (chart-new-buffer):
6367 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
6368 Use with-current-buffer.
6369 * textmodes/artist.el (artist-system): Don't call
6370 copy-sequence on a fresh string.
6371 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
6372
6373 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
6374
6375 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
6376 is no item to edit. (Bug#4820)
6377 (todo-top-priorities): Restore point and restore narrowing in Todo
6378 buffer. (Bug#4820)
6379
6380 2009-10-31 Glenn Morris <rgm@gnu.org>
6381
6382 * net/ange-ftp.el (top-level): Don't require dired when compiling.
6383 (comint-last-output-start, comint-last-input-start)
6384 (comint-last-input-end): Don't defvar when compiling.
6385 (ange-ftp-process-file): Use bound-and-true-p.
6386
6387 * pcmpl-rpm.el (top-level): Move provide statement to end.
6388 (pcmpl-rpm): Remove unused custom group.
6389
6390 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
6391
6392 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
6393
6394 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
6395 (byte-compile-warnings): Add `constants' as an option.
6396 (byte-compile-callargs-warn, byte-compile-arglist-warn)
6397 (display-call-tree): Update for byte-compile-fdefinition possibly
6398 returning `(macro lambda ...)'. (Bug#4778)
6399 (byte-compile-variable-ref, byte-compile-setq-default):
6400 Respect `constants' member of byte-compile-warnings.
6401
6402 * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
6403 Use mapc rather than mapcar because the return value is never used.
6404
6405 * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
6406 * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
6407 * cedet/semantic/html.el:
6408 Suppress harmless warnings about setting up semantic-imenu (not
6409 part of Emacs) variables.
6410
6411 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6412
6413 * vc-bzr.el (vc-bzr-revision-keywords): New var.
6414 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
6415 to "submit:".
6416
6417 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
6418 * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
6419 * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
6420 * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
6421 * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
6422 * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
6423 (semantic-analyzer-debug-global-symbol)
6424 (semantic-analyzer-debug-missing-innertype)
6425 (semantic-analyzer-debug-insert-include-summary):
6426 * cedet/semantic/util.el (semantic-file-tag-table):
6427 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
6428 (semantic-recursive-find-nonterminal-by-name):
6429 * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
6430 * cedet/semantic/tag-file.el (semantic-prototype-file):
6431 * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
6432 * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
6433 * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
6434 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
6435 (semantic-idle-summary-maybe-highlight):
6436 * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
6437 (semantic-ia-sb-tag-info):
6438 * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
6439 * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
6440 * cedet/semantic/ede-grammar.el (project-compile-target):
6441 (ede-proj-makefile-insert-variables):
6442 * cedet/semantic/debug.el (semantic-debug-set-parser-location):
6443 (semantic-debug-set-source-location, semantic-debug-interface-layout)
6444 (semantic-debug-mode, semantic-debug):
6445 * cedet/semantic/db.el (semanticdb-needs-refresh-p):
6446 * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
6447 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
6448 * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
6449 (semanticdb-find-translate-path-includes--internal)
6450 (semanticdb-reset-log, semanticdb-find-log-activity):
6451 * cedet/semantic/db-file.el (object-write):
6452 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
6453 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
6454 (semanticdb-create-ebrowse-database):
6455 * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
6456 * cedet/semantic/complete.el (semantic-displayor-focus-request)
6457 (semantic-collector-calculate-completions-raw)
6458 (semantic-complete-read-tag-analyzer):
6459 * cedet/semantic/analyze.el (semantic-analyze-pulse):
6460 * cedet/ede/util.el (ede-update-version-in-source):
6461 * cedet/ede/proj.el (project-delete-target):
6462 * cedet/ede/proj-elisp.el (ede-update-version-in-source)
6463 (ede-proj-flush-autoconf):
6464 * cedet/ede/pconf.el (ede-proj-configure-synchronize)
6465 (ede-proj-configure-synchronize):
6466 * cedet/ede/locate.el (ede-locate-file-in-project-impl):
6467 * cedet/ede/linux.el (ede-linux-version):
6468 * cedet/ede/emacs.el (ede-emacs-version):
6469 * cedet/ede/dired.el (ede-dired-add-to-target):
6470 * cedet/ede.el (ede-buffer-header-file, ede-find-target)
6471 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
6472 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
6473 * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
6474 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
6475 (cedet-idutils-version-check):
6476 * cedet/cedet-global.el (cedet-gnu-global-call):
6477 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
6478 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
6479 * cedet/cedet-cscope.el (cedet-cscope-call)
6480 (cedet-cscope-expand-filename, cedet-cscope-version-check):
6481 Use with-current-buffer.
6482 * cedet/ede.el (ede-make-project-local-variable)
6483 (ede-set-project-variables, ede-set): Use dolist.
6484
6485 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
6486
6487 * textmodes/ispell.el (ispell-skip-region-alist):
6488 * international/mule-conf.el (eight-bit):
6489 * international/fontset.el (font-encoding-alist):
6490 * startup.el (pure-space-overflow-message):
6491 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
6492 * paths.el (gnus-nntp-service, rmail-spool-directory)
6493 (term-file-prefix):
6494 * files.el (save-some-buffers-action-alist):
6495 * cmuscheme.el (same-window-buffer-names):
6496 * ielm.el (same-window-buffer-names):
6497 * shell.el (same-window-buffer-names):
6498 * mail/sendmail.el (same-window-buffer-names):
6499 * progmodes/inf-lisp.el (same-window-buffer-names):
6500 * bindings.el (mode-line-client)
6501 (mode-line-column-line-number-mode-map):
6502 * language/tibetan.el (tibetan-precomposition-rule-regexp)
6503 (tibetan-precomposed-regexp): Purecopy string arguments.
6504
6505 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6506
6507 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
6508 (calcDigit-nondigit):
6509 * calc/calc-yank.el (calc-copy-to-buffer):
6510 * calc/calc-units.el (calc-invalidate-units-table):
6511 * calc/calc-trail.el (calc-trail-yank):
6512 * calc/calc-store.el (calc-insert-variables):
6513 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
6514 * calc/calc-prog.el (calc-read-parse-table):
6515 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
6516 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
6517 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
6518 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
6519 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
6520 (calc-graph-name, calc-graph-find-command, calc-graph-view)
6521 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
6522 * calc/calc-ext.el (calc-realign):
6523 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
6524 (calc-embedded-finish-edit, calc-embedded-make-info)
6525 (calc-embedded-finish-command, calc-embedded-stack-change):
6526 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
6527
6528 * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
6529 (overload-docstring-extension): Use that info.
6530 * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
6531 * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
6532 * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
6533 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
6534 (semantic-nonterminal-full-name): Add the new `when' info.
6535 * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
6536 `assert'.
6537
6538 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
6539 shell-dynamic-complete-filename in preference to
6540 comint-dynamic-complete-filename.
6541
6542 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
6543 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
6544 Don't consider whether the display supports colors.
6545 (bookmark-import-new-list): Use dolist.
6546 (bookmark-bmenu-mode-map): Move initialization into declaration.
6547 (bookmark-bmenu-list): Use dolist, simplify.
6548 (bookmark-show-all-annotations): Use save-selected-window and dolist.
6549 (menu-bar-final-items): Use push.
6550
6551 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
6552
6553 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
6554 it works on remote files.
6555 (vc-hg-diff): Don't pass any `--cwd' argument.
6556
6557 2009-10-27 Kevin Ryde <user42@zip.com.au>
6558
6559 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6560 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
6561 (Further to Bug#3921).
6562
6563 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
6564
6565 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
6566 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
6567 calling `tramp-imap-put-file'. Add file size to the call.
6568 (tramp-imap-get-file-entries): Compute also user name, file size,
6569 and date.
6570 (tramp-imap-handle-insert-directory): Insert uid and gid.
6571 (tramp-imap-handle-file-attributes): Transform uid and gid
6572 according to `id-format'.
6573 (tramp-imap-put-file): New optional parameter SIZE. Encode file
6574 size in header X-Size.
6575
6576 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
6577
6578 * simple.el (transpose-subr): Give clearer error when the mark
6579 is not set. (Bug#4807)
6580
6581 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
6582
6583 * net/tramp.el (tramp-perl-file-truename): New defconst.
6584 Perl code contributed by yary <not.com@gmail.com> (tiny change).
6585 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
6586 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
6587 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
6588
6589 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6590 Ignore `dired-call-process'.
6591 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
6592
6593 2009-10-26 Julian Scheid <julians37@gmail.com>
6594
6595 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
6596 (tramp-get-remote-readlink): New defun.
6597 (tramp-handle-file-truename): Use it.
6598 (tramp-handle-file-exists-p): Check file-attributes cache, assume
6599 file exists if cache value present.
6600 (tramp-check-cached-permissions): New defun.
6601 (tramp-handle-file-readable-p): Use it.
6602 (tramp-handle-file-writable-p): Likewise.
6603 (tramp-handle-file-executable-p): Likewise.
6604 (tramp-handle-file-name-all-completions): Try using Perl to get
6605 partial completions. When perl not available, combine `cd' and
6606 `ls' into single remote operation and use shell expansion to get
6607 partial remote directory contents. Set `file-exists-p' cache for
6608 directory and any files returned by ls. Change cache handling to
6609 support partial directory contents. Use error message emitted by
6610 remote `cd' or Perl code for local tramp-error.
6611 (tramp-do-copy-or-rename-file-directly): Avoid separate
6612 tramp-send-command-and-check call.
6613 (tramp-handle-process-file): Merge three remote ops into one.
6614 Do not flush all caches when `process-file-side-effects' is set.
6615 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
6616 file-attributes shows uid/gid to be set already.
6617
6618 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
6619
6620 * textmodes/tex-mode.el (tex-dvi-view-command)
6621 (tex-show-queue-command, tex-open-quote):
6622 * progmodes/ruby-mode.el (auto-mode-alist)
6623 (interpreter-mode-alist): Purecopy strings.
6624
6625 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
6626
6627 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
6628 string for the hook, keymap and abbrev table.
6629
6630 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
6631
6632 * x-dnd.el (x-dnd-xdnd-to-action):
6633 * startup.el (fancy-startup-text, fancy-about-text): Change to
6634 defconst from defvar.
6635
6636 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
6637
6638 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
6639 Purecopy initialization strings.
6640
6641 * mail/sendmail.el (mail-header-separator)
6642 (mail-personal-alias-file):
6643 * mail/rmail.el (rmail-default-dont-reply-to-names)
6644 (rmail-ignored-headers, rmail-retry-ignored-headers)
6645 (rmail-highlighted-headers, rmail-secondary-file-directory)
6646 (rmail-secondary-file-regexp):
6647 * files.el (null-device, file-name-invalid-regexp)
6648 (locate-dominating-stop-dir-regexp)
6649 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
6650 (interpreter-mode-alist): Use mapcar instead of mapc.
6651
6652 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
6653
6654 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
6655 (completion-ignored-extensions):
6656 (debug-ignored-errors): Purecopy strings.
6657
6658 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6659
6660 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
6661 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
6662 (pcomplete--here): Use push.
6663
6664 * subr.el (all-completions): Declare the 4th arg obsolete.
6665
6666 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6667
6668 * pcomplete.el (pcomplete-unquote-argument-function): New var.
6669 (pcomplete-unquote-argument): New function.
6670 (pcomplete--common-suffix): Always pay attention to case.
6671 (pcomplete--table-subvert): Quote and unquote the text.
6672 (pcomplete--common-quoted-suffix): New function.
6673 (pcomplete-std-complete): Use it and pcomplete-begin.
6674
6675 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
6676 we're inside a dedicated or minibuffer window.
6677
6678 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6679
6680 * cedet/semantic/fw.el (semantic-alias-obsolete)
6681 (semantic-varalias-obsolete): Make the `when' arg mandatory.
6682 (define-mode-overload-implementation):
6683 * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
6684 * cedet/semantic/wisent.el (wisent-lex-make-token-table):
6685 * cedet/semantic/util.el (semantic-file-token-stream)
6686 (semantic-something-to-stream):
6687 * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
6688 (semantic-expand-nonterminal):
6689 * cedet/semantic/tag-file.el (semantic-find-nonterminal)
6690 (semantic-find-dependency, semantic-find-nonterminal)
6691 (semantic-find-dependency):
6692 * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
6693 (semantic-flex-text, semantic-flex-make-keyword-table)
6694 (semantic-flex-keyword-p, semantic-flex-keyword-put)
6695 (semantic-flex-keyword-get, semantic-flex-map-keywords)
6696 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
6697 * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
6698 * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
6699 (semantic-after-idle-scheduler-reparse-hooks):
6700 * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
6701 * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
6702 * cedet/semantic.el (semantic-toplevel-bovine-table)
6703 (semantic-toplevel-bovine-cache)
6704 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
6705 (semantic-init-mode-hooks, semantic-init-db-hooks)
6706 (semantic-bovination-working-type): Provide the `when' arg.
6707
6708 2009-10-24 Karl Fogel <kfogel@red-bean.com>
6709
6710 * bookmark.el: Update documentation, especially documentation
6711 of `bookmark-alist' and of the bookmark file format.
6712 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
6713
6714 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
6715
6716 * mail/emacsbug.el (report-emacs-bug): Clarify that the
6717 keybindings apply to the mail buffer (Bug#4003). Shrink help
6718 window to buffer.
6719
6720 * whitespace.el (whitespace-mode, whitespace-newline-mode)
6721 (global-whitespace-mode, global-whitespace-newline-mode)
6722 (whitespace-toggle-options, global-whitespace-toggle-options):
6723 Doc fix (Bug#3660).
6724
6725 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
6726 of xmltok-start before the end tag was inserted (Bug#2840).
6727
6728 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
6729 patterns that are preceded by an open-paren (Bug#1320).
6730
6731 2009-10-24 Sven Joachim <svenjoac@gmx.de>
6732
6733 * files.el (delete-directory): Delete symlinks to directories with
6734 delete-file (Bug#4739).
6735
6736 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
6737
6738 * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
6739 * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
6740 argument to make-obsolete.
6741
6742 * cedet/semantic/fw.el (semantic-alias-obsolete)
6743 (semantic-varalias-obsolete): Add optional WHEN argument.
6744
6745 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
6746
6747 * vc.el (vc-backend-for-registration): Rename from
6748 vc-get-backend-for-registration. Update callers.
6749
6750 * international/mule-cmds.el (set-language-info-alist):
6751 Purecopy lang-env.
6752 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
6753 (charset): Purecopy the name.
6754 (define-char-code-property): Purecopy string arguments.
6755
6756 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6757 Purecopy string arguments.
6758
6759 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6760 * ediff-hook.el (menu-bar-ediff-menu):
6761 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
6762 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
6763
6764 2009-10-24 Glenn Morris <rgm@gnu.org>
6765
6766 * comint.el (comint-dynamic-list-completions):
6767 * term.el (term-dynamic-list-completions): Use choose-completion rather
6768 than obsolete alias mouse-choose-completion.
6769
6770 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
6771 file-cache-choose-completion.
6772 (file-cache-choose-completion): Handle an optional event argument.
6773 (file-cache-mouse-choose-completion): Make it an obsolete alias.
6774
6775 * progmodes/octave-mod.el (octave-complete-symbol):
6776 Use choose-completion if mouse-choose-completion is ever removed.
6777
6778 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
6779 use.
6780
6781 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
6782 compiler.
6783
6784 * vc-hooks.el (vc-responsible-backend): Fix declaration.
6785
6786 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6787
6788 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
6789 Ignore `pred' now that we receive one.
6790 Handle test-completion specially.
6791
6792 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6793
6794 * vc.el (vc-responsible-backend): Throw an error if not backend is
6795 found. Remove the REGISTER argument. Move the code dealing with
6796 REGISTER ...
6797 (vc-get-backend-for-registration): ... here. New function.
6798 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
6799 of vc-responsible-backend, pass the file name instead of the
6800 directory name.
6801
6802 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
6803
6804 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
6805 New funs.
6806 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
6807 (pcomplete-comint-setup): Don't modify a global var via
6808 accidental side-effects.
6809 (pcomplete-shell-setup): Adjust call accordingly.
6810 (pcomplete-parse-comint-arguments): Use push.
6811
6812 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
6813
6814 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6815 Allow uncapitalized info node names (Bug#3921).
6816
6817 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
6818 to the DEBUG file (Bug#3781).
6819
6820 2009-10-23 Jari Aalto <jari.aalto@cante.net>
6821
6822 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
6823 dictionary entry (Bug#4579).
6824
6825 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
6826
6827 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
6828 from `rfn-eshadow-update-overlay-hook' when unloading.
6829 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
6830 "rsyncc". Adjust doc string.
6831 (tramp-temp-buffer-file-name): New buffer-local defvar.
6832 (tramp-handle-insert-file-contents, tramp-handle-write-region):
6833 Keep temporary file when indicated by method ("rsync" and
6834 "rsyncc").
6835 (tramp-handle-write-region): Handle APPEND.
6836 (tramp-delete-temp-file-function): New defun. Added to
6837 `kill-buffer-hook'.
6838
6839 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
6840
6841 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
6842
6843 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6844
6845 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
6846 (color-name-rgb-alist, tty-standard-colors)
6847 (tty-color-mode-alist): Change to defconst.
6848
6849 * simple.el (mark-inactive): Purecopy message.
6850
6851 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
6852 (global-map, yank-menu):
6853 * textmodes/ispell.el (ispell-menu-map):
6854 * net/eudc.el (eudc-tools-menu):
6855 * international/mule-cmds.el (describe-language-environment-map)
6856 (setup-language-environment-map, set-coding-system-map)
6857 (mule-menu-keymap):
6858 * vc-hooks.el (vc-menu-entry, vc-menu-map):
6859 * replace.el (occur-mode-map):
6860 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
6861
6862 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
6863
6864 * calc/calc.el (math-read-number, math-read-number-simple): Use
6865 `save-match-data'.
6866
6867 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6868
6869 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
6870 rather than fiddling with global-map bindings, since it should only
6871 affect per-terminal settings.
6872 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
6873
6874 * minibuffer.el (completion-table-with-terminator): Allow to specify
6875 the terminator-regexp.
6876
6877 * simple.el (switch-to-completions): Look for *Completions* in other
6878 frames as well.
6879
6880 * pcomplete.el: Allow the use of completion-tables.
6881 (pcomplete-std-complete): New command.
6882 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
6883 (pcomplete--here): Use a function for `form' rather than an expression,
6884 so it can be byte-compiled.
6885 (pcomplete-here, pcomplete-here*): Adjust accordingly.
6886 Add edebug declaration.
6887 (pcomplete-show-completions): Remove unused var `curbuf'.
6888 (pcomplete-do-complete, pcomplete-stub):
6889 Don't assume `completions' is a list of strings any more.
6890
6891 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
6892
6893 * find-dired.el (find-name-arg): Fix typo in docstring.
6894
6895 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6896
6897 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
6898 (pcmpl-linux-fs-types): Same, and update to new modules layout.
6899
6900 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
6901 pcomplete-entries.
6902
6903 * comint.el (comint-read-input-ring, comint-write-input-ring)
6904 (comint-substitute-in-file-name)
6905 (comint-dynamic-complete-as-filename)
6906 (comint-dynamic-simple-complete)
6907 (comint-dynamic-list-filename-completions)
6908 (comint-dynamic-list-completions)
6909 (comint-redirect-results-list-from-process): Minor simplifications.
6910
6911 2009-10-21 Kevin Ryde <user42@zip.com.au>
6912
6913 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6914 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
6915 the first form. And insert a blank line after ";;; Code" since
6916 that's usual style. (Bug#4612)
6917
6918 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
6919
6920 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6921
6922 * minibuffer.el (completion-table-with-terminator): Properly implement
6923 boundaries, in case `terminator' appears in the suffix.
6924 (completion--embedded-envvar-table): Don't return boundaries if
6925 there's no valid completion. Simplify.
6926 (completion-file-name-table): New completion table extracted from
6927 completion--file-name-table.
6928 (completion--file-name-table): Use it.
6929 (read-file-name-predicate): Declare obsolete.
6930 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6931 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6932 completion-file-name-table, and use the `pred' argument.
6933 * files.el (locate-file-completion-table): Use the `pred' arg rather
6934 than read-file-name-predicate.
6935 (abbreviate-file-name): Use \` rather than ^ for BOS.
6936
6937 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
6938
6939 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6940 vc-responsible-backend to register, it causes problems.
6941
6942 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6943
6944 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6945
6946 2009-10-21 Eric Ludlam <zappo@gnu.org>
6947
6948 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
6949 (semantic-c-debug-mode-init-pch): New functions.
6950 (semantic-c-debug-mode-init-last-mode): New var.
6951 (semantic-c-parse-lexical-token): Use them.
6952
6953 * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
6954 When extracting the argument list, limit only by point-max.
6955
6956 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
6957
6958 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6959 (tramp-smb-handle-file-attributes): Use it.
6960 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6961 (tramp-smb-handle-insert-directory): Use `mapc' rather than
6962 `mapcar'. Use `tramp-smb-get-stat-capability'.
6963 Add `dired-filename' text properties.
6964 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6965 (tramp-smb-maybe-open-connection): Simplify check for smbclient
6966 version.
6967
6968 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6969
6970 * subr.el (read-key-delay): Reduce to 0.01.
6971 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6972 (bug#4751).
6973
6974 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6975
6976 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6977
6978 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6979 (Info-menu): Remove unused vars `last' and `completions'.
6980 (Info-index-nodes): Remove unused var `node'.
6981
6982 * info.el (Info-complete-menu-item): Use complete-with-action.
6983
6984 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
6985
6986 Make vc-annotate work through copies and renames.
6987 * vc-annotate.el (vc-annotate-extract-revision-at-line):
6988 Return the file name too.
6989 (vc-annotate-revision-at-line)
6990 (vc-annotate-find-revision-at-line)
6991 (vc-annotate-revision-previous-to-line)
6992 (vc-annotate-show-log-revision-at-line): Update to get the file
6993 name from vc-annotate-extract-revision-at-line.
6994 (vc-annotate-show-diff-revision-at-line-internal): Change the
6995 argument to mean whether to show a file diff or not. Get the file
6996 name from vc-annotate-extract-revision-at-line.
6997 (vc-annotate-show-diff-revision-at-line):
6998 Update vc-annotate-show-diff-revision-at-line call.
6999 (vc-annotate-warp-revision): Add an optional file argument.
7000
7001 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
7002 (vc-git-annotate-extract-revision-at-line): Also return the file
7003 name if found.
7004
7005 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
7006 command. Remove unused code.
7007 (vc-hg-annotate-re): Update to match --follow output.
7008 (vc-hg-annotate-extract-revision-at-line): Also return the file
7009 name if found.
7010
7011 * vc.el: Update annotate-extract-revision-at-line documentation.
7012
7013 2009-10-18 Kevin Ryde <user42@zip.com.au>
7014
7015 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
7016 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
7017
7018 * net/browse-url.el (browse-url): Identify alist with "consp and
7019 not functionp" and let all other things go down the `apply' leg,
7020 as suggested by Stefan. (Further to bug#4531.)
7021
7022 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
7023
7024 * minibuffer.el (read-file-name): Check for repeat before putting
7025 a default argument in file-name-history (Bug#4657).
7026
7027 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
7028 read syntax (Bug#4737).
7029
7030 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
7031
7032 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7033
7034 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
7035 (html-tag-alist, html-tag-help): Add descriptions for undocumented
7036 entries and make note of obsolete tags.
7037
7038 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
7039
7040 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
7041
7042 2009-10-18 Glenn Morris <rgm@gnu.org>
7043
7044 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
7045 grep, so that binary files (eg international/uni-bidi.el) can match.
7046 Remove test for "UnicodeData" files, since it is hopefully unnecessary
7047 now, and in any case the file header format has changed.
7048
7049 2009-10-17 Glenn Morris <rgm@gnu.org>
7050
7051 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
7052 (flyspell-get-word, flyspell-large-region)
7053 (flyspell-auto-correct-previous-word): Doc/error message fixes.
7054
7055 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
7056
7057 * Makefile.in (ELCFILES): Add ede/shell.
7058
7059 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
7060
7061 * term/common-win.el (x-colors): Purecopy it.
7062
7063 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7064
7065 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
7066 permissive for when the buffer is empty.
7067 (tar-header-block-tokenize): Decode the username and groupname.
7068 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
7069
7070 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
7071
7072 * cedet/srecode/srt.el:
7073 * cedet/srecode/compile.el:
7074 * cedet/semantic/mru-bookmark.el:
7075 * cedet/semantic/debug.el:
7076 * cedet/semantic/complete.el:
7077 * cedet/semantic/analyze.el: Require CL when compiling.
7078
7079 2009-10-17 Eric Ludlam <zappo@gnu.org>
7080
7081 * cedet/semantic/scope.el
7082 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
7083 tmpscope so that the regular scope will continue to work.
7084
7085 * cedet/semantic/idle.el (semantic-idle-tag-highlight):
7086 Use semantic-idle-summary-highlight-face as the highlighting.
7087
7088 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
7089 contains multibyte characters, choose first applicable coding
7090 system automatically.
7091
7092 * cedet/ede/project-am.el (project-run-target): New method.
7093 (project-run-target): New method.
7094
7095 * cedet/ede.el (ede-target): Add run target menu item.
7096 (ede-project, ede-minor-keymap): Add ede-run-target binding.
7097 (ede-run-target): New function.
7098 (ede-target::project-run-target): New method.
7099
7100 * cedet/ede/proj.el (project-run-target): New method.
7101
7102 * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
7103 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
7104 Add :rules.
7105 (ede-proj-target-makefile-shared-object): Only libtool compilers
7106 now available. Add linkers for libtool.
7107 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
7108 (ede-proj-makefile-target-name): Always use .la extension.
7109
7110 * cedet/ede/proj-prog.el (project-run-target): New method.
7111
7112 * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
7113 (ede-g++-linker): Change Change link lines.
7114
7115 * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
7116 When searching for old variables, go to the end of the buffer and
7117 search backward from there.
7118 (ede-proj-makefile-automake-insert-subdirs)
7119 (ede-proj-makefile-automake-insert-extradist): New methods.
7120 (ede-proj-makefile-create): Use them.
7121
7122 * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
7123 Force FILE to expand to the current target. Use file-exists-p to
7124 check that it exists.
7125
7126 * cedet/ede/linux.el (ede-linux-version): Don't call "head".
7127 (ede-linux-load): Wrap dir in file-name-as-directory.
7128 Set :version slot.
7129
7130 * cedet/ede/files.el (ede-get-locator-object): When enabling
7131 locate, do so on "top".
7132
7133 * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
7134 file-name-as-directory during compare.
7135 (ede-emacs-version): Return Emacs/XEmacs differentiator.
7136 Get version number from different places. Don't call egrep.
7137 (ede-emacs-load): Set :version slot. Call file-name-as-directory
7138 to set the directory.
7139
7140 * cedet/ede/shell.el: New file.
7141
7142 * cedet/inversion.el (inversion-decoders): Allow for stray . in
7143 alpha/beta variants.
7144
7145 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7146
7147 * international/mule-cmds.el (select-safe-coding-system): If the file
7148 has a coding cookie, use it regardless of any other setting (bug#4712).
7149
7150 2009-10-17 Glenn Morris <rgm@gnu.org>
7151
7152 * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
7153 All errors should have messages.
7154
7155 * foldout.el (foldout-mouse-swallow-events):
7156 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
7157
7158 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
7159 (dired-keep-marker-copy, dired-keep-marker-hardlink)
7160 (dired-keep-marker-symlink, dired-dwim-target)
7161 (dired-copy-preserve-time): Do not autoload these defcustoms.
7162
7163 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
7164 messages from messing up the file coding. (Bug#4623)
7165
7166 2009-10-17 Jari Aalto <jari.aalto@cante.net>
7167
7168 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
7169 if no match is found for the current dictionary. (Bug#4578)
7170
7171 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
7172 optional, since that is how it is documented, and this is often called
7173 with a nil argument. (Bug#4577)
7174 (flyspell-external-point-words, flyspell-auto-correct-word)
7175 (flyspell-correct-word-before-point, flyspell-word-search-forward)
7176 (flyspell-word-search-backward): Remove nil argument in calls to
7177 flyspell-get-word, since it is not needed now.
7178
7179 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
7180
7181 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
7182
7183 2009-10-16 Glenn Morris <rgm@gnu.org>
7184
7185 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
7186
7187 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
7188
7189 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
7190 (ange-ftp-file-size): New function.
7191 (ange-ftp-file-attributes): Use it.
7192
7193 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
7194
7195 * net/tramp-smb.el (tramp-smb-version): New defvar.
7196 (tramp-smb-maybe-open-connection): Use it, in order to avoid
7197 repeated checks.
7198
7199 2009-10-16 Glenn Morris <rgm@gnu.org>
7200
7201 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
7202 Maybe copy some custom properties from old to new name. (Bug#4706)
7203
7204 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
7205
7206 * subr.el (error, sit-for, start-process-shell-command)
7207 (start-file-process-shell-command): Set the calling convention
7208 after the function definition.
7209
7210 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
7211
7212 * subr.el (error, sit-for, start-process-shell-command)
7213 (start-file-process-shell-command): Use the new
7214 set-advertised-calling-convention feature.
7215
7216 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
7217
7218 * international/ucs-normalize.el (ucs-normalize-version):
7219 Change to 1.2.
7220 (check-range): Adjust for Unicode 5.2.
7221
7222 2009-10-15 Juri Linkov <juri@jurta.org>
7223
7224 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
7225 to the `menu-item' format.
7226
7227 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
7228
7229 * net/tramp.el (tramp-replace-environment-variables): Do not fail
7230 if the environment variable does not exist.
7231
7232 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7233 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
7234 parameter.
7235 (tramp-smb-handle-add-name-to-file)
7236 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
7237 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
7238 (tramp-smb-handle-file-attributes)
7239 (tramp-smb-do-file-attributes-with-stat)
7240 (tramp-smb-handle-file-local-copy)
7241 (tramp-smb-handle-insert-directory)
7242 (tramp-smb-handle-make-directory)
7243 (tramp-smb-handle-make-directory-internal)
7244 (tramp-smb-handle-make-symbolic-link)
7245 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
7246 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
7247 (tramp-smb-maybe-open-connection): Apply the changed parameters.
7248 (tramp-smb-read-file-entry): Read Disk names in compressed format.
7249 Handle long file names.
7250 (tramp-smb-get-cifs-capabilities): Check, whether the connection
7251 process is running.
7252 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
7253 Read share names with "-g" option.
7254
7255 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
7256
7257 * net/rcirc.el (rcirc-view-log-file): New command.
7258 (rcirc-track-minor-mode-map): Remove C-c ` binding.
7259 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
7260 specified.
7261
7262 2009-10-15 Glenn Morris <rgm@gnu.org>
7263
7264 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
7265 from the second command-line argument.
7266 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
7267 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
7268 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
7269 w32-batch-update-autoloads.
7270 * emacs-lisp/autoload.el (autoload-make-program): New variable.
7271 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
7272
7273 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
7274 the headers cannot be located. Simplify, subtracting superflous
7275 save-excursions.
7276
7277 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
7278
7279 Replace completion-base-size by completion-base-position to fix bugs
7280 such as (bug#4699).
7281 * simple.el (completion-base-position): New var.
7282 (completion-base-size): Mark as obsolete.
7283 (choose-completion): Make it work for mouse events as well.
7284 Pass the new base-position to choose-completion-string.
7285 (choose-completion-guess-base-position): New function, extracted from
7286 choose-completion-delete-max-match.
7287 (choose-completion-delete-max-match): Use it. Make obsolete.
7288 (choose-completion-string): Use the new base-position info.
7289 (completion-root-regexp): Delete.
7290 (completion-setup-function): Preserve completion-base-position.
7291 Eliminate obsolete base-size manipulation.
7292 * minibuffer.el (display-completion-list): Don't mess with base-size.
7293 (minibuffer-completion-help): Set completion-base-position instead.
7294 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
7295 choose-completion.
7296 * textmodes/bibtex.el (bibtex-complete):
7297 * emacs-lisp/crm.el (crm--choose-completion-string):
7298 Adjust to new calling convention.
7299 * complete.el (partial-completion-mode): Use minibufferp to avoid
7300 bumping into incompatible change to choose-completion-string-functions.
7301 * ido.el (ido-choose-completion-string): Make its calling convention
7302 more permissive.
7303 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
7304 base-size manipulation.
7305 (comint-dynamic-list-input-ring): Use dotimes and push.
7306 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
7307 fundamental-mode. Use `or'.
7308
7309 2009-10-14 Juri Linkov <juri@jurta.org>
7310
7311 * misearch.el (multi-isearch-next-buffer-from-list)
7312 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
7313
7314 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7315
7316 * Makefile.in (compile-onefile): Load `bytecomp' rather than
7317 `bytecomp.el'.
7318
7319 * minibuffer.el (completion-pcm--merge-completions): Make sure the
7320 string we return is all made up of text from the completions rather
7321 than part from the completions and part from the input (bug#4219).
7322
7323 * ido.el (ido-everywhere): Use define-minor-mode.
7324
7325 * buff-menu.el (list-buffers, ctl-x-map):
7326 Mark the entry points with ;;;###autoload cookies.
7327
7328 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
7329
7330 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
7331 correctly in the detached head case.
7332 (vc-git-print-log): Remove unused binding.
7333
7334 * vc.el (vc-responsible-backend): When a directory is passed for
7335 for registration create a VC repository if no backend is
7336 responsible for the directory argument.
7337 (vc-deduce-fileset): Tell vc-responsible-backend to register.
7338
7339 * vc.el: Move comments about RCS and SCCS ...
7340 * vc-rcs.el:
7341 * vc-sccs.el: ... here, respectively.
7342
7343 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7344
7345 * minibuffer.el (completion--file-name-table): Return nil if there's
7346 no file completion, even if substitute-in-file-name changed
7347 the string (bug#4708).
7348
7349 2009-10-13 Juri Linkov <juri@jurta.org>
7350
7351 * files-x.el (read-file-local-variable-value): Don't filter out
7352 minor modes from mode name completion (bug#4664).
7353
7354 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
7355
7356 * international/mule-cmds.el (ucs-names): Remove exclusion of
7357 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
7358
7359 2009-10-13 Kenichi Handa <handa@m17n.org>
7360
7361 * international/uni-name.el: Regenerated.
7362
7363 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
7364
7365 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
7366 should be automatically buffer-local, but isn't.)
7367
7368 2009-10-12 Sam Steingold <sds@gnu.org>
7369
7370 * progmodes/compile.el (compilation-next-error-function): Fix the
7371 timestamps if the buffer has been visited before.
7372 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
7373 non-anchored patterns, like the perl one (bug#3928).
7374
7375 2009-10-12 Glenn Morris <rgm@gnu.org>
7376
7377 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
7378 Let-bind `size'.
7379
7380 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
7381
7382 * proced.el (proced-unload-function): New function.
7383
7384 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
7385 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
7386 Doc fix.
7387
7388 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
7389
7390 2009-10-11 Juri Linkov <juri@jurta.org>
7391
7392 * files-x.el (read-file-local-variable-value):
7393 Provide default value only for bound variables (bug#4664).
7394
7395 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
7396
7397 * net/tramp.el (tramp-local-host-p): Function shall return nil for
7398 connection methods like smb.
7399
7400 * net/tramp-cache.el (tramp-flush-connection-property): The hash
7401 can be empty.
7402
7403 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7404 (tramp-smb-file-name-handler-alist): Add handlers for
7405 `add-name-to-file', `make-symbolic-link'.
7406 (tramp-smb-handle-add-name-to-file)
7407 (tramp-smb-do-file-attributes-with-stat)
7408 (tramp-smb-handle-make-symbolic-link)
7409 (tramp-smb-get-cifs-capabilities): New defuns.
7410 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
7411 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
7412 (tramp-smb-handle-file-local-copy)
7413 (tramp-smb-handle-make-directory-internal)
7414 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
7415 The file name syntax depends on cifs capabilities.
7416 (tramp-smb-handle-file-attributes):
7417 Call `tramp-smb-do-file-attributes-with-stat' if possible.
7418 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
7419 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
7420
7421 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
7422
7423 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
7424 (eieio-defclass): Apply deftype handler and setf-method properties
7425 directly.
7426 (eieio-add-new-slot): Avoid union function from cl library.
7427 (eieio--typep): New function.
7428 (eieio-perform-slot-validation): Use it.
7429
7430 2009-10-10 Karl Fogel <kfogel@red-bean.com>
7431
7432 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
7433 Update documentation to refer to the variables documented in r1.135.
7434 (Bug#4188)
7435
7436 2009-10-10 Karl Fogel <kfogel@red-bean.com>
7437
7438 * bookmark.el (Info-suffix-list): Remove this unused variable.
7439 (bookmark-current-point): Remove this obsolete variable.
7440 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
7441 Adjust for removal of bookmark-current-point.
7442
7443 (bookmarks-already-loaded, bookmark-current-buffer)
7444 (bookmark-yank-point): Document. (Bug#4188)
7445
7446 2009-10-10 Glenn Morris <rgm@gnu.org>
7447
7448 * frame.el (frame-height): Doc fix.
7449
7450 * calendar/calendar.el (calendar-split-width-threshold): New option.
7451 (calendar-basic-setup): Use calendar-split-width-threshold.
7452
7453 2009-10-10 Sascha Wilde <wilde@sha-bang.de>
7454
7455 * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
7456 Use .la for Automake.
7457
7458 2009-10-09 Chong Yidong <cyd@stupidchicken.com>
7459
7460 * cedet/ede/pconf.el (ede-proj-configure-synchronize):
7461 Use "autoreconf -i". Suggested by Andreas Schwab.
7462
7463 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
7464
7465 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
7466 Ideographic Supplement" range (U+1F200..U+1F2FF).
7467
7468 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7469
7470 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
7471 since the list will have been rebuilt anyway. (Bug#4349)
7472
7473 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7474
7475 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
7476 (bookmark-bmenu-execute-deletions): Don't save here, as
7477 bookmark-delete will now do so if necessary.
7478 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
7479 (Bug#4348)
7480
7481 2009-10-09 Glenn Morris <rgm@gnu.org>
7482
7483 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
7484
7485 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7486
7487 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
7488 (bookmark-jump-other-window): Just invoke bookmark-jump with new
7489 argument now, so the two function's behaviors will match. (Bug#3645)
7490
7491 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
7492
7493 * cedet/ede/proj.el (project-make-dist, project-compile-project):
7494 Fix filename test.
7495 (ede-proj-dist-makefile): Use expand-file-name instead of concat
7496 to expand file names.
7497
7498 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
7499
7500 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
7501 (tramp-file-name-real-host, tramp-file-name-port):
7502 Apply `save-match-data'.
7503
7504 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
7505 case both directories are remote.
7506 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
7507 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
7508
7509 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
7510
7511 * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
7512 (ede-proj-target-makefile-objectcode): Use it.
7513
7514 * cedet/ede/source.el (ede-want-any-source-files-p)
7515 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
7516 Return search result. This error was introduced while merging.
7517
7518 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
7519
7520 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
7521
7522 2009-10-07 Glenn Morris <rgm@gnu.org>
7523
7524 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
7525 of concat.
7526
7527 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7528
7529 * files-x.el (read-file-local-variable): Include some
7530 non-user-variables in the completion table (bug#4664).
7531
7532 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
7533
7534 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
7535 message.
7536
7537 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7538 (tramp-smb-file-name-handler-alist): Add handler for
7539 `copy-directory', `expand-file-name', `set-file-modes'.
7540 (tramp-smb-handle-copy-directory)
7541 (tramp-smb-handle-expand-file-name)
7542 (tramp-smb-handle-set-file-modes): New defuns.
7543 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
7544 (tramp-smb-handle-file-attributes): Simplify check for retrieving
7545 entry.
7546 (tramp-smb-handle-insert-directory): Don't flush the cache.
7547 (tramp-smb-maybe-open-connection): Check for samba client and
7548 server versions.
7549
7550 2009-10-07 Eli Zaretskii <eliz@gnu.org>
7551
7552 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
7553 to not error out of search for "^lisp=" fails.
7554
7555 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
7556
7557 * makefile.w32-in (WINS_UPDATES): New macro.
7558 (custom-deps, finder-data, autoloads): Use it.
7559
7560 2009-10-07 Glenn Morris <rgm@gnu.org>
7561
7562 * Makefile.in (autoloads): Revert previous change.
7563 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
7564 the list of preloaded files passed on the command-line, get
7565 it from src/Makefile.
7566
7567 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
7568 show the original buffer rather than a random one.
7569
7570 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
7571
7572 * help.el (describe-no-warranty): Place point in a slightly better
7573 position in the GPLv3 text.
7574
7575 2009-10-06 Sam Steingold <sds@gnu.org>
7576
7577 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
7578 the comm attribute is present before calling regexp-quote.
7579
7580 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
7581
7582 * play/animate.el (animate-string): For good effect, make sure
7583 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
7584
7585 * play/animate.el (animate-sequence, animate-birthday-present):
7586 * misc.el (butterfly): Don't set `indent-tabs-mode'.
7587
7588 2009-10-06 Glenn Morris <rgm@gnu.org>
7589
7590 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
7591
7592 * emacs-lisp/autoload.el (autoload-excludes): New variable.
7593 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
7594 (batch-update-autoloads): Process a string value of autoload-excludes,
7595 set during the build process.
7596 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
7597
7598 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
7599 inside with-parsed... macro so that `v' is defined.
7600
7601 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
7602 * progmodes/fortran.el (fortran-end-of-block)
7603 (fortran-beginning-of-block):
7604 Also push mark in the macro case.
7605
7606 * emerge.el (emerge-show-file-name):
7607 * calc/calc.el (calc-quit):
7608 * calc/calc-misc.el (calc-big-or-small):
7609 * calc/calc-graph.el (calc-graph-view):
7610 * calc/calc-ext.el (calc-reset):
7611 * calendar/calendar.el (calendar-basic-setup):
7612 Use window-full-height-p.
7613
7614 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
7615 header we don't understand, don't insert another. (Bug#4624)
7616 If changing mime charset, insert the new one in the right place.
7617
7618 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
7619
7620 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
7621 (cal-tex-cursor-month): Correctly increment the end date for diary and
7622 holiday listing. (Bug#4626)
7623
7624 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7625
7626 * help-fns.el (describe-function-1): Don't burp if the function is not
7627 a symbol.
7628
7629 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
7630
7631 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
7632 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
7633 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
7634 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
7635
7636 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
7637 (eieio-default-superclass): Reflow docstrings.
7638 (this, class-option-assoc, defclass, eieio-class-un-autoload)
7639 (eieio-unbind-method-implementations, defmethod)
7640 (eieio-validate-slot-value, eieio-validate-class-slot-value)
7641 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
7642 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
7643 (eieio-slot-originating-class-p, eieio-slot-name-index)
7644 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
7645 (constructor, initialize-instance, no-next-method, object-print)
7646 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
7647 Fix typos in docstrings.
7648 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
7649 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
7650 (next-method-p): Doc fixes.
7651 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
7652 Fix typos in error messages.
7653 (eieio-defmethod): Fix typo in description of generic method.
7654
7655 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
7656 (eieio-persistent-save-interactive, slot-missing):
7657 Fix typos in docstrings.
7658 (eieio-instance-inheritor-slot-boundp): Doc fix.
7659
7660 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
7661 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
7662
7663 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
7664 (eieio-custom-object-apply-reset):
7665 Fix typos in docstrings and error messages.
7666
7667 * emacs-lisp/eieio-datadebug.el (data-debug-show):
7668 Fix typo in docstring.
7669
7670 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
7671 (eieio-browse-tree): Doc fix.
7672 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
7673 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
7674 Fix typos in docstrings.
7675
7676 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
7677 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
7678 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
7679 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
7680 Reflow docstrings.
7681
7682 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
7683
7684 * vc-hg.el (log-view-vc-backend): Declare for compiler.
7685 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
7686 Set log-view-vc-backend so that diff can work.
7687
7688 * log-view.el (log-view-diff): Use vc-diff-internal instead of
7689 vc-version-diff.
7690 (vc-diff-internal): Autoload this instead of vc-version-diff.
7691
7692 2009-10-05 Eli Zaretskii <eliz@gnu.org>
7693
7694 * simple.el (eval-expression): Doc fix.
7695
7696 * progmodes/cwarn.el (cwarn-mode): Doc fix.
7697
7698 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
7699
7700 * files.el (directory-files-no-dot-files-regexp): New defconst.
7701 (delete-directory): Use it.
7702 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
7703
7704 * net/tramp.el (tramp-verbose): Fix docstring.
7705 (tramp-methods): Add recursive option to `tramp-copy-args'.
7706 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
7707 "scp1_old", "scp2_old", "rsync", "rsyncc".
7708 (tramp-default-method): Check also for `auth-source-user-or-password'.
7709 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
7710 Add handler for `copy-directory'.
7711 (tramp-handle-copy-directory): New defun.
7712 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
7713 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
7714 Optimize sent command.
7715
7716 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7717
7718 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
7719 window if necessary.
7720
7721 * calendar/calendar.el (calendar-basic-setup): Don't call
7722 switch-to-buffer in a dedicated window.
7723
7724 2009-10-05 Karl Fogel <kfogel@red-bean.com>
7725
7726 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
7727 don't do anything related to relocating, just return nil.
7728 (bookmark-error-no-filename): New error.
7729 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
7730 bookmark has no file. Don't even attempt to handle things that
7731 are not files; the whole point of custom handlers is to keep that
7732 knowledge elsewhere anyway. Tighten some comments.
7733 (bookmark-file-or-variation-thereof): Remove now-unused function.
7734 (bookmark-location): Doc string fix.
7735 (Bug#4250)
7736
7737 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7738
7739 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
7740 don't use a file dialog, because they usually don't know how to read
7741 a directory target from the user. (Bug#4230)
7742 Also, make sure the prompt can display directories as well as files.
7743
7744 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7745
7746 * bookmark.el (bookmark-set, bookmark-buffer-name):
7747 Improve doc strings. (Bug#1193)
7748
7749 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7750
7751 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
7752 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
7753 (bookmark-get-annotation, bookmark-set-annotation)
7754 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
7755 (bookmark-set-position, bookmark-get-front-context-string)
7756 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
7757 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
7758 (bookmark-jump-other-window, bookmark-handle-bookmark)
7759 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
7760 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
7761 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
7762 Improve doc strings to say whether bookmark can be a string or
7763 a record or both, and make other consistency and clarity fixes.
7764 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
7765 (bookmark-default-annotation-text, bookmark-yank-word)
7766 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
7767 (bookmark-import-new-list, bookmark-maybe-rename)
7768 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7769 (bookmark-bmenu-bookmark): Give these doc strings.
7770 (bookmark-bmenu-check-position): Give this a doc string, but also
7771 add a FIXME comment about how the function may be pointless.
7772 (bookmark-default-handler): Rework doc string and change a
7773 parameter name, to clarify that this takes a bookmark record
7774 not a bookmark name.
7775 (bookmark-set): Change a parameter name to indicate its meaning,
7776 and improve the doc string a bit.
7777 (Bug#4188)
7778
7779 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7780
7781 * bookmark.el (bookmark-alist): Document the new `handler' element
7782 in the param alist.
7783 (bookmark-make-record-function): Adjust documentation for above.
7784 (Bug#4193)
7785
7786 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7787
7788 * info.el (Info-bookmark-make-record): Document this function.
7789 (Info-bookmark-jump): Document with a doc string, not just a comment.
7790 (Bug#4203)
7791
7792 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
7793
7794 * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
7795 (semantic-new-buffer-fcn): Call parser setup functions here.
7796 (semantic-mode): Don't call parser setup functions here, it's done
7797 in semantic-new-buffer-fcn now.
7798 (semantic-mode): Parse all existing buffers when enabled.
7799
7800 * cedet/srecode/compile.el (srecode-compile-file):
7801 Call semantic-new-buffer-fcn if the buffer has not been parsed.
7802
7803 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
7804
7805 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
7806
7807 * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
7808 (proj-comp-insert-variable-once): New macro, renamed from
7809 ede-pmake-insert-variable-once in ede/pmake.edl.
7810 (ede-proj-makefile-insert-variables): Use it.
7811
7812 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
7813
7814 * files.el (copy-directory): New defun.
7815
7816 * dired-aux.el (dired-copy-file-recursive): Use it.
7817
7818 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
7819
7820 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
7821 (makefile-end-of-command):
7822 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
7823 (semantic-end-of-context): Fix previous change. Doc fixes.
7824
7825 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
7826
7827 * files-x.el (modify-dir-local-variable)
7828 (copy-dir-locals-to-file-locals-prop-line):
7829 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
7830 (makefile-end-of-command):
7831 * cedet/semantic/lex.el (semantic-lex-token):
7832 * cedet/semantic/analyze/fcn.el
7833 (semantic-analyze-dereference-metatype-1):
7834 * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
7835 (semantic-lex-cpp-undef):
7836 * cedet/semantic/wisent/wisent.el (wisent-skip-block):
7837 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
7838 (semantic-end-of-context): Fix typos in docstrings.
7839
7840 * recentf.el (recentf-unload-function): New function.
7841
7842 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
7843
7844 * cedet/ede.el (ede-project-placeholder-cache-file):
7845 * cedet/semantic/db-file.el (semanticdb-default-save-directory):
7846 * cedet/srecode/map.el (srecode-map-save-file):
7847 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
7848
7849 2009-10-04 Glenn Morris <rgm@gnu.org>
7850
7851 * window.el (window-full-height-p): Add doc string.
7852
7853 2009-10-04 Martin Rudalics <rudalics@gmx.at>
7854
7855 * window.el (window-full-height-p): New function. (Bug#4543)
7856
7857 2009-10-03 Chong Yidong <cyd@stupidchicken.com>
7858
7859 * cedet/srecode/insert.el: Require srecode/args.
7860
7861 * cedet/srecode/args.el: Require srecode/dictionary instead of
7862 srecode/insert.
7863
7864 * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
7865
7866 * files.el (auto-mode-alist): Add .srt and Project.ede.
7867
7868 * cedet/semantic.el (semantic-mode):
7869 Handle srecode-template-mode-hook as well.
7870 (semantic-mode): Use js-mode-hook for Javascript hook.
7871
7872 * cedet/srecode/template.el: Remove hook variable.
7873
7874 * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
7875
7876 * cedet/ede.el (ede-target-forms-menu): Don't enable if no
7877 projects exist.
7878 (ede-project-placeholder-cache-file): Default to a file in
7879 user-emacs-directory.
7880
7881 * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
7882 templates in data-directory.
7883 (srecode-map-save-file): Default to a file in user-emacs-directory.
7884
7885 * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
7886 directory.
7887
7888 2009-09-30 Eric Ludlam <zappo@gnu.org>
7889
7890 * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
7891 Doc fix.
7892
7893 * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
7894 Only insert each variable once.
7895
7896 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
7897 (ede-pmake-insert-variable-shared): Use it.
7898
7899 * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
7900 for lexical table iff table is nil.
7901
7902 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
7903
7904 * vc.el: Remove commented out code.
7905 (vc-derived-from-dir-mode): Remove, unused.
7906 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
7907
7908 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
7909
7910 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
7911 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
7912 there could be recursive loading when `default-directory' is a
7913 remote file name. (Bug#4614)
7914
7915 2009-10-03 Glenn Morris <rgm@gnu.org>
7916
7917 * calendar/calendar.el (calendar-basic-setup): Handle the case where
7918 the frame is wide.
7919 (calendar-generate-window): Test for shrinkability rather than width.
7920
7921 * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
7922 declaration, currently false.
7923
7924 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
7925 reusing existing buffers, in case we happen to visit two files with the
7926 same basename. (Bug#4593)
7927
7928 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7929
7930 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
7931 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
7932 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
7933 subdirs of cedet as well.
7934 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
7935
7936 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
7937
7938 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
7939 Obey advertised-signature-table.
7940
7941 * help-fns.el (help-function-arglist): Don't check
7942 advertised-signature-table.
7943 (describe-function-1): Do it here instead so it also applies to subrs.
7944
7945 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
7946
7947 * simple.el (start-file-process): Say in the doc-string, that file
7948 handlers might not support pty association, if PROGRAM is nil.
7949
7950 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
7951 HOST and USER are strings. They are nil, when there are
7952 incomplete entries in ~/.netrc, for example.
7953 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
7954 root directory ("device busy" error otherwise).
7955
7956 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
7957 Flush file properties of created directory.
7958
7959 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7960
7961 * makefile.w32-in (WINS_BASIC): Remove cedet.
7962 (WINS_CEDET): Add cedet.
7963 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
7964
7965 2009-10-02 Kevin Ryde <user42@zip.com.au>
7966
7967 * net/browse-url.el (browse-url): Pass any symbol in
7968 browse-url-browser-function to `apply', since if you've mistakenly put
7969 an unbound symbol then the error is clearer. (Bug#4531)
7970
7971 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
7972
7973 * allout.el (allout-init, allout-back-to-current-heading)
7974 (allout-beginning-of-current-entry, allout-ascend-to-depth)
7975 (allout-ascend, allout-up-current-level, allout-end-of-level)
7976 (allout-previous-visible-heading, allout-forward-current-level)
7977 (allout-backward-current-level, allout-show-children):
7978 * apropos.el (apropos-describe-plist):
7979 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
7980 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
7981 * completion.el (add-completion, add-permanent-completion):
7982 * descr-text.el (describe-text-category, describe-char):
7983 * desktop.el (desktop-lazy-abort):
7984 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
7985 * dired.el (dired-build-subdir-alist):
7986 * ediff.el (ediff-version):
7987 * elide-head.el (elide-head, elide-head-show):
7988 * emerge.el (emerge-version):
7989 * env.el (getenv):
7990 * face-remap.el (variable-pitch-mode):
7991 * faces.el (describe-face):
7992 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
7993 (dired-at-point):
7994 * files.el (find-file-existing, auto-save-mode):
7995 * font-lock.el (font-lock-fontify-buffer):
7996 * help-fns.el (describe-function, describe-variable)
7997 (describe-syntax, describe-categories):
7998 * help.el (view-lossage, describe-bindings, describe-key)
7999 (describe-mode):
8000 * hexl.el (hexl-current-address):
8001 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
8002 * info.el (Info-goto-emacs-key-command-node):
8003 * log-edit.el (log-edit-insert-cvs-template)
8004 (log-edit-insert-cvs-rcstemplate):
8005 * menu-bar.el (menu-bar-mode):
8006 * mouse.el (mouse-appearance-menu):
8007 * newcomment.el (comment-indent-new-line):
8008 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
8009 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
8010 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
8011 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
8012 * recentf.el (recentf-mode):
8013 * savehist.el (savehist-mode, savehist-save):
8014 * shadowfile.el (shadow-copy-files):
8015 * simple.el (kill-ring-save, next-line, previous-line)
8016 (normal-erase-is-backspace-mode):
8017 * strokes.el (strokes-update-window-configuration)
8018 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
8019 (strokes-xpm-for-stroke):
8020 * time.el (emacs-uptime, emacs-init-time):
8021 * tutorial.el (tutorial--describe-nonstandard-key)
8022 (tutorial--detailed-help):
8023 * type-break.el (type-break-mode)
8024 (type-break-mode-line-message-mode, type-break-query-mode)
8025 (type-break-guesstimate-keystroke-threshold):
8026 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
8027 * version.el (emacs-version):
8028 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
8029 * winner.el (winner-mode):
8030 * calendar/timeclock.el (timeclock-in, timeclock-out)
8031 (timeclock-status-string, timeclock-change)
8032 (timeclock-workday-remaining-string)
8033 (timeclock-workday-elapsed-string)
8034 (timeclock-when-to-leave-string):
8035 * calendar/todo-mode.el (todo-add-category):
8036 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
8037 * emacs-lisp/autoload.el (update-file-autoloads):
8038 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
8039 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
8040 (checkdoc-message-text, checkdoc-defun):
8041 * emacs-lisp/debug.el (debugger-list-functions):
8042 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8043 * emacs-lisp/eieio-opt.el (eieio-describe-class)
8044 (eieio-describe-generic):
8045 * emacs-lisp/lisp-mnt.el (lm-synopsis):
8046 * emacs-lisp/shadow.el (list-load-path-shadows):
8047 * emulation/cua-base.el (cua-mode):
8048 * emulation/edt.el (edt-set-scroll-margins):
8049 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
8050 (tpu-toggle-regexp, tpu-toggle-search-direction)
8051 (tpu-toggle-rectangle, tpu-toggle-control-keys):
8052 * emulation/tpu-extras.el (tpu-set-scroll-margins):
8053 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
8054 (viper-set-parsing-style-toggling-macro)
8055 (viper-set-emacs-state-searchstyle-macros):
8056 * emulation/viper.el (viper-set-hooks):
8057 * eshell/esh-mode.el (eshell-truncate-buffer):
8058 * international/mule-cmds.el (prefer-coding-system)
8059 (describe-input-method, describe-language-environment):
8060 * international/mule-diag.el (list-character-sets)
8061 (describe-character-set, describe-coding-system)
8062 (describe-fontset, list-fontsets, list-input-methods):
8063 * mail/sendmail.el (mail-signature):
8064 * net/ange-ftp.el (ange-ftp-copy-file):
8065 * net/browse-url.el (browse-url):
8066 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
8067 * net/quickurl.el (quickurl-add-url):
8068 * net/rcirc.el (names, topic):
8069 * net/xesam.el (xesam-mode):
8070 * play/5x5.el (5x5-new-game):
8071 * play/yow.el (apropos-zippy):
8072 * progmodes/ada-mode.el (ada-mode-version):
8073 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
8074 (f90-end-of-block)
8075 (f90-beginning-of-block):
8076 * progmodes/fortran.el (fortran-end-of-block)
8077 (fortran-beginning-of-block):
8078 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
8079 * progmodes/python.el (python-describe-symbol, python-shell):
8080 * term/ns-win.el (ns-print-buffer):
8081 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
8082 * textmodes/flyspell.el (flyspell-mode-on):
8083 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
8084 (pages-directory-for-addresses):
8085 * textmodes/table.el (table-recognize-cell)
8086 (table-query-dimension, table-generate-source)
8087 (table-insert-sequence, table--warn-incompatibility):
8088 * textmodes/tex-mode.el (tex-validate-buffer):
8089 * textmodes/texinfmt.el (texinfmt-version)
8090 (texinfo-format-buffer):
8091 Use `called-interactively-p' instead of `interactive-p'.
8092
8093 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
8094
8095 * image-mode.el (image-toggle-display):
8096 * emacs-lisp/elp.el (elp-instrument-function):
8097 * emacs-lisp/advice.el (ad-make-advised-definition):
8098 * emacs-lisp/easy-mmode.el (define-minor-mode):
8099 * net/browse-url.el (browse-url-maybe-new-window):
8100 * progmodes/sh-script.el (sh-learn-buffer-indent):
8101 Pass new argument 'any to `called-interactively-p'.
8102
8103 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
8104
8105 * international/uni-bidi.el:
8106 * international/uni-category.el:
8107 * international/uni-combining.el:
8108 * international/uni-comment.el:
8109 * international/uni-decimal.el:
8110 * international/uni-decomposition.el:
8111 * international/uni-digit.el:
8112 * international/uni-lowercase.el:
8113 * international/uni-mirrored.el:
8114 * international/uni-name.el:
8115 * international/uni-numeric.el:
8116 * international/uni-old-name.el:
8117 * international/uni-titlecase.el:
8118 * international/uni-uppercase.el:
8119 Regenerate from Unicode 5.2.0 data.
8120
8121 2009-10-01 Glenn Morris <rgm@gnu.org>
8122
8123 * Makefile.in (ELCFILES): Regenerate.
8124
8125 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8126
8127 * subr.el (interactive-p): Mark obsolete.
8128 (called-interactively-p): Make the optional-ness of `kind' obsolete.
8129 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
8130 advertised-signature-table for subroutines as well.
8131
8132 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
8133 (set-advertised-calling-convention): New function.
8134 (make-obsolete, define-obsolete-function-alias)
8135 (make-obsolete-variable, define-obsolete-variable-alias):
8136 Make the optional-ness of `when' obsolete.
8137 (define-obsolete-face-alias): Make `when' non-optional.
8138 * help-fns.el (help-function-arglist):
8139 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
8140 Use advertised-signature-table.
8141
8142 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
8143
8144 * files.el (delete-directory): New defun. The original function
8145 in fileio.c has been renamed to `delete-directory-internal'.
8146
8147 * dired.el (dired-delete-file): Call `delete-directory' with
8148 RECURSIVE parameter.
8149
8150 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
8151 parameter RECURSIVE. Implementation is missing.
8152
8153 * net/tramp.el (tramp-handle-make-directory): Flush upper
8154 directory's file properties.
8155 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
8156 (tramp-handle-dired-recursive-delete-directory): Flush directory
8157 properties after the remove command only.
8158
8159 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
8160 Handle optional parameter RECURSIVE.
8161
8162 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
8163 Handle optional parameter RECURSIVE.
8164
8165 * net/tramp-smb.el (tramp-smb-errors): Add error message for
8166 connection timeout.
8167 (tramp-smb-handle-delete-directory): Handle optional parameter
8168 RECURSIVE.
8169
8170 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8171
8172 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
8173 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
8174 (byte-compile-defmacro): Use backquotes.
8175
8176 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
8177
8178 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
8179 has no associated file.
8180 (vc-resynch-buffer): Use vc-dir-buffers.
8181
8182 2009-10-01 Glenn Morris <rgm@gnu.org>
8183
8184 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
8185 (chart-file-count):
8186 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
8187 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
8188 * emacs-lisp/eieio-opt.el (eieio-describe-class):
8189 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
8190 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
8191 (eieio-copy-parents-into-subclass, make-instance, class-children)
8192 (eieio-generic-form):
8193 * cedet/cedet-files.el (cedet-directory-name-to-file-name):
8194 * cedet/cedet-idutils.el (cedet-idutils-search)
8195 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
8196 (cedet-idutils-version-check):
8197 * cedet/cedet.el (cedet-version):
8198 * cedet/data-debug.el (data-debug-insert-overlay-button)
8199 (data-debug-insert-overlay-list-button)
8200 (data-debug-insert-buffer-button)
8201 (data-debug-insert-buffer-list-button)
8202 (data-debug-insert-process-button, data-debug-insert-ring-button)
8203 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
8204 (data-debug-insert-stuff-vector-button)
8205 (data-debug-insert-symbol-button, data-debug-insert-string)
8206 (data-debug-insert-number, data-debug-insert-lambda-expression)
8207 (data-debug-insert-nil, data-debug-insert-simple-thing)
8208 (data-debug-insert-custom, data-debug-edebug-expr):
8209 * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
8210 (global-ede-mode-map, ede-new, ede-debug-target)
8211 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
8212 * cedet/semantic.el (semantic-minimum-working-buffer-size)
8213 (semantic-fetch-tags, semantic-submode-list)
8214 (semantic-default-submodes):
8215 * cedet/ede/source.el (ede-source-match):
8216 * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
8217 (project-am-package-info):
8218 * cedet/ede/proj.el (ede-proj-target, project-new-target):
8219 * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
8220 * cedet/ede/proj-comp.el (ede-current-build-list):
8221 * cedet/ede/makefile-edit.el (makefile-move-to-macro):
8222 * cedet/ede/files.el (ede-toplevel-project-or-nil):
8223 * cedet/ede/cpp-root.el (initialize-instance):
8224 * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
8225 (autoconf-parameter-strip, autoconf-insert-new-macro):
8226 * cedet/semantic/wisent.el (wisent-lex-eoi):
8227 * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
8228 (semantic-show-parser-state-mode):
8229 * cedet/semantic/texi.el (semantic-texi-environment-regexp):
8230 * cedet/semantic/tag.el (semantic-tag-new-variable)
8231 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
8232 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
8233 (semantic--tag-deep-copy-tag-list)
8234 (semantic-tag-components-with-overlays-default):
8235 * cedet/semantic/symref.el (semantic-symref-find-text):
8236 * cedet/semantic/senator.el (senator-yank-tag)
8237 (senator-transpose-tags-up):
8238 * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
8239 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
8240 * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
8241 * cedet/semantic/lex.el (semantic-lex-comment-regex)
8242 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
8243 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
8244 * cedet/semantic/lex-spp.el
8245 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
8246 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
8247 * cedet/semantic/idle.el
8248 (semantic-idle-summary-current-symbol-info-brutish)
8249 (semantic-idle-summary-current-symbol-info-default):
8250 * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
8251 (semantic--grammar-macro-compl-dict):
8252 * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
8253 * cedet/semantic/format.el (semantic-format-tag-custom-list)
8254 (semantic-format-tag-canonical-name-default):
8255 * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
8256 (semantic-find-tags-for-completion)
8257 (semantic-find-tags-by-scope-protection-default)
8258 (semantic-deep-find-tags-for-completion):
8259 * cedet/semantic/edit.el
8260 (semantic-edits-incremental-reparse-failed-hook)
8261 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
8262 (semantic-edits-splice-remove, semantic-edits-splice-replace):
8263 * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
8264 * cedet/semantic/dep.el (semantic-dependency-include-path):
8265 * cedet/semantic/db.el (semanticdb-default-find-index-class)
8266 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
8267 (semanticdb-project-roots):
8268 * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
8269 (semanticdb-find-adebug-insert-scanned-tag-cons)
8270 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
8271 (semanticdb-brute-deep-find-tags-for-completion):
8272 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
8273 * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
8274 (semantic-end-of-context-default)
8275 (semantic-ctxt-current-function-default)
8276 (semantic-ctxt-scoped-types-default):
8277 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
8278 (semantic-complete-inline-tag-engine)
8279 (semantic-complete-inline-custom-type)
8280 (semantic-complete-read-tag-analyzer):
8281 * cedet/semantic/chart.el (semantic-chart-tags-by-class)
8282 (semantic-chart-database-size):
8283 * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
8284 (semantic-analyze-current-context):
8285 * cedet/semantic/symref/list.el (semantic-symref)
8286 (semantic-symref-hide-buffer, semantic-symref-symbol):
8287 * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
8288 * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
8289 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
8290 * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
8291 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
8292 (semantic-c-dereference-template):
8293 * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
8294 (semantic--analyze-refs-full-lookup-with-parents)
8295 (semantic--analyze-refs-full-lookup-simple):
8296 * cedet/semantic/analyze/complete.el
8297 (semantic-analyze-possible-completions):
8298 * cedet/srecode/table.el (srecode-mode-table-new):
8299 * cedet/srecode/srt.el (srecode-read-variable-name):
8300 * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
8301 * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
8302 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
8303 * cedet/srecode/map.el (srecode-current-map):
8304 * cedet/srecode/insert.el (srecode-insert)
8305 (srecode-insert-variable-secondname-handler, srecode-insert-method)
8306 (srecode-template-inserter-point-override)
8307 (srecode-insert-include-lookup):
8308 * cedet/srecode/getset.el (srecode-auto-choose-class):
8309 * cedet/srecode/extract.el (srecode-inserter-extract):
8310 * cedet/srecode/document.el
8311 (srecode-document-autocomment-return-last-alist)
8312 (srecode-document-autocomment-param-type-alist)
8313 (srecode-document-insert-function-comment)
8314 (srecode-document-insert-variable-one-line-comment)
8315 (srecode-document-function-name-comment):
8316 * cedet/srecode/dictionary.el (srecode-create-dictionary)
8317 (srecode-compound-toString):
8318 * cedet/srecode/compile.el (srecode-flush-active-templates):
8319 * cedet/srecode/args.el (srecode-semantic-handle-:blank):
8320 Doc/message fixes.
8321
8322 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
8323 match-data. (Bug#4555).
8324
8325 * cedet/semantic/bovine/gcc.el
8326 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
8327 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
8328
8329 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
8330 rather than parsing it as a regexp. This relaxes the layout
8331 requirements and makes errors easier to detect.
8332 (check-declare-verify): Check file is regular.
8333 (check-declare-directory): Doc fix.
8334 * subr.el (declare-function): Doc fix.
8335
8336 * ibuffer.el (ibuffer-format-qualifier):
8337 * isearch.el (hi-lock-regexp-okay):
8338 * calc/calc.el (math-zerop):
8339 * mail/uce.el (rmail-msgbeg, rmail-msgend):
8340 * term/w32-win.el (setup-default-fontset, set-fontset-font):
8341 Remove unused declarations.
8342
8343 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
8344
8345 * cedet/semantic/wisent/javat-wy.el
8346 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
8347
8348 2009-09-30 Juanma Barranquero <lekktu@gmail.com>
8349
8350 * cedet/srecode/expandproto.el: Fix provide statement.
8351
8352 2009-09-30 Eric Ludlam <zappo@gnu.org>
8353
8354 * emacs-lisp/eieio.el (boolean-p): Delete.
8355
8356 2009-09-30 Sascha Wilde <wilde@sha-bang.de>
8357
8358 * cedet/ede/srecode.el: Fix provide statement.
8359
8360 2009-09-30 Glenn Morris <rgm@gnu.org>
8361
8362 * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
8363 * cedet/ede/proj-aux.el (ede-aux-source):
8364 * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
8365 (ede-misc-source):
8366 * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
8367 (semantic-mrub-switch-tags): Fix doc typos.
8368
8369 * cedet/semantic/db-global.el (data-debug-new-buffer)
8370 (data-debug-insert-thing): Remove unneeded declarations (one broken).
8371 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
8372
8373 * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
8374
8375 * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
8376 use of CL function `remove-if-not'.
8377
8378 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
8379
8380 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
8381 filename is not a string.
8382
8383 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
8384
8385 * files.el (safe-local-eval-forms): Fix typo.
8386
8387 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
8388
8389 * vc-hooks.el (vc-dir-buffers): New var.
8390 (vc-state-refresh): New function.
8391 (vc-state): Use it.
8392 (vc-after-save): Always ask the backend to recompute the new state.
8393 Always call vc-dir if necessary, using vc-dir-buffers.
8394 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
8395 Use vc-dir-buffers.
8396 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
8397 (vc-dir-prepare-status-buffer, vc-dir-update)
8398 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
8399 Don't call expand-file-name on default-directory.
8400
8401 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
8402
8403 * speedbar.el (speedbar-item-delete):
8404 * calc/calc-prog.el (calc-kbd-if):
8405 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
8406
8407 * epa.el (epa-key-list-mode-map):
8408 * hi-lock.el (hi-lock-menu): Fix typos in menus.
8409
8410 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
8411 (hs-show-hook): Fix typo in docstring.
8412
8413 2009-09-29 Glenn Morris <rgm@gnu.org>
8414
8415 * cedet/semantic/symref/idutils.el:
8416 * cedet/semantic/symref/list.el: Relicense under GPLv3+.
8417
8418 * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
8419
8420 * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
8421 * cedet/semantic/tag-file.el (semanticdb-table-child-p):
8422 * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
8423 Mark declarations not understood by check-declare.
8424
8425 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
8426 file-name-nondirectory call preventing location of cedet files.
8427 (check-declare-verify): Use literal search rather than re-search.
8428 Add basic defmethod and defclass, and define-overloadable-function.
8429
8430 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
8431 Use tramp-compat-file-attributes rather than nonexistent
8432 tramp-compat-handle-file-attributes.
8433
8434 * Makefile.in (lisptagsfiles4): New.
8435 (AUTOGENEL): Add cedet loaddefs files.
8436 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
8437 (update-elclist, compile-always, backup-compiled-files)
8438 (bootstrap-clean): Add yet another directory level.
8439 (update-elclist): Use LC_COLLATE rather than COLLATE.
8440 (ELCFILES): Update, via `make update-elclist'.
8441
8442 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
8443
8444 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
8445 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
8446 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
8447
8448 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
8449
8450 * Makefile.in (lisptagsfiles3): Define.
8451 (TAGS, TAGS-LISP): Use it.
8452 (update-elclist): Add third directory level to look for elc files.
8453 (compile-always): Likewise.
8454 (backup-compiled-files): Likewise.
8455 (bootstrap-clean): Likewise.
8456 (ELCFILES): Update.
8457
8458 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
8459
8460 * Makefile.in (ELCFILES): Add CEDET files.
8461
8462 2009-09-28 Eric Ludlam <zappo@gnu.org>
8463
8464 CEDET (development tools) package merged.
8465
8466 * cedet/*.el:
8467 * cedet/ede/*.el:
8468 * cedet/semantic/*.el:
8469 * cedet/srecode/*.el: New files.
8470
8471 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
8472
8473 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
8474
8475 * net/tramp.el (top): Require tramp-imap.
8476
8477 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
8478 Use `tramp-compat-handle-file-attributes'.
8479
8480 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
8481
8482 * net/tramp-imap.el: New package.
8483
8484 2009-09-28 Eric Ludlam <zappo@gnu.org>
8485
8486 * emacs-lisp/chart.el:
8487 * emacs-lisp/eieio-base.el:
8488 * emacs-lisp/eieio-comp.el:
8489 * emacs-lisp/eieio-custom.el:
8490 * emacs-lisp/eieio-datadebug.el:
8491 * emacs-lisp/eieio-opt.el:
8492 * emacs-lisp/eieio-speedbar.el:
8493 * emacs-lisp/eieio.el: New files.
8494
8495 * cedet/cedet-cscope.el:
8496 * cedet/cedet-files.el:
8497 * cedet/cedet-global.el:
8498 * cedet/cedet-idutils.el:
8499 * cedet/data-debug.el:
8500 * cedet/inversion.el:
8501 * cedet/mode-local.el:
8502 * cedet/pulse.el: New files.
8503
8504 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8505
8506 * whitespace.el (whitespace-trailing-regexp)
8507 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
8508 Fix doc string.
8509
8510 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
8511
8512 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
8513 menu.
8514
8515 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
8516 menu-bar-ediff-menu.
8517
8518 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
8519 define-overloadable-function.
8520
8521 * progmodes/autoconf.el: Provide autoconf as well, so that this
8522 file can be `require'd.
8523
8524 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
8525
8526 * emacs-lisp/autoload.el (generated-autoload-feature)
8527 (generated-autoload-load-name): New vars.
8528 (autoload-rubric, autoload-generate-file-autoloads): Use them.
8529 (make-autoload): Recognize define-overloadable-function and
8530 defclass forms (for EIEIO).
8531
8532 * Makefile.in (update-subdirs): Exclude cedet directory.
8533
8534 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8535
8536 * term/ns-win.el: Don't set the region face background. (Bug#4381)
8537
8538 * faces.el: Default light-background background for region face to
8539 ns_selection_color under NS.
8540
8541 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
8542
8543 * net/imap-hash.el: New library, see NEWS.
8544
8545 * Makefile.in (ELCFILES): Add imap-hash.el.
8546
8547 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
8548
8549 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
8550 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
8551 * help-macro.el (make-help-screen): Avoid using an ambiguous function
8552 definition where the docstring could be taken for the return value.
8553
8554 2009-09-26 Glenn Morris <rgm@gnu.org>
8555
8556 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
8557 Add option to only show images below a certain size.
8558 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
8559 save-excursion calls.
8560
8561 2009-09-26 Eli Zaretskii <eliz@gnu.org>
8562
8563 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
8564 subdirectories) and eieio.
8565
8566 2009-09-26 Alan Mackenzie <acm@muc.de>
8567
8568 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
8569 buggy bracketing. (Bug#4289)
8570
8571 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
8572 character constants (as case labels). (Bug#4289)
8573
8574 2009-09-25 Juri Linkov <juri@jurta.org>
8575
8576 * files.el (safe-local-eval-forms): Allow time-stamp in
8577 before-save-hook (Bug#4554).
8578
8579 2009-09-25 Drew Adams <drew.adams@oracle.com>
8580
8581 * menu-bar.el (list-buffers-directory): Doc fix.
8582
8583 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
8584
8585 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
8586 Try and avoid copying twice the same paragraph.
8587 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
8588 Remove save-excursion.
8589 (log-edit-changelog-entry): Do it here instead.
8590
8591 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
8592
8593 * bs.el (bs--get-file-name): Use `list-buffers-directory'
8594 when available, instead of hardcoding mode names. Doc fix.
8595
8596 * menu-bar.el (list-buffers-directory): Add docstring.
8597 Make automatically buffer-local.
8598
8599 * dired.el (dired-mode):
8600 * files.el (cd-absolute):
8601 * pcvs.el (cvs-temp-buffer):
8602 * pcvs-util.el (cvs-get-buffer-create):
8603 * shell.el (shell-mode):
8604 * vc-dir.el (vc-dir-mode):
8605 Don't make `list-buffers-directory' buffer local.
8606
8607 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
8608
8609 * comint.el (comint-exec, comint-run, make-comint):
8610 Doc fixes (Bug#4542).
8611
8612 2009-09-25 Glenn Morris <rgm@gnu.org>
8613
8614 * mail/rmailmm.el (rmail-mime): New custom group.
8615 Move all defcustoms in this file into this group.
8616 (rmail-mime-media-type-handlers-alist): Revert previous change.
8617 (rmail-mime-show-images): New option.
8618 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
8619 references to it, since it wasn't actually used for anything.
8620 (rmail-mime-insert-image): New function.
8621 (rmail-mime-image): Use rmail-mime-insert-image.
8622 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
8623 obey the value of `rmail-mime-show-images' option. Print the size of
8624 attachments.
8625
8626 2009-09-25 David Engster <deng@randomsample.de>
8627
8628 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
8629
8630 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8631
8632 * whitespace.el: Does not highlight trailing spaces While point is
8633 at end of line. Does not highligt spaces at beginning of buffer
8634 while point is at beginning of buffer. Does not highlight spaces
8635 at end of buffer while point is at end of buffer. (Bug#4177)
8636 New version 12.0.
8637 (whitespace-display-mappings): Adjust initialization.
8638 (whitespace-point, whitespace-font-lock-refontify): New vars.
8639 (whitespace-color-on, whitespace-color-off): Adjust code.
8640 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
8641 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
8642 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
8643
8644 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
8645
8646 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
8647
8648 * textmodes/sgml-mode.el: Remove xml-mode alias.
8649
8650 * files.el (auto-mode-alist, conf-mode-maybe)
8651 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
8652
8653 2009-09-24 Alan Mackenzie <acm@muc.de>
8654
8655 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
8656 c-forward-conditionals, but it doesn't move point and doesn't set
8657 the mark.
8658 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
8659 (c-down-conditional-with-else, c-backward-conditional)
8660 (c-forward-conditional): Refactor to use c-scan-conditionals.
8661
8662 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8663
8664 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
8665 (help-default-arg-highlight): Remove.
8666 (help-highlight-arg): New function.
8667 (help-do-arg-highlight): Use it.
8668 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
8669
8670 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
8671
8672 * term.el (term-set-scroll-region, term-handle-ansi-escape):
8673 Undo last change, which didn't fix the problem and introduced others.
8674
8675 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
8676
8677 * progmodes/gdb-mi.el: Don't require speedbar.
8678 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
8679
8680 2009-09-24 Glenn Morris <rgm@gnu.org>
8681
8682 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
8683
8684 * term/ns-win.el (ns-reg-to-script): Define for compiler.
8685
8686 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
8687 there is no newline after the final mime boundary. (Bug#4539)
8688 Move markers on insertion so that any buttons inserted don't end up in
8689 the next part of a multipart message.
8690 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
8691 (rmail-mime-bulk-handler): Optionally handle images.
8692 (rmail-mime-image): New button action.
8693 (rmail-mime-image-handler): New function.
8694 (rmail-mime-mode): New mode.
8695 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
8696
8697 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
8698
8699 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
8700 than just dropping elements from it (bug#4504).
8701
8702 * term.el (term-set-scroll-region): Don't move cursor any more.
8703 (term-handle-ansi-escape): Call term-goto here instead.
8704 Suggested by Ivan Kanis <apple@kanis.eu>.
8705
8706 * term.el: Require CL.
8707 (term-ansi-reset): New function.
8708 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
8709 (term-handle-colors-array): Simplify.
8710
8711 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8712
8713 * allout.el (allout-overlay-interior-modification-handler)
8714 (allout-obtain-passphrase):
8715 * epa-file.el (epa-file-write-region):
8716 * ps-print.el (ps-begin-job):
8717 * vc-hooks.el (vc-toggle-read-only):
8718 * vc-rcs.el (vc-rcs-rollback):
8719 * vc-sccs.el (vc-sccs-rollback):
8720 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
8721 (vc-version-diff, vc-revert, vc-rollback):
8722 * wdired.el (wdired-check-kill-buffer):
8723 * emacs-lisp/authors.el (authors):
8724 * net/socks.el (socks-open-connection):
8725 * net/zeroconf.el (zeroconf-service-add-hook):
8726 * obsolete/vc-mcvs.el (vc-mcvs-register):
8727 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
8728 (gdb-select-frame):
8729 * progmodes/grep.el (lgrep, rgrep):
8730 * progmodes/idlw-help.el (idlwave-help-check-locations)
8731 (idlwave-help-html-link, idlwave-help-assistant-open-link):
8732 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
8733 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
8734 (reftex-toc-rename-label): Fix typos in error messages.
8735
8736 * dired-aux.el (dired-do-shell-command): Reflow docstring.
8737 (dired-copy-how-to-fn): Doc fix.
8738 (dired-files-attributes, dired-read-shell-command):
8739 Fix typos in docstrings.
8740
8741 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
8742 (dired-x-find-file-other-window): Reflow docstrings.
8743 (dired-omit-marker-char, dired-read-shell-command)
8744 (dired-x-submit-report): Fix typos in docstrings.
8745
8746 * shell.el (shell-mode-hook):
8747 * view.el (View-scroll-line-forward):
8748 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
8749 Fix typos in docstrings.
8750
8751 * net/dig.el (dig-invoke): Fix typo in docstring.
8752 (query-dig): Reflow docstring.
8753
8754 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
8755 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
8756 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
8757 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
8758 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
8759 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
8760 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
8761 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
8762 (idlwave-completion-map, idlwave-current-indent)
8763 (idlwave-custom-ampersand-surround, idlwave-customize)
8764 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
8765 (idlwave-define-abbrev, idlwave-determine-class-special)
8766 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
8767 (idlwave-end-block-reg, idlwave-end-of-statement)
8768 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
8769 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
8770 (idlwave-explicit-class-listed, idlwave-file-header)
8771 (idlwave-fill-paragraph, idlwave-find-class-definition)
8772 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
8773 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
8774 (idlwave-in-quote, idlwave-indent-action-table)
8775 (idlwave-indent-expand-table, idlwave-indent-line)
8776 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
8777 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
8778 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
8779 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
8780 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
8781 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
8782 (idlwave-outlawed-buffers, idlwave-popup-select)
8783 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
8784 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
8785 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
8786 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
8787 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
8788 (idlwave-statement-type, idlwave-struct-skip)
8789 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
8790 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
8791 (idlwave-what-module-find-class): Fix typos in docstrings.
8792 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
8793 (idlwave-calculate-cont-indent, idlwave-expand-equal)
8794 (idlwave-find-module, idlwave-find-structure-definition)
8795 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
8796 (idlwave-list-load-path-shadows, idlwave-next-statement)
8797 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
8798 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
8799 (idlwave-template): Reflow docstrings.
8800
8801 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
8802 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
8803 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
8804 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
8805 (idlwave-shell-display-line, idlwave-shell-display-wframe)
8806 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
8807 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
8808 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
8809 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
8810 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
8811 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
8812 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
8813 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
8814 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
8815 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
8816 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
8817 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
8818 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
8819 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
8820 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
8821 Fix typos in docstrings.
8822 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
8823 (idlwave-shell-hide-output, idlwave-shell-mode)
8824 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
8825 Reflow docstrings.
8826
8827 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
8828
8829 2009-09-24 Ivan Kanis <apple@kanis.eu>
8830
8831 * term.el (term-bold-attribute): New var.
8832 (term-handle-colors-array): Use it.
8833
8834 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
8835
8836 * progmodes/gdb-mi.el (gdb-version): New variable.
8837 (gdb-non-stop-handler): Set gdb-version.
8838 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
8839 Condition "--thread" option on gdb-version.
8840 (gdb-invalidate-threads): Remove unused argument.
8841
8842 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8843
8844 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
8845 to looking-back to avoid ridiculous slow down in large files (bug#4511).
8846
8847 2009-09-23 Glenn Morris <rgm@gnu.org>
8848
8849 * mail/rmail.el (rmail-reply): Don't try to add a References header when
8850 replying to mail without References or Message-Id. (Bug#4525)
8851
8852 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
8853
8854 * term/ns-win.el (ns-reg-to-script): New variable.
8855
8856 2009-09-23 Daiki Ueno <ueno@unixuser.org>
8857
8858 * epg.el (epg-wait-for-status): Preserve existing 'error results.
8859
8860 2009-09-22 Sam Steingold <sds@gnu.org>
8861
8862 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
8863 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
8864 to 1 because hg returns status 1 when nothing is found.
8865 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
8866
8867 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
8868
8869 * textmodes/fill.el: Convert to utf-8 encoding.
8870 (fill-french-nobreak-p): Remove redundant » and « inherited from our
8871 pre-unicode days.
8872
8873 * add-log.el (change-log-fill-forward-paragraph): New function.
8874 (change-log-mode): Use it so fill-region DTRT.
8875 Set fill-indent-according-to-mode here rather than in
8876 change-log-fill-paragraph.
8877 (change-log-fill-paragraph): Remove.
8878
8879 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
8880
8881 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
8882 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
8883
8884 2009-09-22 Glenn Morris <rgm@gnu.org>
8885
8886 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
8887 the scroll-bar scroll the calendar window rather than the buffer.
8888
8889 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
8890 commands that move point (as opposed to scrolling).
8891
8892 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
8893
8894 * emacs-lisp/elint.el (elint): New custom group.
8895 (elint-log-buffer): Make it a defcustom.
8896 (elint-scan-preloaded, elint-ignored-warnings)
8897 (elint-directory-skip-re): New options.
8898 (elint-builtin-variables): Doc fix.
8899 (elint-preloaded-env): New variable.
8900 (elint-unknown-builtin-args): Add an entry for encode-time.
8901 (elint-extra-errors): Make it a variable rather than a constant.
8902 (elint-preloaded-skip-re): New constant.
8903 (elint-directory): Skip files matching elint-directory-skip-re.
8904 (elint-features): New variable, local to linted buffers.
8905 (elint-update-env): Initialize elint-features. Possibly add
8906 elint-preloaded-env to the buffer's environment.
8907 (elint-get-top-forms): Bind elint-current-pos, for log messages.
8908 Skip quoted forms.
8909 (elint-init-form): New function, extracted from elint-init-env.
8910 Make non-list forms a warning rather than an error.
8911 Add the mode-map for define-derived-mode. Handle define-minor-mode,
8912 easy-menu-define, put that adds an error-condition, and provide.
8913 When requiring cl, also require cl-macs. Really require cl, to handle
8914 some cl macros. Store required libraries in the list elint-features,
8915 so as not to re-load them. Treat cc-require like require.
8916 (elint-init-env): Call elint-init-form to do the work.
8917 Handle eval-and-compile and such like.
8918 (elint-add-required-env): Do not clear messages.
8919 (elint-special-forms): Add handlers for function, defalias, if, when,
8920 unless, and, or.
8921 (elint-form): Add optional argument to ignore elint-special-forms,
8922 useful to prevent recursive calls from handlers. Doc fix.
8923 Respect elint-ignored-warnings.
8924 (elint-form): Respect elint-ignored-warnings.
8925 (elint-bound-variable, elint-bound-function): New variables.
8926 (elint-unbound-variable): Respect elint-bound-variable.
8927 (elint-get-args): Respect elint-bound-function.
8928 (elint-check-cond-form): Add some simple handling for (f)boundp and
8929 featurep tests.
8930 (elint-check-defalias-form): New handler.
8931 (elint-check-let-form): Make an empty let a warning rather than an
8932 error.
8933 (elint-check-setq-form): Make an empty setq a warning rather than an
8934 error. Respect elint-ignored-warnings.
8935 (elint-check-defvar-form): Accept null doc-strings.
8936 (elint-check-conditional-form): New handler. Does some simple-minded
8937 checking of featurep and (f)boundp tests.
8938 (elint-put-function-args): New function.
8939 (elint-initialize): Use elint-scan-doc-file rather than
8940 elint-find-builtin-variables. Use elint-put-function-args.
8941 Possibly scan preloaded-file-list.
8942 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
8943 extend to handle functions as well.
8944
8945 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
8946
8947 * linum.el (linum-delete-overlays, linum-update-window):
8948 Do not modify the right margin. (Bug#3971)
8949
8950 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
8951
8952 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
8953 nxml-mode instead of xml-mode.
8954
8955 2009-09-21 Kevin Ryde <user42@zip.com.au>
8956
8957 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
8958
8959 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8960
8961 * net/dig.el (dig-mode): Use define-derived-mode.
8962
8963 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
8964
8965 * vc-dispatcher.el (vc-do-command): Return the process object in
8966 the asynchronous case. Use when instead of if. Do not run
8967 vc-exec-after to display a message if not enabled. (Bug#4463)
8968
8969 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
8970 properties to the stash strings.
8971 (vc-git-stash-list): Return a list of strings.
8972 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
8973 (vc-git-stash-show-at-point): New functions.
8974 (vc-git-stash-map): New keymap.
8975
8976 * register.el (ctl-x-r-map): Define the keys here instead of
8977 using autoload.
8978
8979 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
8980
8981 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
8982 list, to workaround performance problem (bug#4485).
8983
8984 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
8985
8986 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
8987
8988 2009-09-20 Daiki Ueno <ueno@unixuser.org>
8989
8990 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8991 Document that this option is not recommended to use.
8992
8993 2009-09-19 Glenn Morris <rgm@gnu.org>
8994
8995 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
8996 variable `var'.
8997
8998 * calc/calc-alg.el (var):
8999 * calc/calcalg2.el (var): Define for compiler.
9000
9001 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
9002
9003 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
9004 Doc fix (Bug#3932).
9005
9006 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
9007
9008 * time-stamp.el (time-stamp-month-dd-yyyy)
9009 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
9010 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
9011 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
9012 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
9013 Remove functions that have been obsolete since 1995 (Bug#4436).
9014
9015 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
9016 indent buffer only if called interactively (Bug#4452).
9017
9018 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
9019 Eli Zaretskii <eliz@gnu.org>
9020
9021 This fixes bug#4197 (merged to bug#865, though not identical).
9022 * server.el (server-auth-dir): Add docstring note about FAT32.
9023 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
9024 but warn against using them.
9025
9026 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
9027
9028 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
9029 older GDB where there is no has_more field.
9030
9031 2009-09-19 Glenn Morris <rgm@gnu.org>
9032
9033 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
9034
9035 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
9036
9037 * files.el (auto-mode-alist): Change default for XML files to nXML
9038 mode (Bug#4169).
9039
9040 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
9041
9042 * server.el (server-ensure-safe-dir): Pass 'integer
9043 to `file-attributes', as suggested.
9044
9045 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
9046
9047 * dired-aux.el (dired-query-alist): Remove spurious backslash.
9048 (dired-query): Use read-key.
9049
9050 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
9051
9052 * cus-start.el (ns-use-qd-smoothing): Remove.
9053
9054 2009-09-18 Glenn Morris <rgm@gnu.org>
9055
9056 * allout.el (top-level): Remove unnecessary progn.
9057
9058 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
9059
9060 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
9061 definition of abbrev table.
9062
9063 * speedbar.el (speedbar-track-mouse):
9064 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
9065 * net/eudc.el (eudc-expand-inline):
9066 * net/newst-backend.el (newsticker--cache-read-feed):
9067 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
9068 condition-case handlers.
9069
9070 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
9071
9072 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
9073 (gdb-var-list): Add an element for has_more field.
9074 (gdb-non-stop-handler): Enable pretty printing for STL containers.
9075 (gdb-var-create-handler, gdb-var-list-children-handler-1)
9076 (gdb-var-update-handler-1): Parse output of dynamic variable
9077 objects (STL containers).
9078 (gdb-var-delete-1): Pass var1 as an explicit second argument.
9079 (gdb-get-field): Delete alias. Use bindat-get-field directly.
9080
9081 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
9082 gdb-var-list.
9083 (gud-speedbar-buttons): Make node expandable if expression "has more"
9084 children.
9085
9086 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
9087
9088 * startup.el (emacs-quick-startup): Remove variable and all uses.
9089 (command-line): Set `inhibit-x-resources' instead.
9090 (command-line-1): Use `inhibit-x-resources' instead.
9091
9092 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
9093
9094 * subr.el: Fix last change to avoid using the `unless' macro,
9095 which breaks bootstrapping.
9096
9097 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9098
9099 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
9100 extended definitions, in case we reload subr.el after having
9101 loaded CL.
9102 (eval-next-after-load): Mark as obsolete.
9103
9104 2009-09-17 Juri Linkov <juri@jurta.org>
9105
9106 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
9107 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
9108 (menu-bar-showhide-menu, menu-bar-tools-menu)
9109 (menu-bar-describe-menu, menu-bar-help-menu)
9110 (minibuffer-local-completion-map, minibuffer-local-map):
9111 Fix list quoting.
9112
9113 2009-09-17 Glenn Morris <rgm@gnu.org>
9114
9115 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
9116 arguments, whether or not it has a handler.
9117
9118 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
9119
9120 * simple.el (hard-newline): Give it a doc-string.
9121
9122 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
9123 (lisp-mode-syntax-table): Give them doc-strings.
9124
9125 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
9126
9127 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
9128 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
9129 (menu-bar-options-menu, menu-bar-showhide-menu)
9130 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
9131 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
9132 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
9133 (menu-bar-options-menu, menu-bar-tools-menu)
9134 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
9135 (menu-bar-help-menu):
9136 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
9137 string arguments.
9138
9139 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
9140 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
9141 calls for the menu names and :help.
9142
9143 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9144
9145 * mouse.el (minor-mode-menu-from-indicator): Pay attention
9146 to :minor-mode-function (bug#4455).
9147
9148 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9149
9150 * startup.el (command-line): Initialize the window-system after
9151 processing the command-line.
9152
9153 * textmodes/page.el (what-page): Make sure we don't inf-loop if
9154 page-delimiter matches the empty string.
9155
9156 2009-09-16 Glenn Morris <rgm@gnu.org>
9157
9158 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
9159 byte-compile-not-obsolete-var. It's a list now.
9160 (byte-compile-not-obsolete-funcs): New variable.
9161 (byte-compile-warn-obsolete): Don't warn about functions if they are in
9162 byte-compile-not-obsolete-funcs.
9163 (byte-compile-variable-ref, byte-compile-defvar): Update for
9164 byte-compile-not-obsolete-vars name-change and list nature.
9165 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
9166 and variables behind (f)boundp tests.
9167 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
9168
9169 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
9170
9171 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
9172
9173 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
9174
9175 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
9176 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
9177 Don't autoload.
9178
9179 2009-09-15 Stephen Eglen <stephen@gnu.org>
9180
9181 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
9182 the virtual-buffers, use the name of the buffer specified by
9183 find-file-noselect, as the match may be a symlink. (This was a
9184 problem if the target and the symlink had different names.)
9185
9186 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
9187
9188 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
9189
9190 * desktop.el (desktop-path): Check user-emacs-directory.
9191
9192 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
9193
9194 * loadup.el: Use after-load-functions to GC after loading each file.
9195 Remove the explicit GC calls that used to be sprinkled around.
9196
9197 * subr.el (after-load-functions): New hook.
9198 (do-after-load-evaluation): Run it. Use string-match-p to detect
9199 `obsolete' packages, rather than painfully extracting the relevant
9200 directory name.
9201
9202 2009-09-15 Glenn Morris <rgm@gnu.org>
9203
9204 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
9205 free variable `doc'.
9206
9207 * dired.el (dired-mode-map): Add menu entry for async shell command.
9208
9209 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
9210 variables, also consider the .elc files, since the .el files are
9211 normally gzipped (subsequent code locates the .el.gz from the .elc).
9212
9213 * calc/calc-prog.el (arglist): Define for compiler.
9214
9215 * calendar/diary-lib.el (diary-display-function): Change the default to
9216 fancy display.
9217 (body): Define for compiler.
9218
9219 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
9220 (byte-compile-file-form, byte-compile-lambda)
9221 (byte-compile-top-level-body, byte-compile-form)
9222 (byte-compile-variable-ref, byte-compile-setq)
9223 (byte-compile-setq-default, byte-compile-body)
9224 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
9225 (batch-byte-compile): Give some more local variables with common names
9226 a "bytecomp-" prefix to avoid masking warnings about free variables.
9227
9228 * startup.el (command-line-1): Give local variables with common names a
9229 distinguishing prefix, so as not to hide free variable warnings during
9230 bootstrap.
9231
9232 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
9233 clever and add a suffix to make a unique name, just let the user decide
9234 whether or not to overwrite it. If the input is a directory, write the
9235 default filename to that directory. (Bug#4388)
9236 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
9237 is a filename-as-a-directory.
9238
9239 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
9240
9241 * textmodes/page.el (what-page): Don't move to beginning of line.
9242 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
9243
9244 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
9245
9246 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
9247
9248 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
9249
9250 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
9251 * help.el (help-for-help-internal): Add purecopy calls for text.
9252
9253 * vc.el (top): print-log method now takes an optional SHORTLOG
9254 argument. Add a new method: root.
9255 (vc-root-diff, vc-print-root-log): New functions.
9256 (vc-log-short-style): New variable.
9257 (vc-print-log-internal): Add support for showing short logs.
9258
9259 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
9260 vc-print-root-log and vc-print-root-diff.
9261
9262 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
9263 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
9264 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
9265 short logs.
9266
9267 * vc-cvs.el (vc-cvs-print-log):
9268 * vc-mtn.el (vc-mtn-print-log):
9269 * vc-rcs.el (vc-rcs-print-log):
9270 * vc-sccs.el (vc-sccs-print-log):
9271 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
9272 that is ignored for now.
9273
9274 * vc-mtn.el (vc-mtn-annotate-command):
9275 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
9276
9277 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
9278
9279 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
9280 to function-key-map, and give them ascii-character property.
9281 * term/x-win.el (x-alternatives-map):
9282 * term/ns-win.el (ns-alternatives-map):
9283 * term/internal.el (msdos-key-remapping-map):
9284 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
9285
9286 2009-09-14 Glenn Morris <rgm@gnu.org>
9287
9288 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
9289 temp-buffers (2009-09-12).
9290
9291 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9292
9293 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
9294 the new read-key function.
9295
9296 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
9297
9298 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
9299 is defined (Bug#4405).
9300
9301 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
9302
9303 * recentf.el (recentf-cleanup): Use a hash table to find
9304 duplicates (Bug#4407).
9305
9306 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
9307
9308 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
9309 kp-0 to ascii equivalents (Bug#4325).
9310
9311 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
9312
9313 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
9314
9315 * eshell/em-hist.el:
9316 * eshell/em-dirs.el (eshell-complete-user-reference):
9317 Declare pcomplete functions and variables to avoid compiler warnings.
9318
9319 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
9320
9321 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
9322 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
9323 * eshell/em-alias.el (eshell-aliases-file):
9324 * eshell/em-hist.el (eshell-history-file-name):
9325 Use expand-file-name instead of concat to make file names (Bug#4308).
9326
9327 2009-09-13 Glenn Morris <rgm@gnu.org>
9328
9329 * ediff-merg.el (ediff-do-merge):
9330 * filesets.el (filesets-run-cmd):
9331 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
9332 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
9333 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
9334 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
9335 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
9336 Replace empty `let's with `progn'.
9337
9338 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9339
9340 * mail/sendmail.el (send-mail-function):
9341 * tooltip.el (tooltip-mode):
9342 * simple.el (transient-mark-mode):
9343 * rfn-eshadow.el (file-name-shadow-mode):
9344 * frame.el (blink-cursor-mode):
9345 * font-core.el (global-font-lock-mode):
9346 * files.el (temporary-file-directory)
9347 (small-temporary-file-directory, auto-save-file-name-transforms):
9348 * epa-hook.el (auto-encryption-mode):
9349 * composite.el (global-auto-composition-mode):
9350 Use custom-initialize-delay.
9351 * startup.el (command-line): Don't explicitly call
9352 custom-reevaluate-setting for all the above vars.
9353 * custom.el (custom-initialize-safe-set)
9354 (custom-initialize-safe-default): Delete.
9355
9356 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9357
9358 * term/x-win.el (x-initialize-window-system):
9359 * term/w32-win.el (w32-initialize-window-system):
9360 * term/ns-win.el (ns-initialize-window-system): Don't call
9361 mouse-wheel-mode since it's enabled globally by default already.
9362
9363 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
9364 actually define the variable, but only silences the byte-compiler.
9365 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
9366 before looking it up.
9367 (mouse-wheel-scroll-amount): Also reset the bindings if this value
9368 is changed.
9369
9370 2009-09-12 Glenn Morris <rgm@gnu.org>
9371
9372 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
9373 1000.
9374 (elint-add-required-env): Don't beep on error.
9375 (elint-forms): In case of error, return ENV unchanged.
9376 (elint-init-env): Skip non-list forms.
9377 (elint-log): Handle unknown file positions.
9378
9379 2009-09-12 Daiki Ueno <ueno@unixuser.org>
9380
9381 * epg.el (epg-make-context): Add autoload cookie.
9382 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
9383 (epg-decrypt-string, epg-start-verify, epg-verify-file)
9384 (epg-verify-string, epg-start-sign, epg-sign-file)
9385 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
9386 (epg-encrypt-string, epg-start-export-keys)
9387 (epg-export-keys-to-file, epg-export-keys-to-string)
9388 (epg-start-import-keys, epg-import-keys-from-file)
9389 (epg-import-keys-from-string, epg-start-receive-keys)
9390 (epg-receive-keys, epg-import-keys-from-server)
9391 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
9392 (epg-sign-keys, epg-start-generate-key)
9393 (epg-generate-key-from-file, epg-generate-key-from-string):
9394 Remove autoload cookie.
9395
9396 2009-09-12 Eli Zaretskii <eliz@gnu.org>
9397
9398 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
9399 reevaluation of trash-directory.
9400
9401 * mwheel.el: Fix last change.
9402 (mouse-wheel-mode): New defvar.
9403 (mouse-wheel-mode): Remove autoload cookie.
9404
9405 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9406
9407 * mwheel.el (mwheel-installed-bindings): New var.
9408 (mouse-wheel-mode): Use it, so as to make sure we really remove all
9409 the bindings we set last time. Use custom-initialize-delay.
9410 * loadup.el: Load mwheel after term/*-win.el.
9411 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
9412 and mouse-wheel-up-event now that their first evaluation is done
9413 sufficiently late to be correct.
9414
9415 * startup.el (tutorial-directory): Make it a defcustom.
9416 Use custom-initialize-delay rather than eval-at-startup to set it.
9417 * image.el (image-load-path): Make it a defcustom.
9418 Use custom-initialize-delay rather than eval-at-startup to set it.
9419 * subr.el (eval-at-startup): Remove.
9420 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
9421
9422 * subr.el (do-after-load-evaluation): Warn the user after loading an
9423 obsolete package.
9424
9425 2009-09-12 Glenn Morris <rgm@gnu.org>
9426
9427 * proced.el (proced-mark-alt): Remove alias.
9428 (proced-mode-map): Remove proced-mark-alt.
9429
9430 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
9431 Elint file and directory. Remove initialization entry.
9432
9433 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
9434 commands.
9435 (elint-current-buffer): Set mode-line-process.
9436 (elint-init-env): Handle define-derived-mode.
9437 Fix declare-function with unspecified arglist. Guard against odd
9438 defalias statements (eg iso-insert's 8859-1-map).
9439 (elint-add-required-env): Use a temp buffer.
9440 (elint-form): Just print the function/macro name, not the whole form.
9441 Return env unchanged if we fail to parse a macro.
9442 (elint-forms): Guard against parse errors.
9443 (elint-output): New function, to handle batch mode.
9444 (elint-log-message): Add optional argument. Use elint-output.
9445 (elint-set-mode-line): New function.
9446
9447 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
9448
9449 * emacs-lisp/elp.el (elp-not-profilable): Add more
9450 functions (Bug#4233).
9451
9452 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
9453
9454 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
9455 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
9456
9457 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
9458
9459 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
9460 (gdb-var-list-children): Use json parsing.
9461
9462 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
9463
9464 * progmodes/js.el (js--proper-indentation): Handle the case where
9465 char-before is null. Reported by Deniz Dogan.
9466
9467 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
9468
9469 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
9470
9471 2009-09-11 Daiki Ueno <ueno@unixuser.org>
9472
9473 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
9474 (epg-digest-algorithm-alist): Add SHA224.
9475 (epg-context-set-passphrase-callback)
9476 (epg-context-set-progress-callback): Add description about
9477 callback function.
9478
9479 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9480
9481 * custom.el (custom-delayed-init-variables): New var.
9482 (custom-initialize-delay): New function.
9483 * startup.el (command-line): "Re"evaluate all vars in
9484 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
9485 explicitly any more.
9486 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
9487 to avoid creating a ~/.emacs.d at build-time (bug#4347).
9488
9489 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
9490
9491 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
9492
9493 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
9494 (gdb-var-update-handler): Use json parsing.
9495
9496 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
9497
9498 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
9499 decode annotated text, regardless of language environment. (Bug#2741)
9500
9501 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9502
9503 * Makefile.in (autoloads): Make rmail.el writable as well.
9504
9505 2009-09-11 Glenn Morris <rgm@gnu.org>
9506
9507 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
9508 loaddefs.el.
9509 * dired.el: Regenerate with extracted autoloads.
9510 * Makefile.in (autoloads): Make dired.el writable.
9511
9512 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
9513 * ibuffer.el: Regenerate with extracted autoloads.
9514 * Makefile.in (autoloads): Make ibuffer.el writable.
9515
9516 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
9517 * version.el (emacs-copyright, emacs-major-version)
9518 (emacs-minor-version): Reformat doc-strings for make-docfile.
9519
9520 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
9521 functions and variables, since they must be stuff specific to some other
9522 platform.
9523 (apropos-print): Make mouse-click message less specific about button.
9524
9525 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
9526 that records where a macro was defined.
9527 * help-fns.el (describe-function-1): Mention if a function has a
9528 compiler-macro.
9529 * help-mode.el (help-function-cmacro): New button.
9530
9531 * locate.el (top-level): Always require dired.
9532 (locate-mode-map): Initialize inside the defvar.
9533
9534 * net/ange-ftp.el (dired-compress-file): Declare.
9535 (ange-ftp-dired-compress-file): Add doc string.
9536
9537 * term/ns-win.el (x-display-name, x-setup-function-keys):
9538 Unify doc-strings with X versions.
9539
9540 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9541
9542 * emulation/crisp.el (crisp-mode-map): Move initialization
9543 into declaration.
9544 (crisp-mode): Use define-minor-mode.
9545
9546 * progmodes/xscheme.el (xscheme-evaluation-commands):
9547 Put a :advertised-binding property rather than using
9548 advertised-xscheme-send-previous-expression.
9549 (advertised-xscheme-send-previous-expression): Declare obsolete.
9550 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
9551 `advertised-undo'.
9552 (crisp-mode): Add corresponding bindings to
9553 undo's :advertised-binding instead.
9554 * dired.el (dired-mode-map): Put a :advertised-binding property rather
9555 than using dired-advertised-find-file.
9556 (dired-advertised-find-file):
9557 * simple.el (advertised-undo):
9558 * wid-edit.el (advertised-widget-backward): Declare obsolete.
9559 (widget-keymap): Put a :advertised-binding property rather
9560 than using advertised-widget-backward.
9561 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
9562 than using advertised-undo.
9563 * tutorial.el (tutorial--default-keys): Adjust accordingly.
9564
9565 2009-09-10 Simon South <ssouth@slowcomputing.org>
9566
9567 * progmodes/delphi.el (delphi-tab): Indent region when Transient
9568 Mark mode is enabled and region is active; otherwise indent or
9569 insert TAB as usual.
9570 (delphi-mode): Update description of TAB-key binding.
9571
9572 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
9573
9574 * subr.el (define-key-rebound-commands): Mark obsolete.
9575 * startup.el (precompute-menubar-bindings): Remove.
9576 (normal-top-level): Remove obsolete code that tried to precompute
9577 menubar bindings.
9578 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
9579 define-key-rebound-commands and precompute-menubar-bindings.
9580
9581 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
9582
9583 * net/imap.el (imap-interactive-login): Better messages.
9584 (imap-open): Fix bug with renamed buffer on reconnect.
9585 (imap-authenticate): Add buffer-local imap-last-authenticator variable
9586 for easier debugging and cleaner code. On successful (guessed based on
9587 server capabilities) secondary authentication, set imap-state
9588 correctly.
9589 (imap-last-authenticator): Define imap-last-authenticator as a variable
9590 to avoid warnings.
9591
9592 2009-09-10 Glenn Morris <rgm@gnu.org>
9593
9594 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
9595
9596 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
9597 (byte-compile-file-form-autoload): Don't warn about unknown functions
9598 where the autoload statement comes after the use.
9599 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
9600 that any handlers inside the body (eg require) are in turn respected.
9601
9602 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
9603 effects.
9604
9605 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
9606 and syntax and abbrev tables basic docs, if they don't have any.
9607
9608 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
9609
9610 * international/mule-cmds.el (top-level): Require cl when compiling.
9611 (view-hello-file): Use default-value rather than
9612 default-enable-multibyte-characters.
9613
9614 * progmodes/fortran.el: Move all safe and risky properties into the
9615 defcustoms.
9616
9617 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
9618 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
9619 * mail/undigest.el:
9620 Put autoloads in rmail.el rather than loaddefs.el.
9621 * mail/rmail.el: Regenerate with extracted autoloads.
9622
9623 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
9624 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
9625
9626 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
9627
9628 Reported in thread for Bug#4375.
9629 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
9630 "-data-evaluate-expression" instead of print.
9631 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
9632 (gdb-tooltip-print): Parse output from above MI command.
9633 (gdb): Revert 2009-08-11 change. User should detach inferior
9634 manually.
9635
9636 Remove the word "separate" from IO functions as inferior
9637 output is now never displayed in the GUD buffer.
9638
9639 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
9640
9641 * startup.el (command-line-normalize-file-name): On Windows and
9642 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
9643
9644 2009-09-10 Juri Linkov <juri@jurta.org>
9645
9646 * isearch.el (isearch-text-char-description): Propertize escape
9647 character sequences with the `escape-glyph' face. (Bug#4344)
9648
9649 * simple.el (shell-command): Set asynchronous process filter to
9650 `comint-output-filter'. (Bug#4343)
9651
9652 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
9653 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
9654 the list. Move "asm" to the bottom.
9655 (grep-find-ignored-directories): Add `choice' with nil value
9656 to empty the list easily.
9657 (grep-find-ignored-files): New option.
9658 (grep-files-history): Set to nil by default instead of '("ch" "el").
9659 (grep-compute-defaults): Add "<X>" to `grep-template'.
9660 (grep-read-files): Bind new local variables `default-alias' and
9661 `default-extension'. Use a list of default values for the file prompt.
9662 (lgrep): Add `--exclude=' command line options composed from
9663 `grep-find-ignored-files'.
9664 (rgrep): Add `-name' command line options composed from
9665 `grep-find-ignored-files'. (Bug#4301)
9666
9667 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
9668
9669 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
9670 (bug#4368).
9671
9672 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
9673
9674 * calendar/time-date.el (autoload):
9675 Expand define-obsolete-function-alias into defalias and make-obsolete
9676 for old Emacsen that Gnus supports.
9677 (with-no-warnings): Define it for old Emacsen.
9678 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
9679 is available.
9680 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
9681 float-time is available; suppress compile warning for time-to-seconds.
9682
9683 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
9684
9685 * net/imap.el (imap-message-map): Docstring fix.
9686
9687 2009-09-09 Glenn Morris <rgm@gnu.org>
9688
9689 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
9690 line numbers too. (Bug#4374)
9691
9692 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
9693
9694 * smerge-mode.el (smerge-remove-props, smerge-refine):
9695 Use with-silent-modifications (bug#4342).
9696
9697 * subr.el (with-silent-modifications): New macro.
9698
9699 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
9700
9701 * files.el (top-level): Require `cl' when compiling.
9702
9703 2009-09-07 Glenn Morris <rgm@gnu.org>
9704
9705 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
9706
9707 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
9708 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
9709
9710 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
9711
9712 * vc-git.el (vc-git-annotate-command): Use separator to parse
9713 arguments correctly.
9714
9715 2009-09-06 Eli Zaretskii <eliz@gnu.org>
9716
9717 * proced.el (proced-mode): Doc fix.
9718
9719 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
9720
9721 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
9722 lstat fails.
9723 (tramp-do-file-attributes-with-ls): Check for file existence at
9724 remote end.
9725 (tramp-do-file-attributes-with-stat): Likewise.
9726 (tramp-convert-file-attributes): Return nil when attr is nil.
9727
9728 2009-09-05 Glenn Morris <rgm@gnu.org>
9729
9730 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
9731 properties to this button.
9732 (diary-fancy-display): Don't extend the button to the final newline.
9733 (diary-fancy-display-mode): Continue to define "q" as a local key.
9734
9735 * calendar/cal-china.el (holiday-chinese): Make it slightly more
9736 efficient.
9737
9738 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
9739
9740 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
9741 (byte-compile-dest-file-function): New option.
9742 (byte-compile-dest-file): Doc fix.
9743 Obey byte-compile-dest-file-function.
9744 (byte-compile-cl-file-p): New function.
9745 (byte-compile-eval): Only suppress noruntime warnings about cl functions
9746 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
9747 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
9748 than for file being previously loaded.
9749 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
9750 (byte-compile-file-form-require): Handle the case where requiring a file
9751 indirectly causes CL to be loaded.
9752
9753 2009-09-05 Karl Fogel <kfogel@red-bean.com>
9754
9755 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
9756 before killing the old buffer, since by the time `kill-buffer' is
9757 run so many buffer variables have been set to nil that it may not
9758 behave as expected. (Bug#4061)
9759
9760 2009-09-05 Karl Fogel <kfogel@red-bean.com>
9761
9762 * files.el (find-alternate-file): If the old buffer is modified
9763 and visiting a file, behave similarly to `kill-buffer' when
9764 killing it, thus reverting to the pre-1.878 behavior; see
9765 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
9766 for discussion. Also, consult `buffer-file-name' as a variable
9767 not as a function, for consistency with the rest of the code.
9768
9769 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
9770
9771 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
9772 also when adding a new directory.
9773
9774 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
9775 defun.
9776
9777 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
9778
9779 * files.el (locate-file-completion-table): Make it provide boundary
9780 information, so partial-completion works better.
9781
9782 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
9783
9784 * mail/footnote.el (Footnote-text-under-cursor):
9785 Check footnote-text-marker-alist before using it (bug#4324).
9786
9787 2009-09-04 Glenn Morris <rgm@gnu.org>
9788
9789 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
9790 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
9791 * play/solitaire.el, play/tetris.el:
9792 Remove leading * from defcustom and defface docs.
9793
9794 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
9795 necessary.
9796 (diary-fancy-overriding-map): New variable.
9797 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
9798 Use view-mode.
9799
9800 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
9801 goto-line.
9802
9803 2009-09-03 Glenn Morris <rgm@gnu.org>
9804
9805 * arc-mode.el (archive-mode):
9806 * dos-fns.el (set-default-process-coding-system):
9807 * man.el (Man-getpage-in-background):
9808 * menu-bar.el (menu-bar-describe-menu):
9809 * server.el (server-process-filter):
9810 * startup.el (command-line):
9811 * tar-mode.el (tar-header-block-tokenize, tar-extract):
9812 * w32-fns.el (set-default-process-coding-system):
9813 * x-dnd.el (x-dnd-handle-file-name):
9814 * international/mule-cmds.el (mule-menu-keymap)
9815 (set-default-coding-systems, language-info-alist, set-language-info)
9816 (set-language-environment, standard-display-european-internal)
9817 (set-locale-environment):
9818 * international/mule-diag.el (mule-diag):
9819 * mail/emacsbug.el (report-emacs-bug):
9820 * mail/rmail.el (rmail-mode):
9821 * mail/sendmail.el (mail-setup):
9822 Use default-value rather than default-enable-multibyte-characters.
9823
9824 * progmodes/f90.el: Move all safe properties into the defcustoms.
9825 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
9826
9827 * calendar/appt.el (appt-check):
9828 * calendar/diary-lib.el (diary-set-header, diary-live-p)
9829 (diary-check-diary-file, diary-list-entries)
9830 (diary-include-other-diary-files, diary-simple-display)
9831 (diary-fancy-display, diary-print-entries)
9832 (diary-mark-included-diary-files, diary-make-entry):
9833 Don't call substitute-in-file-name on diary-file.
9834
9835 2009-09-03 Eduard Wiebe <usenet@pusto.de>
9836 Stefan Monnier <monnier@iro.umontreal.ca>
9837
9838 * mail/footnote.el (footnote-prefix): Make it a defcustom.
9839 (footnote-mode-map): Move initialization into the declaration.
9840 (footnote-minor-mode-map): Define it rather than changing global-map.
9841 (footnote-mode): Use define-minor-mode.
9842
9843 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
9844
9845 * net/tramp.el (tramp-handle-file-attributes-with-ls)
9846 (tramp-do-file-attributes-with-perl)
9847 (tramp-do-file-attributes-with-stat): Rename from
9848 `tramp-handle-file-attributes-with-*'.
9849 (tramp-handle-file-attributes): Use them.
9850 (tramp-do-directory-files-and-attributes-with-perl)
9851 (tramp-do-directory-files-and-attributes-with-stat): Rename from
9852 `tramp-handle-directory-files-and-attributes-with-*'.
9853 (tramp-handle-directory-files-and-attributes): Use them.
9854 (tramp-method-out-of-band-p): Additional parameter SIZE.
9855 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
9856 (tramp-handle-write-region): Use it.
9857 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
9858 (tramp-handle-vc-registered): Check, whether the first run did
9859 return files to be tested.
9860 (tramp-advice-make-auto-save-file-name): Do not call directly
9861 `tramp-handle-make-auto-save-file-name', because this would bypass
9862 the locking mechanism.
9863
9864 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
9865 (file-remote-p, process-file, start-file-process, set-file-times)
9866 (tramp-compat-file-attributes): Compatibility functions shall not
9867 call directly `tramp-handle-*', because this would bypass the
9868 locking mechanism.
9869 (tramp-compat-number-sequence): New defun.
9870
9871 2009-09-02 Glenn Morris <rgm@gnu.org>
9872
9873 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
9874 alias for float-time.
9875 (time-to-number-of-days): In Emacs, use float-time.
9876 * net/newst-backend.el (time-add): Suppress warnings from compat
9877 function.
9878 * time.el (emacs-uptime, emacs-init-time):
9879 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
9880 Use float-time rather than time-to-seconds.
9881
9882 * minibuffer.el (completion-initials-expand): Fix typo.
9883
9884 * faces.el (modeline, modeline-inactive, modeline-highlight)
9885 (modeline-buffer-id):
9886 * info.el (info-menu-5): Mark these face aliases as obsolete.
9887
9888 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9889
9890 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
9891 space ...
9892 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
9893 no "--thread" option.
9894 (gdb-stopped): Don't print "Switched to thread" message when it is
9895 unchanged.
9896
9897 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
9898
9899 * minibuffer.el (completion-try-completion)
9900 (completion-all-completions): Remove ill-defined (and
9901 mistakenly installed and luckily never used nor documented)
9902 `completion-styles' property.
9903 (completion-initials-expand, completion-initials-all-completions)
9904 (completion-initials-try-completion): New functions.
9905 (completion-styles-alist): Add doc to each entry.
9906 Add new `initials' entry.
9907
9908 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9909
9910 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
9911 MI command -var-evaluate-expression.
9912 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
9913 and tweak for case of string child.
9914 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
9915
9916 2009-09-01 Glenn Morris <rgm@gnu.org>
9917
9918 * add-log.el (change-log-date-face, change-log-name-face)
9919 (change-log-email-face, change-log-file-face, change-log-list-face)
9920 (change-log-conditionals-face, change-log-function-face)
9921 (change-log-acknowledgement-face):
9922 * cus-edit.el (custom-invalid-face, custom-rogue-face)
9923 (custom-modified-face, custom-set-face, custom-changed-face)
9924 (custom-saved-face, custom-button-face, custom-button-pressed-face)
9925 (custom-documentation-face, custom-state-face, custom-comment-face)
9926 (custom-comment-tag-face, custom-variable-tag-face)
9927 (custom-variable-button-face, custom-face-tag-face)
9928 (custom-group-tag-face-1, custom-group-tag-face):
9929 * diff-mode.el (diff-header-face, diff-file-header-face)
9930 (diff-index-face, diff-hunk-header-face, diff-removed-face)
9931 (diff-added-face, diff-changed-face, diff-function-face)
9932 (diff-context-face, diff-nonexistent-face):
9933 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
9934 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
9935 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
9936 (Info-title-4-face):
9937 * isearch.el (isearch-lazy-highlight-face):
9938 * log-view.el (log-view-file-face, log-view-message-face):
9939 * paren.el (show-paren-match-face, show-paren-mismatch-face):
9940 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
9941 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
9942 (cvs-msg-face):
9943 * smerge-mode.el (smerge-mine-face, smerge-other-face)
9944 (smerge-base-face, smerge-markers-face):
9945 * wid-edit.el (widget-documentation-face, widget-button-face)
9946 (widget-field-face, widget-single-line-field-face)
9947 (widget-inactive-face, widget-button-pressed-face):
9948 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
9949 (woman-addition-face):
9950 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
9951 (eshell-ls-executable-face, eshell-ls-readonly-face)
9952 (eshell-ls-unreadable-face, eshell-ls-special-face)
9953 (eshell-ls-missing-face, eshell-ls-archive-face)
9954 (eshell-ls-backup-face, eshell-ls-product-face)
9955 (eshell-ls-clutter-face):
9956 * eshell/em-prompt.el (eshell-prompt-face):
9957 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
9958 * obsolete/old-whitespace.el (whitespace-highlight-face):
9959 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
9960 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
9961 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
9962 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
9963 (antlr-font-lock-literal-face):
9964 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9965 (ebrowse-root-class-face, ebrowse-file-name-face)
9966 (ebrowse-default-face, ebrowse-member-attribute-face)
9967 (ebrowse-member-class-face, ebrowse-progress-face):
9968 * progmodes/make-mode.el (makefile-space-face):
9969 * progmodes/sh-script.el (sh-heredoc-face):
9970 * textmodes/flyspell.el (flyspell-incorrect-face)
9971 (flyspell-duplicate-face):
9972 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
9973 * textmodes/texinfo.el (texinfo-heading-face):
9974 Mark face aliases with "-face" suffix as obsolete.
9975
9976 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
9977 compiler.
9978
9979 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
9980 (eudc-bob-sound-menu): Use defvar rather than defconst, since
9981 easy-menu-define wants to modify these.
9982
9983 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
9984
9985 * net/browse-url.el (browse-url-file-url):
9986 * term/internal.el (dos-codepage-setup):
9987 Use default-value rather than default-enable-multibyte-characters.
9988
9989 * progmodes/etags.el (etags-goto-tag-location):
9990 * progmodes/flymake.el (flymake-highlight-line)
9991 (flymake-goto-file-and-line, flymake-goto-line):
9992 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
9993 (gdb-goto-breakpoint):
9994 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
9995 * progmodes/python.el (python-find-function)
9996 (python-pdbtrack-track-stack-file):
9997 * progmodes/verilog-mode.el (verilog-surelint-off):
9998 * term/ns-win.el (ns-open-file-select-line):
9999 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
10000 Use forward-line rather than goto-line.
10001
10002 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
10003 * textmodes/reftex-index.el (reftex-display-index):
10004 * textmodes/reftex-ref.el (reftex-offer-label-menu):
10005 * textmodes/reftex-toc.el (reftex-toc):
10006 Remove unnecessary bindings of default-major-mode (all are followed by
10007 major-mode check and possible mode switch).
10008
10009 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
10010
10011 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10012 Handle watchpoints (bug#4282).
10013 (def-gdb-thread-buffer-command): Enable thread to be selected by
10014 clicking without selecting threads buffer first.
10015 (gdb-current-context-command): Use selected frame so that "up",
10016 "down" etc work in the GUD buffer.
10017 (gdb-update): Find selected frame before rendering stack buffer.
10018 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
10019
10020 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
10021
10022 * progmodes/sym-comp.el (displayed-completions): Remove.
10023 (symbol-complete): Use minibuffer-complete.
10024
10025 2009-08-31 Glenn Morris <rgm@gnu.org>
10026
10027 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
10028
10029 * apropos.el (apropos-symbols-internal):
10030 Handle (obsolete) face aliases.
10031
10032 * faces.el (describe-face): Adjust the output format to be more like
10033 describe-variable, and to mention (obsolete) face aliases.
10034 Adjust the whitespace so that help-setup-xref works.
10035
10036 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
10037 * calendar/diary-lib.el (diary-button-face):
10038 Mark these face aliases as obsolete.
10039
10040 * calendar/calendar.el (calendar-today): Doc fix.
10041
10042 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
10043
10044 * progmodes/gdb-mi.el (gdb-control-all-threads)
10045 (gdb-control-current-thread): Force tool bar update.
10046 (gdb-non-stop-handler): New function.
10047 (gdb-init-1): Use it to test if non-stop mode is supported.
10048 Remove unused gdbmi buffer type.
10049
10050 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
10051
10052 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
10053 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
10054
10055 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
10056
10057 * comint.el (comint-exec-1): Check command is non-null first.
10058 Part of gdb-mi.el change (2009-08-28).
10059
10060 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10061
10062 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
10063
10064 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
10065
10066 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
10067 instead of `dolist' to avoid a recursive require when bootstrapping.
10068
10069 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10070
10071 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
10072
10073 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
10074
10075 * net/imap.el (imap-send-command): Simplify.
10076 (imap-wait-for-tag): point-max -> buffer-size.
10077
10078 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
10079
10080 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
10081 with constant argument.
10082
10083 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
10084
10085 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
10086
10087 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
10088 Change default, since most of our files don't have a history.
10089 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
10090 the user.
10091
10092 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10093 Add comint-run.
10094
10095 * calc/calc.el: Improve commenting convention.
10096 (calc-digit-map, toplevel): Simplify.
10097
10098 * comint.el (comint-insert-input): Be careful to only set point if we
10099 don't delegate to some other command.
10100
10101 * proced.el (proced-signal-list): Make it an alist.
10102 (proced-grammar-alist): Capitalize names.
10103 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
10104 Disable undo manually and make it read-only.
10105 Use completion-annotate-function.
10106
10107 * minibuffer.el (minibuffer-message): If the current buffer is not
10108 a minibuffer, insert the message in the echo area rather than at the
10109 end of the buffer.
10110 (completion-annotate-function): New variable.
10111 (minibuffer-completion-help): Use it.
10112 (completion--embedded-envvar-table): Environment vars are
10113 always case-sensitive.
10114
10115 2009-08-30 Glenn Morris <rgm@gnu.org>
10116
10117 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
10118 from fortran-current-defun.
10119 (fortran-beginning-of-subprogram): Be more precise about finding the
10120 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
10121 (fortran-end-of-subprogram): Simplify.
10122 (fortran-current-defun): Use fortran-start-prog-re.
10123
10124 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
10125
10126 * subr.el (do-after-load-evaluation): Simplify.
10127
10128 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
10129
10130 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
10131
10132 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
10133 (vc-rcs-print-log): Use it.
10134
10135 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
10136
10137 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10138
10139 * paths.el (abbrev-file-name): Move to abbrev.el.
10140 * abbrev.el (abbrev-file-name): Move from paths.el.
10141 Obey user-emacs-directory.
10142 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
10143 user-emacs-directory.
10144 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
10145 abbrev-file-name and calc-settings-file any more.
10146 * startup.el (command-line): Recompute abbrev-file-name and
10147 abbreviated-home-dir.
10148 (normal-no-mouse-startup-screen): Improve the generic code and get rid
10149 of the special code for when C-h bindings haven't been changed.
10150 (display-startup-echo-area-message): Use with-current-buffer.
10151 (command-line-1): Use a list of strings, rather than a list of lists
10152 of strings for longopts.
10153
10154 * files.el (get-free-disk-space): Use / for default-directory.
10155
10156 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
10157 Use with-current-buffer.
10158
10159 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
10160 Recognize immutable variables like most-positive-fixnum.
10161 (byte-compile-setq-default): Check and warn if trying to assign
10162 to an immutable variable, or a non-variable.
10163
10164 * progmodes/cc-vars.el (c-comment-continuation-stars):
10165 * progmodes/cc-engine.el (c-looking-at-bos):
10166 * progmodes/cc-cmds.el (c-toggle-auto-state)
10167 (c-forward-into-nomenclature, c-backward-into-nomenclature)
10168 (c-comment-line-break-function): Add version of obsolescence.
10169
10170 2009-08-28 Juri Linkov <juri@jurta.org>
10171
10172 * files.el (magic-fallback-mode-alist): Add ZIP magic number
10173 associated with `archive-mode'.
10174
10175 * image.el (image-type-header-regexps): Use only JPEG magic number
10176 to determine JPEG images, and don't use `image-jpeg-p' because
10177 Emacs can display non-JFIF non-Exif JPEG images.
10178
10179 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
10180
10181 * arc-mode.el (archive-mode):
10182 * emacs-lisp/re-builder.el (re-builder-unload-function):
10183 Protect against the default value of `major-mode' being nil.
10184
10185 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
10186
10187 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
10188 Fix typos in docstrings.
10189
10190 * progmodes/js.el (js--macro-decl-re): Doc fix.
10191 (js--plain-method-re, js--split-name): Refloc docstring.
10192 (js--class-styles, js--make-merged-item, js--splice-into-items):
10193 Fix typos in docstrings; reflow docstrings.
10194 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
10195 (js--variable-decl-matcher, js--inside-pitem-p)
10196 (js--parse-state-at-point, js--get-all-known-symbols)
10197 (js--symbol-history, js-find-symbol, js--js-references)
10198 (js--moz-interactor, js--js-encode-value, js--read-tab):
10199 Fix typos in docstrings.
10200
10201 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10202
10203 * textmodes/reftex.el (reftex-get-file-buffer-force):
10204 * progmodes/verilog-mode.el (verilog-batch-execute-func):
10205 * emulation/viper.el (viper-go-away, viper-set-hooks):
10206 * emacs-lisp/re-builder.el (re-builder-unload-function):
10207 * emacs-lisp/bytecomp.el (byte-compile-file):
10208 * ses.el (ses-unload-function):
10209 * hexl.el (hexl-find-file):
10210 * files.el (normal-mode):
10211 * ehelp.el (with-electric-help):
10212 * autoinsert.el (auto-insert-alist):
10213 * arc-mode.el (archive-mode):
10214 Use (default-value 'major-mode) instead of default-major-mode.
10215
10216 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
10217 * international/mule.el (load-with-code-conversion):
10218 * emacs-lisp/debug.el (debug):
10219 * ediff-vers.el (ediff-rcs-get-output-buffer):
10220 * dired.el (dired-internal-noselect): Don't let-bind
10221 default-major-mode around code that doesn't use it.
10222 E.g. buffer creation via get-buffer-create doesn't use it.
10223
10224 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
10225
10226 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
10227 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
10228 when writing the temp file. Otherwise, epa-file gets confused.
10229 (tramp-register-file-name-handlers): Make it a defun. Move also
10230 `epa-file-handler' to the front of `file-name-handler-alist'.
10231
10232 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10233
10234 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
10235 start right after a ^M.
10236 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
10237 (tramp-completion-file-name-regexp-separate)
10238 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
10239 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
10240 Don't modify last-coding-system-used by accident.
10241 (tramp-completion-file-name-handler): Apply the checks here,
10242 instead during registration.
10243 (tramp-register-file-name-handlers): Renamed from
10244 `tramp-register-file-name-handler'. Register both
10245 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
10246 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
10247
10248 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
10249
10250 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
10251 Remove variable ...
10252 (gdb-init-1, gdb-display-separate-io-buffer)
10253 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
10254 references to it.
10255 (gdb-inferior-io-mode): Use make-comint-in-buffer.
10256 (gdb-inferior-filter): Use comint-output-filter to stop
10257 echoing and remove ^M characters.
10258
10259 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10260
10261 * emulation/viper-init.el (viper-restore-cursor-type):
10262 * emulation/cua-base.el (cua--update-indications):
10263 Replace default-cursor-type with (default-value 'cursor-type).
10264
10265 * mail/sendmail.el (mail-recover-1):
10266 * international/mule-diag.el (describe-current-coding-system-briefly)
10267 (describe-current-coding-system):
10268 * international/mule-cmds.el (select-safe-coding-system)
10269 (select-message-coding-system)
10270 (set-language-environment-coding-systems, set-locale-environment):
10271 * hexl.el (hexl-insert-multibyte-char):
10272 * dos-w32.el (find-buffer-file-type-coding-system):
10273 * simple.el (what-cursor-position):
10274 Replace uses of default-buffer-file-coding-system
10275 with (default-value 'buffer-file-coding-system).
10276
10277 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
10278 Replace uses of default-cursor-in-non-selected-windows
10279 with (default-value 'cursor-in-non-selected-windows).
10280 Use with-current-buffer.
10281
10282 * mail/feedmail.el: Use CL macros.
10283 (feedmail-run-the-queue, feedmail-send-it-immediately):
10284 * dos-w32.el (find-buffer-file-type): Replace uses of
10285 default-buffer-file-type with (default-value 'buffer-file-type).
10286
10287 2009-08-28 Glenn Morris <rgm@gnu.org>
10288
10289 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
10290 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
10291 Use default-value of major-mode rather than default-major-mode.
10292
10293 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10294
10295 * Makefile.in (update-elcfiles): Report left over elc files.
10296
10297 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
10298 expand-file-name and with-current-buffer.
10299 (mail-get-names, mail-directory): Use with-current-buffer.
10300
10301 * vc.el (vc-read-revision): New function.
10302 (vc-version-diff, vc-merge): Use it.
10303
10304 2009-08-27 Sam Steingold <sds@gnu.org>
10305
10306 * simple.el (kill-do-not-save-duplicates): New user option.
10307 (kill-new): When it is non-nil, and the new string is the same as
10308 the latest kill, set replace to t to avoid duplicates in kill-ring.
10309
10310 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
10311
10312 * net/tramp.el (tramp-handle-process-file): Do not flush all
10313 caches when `process-file-side-effects' is set.
10314 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
10315 instead of `tramp-find-file-exists-command'.
10316 Unset `process-file-side-effects'.
10317
10318 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
10319
10320 * net/tramp.el (tramp-methods): New method "rsyncc".
10321 (top): Add completion function for "rsyncc".
10322 (tramp-message-show-message): New defvar.
10323 (tramp-message, tramp-error): Use it.
10324 (tramp-do-copy-or-rename-file-directly): Extend check for direct
10325 remote copying.
10326 (tramp-do-copy-or-rename-file-out-of-band): Handle new
10327 `tramp-methods' entry `copy-env' of "rsyncc".
10328 (tramp-vc-registered-read-file-names): New defconst.
10329 (tramp-vc-registered-file-names): New defvar.
10330 (tramp-handle-vc-registered): Implement optimization strategy.
10331 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
10332 (tramp-vc-file-name-handler): New defun.
10333 (tramp-get-ls-command, tramp-get-test-command)
10334 (tramp-get-file-exists-command, tramp-get-remote-ln)
10335 (tramp-get-remote-perl, tramp-get-remote-stat)
10336 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
10337
10338 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
10339 (tramp-cache-inhibit-cache): Extend doc string. It allows also
10340 timestamps.
10341 (tramp-get-file-property): Check for timestamps in
10342 `tramp-cache-inhibit-cache'.
10343 (tramp-set-file-property): Write timestamp.
10344
10345 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
10346
10347 * language/japan-util.el (japanese-symbol-table): Add entries for
10348 cp932-2-byte.
10349
10350 * international/characters.el: Add category `j' to cp932-2-byte.
10351
10352 2009-08-27 Kenichi Handa <handa@m17n.org>
10353
10354 * international/fontset.el (build-default-fontset-data): New macro.
10355 (setup-default-fontset): Use build-default-fontset-data for CJK,
10356 tibetan, ethiopic, and ipa.
10357
10358 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10359
10360 * cus-start.el (default-major-mode): Customize `major-mode' instead.
10361 (enable-multibyte-characters): Not customizable any more.
10362
10363 * subr.el (default-mode-line-format, default-header-line-format)
10364 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
10365 (default-direction-reversed, default-truncate-lines)
10366 (default-left-margin, default-tab-width, default-case-fold-search)
10367 (default-left-margin-width, default-right-margin-width)
10368 (default-left-fringe-width, default-right-fringe-width)
10369 (default-fringes-outside-margins, default-scroll-bar-width)
10370 (default-vertical-scroll-bar, default-indicate-empty-lines)
10371 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
10372 (default-fringe-cursor-alist, default-scroll-up-aggressively)
10373 (default-scroll-down-aggressively, default-fill-column)
10374 (default-cursor-type, default-buffer-file-type)
10375 (default-cursor-in-non-selected-windows)
10376 (default-buffer-file-coding-system, default-major-mode)
10377 (default-enable-multibyte-characters): Mark as obsolete.
10378
10379 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
10380
10381 * vc-dir.el (vc-dir-update): Remove debug helper.
10382
10383 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
10384
10385 2009-08-26 Sam Steingold <sds@gnu.org>
10386
10387 * simple.el (save-interprogram-paste-before-kill): New user option.
10388 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
10389 save the interprogram-paste into kill-ring before overriding it
10390 with the Emacs kill.
10391
10392 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
10393
10394 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
10395 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
10396 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
10397 and move to vc-rcs.el.
10398 (vc-default-next-revision): Rename to vc-rcs-next-revision and
10399 move to vc-rcs.el.
10400 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
10401 (vc-rcs-update-changelog): Remove.
10402 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
10403 and move to vc-rcs.el.
10404
10405 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
10406 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
10407 renaming.
10408 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
10409 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
10410 vc.el, renamed to be RCS specific.
10411
10412 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
10413 New functions.
10414 (vc-cvs-update-changelog): Move here from vc.el.
10415
10416 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
10417 New functions.
10418
10419 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
10420
10421 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
10422
10423 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
10424
10425 * vc-git.el (vc-git-register): Use "git add" for directories.
10426 (vc-git-stash, vc-git-stash-show): New functions.
10427 (vc-git-extra-menu-map): Bind them.
10428
10429 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
10430 directory correctly in case the item is a directory itself.
10431
10432 * vc.el: Document the desired behavior for reverted files in the
10433 `added' state.
10434 (vc-default-prettify-state-info): Remove function, unused.
10435
10436 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
10437
10438 2009-08-26 Glenn Morris <rgm@gnu.org>
10439
10440 * bindings.el (standard-mode-line-format): Reposition dashes in
10441 which-func entry. (Bug#4217)
10442
10443 * files.el (enable-local-variables, enable-local-eval)
10444 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
10445 the defcustoms.
10446 (auto-mode-alist, ignored-local-variables)
10447 (save-some-buffers-action-alist): Move risky declarations to the
10448 definitions.
10449 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
10450 (font-lock-defaults, format-alist, imenu--index-alist)
10451 (imenu-generic-expression, input-method-alist, minor-mode-alist)
10452 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
10453 (mode-line-modified, mode-line-mule-info, mode-line-position)
10454 (mode-line-process, mode-line-remote, outline-level)
10455 (parse-time-rules, rmail-output-file-alist)
10456 (special-display-buffer-names, vc-mode):
10457 Move risky declarations to the relevant files.
10458 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
10459 (mode-line-modified, mode-line-process, mode-line-position)
10460 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
10461 * font-core.el (font-lock-defaults):
10462 * format.el (format-alist):
10463 * vc-hooks.el (vc-mode):
10464 * window.el (special-display-buffer-names):
10465 * international/mule-cmds.el (input-method-alist):
10466 Define riskiness here (dumped file) rather than in files.el.
10467 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
10468 * imenu.el (imenu-generic-expression, imenu--index-alist):
10469 * outline.el (outline-level):
10470 * time.el (display-time-string):
10471 * calendar/parse-time.el (parse-time-rules):
10472 * mail/rmailout.el (rmail-output-file-alist):
10473 Autoload riskiness here, rather than placing in files.el.
10474
10475 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
10476
10477 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
10478
10479 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
10480
10481 * simple.el (process-file-side-effects): New defvar.
10482
10483 * dired-aux.el (dired-show-file-type):
10484 * vc.el (vc-diff-internal):
10485 * vc-arch.el (vc-arch-diff):
10486 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
10487 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
10488 * vc-git.el (vc-git-registered, vc-git-working-revision)
10489 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
10490 (vc-git--empty-db-p):
10491 * vc-hooks.el (vc-user-login-name):
10492 * vc-svn.el (vc-svn-registered, vc-svn-state)
10493 (vc-svn-dir-extra-headers, vc-svn-find-revision):
10494 * progmodes/grep.el (grep-probe): Let-bind
10495 `process-file-side-effects' with nil.
10496
10497 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
10498
10499 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
10500 daemon. Replace ping by checking for running service for bluez
10501 and zeroconf. (Bug#4239)
10502
10503 2009-08-25 Kevin Ryde <user42@zip.com.au>
10504
10505 * net/dig.el (dig): Add autoload cookie.
10506
10507 2009-08-25 Glenn Morris <rgm@gnu.org>
10508
10509 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
10510 load-history for absolute file-names.
10511 (byte-compile-file-form-require): Warn about use of the cl package.
10512
10513 * format.el (format-alist): Doc fix.
10514
10515 * play/bubbles.el (top-level): Don't require cl at run-time.
10516
10517 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
10518 run-time cl).
10519
10520 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
10521
10522 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
10523 from cl package.
10524 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
10525
10526 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
10527
10528 * calc/calc-alg.el (math-trig-rewrite)
10529 (math-hyperbolic-trig-rewrite): New functions.
10530 (calc-simplify): Simplify trig functions when asked.
10531
10532 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
10533
10534 * diff-mode.el (diff-find-source-location): Avoid goto-line.
10535
10536 2009-08-24 Kenichi Handa <handa@m17n.org>
10537
10538 * language/ind-util.el (mapthread): Delete it.
10539 (combinatorial): New function.
10540 (indian--puthash-cv): Use combinatorial instead of mapthread.
10541
10542 2009-08-22 Kevin Ryde <user42@zip.com.au>
10543
10544 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
10545 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
10546 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
10547 Clarify docstring that the value is strings not symbols.
10548 (checkdoc-list-of-strings-p): New function.
10549
10550 2009-08-22 Glenn Morris <rgm@gnu.org>
10551
10552 * files.el (auto-mode-alist):
10553 * hippie-exp.el (he-concat-directory-file-name):
10554 * lpr.el (lpr-windows-system, printer-name):
10555 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
10556 * ps-print.el (ps-windows-system):
10557 * startup.el (command-line):
10558 * emulation/viper-ex.el (viper-glob-function):
10559 * international/mule-cmds.el (set-language-environment-coding-systems):
10560 * net/ange-ftp.el (ange-ftp-write-region):
10561 * obsolete/fast-lock.el (fast-lock-cache-name):
10562 Remove code for defunct system-types emx, macos, mswindows, next-mach,
10563 unisoft-unix, vax-vms, win32, w32.
10564
10565 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
10566 given name if the pattern is not more specific.
10567
10568 * calendar/lunar.el (lunar-phase-names): New option.
10569 (lunar-phase): Doc fix.
10570 (lunar-cycles-per-year): New constant.
10571 (lunar-index): New function.
10572 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
10573 (lunar-phase-name): Use lunar-phase-names.
10574 (calendar-lunar-phases): Use format.
10575 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
10576
10577 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
10578 Copy imenu-example--name-and-position function here for own use.
10579 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
10580
10581 * bs.el (bs--redisplay):
10582 * cus-edit.el (custom-redraw):
10583 * ibuffer.el (ibuffer-bury-buffer):
10584 * server.el (server-goto-line-column):
10585 * startup.el (command-line-1):
10586 * strokes.el (strokes-xpm-for-stroke):
10587 * term.el (term-display-buffer-line):
10588 * view.el (View-goto-line):
10589 * calc/calc.el (calc-do, calc-trail-buffer):
10590 * play/gamegrid.el (gamegrid-add-score-insecure):
10591 * progmodes/ada-mode.el (ada-compile-goto-error):
10592 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
10593 (ebrowse-select-1st-to-9nth):
10594 * progmodes/cperl-mode.el (cperl-time-fontification):
10595 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
10596 * progmodes/gud.el (gud-display-line):
10597 (idlwave-shell-display-line):
10598 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
10599 * progmodes/make-mode.el (makefile-browser-toggle):
10600 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
10601 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
10602 * textmodes/picture.el (picture-draw-rectangle):
10603 * textmodes/reftex-index.el (reftex-index-goto-letter):
10604 (reftex-select-jump-to-previous):
10605 * textmodes/reftex-sel.el (reftex-find-start-point)
10606 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
10607 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
10608 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
10609 * textmodes/tex-mode.el (tex-compilation-parse-errors):
10610 * textmodes/two-column.el (2C-associated-buffer):
10611 Use forward-line rather than goto-line.
10612
10613 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
10614 goto-line.
10615
10616 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
10617 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
10618 (quick-check-list-to-regexp): Declare.
10619
10620 * progmodes/make-mode.el (makefile-browser-insert-selection):
10621 Use goto-char rather than goto-line.
10622
10623 * progmodes/prolog.el (compilation-error-regexp-alist)
10624 (compilation-forget-errors): Declare.
10625
10626 2009-08-22 Juri Linkov <juri@jurta.org>
10627
10628 * progmodes/grep.el (lgrep, rgrep): At the beginning
10629 set `dir' to `default-directory' unless `dir' is a non-nil
10630 readable directory. (Bug#4052)
10631 (lgrep, rgrep): Change a weird way to report an error
10632 from using `read-string' to using `error'.
10633 Instead of using interactive arguments in the function body,
10634 add new argument `confirm'.
10635
10636 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
10637
10638 * textmodes/remember.el (remember-buffer):
10639 * progmodes/cperl-mode.el (cperl-vc-header-alist):
10640 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
10641 (icalendar-extract-ical-from-buffer):
10642 * net/newst-treeview.el (newsticker-groups-filename):
10643 * net/newst-backend.el (newsticker-cache-filename):
10644 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
10645 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
10646 (speedbar-add-ignored-path-regexp, speedbar-line-path)
10647 (speedbar-buffers-line-path, speedbar-path-line)
10648 (speedbar-buffers-line-path):
10649 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
10650 (epg-sign-keys):
10651 * epa.el (epa-display-verify-result):
10652 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
10653
10654 2009-08-21 Glenn Morris <rgm@gnu.org>
10655
10656 * progmodes/js.el (inferior-moz-process): Fix declaration.
10657
10658 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
10659
10660 * obsolete/rnewspost.el (news-mail-reply):
10661 Use goto-char rather than goto-line.
10662
10663 * term/ns-win.el (ns-open-file-select-line):
10664 Use line-beginning-position rather than goto-line.
10665
10666 * apropos.el (apropos-command):
10667 * ehelp.el (electric-helpify):
10668 * printing.el (pr-show-setup):
10669 * strokes.el (strokes-help):
10670 * tutorial.el (tutorial--describe-nonstandard-key)
10671 (tutorial--detailed-help):
10672 * woman.el (woman-mini-help, woman-display-extended-fonts):
10673 * calc/calc-help.el (calc-describe-key):
10674 * emulation/edt.el (edt-electric-helpify):
10675 * international/mule-diag.el (mule-diag):
10676 * play/yow.el (apropos-zippy):
10677 * progmodes/python.el (python-describe-symbol):
10678 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
10679 * textmodes/table.el (*table--cell-describe-mode)
10680 (*table--cell-describe-bindings):
10681 Use help-print-return-message rather than the now obsolete alias.
10682
10683 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
10684 (calendar-cursor-to-visible-date):
10685 * play/5x5.el (5x5-position-cursor):
10686 * play/decipher.el (decipher):
10687 * play/gomoku.el (gomoku-goto-xy):
10688 * play/landmark.el (lm-goto-xy):
10689 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
10690 (mpuz-paint-digit):
10691 Use forward-line, not goto-line.
10692
10693 * mail/rmail.el (rmail-obsolete): Delete custom group.
10694 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
10695 (rmail-remote-password, rmail-remote-password-required):
10696 Remove unneeded :set-after and :set properties.
10697
10698 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
10699
10700 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
10701
10702 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
10703
10704 * loadup.el: Remove leftover macos code.
10705
10706 * vc-git.el (vc-git-annotate-command): Run asynchronously.
10707 Explicitly pass the date format to git blame so that user local
10708 so that the output format can be parsed.
10709
10710 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
10711
10712 * net/dbus.el (top): Don't check for (getenv
10713 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
10714
10715 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
10716
10717 * log-edit.el (log-edit-strip-single-file-name): New var.
10718 (log-edit-insert-changelog): Use it. Bug#3571
10719
10720 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10721
10722 * subr.el (read-passwd): Use read-key so keypad keys work as well.
10723 Bug#3287
10724
10725 * help.el (help-print-return-message): Rename from
10726 print-help-return-message.
10727
10728 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
10729 cvs-mode-map parent hack.
10730 (log-view-mode): Derive from special-mode.
10731
10732 * linum.el (linum-mode): window-size-change-functions is redundant.
10733 Adapt to new window-configuration-change-hook behavior.
10734 (linum-after-size, linum-after-config): Remove.
10735
10736 * imenu.el (imenu-example--name-and-position)
10737 (imenu-example--lisp-extract-index-name)
10738 (imenu-example--create-lisp-index, imenu-example--create-c-index):
10739 Mark as obsolete.
10740
10741 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
10742 (inferior-prolog-mode): Use it.
10743 (inferior-prolog-load-file): Reset list of errors.
10744
10745 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
10746
10747 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
10748
10749 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
10750
10751 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
10752
10753 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
10754 is running already.
10755
10756 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10757
10758 * subr.el (listify-key-sequence-1): Use normal syntax since those
10759 integers are nowadays always represented by the same (positive) number
10760 on all platforms.
10761 (read-key-empty-map): New const.
10762 (read-key-delay): New var.
10763 (read-key): New function.
10764 (force-mode-line-update): Use with-current-buffer.
10765 (locate-user-emacs-file): Don't forget to abbreviate the file name.
10766 (start-process-shell-command, start-file-process-shell-command):
10767 Discourage the use of command-args.
10768
10769 2009-08-19 Glenn Morris <rgm@gnu.org>
10770
10771 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
10772
10773 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10774
10775 * simple.el (choose-completion-string): Don't rely on
10776 minibuffer-completing-file-name and ad-hoc checks to decide whether
10777 to continue completion or not.
10778
10779 * minibuffer.el (minibuffer-hide-completions): New function.
10780 (completion--do-completion): Use it.
10781 (completions-annotations): New face.
10782 (completion--insert-strings): Use it.
10783 (completion-pcm--delim-wild-regex): Add docstring.
10784 (completion-pcm--string->pattern): Add support for 0-width delimiters
10785 in completion-pcm--delim-wild-regex.
10786
10787 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
10788
10789 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
10790 Remove unused var `buffer-modified-p'.
10791
10792 * minibuffer.el (completion--do-completion): Move point for the #b001
10793 case as well (bug#4176).
10794 (minibuffer-complete, minibuffer-complete-word): Don't move point.
10795
10796 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
10797
10798 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
10799 and :session buses.
10800
10801 2009-08-18 Kenichi Handa <handa@m17n.org>
10802
10803 * international/ucs-normalize.el (ucs-normalize-version):
10804 Change to 1.1.
10805 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
10806 (utf-8-hfs): Make it perform normalization on encoding too.
10807
10808 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
10809 (sentence-end-without-space): Delete duplicated chars.
10810 (sentence-end-base): Likewise.
10811
10812 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
10813 (html-mode): Delete duplicated chars from sentence-end-base.
10814
10815 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
10816 (texinfo-mode): Delete duplicated chars from sentence-end-base.
10817
10818 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
10819
10820 * files.el (hack-one-local-variable): If the mode function is for
10821 a minor mode, pass it an argument (Bug#4148).
10822
10823 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
10824
10825 * net/tramp.el (tramp-register-completion-file-name-handler):
10826 Check also for (member 'partial-completion completion-styles).
10827
10828 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10829
10830 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
10831 abbrev (Bug#3943).
10832
10833 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
10834
10835 * progmodes/cperl-mode.el: Merge upstream 6.2.
10836 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
10837 (cperl-forward-re): Check cperl-brace-recursing.
10838 (cperl-highlight-charclass): New function.
10839 (cperl-find-pods-heres): Use it.
10840 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
10841 (cperl-beautify-regexp-piece): Fix column calculation.
10842 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
10843 (cperl-beautify-level): Don't process entire regexp.
10844 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
10845 calling man.
10846 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
10847 (cperl-init-faces): Build a list in the normal way.
10848
10849 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10850
10851 * calendar/parse-time.el (parse-time-string-chars): Save match
10852 data.
10853
10854 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
10855
10856 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
10857 (sql-product): Use it.
10858 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
10859 (sql-set-product): Add completion.
10860 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
10861 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
10862 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
10863 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
10864 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
10865 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
10866 (sql-highlight-db2-keywords): Remove.
10867 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
10868 (sql-highlight-product): Use derived-mode-p.
10869 (sql-set-sqli-buffer): Use with-current-buffer.
10870 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
10871 Simplify.
10872
10873 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
10874
10875 * term.el: Fix commenting convention, turn comments into docstrings.
10876
10877 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
10878
10879 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
10880
10881 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
10882
10883 * calendar/parse-time.el (parse-time-string-chars): Compute using
10884 character classes, to handle non-ascii characters (Bug#3190).
10885
10886 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10887
10888 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
10889 another heredoc if the user adds another < (Bug#3226).
10890
10891 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10892 Don't initialize based on window-system (Bug#4124).
10893
10894 * facemenu.el (facemenu-read-color): Use a completion function
10895 that accepts any defined color, such as RGB triplets (Bug#3677).
10896
10897 * files.el (get-free-disk-space): Change fallback default
10898 directory to /. Expand DIR argument before switching to fallback.
10899 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
10900
10901 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10902
10903 * files.el (load-library): Doc fix.
10904
10905 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
10906
10907 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
10908 (viper-if-string): Redefine C-s in the minibuffer to insert the last
10909 incremental search string.
10910
10911 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
10912 XEmacs.
10913
10914 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
10915 (ediff-merge-region-is-non-clash)
10916 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
10917 Also check if the job is really a merge job.
10918
10919 * ediff.el (ediff-current-file): New function.
10920
10921 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10922
10923 * progmodes/js.el: Edit docstrings throughout to follow Emacs
10924 conventions.
10925 (js-insert-and-indent): Delete function.
10926 (js-mode-map): Don't bind keys to js-insert-and-indent.
10927 (js-beginning-of-defun): Rename from js--beginning-of-defun.
10928 (js-end-of-defun): Rename from js--end-of-defun.
10929 (js-auto-indent-flag): Delete variable.
10930
10931 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
10932
10933 * progmodes/js.el: Remove proclaim statement.
10934 Defvar which-func-imenu-joiner-function to silence compiler.
10935
10936 * files.el (auto-mode-alist): Use js-mode for .js files.
10937
10938 * progmodes/js2-mode.el: Remove file.
10939
10940 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
10941
10942 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
10943
10944 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
10945
10946 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
10947 Karl Landstrom <karl.landstrom@brgeight.se>
10948
10949 * progmodes/js.el: New file.
10950
10951 2009-08-14 Mark A. Hershberger <mah@everybody.org>
10952
10953 * timezone.el (timezone-parse-date): Add ability to understand ISO
10954 basic format (minimal separators) dates in addition to the
10955 already-supported extended format dates.
10956
10957 2009-08-14 Eli Zaretskii <eliz@gnu.org>
10958
10959 * international/ucs-normalize.el: Add a `coding' file variable.
10960
10961 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
10962
10963 2009-08-14 Sam Steingold <sds@gnu.org>
10964
10965 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
10966
10967 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
10968
10969 * faces.el (help-argument-name): Define it here instead of
10970 help-fns.el, because in daemon mode help-fns.el may be loaded when
10971 faces are still uninitialized (Bug#1078).
10972
10973 * help-fns.el (help-argument-name): Move defface to faces.el.
10974
10975 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
10976
10977 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
10978 create buffer with a pty but no process so that GDB can make the
10979 inferior the controlling process.
10980
10981 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
10982
10983 * international/ucs-normalize.el: New file.
10984
10985 2009-08-13 Richard Stallman <rms@gnu.org>
10986
10987 * mail/rmail.el (rmail-get-attr-names):
10988 Accept an attribute header that is too short.
10989
10990 * mail/rmail.el (rmail-forget-messages):
10991 Ignore nil elt in rmail-message-vector. Use dotimes.
10992
10993 * progmodes/compile.el (compilation-goto-locus):
10994 Use next-error-move-function.
10995
10996 * simple.el (next-error-move-function): New variable.
10997
10998 2009-08-12 Juri Linkov <juri@jurta.org>
10999
11000 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
11001 always non-nil. (Bug#4052)
11002
11003 * replace.el (read-regexp): Return empty string when
11004 `default-value' is nil.
11005 (keep-lines-read-args): Don't use empty string as the
11006 default value for `read-regexp'. (Bug#2495)
11007
11008 2009-08-12 Juri Linkov <juri@jurta.org>
11009
11010 * international/mule-cmds.el (ucs-insert): Change arguments
11011 from `arg' to `character', `count', `inherit' to be the same
11012 as in `insert-char'. Doc fix. (Bug#4039)
11013
11014 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
11015
11016 2009-08-12 Juri Linkov <juri@jurta.org>
11017
11018 * files-x.el: New file.
11019
11020 * files.el: Move code that deals with adding/deleting
11021 file/directory-local variables to files-x.el.
11022
11023 * Makefile.in (ELCFILES): Add files-x.elc.
11024
11025 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
11026
11027 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
11028 to use `goto-line'.
11029 (gdb-place-breakpoints, gdb-get-location): Rewritten without
11030 `goto-line'.
11031 (gdb-invalidate-disassembly): Do not refresh upon receiving
11032 'update signal. Instead, update all disassembly buffers only after
11033 threads list.
11034 (gdb): Send -target-detach when buffer is killed (Bug#3794).
11035 (gdb-starting): Moved -data-list-register-names...
11036 (gdb-stopped): ...here so it's sent when first thread stops.
11037 (gdb-registers-handler-custom): Do nothing if register names are
11038 unknown yet.
11039
11040 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
11041 from `gdb-mi.el' to avoid extra tangling.
11042
11043 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
11044 change which breaks `gud-def' definitions used in `gdb'.
11045 (gdb-update-gud-running): No extra fuss for updating frame number.
11046
11047 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11048
11049 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
11050 (describe-language-environment-map, setup-language-environment-map)
11051 (set-coding-system-map): Move initialization into declaration.
11052 (set-language-info-alist): Last arg to define-key-after can be skipped.
11053
11054 * international/quail.el (quail-completion-1): Simplify.
11055 (quail-define-rules): Use slightly more compact code.
11056 (quail-insert-decode-map): Propertize keys, compact columns.
11057
11058 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11059 Add goto-line.
11060
11061 2009-08-10 Miles Bader <miles@gnu.org>
11062
11063 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
11064 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
11065 (js2-instance-member, js2-private-member, js2-private-function-call)
11066 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
11067 (js2-magic-paren, js2-external-variable):
11068 Remove "-face" suffix from face names.
11069 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
11070 (js2-highlight-undeclared-vars, js2-peek-token)
11071 (js2-parse-function-params, js2-mode-show-errors)
11072 (js2-mode-show-warnings, js2-make-magic-delimiter)
11073 (js2-mode-highlight-magic-parens): Update to use new face names.
11074
11075 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
11076
11077 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
11078 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
11079
11080 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
11081
11082 * subr.el: Provide hashtable-print-readable.
11083
11084 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
11085 hs-c-like-adjust-block-beginning.
11086 (hs-hide-block-at-point): Stop hiding at the beginning of
11087 hs-block-end-regexp (Bug#700).
11088
11089 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
11090
11091 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
11092 a macro.
11093 (gdb-registers-handler-custom): Do not fail when register names
11094 are unavailable.
11095
11096 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
11097
11098 * progmodes/gdb-mi.el (gdb-control-all-threads)
11099 (gdb-control-current-thread): Interactive setters for
11100 `gdb-gud-control-all-threads' to use in menu.
11101 (gdb-show-run-p): Show «Go» when process is not active.
11102 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
11103 gud/thread.xpm and gud/all.xpm.
11104
11105 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
11106
11107 * net/net-utils.el (net-utils-font-lock-keywords): New var.
11108 (nslookup-font-lock-keywords): Make it a variable.
11109 (net-utils-mode): New mode for viewing diagnostic network output.
11110 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
11111 (net-utils-run-simple): New function.
11112 (ifconfig, iwconfig, netstat, arp, route): Use it.
11113
11114 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
11115
11116 * progmodes/gdb-mi.el (gdb-read-memory-custom)
11117 (gdb-memory-set-address, def-gdb-set-positive-number)
11118 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
11119 after changing settings.
11120 (gdb-invalidate-disassembly): Update when first shown.
11121 (gdb-edit-locals-value): Fixed.
11122 (gdb-registers-handler-custom): Print registers in right order and
11123 allow changing register values (only for current thread yet).
11124 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
11125 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
11126 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
11127 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
11128 info in mode name.
11129 (gdb-registers-mode-map): TAB to switch to locals.
11130
11131 2009-08-08 Eli Zaretskii <eliz@gnu.org>
11132
11133 * mail/rmail.el (rmail-add-mbox-headers)
11134 (rmail-set-message-counters-counter): Search for
11135 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
11136
11137 2009-08-08 Glenn Morris <rgm@gnu.org>
11138
11139 * Makefile.in (ELCFILES): Update.
11140
11141 2009-08-07 Eli Zaretskii <eliz@gnu.org>
11142
11143 * mail/sendmail.el (mail-yank-original): Set
11144 buffer-file-coding-system from the one used by the message whose
11145 text is yanked.
11146
11147 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
11148 to "windows" when "pgnuplot" is used.
11149 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
11150 call accept-process-output if "pgnuplot" is used.
11151 (calc-graph-init): Don't send -display and -geometry to
11152 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
11153 running "pgnuplot -V" with shell-command-to-string.
11154
11155 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
11156 the default.
11157
11158 2009-08-07 Eli Zaretskii <eliz@gnu.org>
11159
11160 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
11161 org/org-latex.elc.
11162
11163 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
11164
11165 * vc-dispatcher.el (vc-resynch-window): Update comment.
11166
11167 * term.el (term-handle-ansi-escape): Add comments with the
11168 terminfo capabilities implemented.
11169
11170 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
11171
11172 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
11173 (gdb-var-create-handler): Rewritten using JSON parser.
11174 (gdb-propertize-header): Moved earlier.
11175 (gdb-set-header): Removed to avoid duplication.
11176 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
11177 Refresh disassembly buffers only after threads list have been
11178 update.
11179 (gdb-threads-header, gdb-registers-header): Per-buffer header line
11180 variables.
11181
11182 2009-08-04 Juri Linkov <juri@jurta.org>
11183
11184 * files.el: Commands to add/delete file/directory-local variables.
11185 (read-file-local-variable, read-file-local-variable-value)
11186 (read-file-local-variable-mode, modify-file-local-variable)
11187 (modify-file-local-variable-prop-line)
11188 (modify-dir-local-variable): New functions.
11189 (add-file-local-variable, delete-file-local-variable)
11190 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
11191 (add-dir-local-variable, delete-dir-local-variable)
11192 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
11193 (copy-dir-locals-to-file-locals-prop-line): New commands.
11194
11195 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
11196
11197 * abbrev.el (insert-abbrev-table-description): Prettify output.
11198 Suggested by Karl Chen.
11199
11200 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
11201
11202 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
11203 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
11204 (gdb-overlay-arrow-position, gdb-thread-position)
11205 (gdb-disassembly-position): Declare variables.
11206 (gdb-wait-for-pending): Function now.
11207 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
11208 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
11209 compilation goes smoothly.
11210 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
11211 (gdb-non-stop-setting): New customization setting which replaces
11212 `gdb-non-stop' so changing it doesn't break active GDB session.
11213 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
11214 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
11215 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
11216 (gdb-show-threads-by-default): New customization options.
11217 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
11218 routines.
11219 (gdb-get-buffer-create): Send buffers update signal when they are
11220 created.
11221 (gdb-invalidate-locals, gdb-invalidate-registers)
11222 (gdb-invalidate-breakpoints)
11223 (gdb-invalidate-threads, gdb-invalidate-disassembly)
11224 (gdb-invalidate-memory): Accept update signal.
11225 (gdb-current-context-command): Use --frame option.
11226 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
11227 Implement `gdb-frame-number' selection logic.
11228 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
11229 whether to show GUD toolbar buttons.
11230 (gdb-thread-exited): Unselect current thread when it exits.
11231 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
11232 (gdb-mark-line): Routine which sets overlay arrow or inverses
11233 video on fringeless displays.
11234 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
11235 to build aligned columns of data in GDB buffers and set text
11236 properties line-by-line.
11237 (gdb-invalidate-breakpoints)
11238 (gdb-breakpoints-list-handler-custom)
11239 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
11240 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
11241 (gdb-registers-handler-custom): Align data columns.
11242 (gdb-locals-handler-custom): Now prints data like in variable
11243 declarations.
11244 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
11245 Removed confusing buttons.
11246 (gdb-invalidate-threads): Append --frame.
11247 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
11248 between breakpoints/threads buffers.
11249 (gdb-set-window-buffer): Now can ignore dedicated windows.
11250 (gdb-propertize-header): Use `gdb-set-window-buffer'.
11251 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
11252 (def-gdb-thread-buffer-gud-command): Replaces
11253 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
11254 for fine thread control.
11255 (gdb-preempt-existing-or-display-buffer): New function used to
11256 display bound buffers without breaking window layout.
11257 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
11258 (gdb-select-frame): New version of `gdb-frames-select' which now
11259 sets `gdb-frame-number' so commands may use --frame option instead
11260 of inner debugger state.
11261 (gdb-frame-handler): Do not set `gdb-frame-number'.
11262 (gdb-threads-mode-map): Select threads with mouse.
11263
11264 * progmodes/gud.el (gdb-gud-context-call): Declare function to
11265 avoid compilation warning.
11266 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
11267 `gdb-show-stop-p`.
11268
11269 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
11270 Argument `key' renamed to `buffer-type'.
11271 (gdb-current-context-buffer-name): Do not add thread info to
11272 buffer name when no thread is selected.
11273 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
11274 command (bug 3794).
11275 (gdb-thread-selected): Handle `=thread-selected' notification.
11276 (gdb-wait-for-pending): New macro to deal with congestion problems.
11277 (gdb-breakpoints-list-handler-custom): Don't fail on pending
11278 breakpoints.
11279 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
11280 This fixes problem similar to one described in bug 3947.
11281 (gud-menu-map): More menu items.
11282 (gdb-init-1): Reset `gdb-thread-number' to nil.
11283
11284 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
11285 non-stop settings.
11286
11287 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
11288 (gdb-current-context-command): Do not append --thread if
11289 `gdb-thread-number' is nil.
11290 (gdb-running-threads-count, gdb-stopped-threads-count): New
11291 variables.
11292 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
11293 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
11294 customization options.
11295 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
11296 GUD commands.
11297 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
11298 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
11299 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
11300 set `gdb-thread-number' and update `gud-running' properly.
11301 (gdb-running): Update threads list when new threads appear.
11302 (gdb-stopped): Support non-stop operation and new thread switching
11303 logic.
11304 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
11305 (gdb-json-partial-output): New set of JSON routines.
11306 (def-gdb-auto-update-trigger): New `signal-list' optional
11307 argument.
11308 (gdb-thread-list-handler-custom): Update `gud-running',
11309 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
11310 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
11311 (gdb-continue-thread, gdb-step-thread): New commands for fine
11312 thread execution control.
11313 (gud-menu-map): New menu items to switch non-stop options.
11314 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
11315 (gdb-send): Mimic RET properly (bug 3794).
11316
11317 * progmodes/gdb-mi.el (gdb-rules-name-maker)
11318 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
11319 gdb-buffer-rules.
11320 (def-gdb-auto-update-handler): New nopreserve optional argument.
11321 (gdb-stack-list-frames-custom): Print stack from top to bottom.
11322
11323 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
11324 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
11325 (gdb-parent-mode): New mode to derive other GDB modes from.
11326 (gdb-display-disassembly-for-thread)
11327 (gdb-frame-disassembly-for-thread): New commands for threads
11328 buffer.
11329
11330 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
11331 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
11332 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
11333 (gdb-update): We now store all GDB buffers in a list so that they
11334 can be updated by traversing a list instead of calling invalidate
11335 triggers explicitly.
11336 (def-gdb-trigger-and-handler): New macro to define trigger-handler
11337 pair for GDB buffer.
11338 (gdb-stack-buffer-name): Add thread information.
11339 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
11340 handle pending triggers.
11341 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
11342 (def-gdb-thread-buffer-simple-command)
11343 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
11344 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
11345 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
11346 New commands which show buffers bound to thread.
11347 (gdb-stack-list-locals-regexp): Removed unused regexp.
11348
11349 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
11350 (gdb-locals-buffer-name, gdb-registers-buffer-name)
11351 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
11352 to (gud-comint-buffer) in *-buffer-name functions
11353 because (gdb-get-target-string) already does that.
11354 (gdb-locals-handler-custom, gdb-registers-handler-custom)
11355 (gdb-changed-registers-handler): Rewritten without regexps.
11356
11357 * progmodes/gdb-mi.el: Basic thread selection support.
11358 (gdb-thread-number): New variable.
11359 (gdb-current-context-command): New macro which adds --thread
11360 option to command.
11361 (gdb-threads-mode-map): Select thread with SPC.
11362 (gdb-thread-list-handler-custom): Mark current thread with overlay
11363 arrow. Synchronize GDB thread and Emacs thread.
11364 (gdb-select-thread): New command which selects current thread.
11365 (gdb-invalidate-frames, gdb-invalidate-locals)
11366 (gdb-invalidate-registers): Use --thread option.
11367
11368 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
11369
11370 * net/tramp.el (top): Make check for tramp-gvfs loading more
11371 robust. (Bug#3977)
11372 (tramp-handle-insert-file-contents): `unwind-protect' must be
11373 inside `with-parsed-tramp-file-name'.
11374
11375 * net/tramp-gvfs.el (top): Remove superfluous message when loading
11376 fails.
11377
11378 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
11379
11380 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
11381 directory if CLASSPATH is not set.
11382
11383 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
11384
11385 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
11386 New defconst.
11387 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
11388
11389 2009-08-02 Kevin Ryde <user42@zip.com.au>
11390
11391 * net/newst-backend.el (newsticker--raw-url-list-defaults):
11392 Update freshmeat link. Delete newsforge.com as it seems gone.
11393
11394 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
11395
11396 * select.el (x-set-selection): Doc fix (Bug#4021).
11397
11398 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
11399
11400 * help-fns.el (describe-variable): Treat list return values from
11401 dir-locals-find-file properly (Bug#4005).
11402
11403 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
11404
11405 * net/tramp.el (tramp-debug-message): Print also microseconds.
11406
11407 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
11408
11409 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
11410 or END is non-nil.
11411 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
11412 (tramp-get-debug-buffer): Change `outline-regexp' according to new
11413 format.
11414
11415 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
11416 (tramp-get-file-property): Use it.
11417
11418 * autorevert.el (auto-revert-handler): Allow
11419 `auto-revert-tail-mode' for remote files.
11420
11421 2009-08-02 Jason Rumney <jasonr@gnu.org>
11422
11423 * minibuffer.el (read-file-name): Treat confirm options to
11424 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
11425
11426 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
11427
11428 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
11429 (font-lock-variable-name-face, font-lock-constant-face): Darken
11430 the colors for light backgrounds.
11431
11432 2009-08-01 Eli Zaretskii <eliz@gnu.org>
11433
11434 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
11435 month names. (Bug#3987)
11436
11437 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
11438
11439 * simple.el (line-move-finish): Pass whole number to
11440 line-move-to-column.
11441 (line-move-visual): Perform hscroll to the recorded position.
11442
11443 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
11444
11445 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
11446
11447 2009-07-29 Alan Mackenzie <acm@muc.de>
11448
11449 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
11450
11451 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
11452
11453 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
11454 (gdb-place-breakpoints): Use full path when setting breakpoints.
11455
11456 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
11457
11458 * calc/calc.el (calc-mode-map): Add keybinding for
11459 `calc-transpose-lines'.
11460
11461 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
11462
11463 * calc/calc-misc.el (calc-transpose-lines): New function.
11464
11465 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
11466
11467 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
11468 Simplify check for out-of-band methods.
11469 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
11470 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
11471
11472 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
11473
11474 * vc-git.el (vc-git-checkin): Fix typo.
11475
11476 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
11477
11478 * progmodes/js2-mode.el: New file.
11479
11480 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
11481
11482 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
11483 (gud-menu-map): Adjust tooltip accordingly.
11484
11485 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
11486
11487 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
11488 (vc-bzr-log-view-mode): Adjust log-view-file-re.
11489
11490 * add-log.el (change-log-mode-map): Add a menu.
11491
11492 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
11493
11494 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
11495 function returns nil.
11496 (dbus-handle-event): Handle special return value :ignore.
11497 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
11498
11499 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
11500
11501 * view.el (view-mode-enable): Don't define Helper-return-blurb if
11502 it's not needed.
11503
11504 2009-07-25 Eli Zaretskii <eliz@gnu.org>
11505
11506 Fix Bug#3888:
11507
11508 * w32-vars.el (x-select-enable-clipboard): Doc fix.
11509
11510 * term/pc-win.el (x-display-name, x-colors)
11511 (x-select-enable-clipboard, x-select-text): Doc fix.
11512
11513 * term/common-win.el (x-display-name, x-colors): Doc fix.
11514
11515 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
11516 (xw-defined-colors): Doc fix.
11517
11518 * w32-fns.el (x-select-text, x-setup-function-keys)
11519 (x-get-selection, x-set-selection): Doc fix.
11520
11521 * term/x-win.el (x-select-text, x-setup-function-keys)
11522 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
11523
11524 * select.el (x-set-selection): Doc fix.
11525
11526 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
11527
11528 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
11529 instead of "IsNSSSupportAvailable". Avahi ought to work also when
11530 "IsNSSSupportAvailable" method is not available. Reported by
11531 Steve Youngs <steve@sxemacs.org>.
11532
11533 2009-07-24 Kenichi Handa <handa@m17n.org>
11534
11535 * international/characters.el: Fix setting of category ?C, ?|, ?K,
11536 and ?H. Fix setting of case for Latin Extended and Greek Extended.
11537 (build-unicode-category-table): Fix range checks.
11538
11539 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
11540
11541 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
11542 the buffer we try to sync is current when calling
11543 vc-resynch-buffer.
11544
11545 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
11546 not show up to date files.
11547
11548 2009-07-24 Glenn Morris <rgm@gnu.org>
11549
11550 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
11551 Add autoload cookies. If necessary, initialize.
11552 (elint-log): Handle non-file buffers.
11553 (elint-initialize): Add optional argument to reinitialize.
11554 (elint-find-builtin-variables): Save excursion.
11555
11556 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
11557
11558 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
11559 for Lint.
11560
11561 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
11562
11563 * vc.el (vc-print-log-internal): New function, split out from ...
11564 (vc-print-log): ... here.
11565 (vc-dir-move-to-goal-column): Declare.
11566
11567 * vc-git.el (vc-git-add-signoff): New variable.
11568 (vc-git-checkin): Use it.
11569 (vc-git-toggle-signoff): New function.
11570 (vc-git-extra-menu-map): Bind it to menu.
11571 (vc-git--run-command-string): Accept a nil FILE argument.
11572 (vc-git-stash-list): New function.
11573 (vc-git-dir-extra-headers): Use it.
11574
11575 2009-07-23 Glenn Morris <rgm@gnu.org>
11576
11577 * help-fns.el (describe-variable): Describe ignored and risky local
11578 variables in a similar way to that in which we describe safe ones.
11579
11580 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
11581 (byte-compile-output-file-form, byte-compile-output-docform)
11582 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
11583 Give some more local variables with common names a "bytecomp-" prefix,
11584 so as not to shadow things during compilation.
11585 * emacs-lisp/cl-macs.el (load-time-value)
11586 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
11587 `outbuffer' to `bytecomp-outbuffer'.
11588
11589 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
11590 since the next two variables cover them automatically now.
11591 (elint-builtin-variables, elint-autoloaded-variables): New.
11592 (elint-unknown-builtin-args): Remove all members, since they can be
11593 parsed automatically now.
11594 (elint-extra-errors): New.
11595 (elint-env-add-env, elint-env-add-macro): Use cadr.
11596 (elint-current-buffer): Use or. Change final message.
11597 (elint-get-top-forms): Use line-end-position.
11598 (elint-init-env): Use cadr. Handle autoload, declare-function,
11599 and defalias.
11600 (elint-add-required-env): Doc fix. Use or. Standardize error.
11601 (regexp-assoc): Remove unused function.
11602 (elint-top-form): Set elint-current-pos, to record the start of the
11603 top-level form, for compilation-mode.
11604 (elint-form): Trap errors in macro expansion. Use dolist.
11605 (elint-unbound-variable): Use elint-builtin-variables and
11606 elint-autoloaded-variables.
11607 (elint-get-args): Use cadr, or.
11608 (elint-check-cond-form): Use dolist, cadr.
11609 (elint-check-condition-case-form): Doc fix. Use cadr.
11610 Use elint-extra-errors.
11611 (elint-log): New function.
11612 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
11613 Distinguish errors and warnings.
11614 (elint-log-message): Use with-current-buffer. Inhibit read-only.
11615 Use a bytecomp-style format.
11616 (elint-clear-log): Preserve default-directory. Inhibit read-only.
11617 (elint-get-log-buffer): Use compilation mode. Disable undo.
11618 Don't truncate lines.
11619 (elint-initialize): Set builtin and autoloaded variable lists.
11620 Only process elint-unknown-builtin-args if non-nil.
11621 (elint-find-builtin-variables, elint-find-autoloaded-variables):
11622 New functions.
11623 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
11624
11625 2009-07-22 Kevin Ryde <user42@zip.com.au>
11626
11627 * net/newst-backend.el (newsticker--parse-atom-1.0)
11628 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
11629 (newsticker--parse-rss-1.0):
11630 * progmodes/idlwave.el (idlwave-mode):
11631 * progmodes/idlw-shell.el (idlwave-shell-mode):
11632 * progmodes/vera-mode.el (vera-mode):
11633 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
11634 * progmodes/vhdl-mode.el (vhdl-mode):
11635 * textmodes/table.el (table-generate-source)
11636 (table--warn-incompatibility):
11637 Hyperlink urls in docstrings with URL `...'.
11638
11639 2009-07-22 Glenn Morris <rgm@gnu.org>
11640
11641 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
11642 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
11643 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
11644 Remove leading * from defcustom docs.
11645
11646 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
11647
11648 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
11649 defcustom doc.
11650 (list-load-path-shadows): Optionally, just return shadows as a string.
11651
11652 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
11653
11654 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
11655
11656 * mail/rmailedit.el (rmail-edit-mode): Use
11657 auto-save-include-big-deletions.
11658
11659 * mail/rmail.el (rmail-variables): Use
11660 auto-save-include-big-deletions.
11661
11662 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
11663 changes.
11664
11665 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
11666
11667 * calc/calc.el (calc-undo-length): New variable.
11668 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
11669
11670 2009-07-21 Richard Stallman <rms@gnu.org>
11671
11672 * files.el (auto-save-mode): Handle buffer-save-size = -2
11673 for toggling mode.
11674
11675 2009-07-21 Glenn Morris <rgm@gnu.org>
11676
11677 * textmodes/ispell.el (ispell-looking-back): Update declaration.
11678
11679 * calendar/todo-mode.el (calendar-current-date): Update declaration.
11680
11681 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
11682 silence compiler. Instead...
11683 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
11684 (ps-print-ensure-fontified): Update for above function name changes.
11685
11686 * printing.el (pr-mh-get-msg-num, pr-mh-show)
11687 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
11688 silence compiler. Instead...
11689 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
11690 (mh-show-buffer): Only define for compiler.
11691 (pr-mh-current-message): Update for above function name changes.
11692
11693 * files.el (abort-if-file-too-large): Explicitly pass `filename'
11694 as an argument.
11695 (find-file-noselect, insert-file-1): Update for above change.
11696
11697 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
11698
11699 * mail/mailclient.el (mailclient-send-it): Fix message.
11700
11701 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
11702 (edebug-eval): Check cl-debug-env is bound.
11703 (print-level, print-circle): Don't redefine built-in variables.
11704
11705 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
11706 (custom-print-vectors): Remove old comments from doc.
11707
11708 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
11709 (emerge-version): Make the variable an obsolete alias for the
11710 emacs-version variable. Make the function obsolete.
11711 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
11712 Emerge options, rather than merging in into the main Options menu.
11713 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
11714 and auto advance modes. Disable edit/fast items when not relevant.
11715
11716 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
11717
11718 * term/vt420.el (terminal-init-vt420): Fix typo.
11719
11720 2009-07-20 Sam Steingold <sds@gnu.org>
11721
11722 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
11723 variable (removed from compile.el on 2004-03-11).
11724
11725 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
11726
11727 * files.el (hack-local-variables-filter): Fix last change.
11728
11729 2009-07-19 Juri Linkov <juri@jurta.org>
11730
11731 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
11732 (dir-local-variables-alist): New buffer-local variable.
11733 (hack-local-variables-filter): If variable is not dir-local,
11734 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
11735 because file-local overrides dir-local.
11736 (c-postprocess-file-styles) <declare-function>:
11737 Remove obsolete declaration.
11738 (hack-dir-local-variables): Add dir-local variable/value pair to
11739 `dir-local-variables-alist' and remove duplicates. Doc fix.
11740
11741 * help-fns.el (describe-variable): Add information about
11742 file-local and dir-local variables.
11743
11744 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
11745
11746 * files.el (hack-local-variables-filter): Rewrite.
11747
11748 2009-07-19 Glenn Morris <rgm@gnu.org>
11749
11750 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
11751 Silence compiler by only defining on XEmacs.
11752
11753 * international/mule.el (auto-coding-regexp-alist): Only match
11754 BABYL... at the start of buffer, not of lines. (Bug#3790)
11755
11756 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
11757 non-calendar buffers (Bug#3862). Restore "not on a date" message.
11758 (cal-menu-context-mouse-menu): Doc fix.
11759
11760 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
11761
11762 * simple.el (mail-user-agent): Doc fix. Set :version tag.
11763
11764 2009-07-18 Juri Linkov <juri@jurta.org>
11765
11766 * info.el: Virtual Info keyword finder.
11767 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
11768 (Info-finder-file): New variable.
11769 (Info-finder-find-file): New function.
11770 (finder-known-keywords, finder-package-info)
11771 (find-library-name, lm-commentary): Use defvar and
11772 declare-function to silence compiler warnings.
11773 (Info-finder-find-node): New function.
11774 (info-finder): New command.
11775
11776 * subr.el (process-kill-buffer-query-function): New function.
11777 (add-hook)<kill-buffer-query-functions>: Add hook
11778 `process-kill-buffer-query-function'.
11779
11780 2009-07-18 Alan Mackenzie <acm@muc.de>
11781
11782 * progmodes/cc-mode.el (c-before-hack-hook)
11783 (c-postprocess-file-styles): Give invocation of `c-set-style'
11784 DONT-OVERRIDE parameter of t. Already set style variables will
11785 thus not be overridden by style settings given by `c-file-syle'.
11786
11787 * files.el (hack-local-variables-filter): Remove entries with
11788 duplicate keys from `file-local-variables-alist'.
11789
11790 2009-07-18 Eli Zaretskii <eliz@gnu.org>
11791
11792 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
11793 x-set-selection if display-selections-p returns nil for the
11794 current frame.
11795
11796 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
11797
11798 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
11799
11800 2009-07-18 Eli Zaretskii <eliz@gnu.org>
11801
11802 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
11803 Accept nil in addition to a regexp.
11804 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
11805 Accept nil in addition to a regexp.
11806 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
11807 buffers that have an associated file. Handle nil values of
11808 desktop-buffers-not-to-save and desktop-files-not-to-save.
11809 (Bug#3833)
11810
11811 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11812 (x-disown-selection-internal): New functions.
11813
11814 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
11815
11816 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
11817 warning.
11818 (gdb-breakpoints-header): Move forward to avoid compiler warning.
11819 (gdb-make-header-line-mouse-map): Remove duplicate definition.
11820
11821 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
11822
11823 * simple.el (set-mark): Revert last change.
11824
11825 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
11826
11827 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
11828 rendering of pngs is not possible instead of messaging a long
11829 description.
11830
11831 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
11832
11833 * w32-fns.el (x-selection-owner-p): New function.
11834
11835 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
11836 (mouse-yank-at-click, mouse-yank-primary): If
11837 select-active-regions is non-nil, deactivate the mark before
11838 insertion.
11839
11840 * simple.el (deactivate-mark, set-mark): Only save selection if we
11841 own it.
11842
11843 2009-07-17 Kenichi Handa <handa@m17n.org>
11844
11845 * case-table.el (describe-buffer-case-table): Fix for the case
11846 that KEY is a cons.
11847
11848 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
11849
11850 * vc-rcs.el (vc-rcs-find-file-hook):
11851 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
11852
11853 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
11854
11855 * net/tramp.el (tramp-wait-for-output): Handle the case when
11856 commands do not return a newline but a null byte before the shell
11857 prompt. (Bug#3858)
11858
11859 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11860
11861 * term/ns-win.el (ns-set-alpha): Don't declare.
11862 (ns-set-background-alpha): Remove function.
11863
11864 2009-07-16 Kevin Ryde <user42@zip.com.au>
11865
11866 * emacs-lisp/copyright.el (copyright-update): Save match-data across
11867 y-or-n-p, for safety.
11868
11869 2009-07-16 Richard Stallman <rms@gnu.org>
11870
11871 * files.el (auto-save-mode): If buffer-saved-size is -2,
11872 don't clobber it.
11873
11874 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
11875 (rmail-retry-ignored-headers): Add more uninteresting fields.
11876
11877 2009-07-15 Jari Aalto <jari.aalto@cante.net>
11878
11879 * net/rcirc.el (rcirc): Use history variables.
11880 (rcirc-server-name-history, rcirc-nick-name-history)
11881 (rcirc-server-port-history): New variables.
11882
11883 2009-07-15 Kenichi Handa <handa@m17n.org>
11884
11885 * international/mule-cmds.el (set-language-environment-charset):
11886 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
11887 ignore them.
11888
11889 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
11890 Delete unibyte-display.
11891
11892 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11893
11894 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
11895
11896 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11897
11898 * simple.el (deactivate-mark): Optional argument FORCE.
11899 (set-mark): Use deactivate-mark.
11900
11901 * info.el (Info-search): No need to check transient-mark-mode
11902 before calling deactivate-mark.
11903
11904 * select.el (x-set-selection): Doc fix.
11905 (x-valid-simple-selection-p): Allow buffer values.
11906 (xselect--selection-bounds): Handle buffer values. Suggested by
11907 David De La Harpe Golden.
11908
11909 * mouse.el (mouse-set-region, mouse-drag-track): Call
11910 copy-region-as-kill before setting the mark, to let
11911 select-active-regions work.
11912
11913 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
11914
11915 * simple.el (deactivate-mark): If select-active-regions is
11916 non-nil, copy the selection data into a string.
11917 (activate-mark): If select-active-regions is non-nil, set the
11918 selection to the current buffer.
11919 (set-mark): Update selection if select-active-regions is non-nil.
11920
11921 * select.el (x-valid-simple-selection-p): Allow buffer values.
11922
11923 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
11924
11925 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
11926 and more featureful message-mode.
11927
11928 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
11929
11930 * select.el (x-set-selection): Doc fix.
11931 (x-valid-simple-selection-p): Disallow selection data consisting
11932 of a list or cons of integers, since that is not used.
11933 (xselect--selection-bounds, xselect--int-to-cons): New functions.
11934 (xselect-convert-to-string, xselect-convert-to-length)
11935 (xselect-convert-to-filename, xselect-convert-to-charpos)
11936 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
11937
11938 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
11939
11940 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
11941 output in -break-info command (Emacs bug #3794).
11942
11943 2009-07-14 Glenn Morris <rgm@gnu.org>
11944
11945 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
11946 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
11947 (edebug-print-length, edebug-print-level, edebug-print-circle)
11948 (edebug-sit-for-seconds, edebug-view-outside)
11949 (edebug-bounce-point, edebug-set-global-break-condition)
11950 (edebug-Go-nonstop-mode, edebug-trace-mode)
11951 (edebug-Trace-fast-mode, edebug-continue-mode)
11952 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
11953 (edebug-visit-eval-list): Doc fixes.
11954
11955 * subr.el (def-edebug-spec): Doc fix.
11956
11957 2009-07-14 Kenichi Handa <handa@m17n.org>
11958
11959 * international/characters.el: Fix setting of category ?C.
11960
11961 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
11962
11963 * term/ns-win.el (x-select-font): defalias x-select-font to
11964 ns-popup-font-panel instead of generate-fontset-menu.
11965
11966 2009-07-12 Eli Zaretskii <eliz@gnu.org>
11967
11968 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
11969
11970 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
11971
11972 * arc-mode.el (archive-find-type): Allow for a PK00 string before
11973 the PK\003\004 header (Bug#3770).
11974
11975 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
11976
11977 * pcomplete.el (pcomplete-comint-setup): Check for
11978 shell-dynamic-complete-filename too.
11979
11980 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
11981
11982 * simple.el (temporary-goal-column): Change the value for
11983 line-move-visual to a cons cell.
11984 (line-move-visual): Record or set the window hscroll, if
11985 necessary (Bug#3494).
11986 (line-move-1): Handle cons value of temporary-goal-column.
11987
11988 2009-07-11 Kenichi Handa <handa@m17n.org>
11989
11990 * international/mule-diag.el (describe-character-set): Don't show
11991 width.
11992
11993 2009-07-10 Sam Steingold <sds@gnu.org>
11994
11995 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11996 Omake sometimes indents the errors it prints, so allow all
11997 regexps to start with spaces.
11998
11999 2009-07-10 Eli Zaretskii <eliz@gnu.org>
12000
12001 * cus-edit.el (customize-changed-options-previous-release):
12002 Bump value to 22.1. (Bug#3804)
12003
12004 2009-07-08 Sam Steingold <sds@gnu.org>
12005
12006 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
12007 to be a cons cell (test . ignored-directory) to selectively ignore
12008 some directories depending on the location of the search.
12009
12010 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
12011
12012 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
12013 remote user is root, on the local host.
12014 (tramp-local-host-p): Either the local user or the remote user
12015 must be root. (Bug#3771)
12016
12017 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
12018
12019 * progmodes/gdb-mi.el (gdb): Remove description of
12020 gdb-use-separate-io-buffer.
12021 (menu): Don't allow toggling of or enable
12022 gdb-use-separate-io-buffer from menubar.
12023
12024 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
12025
12026 * mail/unrmail.el (unrmail): Make sure the message ends with two
12027 newlines (Bug#3769).
12028
12029 2009-07-08 Glenn Morris <rgm@gnu.org>
12030
12031 * calendar/calendar.el (calendar-current-date): Rework previous change.
12032
12033 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
12034
12035 * calendar/calendar.el (calendar-current-date):
12036 Add an optional argument giving an offset from today.
12037
12038 2009-07-08 Glenn Morris <rgm@gnu.org>
12039
12040 * tutorial.el (tutorial--describe-nonstandard-key):
12041 Adjust the message for when a key has been unbound.
12042 (help-with-tutorial): Hide the arch-tag.
12043
12044 2009-07-08 Kenichi Handa <handa@m17n.org>
12045
12046 * international/fontset.el (setup-default-fontset): For each
12047 script, append (not set) font-specs.
12048
12049 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
12050 docstring.
12051
12052 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
12053
12054 * progmodes/gdb-mi.el (gdb-init-1): Move sending
12055 -data-list-register-names to ...
12056 (gdb-starting): ... here because GDB 7.0 requires execution to
12057 have started when using this MI command.
12058 (gdb-set-header): New function to distinguish select and
12059 unselected tabs in gdb buffers.
12060 (gdb-propertize-header): New macro that uses gdb-set-header.
12061 (gdb-breakpoints-header, gdb-locals-header): Use it.
12062 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
12063
12064 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
12065
12066 * Makefile.in (ELCFILES): Remove fadr.elc.
12067
12068 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
12069
12070 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
12071 may contain frame information, so `string-match' should be used.
12072 (gdb-update): Disassembly is invalidated through
12073 `gdb-get-selected-frame'.
12074 (gdb-pad-string): New function to pad string with spaces.
12075 (gdb-invalidate-disassembly): Invalidate only if the buffer
12076 exists.
12077 (gdb-disassembly-handler-custom): Column alignment.
12078 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
12079 placing new ones.
12080 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
12081 end of line, too.
12082 (gdb-frame-handler): Match convention to for disassembly buffer
12083 mode name.
12084 (gdb-stack-list-frames-handler): Rewritten without regexps.
12085 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
12086 not highlight breakpoints without line information.
12087 (gdb-input): Add trailing newline to command.
12088
12089 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
12090 buffer properly.
12091 (gdb-breakpoints-list-handler-custom): Replacement for
12092 `gdb-break-list-handler'. Using real parser instead of regexps
12093 now.
12094 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
12095 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
12096 to place breakpoints.
12097 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
12098 functions.
12099 (gdb-disassembly-handler-custom): Show overlay arrow.
12100 (gdb-disassembly-place-breakpoints): Show breakpoints in
12101 disassembly buffer.
12102 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
12103 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
12104 instead of parsing breakpoints buffer. Fixed old menu references
12105 in `gud-menu-map'.
12106
12107 * fadr.el: Remove.
12108
12109 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
12110 (gdb-memory-address): New variable which holds top address of
12111 memory page shown in memory buffer.
12112 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
12113 customization variables.
12114 New functions:
12115 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
12116 display the memory buffer.
12117 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
12118 buffer display parameters.
12119 (def-gdb-memory-format, gdb-memory-format-binary)
12120 (gdb-memory-format-octal, gdb-memory-format-unsigned)
12121 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
12122 Functions for setting memory buffer format.
12123 (gdb-memory-unit-word, gdb-memory-unit-halfword)
12124 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
12125 unit size used in memory buffer.
12126 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
12127 to next/previous page of memory buffer.
12128 Now using (bindat-get-field) instead of fadr functions.
12129
12130 2009-07-07 Sam Steingold <sds@gnu.org>
12131
12132 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
12133 non-top-level files.
12134
12135 2009-07-07 Kenichi Handa <handa@m17n.org>
12136
12137 * international/mule-cmds.el (reset-language-environment): Put
12138 the highset priority to the charset iso-8859-1.
12139
12140 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
12141
12142 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
12143 to the end of the line when locating the block (Bug#700).
12144
12145 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
12146
12147 * net/tramp.el (tramp-handle-write-region): Flush file properties
12148 in case of short track.
12149
12150 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
12151
12152 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
12153 Coded custom representation of verilog error regular expressions
12154 to work with Emacs-22's new format.
12155 (verilog-error-regexp-xemacs-alist): Coded custom representation
12156 of verilog error regular expressions to work with XEmacs format.
12157 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
12158 error recognition into XEmacs.
12159 (verilog-error-regexp-add-emacs): Hook routine to install verilog
12160 error recognition into Emacs-22.
12161
12162 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
12163
12164 * woman.el: Remove stand-alone closing parentheses.
12165 (woman-file-name, woman2-format-paragraphs)
12166 (woman-leave-blank-lines): Code cleanup.
12167 (woman-use-own-frame): Change default to nil.
12168 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
12169 defaults to inherit from default faces.
12170 (woman2-process-escapes): Consume the newline after a stand-alone
12171 filler character (Bug#3651).
12172
12173 2009-07-06 Glenn Morris <rgm@gnu.org>
12174
12175 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
12176 (top-level): Move provide to the end.
12177 (ffap): Remove defunct URL from custom group.
12178
12179 * subr.el (eval-after-load): Doc fix.
12180
12181 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
12182
12183 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
12184 `calc-embedded-word' is called twice.
12185
12186 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12187
12188 * files.el (find-alternate-file-other-window, find-alternate-file):
12189 Obey confirm-nonexistent-file-or-buffer.
12190
12191 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
12192
12193 * dired-aux.el (dired-show-file-type): Handle remote files.
12194
12195 2009-07-05 Jari Aalto <jari.aalto@cante.net>
12196
12197 * desktop.el (desktop-globals-to-save):
12198 Add file-name-history (Bug#2750).
12199
12200 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
12201
12202 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
12203
12204 2009-07-04 Johan Bockgård <bojohan@gnu.org>
12205
12206 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
12207 property on entire argument since this is what eshell-lisp-command
12208 expects.
12209
12210 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
12211
12212 * net/tramp-gvfs.el (tramp-gvfs-methods)
12213 (tramp-gvfs-zeroconf-domain)
12214 (tramp-bluez-discover-devices-timeout): Add version flag.
12215 (tramp-gvfs-handler-mounted-unmounted)
12216 (tramp-gvfs-connection-mounted-p): Polish handling of
12217 incompatibilities between GVFS 0.2 and 1.0.
12218
12219 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
12220
12221 * cus-start.el (all): Add make-pointer-invisible.
12222
12223 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
12224
12225 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
12226 formatted correctly.
12227
12228 2009-07-02 Juri Linkov <juri@jurta.org>
12229
12230 * info.el: Virtual Info files and nodes.
12231 (Info-virtual-files, Info-virtual-nodes): New variables.
12232 (Info-current-node-virtual): New variable.
12233 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
12234 New functions.
12235 (Info-file-supports-index-cookies): Use Info-virtual-file-p
12236 to check for a virtual file instead of checking a fixed list
12237 of node names.
12238 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
12239 instead of ad-hoc processing of "dir" and (apropos history toc).
12240 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
12241 instead of ad-hoc processing of "dir" and (apropos history toc).
12242 Reread a file when moving from a virtual node.
12243 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
12244 (Info-directory-toc-nodes, Info-directory-find-file)
12245 (Info-directory-find-node): New functions.
12246 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
12247 (Info-history): Move part of code to
12248 `Info-history-find-node'.
12249 (Info-history-toc-nodes, Info-history-find-file)
12250 (Info-history-find-node): New functions.
12251 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
12252 (Info-toc): Move part of code to `Info-toc-find-node'.
12253 (Info-toc-find-node): New function.
12254 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
12255 the current Info file name to references because now the node
12256 "*TOC*" belongs to the same Info manual.
12257 (Info-toc-build): Rename from `Info-build-toc'.
12258 (Info-toc-nodes): Rename input argument `file' to `filename'.
12259 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
12260 instead of ad-hoc processing of ("dir" apropos history toc).
12261 (Info-index-nodes): Use Info-virtual-file-p
12262 to check for a virtual file instead of checking a fixed list
12263 of node names.
12264 (Info-index-node): Add check for `Info-current-node-virtual'.
12265 Raise `save-match-data' higher up the tree to contain
12266 `search-forward' too (bug fix).
12267 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
12268 (Info-virtual-index-nodes): New variable.
12269 (Info-virtual-index-find-node, Info-virtual-index): New functions.
12270 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
12271 (Info-apropos-file, Info-apropos-nodes): New variables.
12272 (Info-apropos-toc-nodes, Info-apropos-find-file)
12273 (Info-apropos-find-node, Info-apropos-matches): New functions.
12274 (info-apropos): Move part of code to `Info-apropos-find-node' and
12275 `Info-apropos-matches'.
12276 (Info-mode-map): Bind "I" to `Info-virtual-index'.
12277 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
12278 for a virtual file instead of checking a fixed list of node names.
12279
12280 * simple.el (async-shell-command): New command.
12281
12282 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
12283
12284 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
12285 instead of `mount-info'.
12286
12287 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
12288
12289 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
12290 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
12291
12292 2009-07-02 Kenichi Handa <handa@m17n.org>
12293
12294 * international/mule.el (set-keyboard-coding-system): Force *-unix
12295 coding-system to avoid eol conversion.
12296
12297 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
12298
12299 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12300 Add handler for `process-file', `shell-command' and
12301 `start-file-process'.
12302 (tramp-gvfs-handle-shell-command)
12303 (tramp-gvfs-handle-start-file-process)
12304 (tramp-gvfs-handle-process-file): New defuns.
12305 (tramp-synce-list-devices): Simplify check for existence of property.
12306
12307 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
12308
12309 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
12310
12311 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
12312
12313 * language/korean.el (set-language-info-alist): Add korean-cp949,
12314 cp949 to spec.
12315
12316 2009-07-01 Kenichi Handa <handa@m17n.org>
12317
12318 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
12319
12320 * international/encoded-kb.el: Deleted.
12321
12322 * international/mule.el (set-keyboard-coding-system): Perform the
12323 necessary setup here instead of calling encoded-kbd-setup-display.
12324
12325 2009-07-01 Glenn Morris <rgm@gnu.org>
12326
12327 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
12328
12329 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
12330
12331 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
12332
12333 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
12334
12335 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
12336 Handle also the 'rename case, when setting file modes. (Bug#3712)
12337 (tramp-default-file-modes): Remove execute permissions.
12338
12339 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
12340 (top): Add a default for "synce" in `tramp-default-user-alist'.
12341 Add completion function for "synce" method.
12342 (tramp-hal-service, tramp-hal-path-manager)
12343 (tramp-hal-interface-manager, tramp-hal-interface-device):
12344 New defconst.
12345 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
12346 (tramp-synce-list-devices, tramp-synce-parse-device-names):
12347 New defuns.
12348
12349 * net/trampver.el: Update release number.
12350
12351 2009-06-30 Kenichi Handa <handa@m17n.org>
12352
12353 * international/fontset.el (setup-default-fontset): Add CJK fonts
12354 for symbols and the other miscellaneous characters.
12355
12356 * language/korea-util.el (setup-korean-environment-internal):
12357 Make char-width-table suitable for Korean environments.
12358 (exit-korean-environment): Cancel above.
12359
12360 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
12361 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
12362 setup-function to make char-width-table suitable for respective
12363 environments, and an exit-function to cancel that.
12364
12365 * language/japan-util.el (setup-japanese-environment-internal):
12366 Call use-cjk-char-width-table with arg `ja_JP'.
12367
12368 * international/characters.el (cjk-char-width-table): Delete it.
12369 (cjk-char-width-table-list): New variable.
12370 (use-cjk-char-width-table): New arg local-name.
12371 (use-default-char-width-table): Fix for the case that Emacs is
12372 already using the default char-width-table.
12373
12374 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
12375
12376 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
12377 modes mandatory. (Bug#3712)
12378
12379 2009-06-29 Alan Mackenzie <acm@muc.de>
12380
12381 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
12382 correction between the visible width of TABs and their number of bytes.
12383
12384 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
12385
12386 * server.el (server-buffer-done): Prevent kill-buffer from
12387 prompting by clearing the buffer modification flag (Bug#3696).
12388
12389 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
12390
12391 * progmodes/verilog-mode.el (verilog-beg-of-statement)
12392 (verilog-endcomment-reason-re): Support unique case and priority case.
12393 (verilog-basic-complete-re): Support localparam lineup.
12394 (verilog-beg-of-statement-1): Fix for robustness, unique case.
12395 (verilog-set-auto-endcomments): Fix for unique case, always_comb
12396 commenting.
12397 (verilog-leap-to-case-head): Now support *nested* unique &
12398 priority case statements.
12399 (verilog-auto-lineup): Make just declarations the default (as it
12400 had been).
12401 (verilog-leap-to-case-head): Support priority/unique case statements.
12402 (verilog-auto-lineup): Rework to give users radio buttons to
12403 select the various styles of automatic lineup.
12404 (verilog-error-regexp-alist): Rework to support the XEmacs style
12405 of error regular expressions from compilers, lint tools &
12406 simulators. Note that GNU Emacs has made it impossible for a mode
12407 to load such things.
12408 (electric-verilog-terminate-line, verilog-indent-declaration)
12409 (verilog-auto-wiure): Rework for radio button selection of
12410 auto-lineup selection of specification of auto lineup.
12411 (verilog-beg-of-statement-1): Redesign to support proper operation
12412 in additional code, based on testing with auto-lineup.
12413 (verilog-calculate-indent, assignments & declarations)
12414 (verilog-backward-token): Enhance to support auto-lineup of
12415 assignments & declarations.
12416 (verilog-in-directive-p, verilog-at-struct-p): New function for
12417 easy test of whether we are.
12418 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
12419 to support safe execution at almost anyline.
12420 (verilog-calc-1): Properly support indenting deep inside generate
12421 blocks.
12422 (verilog-init-font): Remove definition & use of verilog-init-font,
12423 as it is redundant with font-lock-defaults.
12424 (verilog-mode): Alter the definition of verilog-font-lock-defaults
12425 to avoid circular calls if syntax-ppss is a function (as is the
12426 case now in 22.x GNU Emacs) as that function would sometimes call
12427 itself, leading to (nearly) infinite recursion.
12428 (verilog-ovm-begin-re, verilog-ovm-end-re)
12429 (verilog-ovm-statement-re, verilog-leap-to-head)
12430 (verilog-backward-token): Add support for OVM macros. Some are
12431 complete statements, and others open and close scopes like begin
12432 and end.
12433 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
12434 (verilog-defun-level-generate-only-re): Really fix the defun-list
12435 compilation issue.
12436 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
12437 coverpoint, constraint and cross statements.
12438 (verilog-defun-level-list, verilog-generate-defun-level-list)
12439 (verilog-all-defun-level-list): Redo these specifications - it is
12440 too hard to support eval-when compile aggregation of lists also
12441 built at when-compile time.
12442 (verilog-defun-level-list): Place defconsts of variables used in
12443 building regular expressions which are built in eval-when-compile
12444 bodies in the same eval-when-compile body to facilitate compile
12445 without load.
12446 (verilog-beg-block-re-ordered): Support indenting
12447 virtual/protected tasks and functions.
12448 (verilog-defun-level-list, verilog-in-generate-region-p)
12449 (verilog-backward-ws&directives, verilog-calc-1): Speed up
12450 indentation of some module items (generate items).
12451 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
12452 across virtual/protected tasks and functions.
12453
12454 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
12455
12456 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
12457 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
12458 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
12459 in concatenations. Reported by Yishay Belkind.
12460 (verilog-auto-ascii-enum): Support one-hot state machines in
12461 AUTOASCIIENUM. Suggested by Lloyd Gomez.
12462 (verilog-auto-inst, verilog-auto-inst-port): Include interface
12463 modport in AUTOINST and add vl-modport for users. Reported by
12464 David Rogoff.
12465 (verilog-auto-inout-module, verilog-auto-inst)
12466 (verilog-decls-get-interfaces, verilog-insert-definition)
12467 (verilog-insert-one-definition, verilog-read-decls)
12468 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
12469 (verilog-sig-modport, verilog-signals-combine-bus)
12470 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
12471 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
12472 Suggested by David Rogoff.
12473 (verilog-repair-open-comma): Fix non-insertion of comma when
12474 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
12475 (verilog-make-width-expression): Simplify [A-1:0] expression
12476 widths to just {A{1'b0}}.
12477 (verilog-mode): Cleanup checkdoc warnings.
12478 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
12479 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
12480 inputs/outputs or data type. Suggested by Vasu Kandadi.
12481 (next-error-last-buffer): Fix byte-compiler warning.
12482 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
12483 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
12484 or shell command text during AUTO expansion. Suggested by Tad Truex.
12485 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
12486 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
12487 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
12488 in AUTOINOUT. Reported by Matthew Lovell.
12489 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
12490 causing use of <= assignments. Reported by Alex Reed.
12491 (verilog-read-decls): Fix triand, trior, wand, wor to be
12492 recognized by AUTOWIRE. Reported by Spencer Isaacson.
12493 (verilog-extended-complete-re): Support import "DPI-C" functions.
12494 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
12495 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
12496 (verilog-insert-date, verilog-insert-year)
12497 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
12498 Windows systems. Reported by Michael Potts.
12499 (verilog-read-module-name): Fix AUTOINST when the child module
12500 declaration's name is a tick define. Reported by Elliot Mednick.
12501 (verilog-read-decls): Fix V2K parameter bit subscripts getting
12502 passed to next parameter's definition. Reported by Bruce T.
12503 (verilog-read-decls): Fix detecting "parameter int" when using
12504 AUTOINSTPARAM. Reported by Bruce T.
12505 (verilog-goto-defun): Fix goto not finding modules unless first
12506 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
12507 (verilog-mode): Expand -f flag arguments on entry to mode so
12508 verilog-goto-defun will work. Reported by Lawrence Butcher.
12509 (verilog-getopt): Expand environment variables in -f file
12510 arguments. Suggested by Lawrence Butcher.
12511 (verilog-set-define): Fix "Symbol's value as variable is void"
12512 when reading enumerations.
12513 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
12514 Suggested by Stephen Peltan.
12515 (verilog-read-defines): Fix reading of enumerations in include
12516 files. Reported by Steve Peltan.
12517
12518 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
12519
12520 * files.el (trash-directory): Fix defcustom type.
12521
12522 2009-06-28 Juri Linkov <juri@jurta.org>
12523
12524 * help-fns.el (describe-function-1): Correctly locate adviced
12525 functions in hyperlink (Bug#2438).
12526
12527 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
12528
12529 * files.el (trash-directory): Change default to nil.
12530 (move-file-to-trash): If trash-directory is nil and
12531 system-move-file-to-trash is unbound, perform freedesktop-style
12532 trashing.
12533
12534 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
12535
12536 * files.el (move-file-to-trash): Add freedesktop trash
12537 support (Bug#973).
12538
12539 2009-06-28 Glenn Morris <rgm@gnu.org>
12540
12541 * autorevert.el (global-auto-revert-non-file-buffers)
12542 (global-auto-revert-mode): Doc fixes.
12543
12544 2009-06-27 Johan Bockgård <bojohan@gnu.org>
12545
12546 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
12547
12548 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
12549
12550 * faces.el (x-handle-named-frame-geometry): Ensure that we have
12551 opened an X connection before calling x-get-resource (Bug#3194).
12552
12553 * play/doctor.el: Remove reference to obsolete website.
12554 (make-doctor-variables): Correct grammar mistake (Bug#2633).
12555
12556 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
12557
12558 Remove find-file-not-found-hook VC method. (Bug#2757)
12559 * vc-hooks.el (vc-file-not-found-hook)
12560 (vc-default-find-file-not-found-hook): Remove functions.
12561 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
12562 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
12563 * vc.el:
12564 * vc-hg.el:
12565 * vc-git.el: Do not mention find-file-not-found-hook VC method.
12566
12567 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
12568
12569 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
12570 compatibility function for `looking-back'.
12571
12572 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
12573 Use `ispell-looking-back'.
12574
12575 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
12576
12577 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
12578 rather than `filename'.
12579
12580 2009-06-23 Miles Bader <miles@gnu.org>
12581
12582 * face-remap.el (text-scale-set): New function.
12583
12584 2009-06-23 Glenn Morris <rgm@gnu.org>
12585
12586 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
12587
12588 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
12589
12590 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
12591
12592 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
12593
12594 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
12595 Simplify Persian conditionals.
12596
12597 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
12598 variable `filename'.
12599
12600 * comint.el (comint-insert-input): Doc fix.
12601
12602 * Makefile.in (ELCFILES): Fix typo in previous change.
12603
12604 2009-06-23 Miles Bader <miles@gnu.org>
12605
12606 * cus-start.el: Add entry for `recenter-redisplay'.
12607
12608 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
12609
12610 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
12611 Add an optional argument for the backend, use it instead of
12612 calling vc-backend.
12613 (vc-mode-line): Add an optional argument for the backend.
12614 Pass the backend to vc-state and vc-working-revision. Move code for
12615 special handling for vc-state being a buffer to ...
12616
12617 * vc-rcs.el (vc-rcs-find-file-hook):
12618 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
12619
12620 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
12621 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
12622 vc-stay-local-p and vc-mode-line calls.
12623
12624 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
12625 (vc-cvs-diff, vc-cvs-annotate-command)
12626 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
12627 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
12628 vc-mode-line calls.
12629
12630 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
12631 direct comparison.
12632 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
12633 backend when calling vc-mode-line.
12634 (vc-register): Do not create a closure for calling the vc register
12635 function, call it directly.
12636
12637 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
12638
12639 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
12640 to make it obvious item can be clicked.
12641
12642 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
12643
12644 2009-06-23 Kenichi Handa <handa@m17n.org>
12645
12646 * language/korea-util.el (korean-key-bindings): Change the binding
12647 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
12648 same command.
12649
12650 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
12651
12652 Sync with Tramp 2.1.16.
12653
12654 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
12655
12656 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
12657 when a loading of a package fails. Completion function for rsync
12658 is `tramp-completion-function-alist-ssh'.
12659 (all): Replace all calls of `split-string' and
12660 `tramp-split-string' by `tramp-compat-split-string'.
12661 (tramp-default-method): Use `tramp-compat-process-running-p'.
12662 (tramp-default-proxies-alist): Allow also Lisp forms.
12663 (tramp-remote-path): Add choice "Private Directories".
12664 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
12665 (tramp-domain-regexp): Allow also "-", "_" and ".".
12666 (tramp-end-of-output): Remove newlines, and add "$" at the end.
12667 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
12668 (tramp-debug-message): Insert header line in debug buffer.
12669 (tramp-handle-directory-files-and-attributes-with-stat):
12670 Care about filenames with spaces, or starting with "-".
12671 (tramp-handle-dired-uncache): New defun.
12672 (tramp-handle-insert-directory): Don't flush the directory from
12673 cache, this is handled by `dired-uncache' now.
12674 (tramp-handle-insert-file-contents): Improve error handling.
12675 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
12676 Quote `tramp-end-of-output'.
12677 (tramp-action-password): Improve trace message.
12678 (tramp-check-for-regexp): Both echoes must be present, before removing.
12679 (tramp-open-connection-setup-interactive-shell): Trace coding system.
12680 (tramp-compute-multi-hops): Eval cons cells of
12681 `tramp-default-proxies-alist'.
12682 (tramp-maybe-open-connection): Use the same command pattern for
12683 first hop and further hops.
12684 (tramp-wait-for-output): Remove handling of newlines.
12685 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
12686 (tramp-split-string): Remove function. It is handled in
12687 tramp-compat now.
12688
12689 * net/tramp-cmds.el (tramp-bug):
12690 Recommend `tramp-cleanup-all-connections' in the bug mail.
12691
12692 * net/tramp-compat.el (tramp-compat-split-string)
12693 (tramp-compat-process-running-p): New defuns.
12694
12695 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
12696 for `dired-uncache'.
12697
12698 * net/tramp-gvfs.el: New package.
12699
12700 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
12701 Add handler for `dired-uncache'.
12702 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
12703
12704 * net/trampver.el: Update release number. Make version check fit
12705 for SXEmacs 22.
12706
12707 2009-06-22 Jim Meyering <meyering@redhat.com>
12708
12709 Automatically handle .xz suffix (XZ-compressed files), too.
12710 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
12711 XZ is the successor to LZMA: <http://tukaani.org/xz/>
12712
12713 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
12714 Nick Roberts <nickrob@snap.net.nz>
12715
12716 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
12717 repository (http://sphinx.net.ru/hg/gdb-mi/).
12718
12719 2009-06-22 Glenn Morris <rgm@gnu.org>
12720
12721 * files.el (dir-locals-collect-mode-variables): Allow for any number of
12722 `mode' and `eval' entries. (Bug#3430)
12723
12724 * Makefile.in (ELCFILES): Add fadr.elc.
12725
12726 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
12727 differing behavior of \n and ^ in strings. (Bug#3385)
12728
12729 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
12730
12731 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
12732 property.
12733 (lisp-indent-function): Make it a defcustom.
12734
12735 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
12736
12737 * progmodes/gdb-ui.el: Replace with ...
12738 * progmodes/gdb-mi.el: ... this file.
12739 * progmodes/gud.el: Modify for gdb-mi.el.
12740
12741 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
12742
12743 * fadr.el: New file.
12744
12745 See ChangeLog.14 for earlier changes.
12746
12747 ;; Local Variables:
12748 ;; coding: utf-8
12749 ;; End:
12750
12751 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
12752
12753 This file is part of GNU Emacs.
12754
12755 GNU Emacs is free software: you can redistribute it and/or modify
12756 it under the terms of the GNU General Public License as published by
12757 the Free Software Foundation, either version 3 of the License, or
12758 (at your option) any later version.
12759
12760 GNU Emacs is distributed in the hope that it will be useful,
12761 but WITHOUT ANY WARRANTY; without even the implied warranty of
12762 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12763 GNU General Public License for more details.
12764
12765 You should have received a copy of the GNU General Public License
12766 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
12767
12768 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1