]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Add 7z archive format support (bug#5475).
[gnu-emacs] / lisp / ChangeLog
1 2010-04-18 Juri Linkov <juri@jurta.org>
2
3 Add 7z archive format support (bug#5475).
4
5 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
6 (archive-7z-extract): New defcustom.
7 (archive-find-type): Add magic string for 7z.
8 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
9 If `stderr-file' is non-nil, use `(t stderr-file)' for the
10 `buffer' arg of `call-process'.
11 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
12 call the function `archive-7z-extract' with the variable
13 `archive-7z-extract' let-bound to `archive-zip-extract'.
14 (archive-7z-summarize, archive-7z-extract): New functions.
15
16 * international/mule.el (auto-coding-alist):
17 * files.el (auto-mode-alist): Add 7z file extension.
18
19 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
20
21 * loadup.el: Setup hash-cons for pure data.
22
23 Fix duplicate entries in cedet's loaddefs.el files.
24 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
25 Should make most file-local generated-autoload-file unnecessary.
26 (print-readably): Silence warnings.
27 (autoload-find-destination): Take load-name as an arg to make sure
28 it's the same as the one that will be in the file.
29 (autoload-generate-file-autoloads): Adjust to above changes.
30 Try to make the dataflow a bit simpler.
31
32 * cvs-status.el (cvs-refontify): Remove unused.
33
34 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
35
36 * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
37
38 * calc-bin.el (calc-radix): Have the "O" option turn on
39 twos-complement mode.
40
41 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
42
43 * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
44 Add `calc-option-prefix-help' to calc-help autoloads.
45 (calc-inverse): Add "Option" to message, as appropriate.
46 (calc-hyperbolic): Add "Option" to message, as appropriate.
47 (calc-option, calc-is-option): New functions.
48
49 * calc-help.el (calc-full-help): Add `calc-option-help'.
50 (calc-option-prefix-help): New function.
51
52 * calc-misc.el (calc-help): Add "Option" entry.
53
54 * calc.el (calc-local-var-list): Add `calc-option-flag'.
55 (calc-option-flag): New variable.
56 (calc-do): Set `calc-option-flag to nil.
57 (calc-set-mode-line): Add "Opt " as appropriate.
58
59 2010-04-16 Juri Linkov <juri@jurta.org>
60
61 Move scrolling commands from simple.el to window.el
62 because their primitives are implemented in window.c.
63
64 * simple.el (scroll-error-top-bottom)
65 (scroll-up-command, scroll-down-command, scroll-up-line)
66 (scroll-down-line, scroll-other-window-down)
67 (beginning-of-buffer-other-window, end-of-buffer-other-window):
68 * window.el (scroll-error-top-bottom)
69 (scroll-up-command, scroll-down-command, scroll-up-line)
70 (scroll-down-line, scroll-other-window-down)
71 (beginning-of-buffer-other-window, end-of-buffer-other-window):
72 Move from simple.el to window.el because their primitives are
73 implemented in window.c.
74
75 2010-04-16 Juri Linkov <juri@jurta.org>
76
77 * isearch.el (isearch-lookup-scroll-key): Check both
78 `isearch-scroll' and `scroll-command' properties.
79 (scroll-up, scroll-down): Remove `isearch-scroll' property.
80
81 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
82
83 * simple.el (scroll-up-command, scroll-down-command)
84 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
85
86 2010-04-15 Juri Linkov <juri@jurta.org>
87
88 * simple.el (scroll-up-command, scroll-down-command)
89 (scroll-up-line, scroll-down-line): Put `scroll-command'
90 property on the these symbols. Remove them from
91 `scroll-preserve-screen-position-commands'.
92
93 * mwheel.el (mwheel-scroll): Put `scroll-command' and
94 `isearch-scroll' properties on the `mwheel-scroll' symbol.
95 Remove it from `scroll-preserve-screen-position-commands'.
96
97 * isearch.el (isearch-allow-scroll): Doc fix.
98
99 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
100
101 * net/tramp.el (tramp-error-with-buffer): Don't show the
102 connection buffer when we are in completion mode.
103 (tramp-file-name-handler): Catch the error for some operations
104 when we are in completion mode. This gives the user the chance to
105 correct the file name in the minibuffer.
106
107 2010-04-15 Glenn Morris <rgm@gnu.org>
108
109 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
110
111 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
112
113 Simplify by using `define-derived-mode'.
114 * info.el (Info-mode):
115 * calendar/todo-mode.el (todo-mode):
116 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
117 (gomoku-mode-map): Move initialization into declaration.
118
119 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
120
121 Fix Bug#5840.
122 * ido.el (ido-file-name-all-completions-1):
123 * minibuffer.el (minibuffer-completion-help):
124 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
125
126 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
127
128 * simple.el (non-essential): New var.
129
130 Add a new field `location' to bookmarks for non-file bookmarks.
131 * bookmark.el (bookmark-location): Use the new field, if present.
132 (bookmark-insert-location): Undo last change, not needed any more.
133 * man.el (Man-bookmark-make-record):
134 * woman.el (woman-bookmark-make-record): Add `location' field.
135
136 2010-04-14 Juri Linkov <juri@jurta.org>
137
138 * simple.el (scroll-error-top-bottom): New defcustom.
139 (scroll-up-command, scroll-down-command): Use it. Doc fix.
140
141 * emulation/pc-select.el (pc-select-override-scroll-error):
142 Obsolete in favor of `scroll-error-top-bottom'.
143
144 2010-04-14 Juri Linkov <juri@jurta.org>
145
146 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
147 `scroll-up-command' and `M-v' to `scroll-down-command'.
148
149 * emulation/cua-rect.el (cua--init-rectangles):
150 * forms.el (forms--change-commands):
151 * image-mode.el (image-mode-map):
152 Remap scroll-down-command and scroll-up-command
153 in addition to scroll-down and scroll-up.
154
155 2010-04-14 Juri Linkov <juri@jurta.org>
156
157 * mwheel.el (scroll-preserve-screen-position-commands):
158 Add mwheel-scroll to this list of commands.
159
160 * simple.el (scroll-preserve-screen-position-commands):
161 Add scroll-up-command, scroll-down-command, scroll-up-line,
162 scroll-down-line to this list of commands.
163
164 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
165
166 * obsolete/complete.el: Move from lisp/complete.el.
167
168 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
169
170 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
171 to the minor mode function now turns the mode ON unconditionally.
172
173 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
174
175 * vc-dir.el (vc-dir-kill-line): New command.
176 (vc-dir-mode-map): Bind it to C-k.
177
178 * bookmark.el (bookmark-insert-location): Handle a nil filename.
179
180 * woman.el: Add bookmark declarations to silence the compiler.
181 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
182 step to compatibility between man and woman bookmarks.
183 Adjust for Man-default-bookmark-title renaming.
184 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
185
186 * man.el: Add bookmark declarations to silence the compiler.
187 (Man-name-local-regexp): Make it match NAME as well.
188 (Man-getpage-in-background): Return the buffer.
189 (Man-notify-when-ready): Use `case'.
190 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
191 Don't hardcode "NAME". Simplify.
192 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
193 Rename from Man-bookmark-make-record.
194 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
195 we have the actual man-args. Use Man-getpage-in-background rather
196 than `man' since the arg is already processed. Let bookmark.el do the
197 window handling. Only wait for the relevant process.
198 Don't forget to autoload.
199
200 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
201
202 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
203
204 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
205 New functions.
206 (woman-mode): Setup bookmark support.
207
208 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
209 (man-bookmark-jump): New functions.
210 (Man-mode): Setup bookmark support.
211
212 2010-04-10 Jari Aalto <jari.aalto@cante.net>
213
214 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
215 recognize ssh-keygen prompt (Bug#2817).
216
217 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
218
219 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
220
221 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
222
223 Synchronize with Tramp repository.
224
225 * net/tramp.el (tramp-completion-function-alist)
226 (tramp-file-name-regexp, tramp-chunksize)
227 (tramp-local-coding-commands, tramp-remote-coding-commands):
228 Fix docstring.
229 (tramp-remote-process-environment): Use `format' instead of `concat'.
230 (tramp-handle-directory-files-and-attributes)
231 (tramp-get-remote-path): Use `copy-tree'.
232 (tramp-handle-file-name-all-completions): Backward/ XEmacs
233 compatibility: Use `completion-ignore-case' if
234 `read-file-name-completion-ignore-case' does not exist.
235 (tramp-do-copy-or-rename-file-directly): Do not use
236 `tramp-handle-file-remote-p'.
237 (tramp-do-copy-or-rename-file-out-of-band):
238 Use `tramp-compat-delete-directory'.
239 (tramp-do-copy-or-rename-file-out-of-band)
240 (tramp-compute-multi-hops, tramp-maybe-open-connection):
241 Use `format-spec-make'.
242 (tramp-find-foreign-file-name-handler)
243 (tramp-advice-make-auto-save-file-name)
244 (tramp-set-auto-save-file-modes): Remove superfluous check for
245 `stringp'. This is done inside `tramp-tramp-file-p'.
246 (tramp-debug-outline-regexp): New defconst.
247 (tramp-get-debug-buffer): Use it.
248 (tramp-check-for-regexp): Use (forward-line 1).
249 (tramp-set-auto-save-file-modes): Adapt version check.
250
251 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
252 Wrap call of `featurep' for 2nd argument.
253 (tramp-compat-make-temp-file): Simplify fallback implementation.
254 (tramp-compat-copy-tree): Remove function.
255 (tramp-compat-delete-directory): Provide implementation for older
256 Emacsen.
257
258 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
259 Do not use `tramp-fish-handle-file-attributes.
260
261 * net/trampver.el: Update release number.
262
263 2010-04-10 Glenn Morris <rgm@gnu.org>
264
265 * progmodes/compile.el (compilation-save-buffers-predicate):
266 Add missing :version tag.
267
268 2010-04-09 Sam Steingold <sds@gnu.org>
269
270 * progmodes/compile.el (compilation-save-buffers-predicate):
271 Remove the "autoload" cookie.
272
273 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
274 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
275 and `bug-reference-prog-mode' can be used in hooks directly.
276
277 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
278
279 Add --author support to git commit.
280 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
281 (vc-git-log-edit-mode): New minor mode.
282 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
283 New declarations.
284
285 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
286
287 * vc-hooks.el, vc-git.el: Improve documentation comments.
288
289 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
290
291 Fix some of the problems in defsubst* (bug#5728).
292 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
293 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
294
295 2010-04-07 Sam Steingold <sds@gnu.org>
296
297 * progmodes/compile.el (compilation-save-buffers-predicate):
298 New custom variable.
299 (compile, recompile): Pass it to `save-some-buffers'.
300
301 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
302
303 * wid-edit.el (widget-choose): Move cursor to the second line of
304 the buffer (Bug#5695).
305
306 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
307
308 Add new VC methods: vc-log-incoming and vc-log-outgoing.
309 * vc.el (vc-print-log-setup-buttons): New function split out from
310 vc-print-log-internal.
311 (vc-log-internal-common): New function, a parametrized version of
312 vc-print-log-internal.
313 (vc-print-log-internal): Just call vc-log-internal-common with the
314 right arguments.
315 (vc-incoming-outgoing-internal):
316 (vc-log-incoming, vc-log-outgoing): New functions.
317 (vc-log-view-type): New permanent local variable.
318
319 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
320
321 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
322 of the dynamic bound vc-short-log.
323 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
324
325 * vc-git.el (vc-git-log-outgoing): New function.
326 (vc-git-log-view-mode): Use vc-log-view-type instead
327 of the dynamic bound vc-short-log.
328
329 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
330 of the dynamic bound vc-short-log. Highlight the tag.
331 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
332 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
333 (vc-hg-incoming-mode): Remove.
334 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
335
336 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
337
338 Fix default-directory for vc-root-diff.
339 * vc.el (vc-root-diff): Bind default-directory to the root
340 directory for the diff command.
341
342 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
343
344 * progmodes/verilog-mode.el (verilog-forward-sexp):
345 (verilog-calc-1): Support "disable fork" and "fork wait" multi
346 word keywords, suggested by Steve Pearlmutter.
347 (verilog-pretty-declarations): Support lineup of declarations in
348 port lists.
349 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
350 fix bug for /* / comments
351 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
352 Speed up and simplfy as this is never called with a bound.
353 (verilog-pretty-declarations): Enhance to line up declarations
354 inside a parameter list, suggested by Alan Morgan.
355 (verilog-pretty-expr): Tune assignment regular expression match
356 string for corner cases; also use markers instead of character
357 number as indent changes the later.
358
359 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
360
361 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown as missing
362 keyword.
363 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
364 causing truncation of AUTOWIRE signals. Reported by Bruce
365 Tennant.
366 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
367 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
368 Tennant.
369 (verilog-keywords):
370 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
371 1800-2009 keywords, including "global.".
372
373 2010-04-06 John Wiegley <jwiegley@gmail.com>
374
375 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
376 appearing in buffer list (if a live buffer name matched a recentf
377 file basename). Should use uniquify to offer a real solution.
378
379 2010-04-06 John Wiegley <jwiegley@gmail.com>
380
381 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
382 comment to code, and add a :version tag.
383 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
384
385 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
386
387 Enable recentf-mode if using virtual buffers.
388 * ido.el (recentf-list): Declare for byte-compiler.
389 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
390 (ido-make-buffer-list): Simplify.
391 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
392
393 2010-04-05 Juri Linkov <juri@jurta.org>
394
395 Scrolling commands which scroll a line instead of full screen.
396 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
397
398 * simple.el (scroll-up-line, scroll-down-line): New commands.
399 Put property isearch-scroll=t on them.
400
401 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
402 Remove commands.
403
404 2010-04-05 Juri Linkov <juri@jurta.org>
405
406 Scrolling commands which do not signal errors at top/bottom.
407 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
408
409 * simple.el (scroll-up-command, scroll-down-command): New commands.
410 Put property isearch-scroll=t on them.
411
412 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
413 `scroll-down-command' and [next] from `scroll-up' to
414 `scroll-up-command'.
415
416 * emulation/cua-base.el: Put property CUA=move on
417 `scroll-up-command' and `scroll-down-command'.
418 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
419 and `scroll-down-command' to `cua-scroll-down'.
420
421 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
422
423 * help.el (describe-mode): Return nil.
424
425 2010-04-04 John Wiegley <jwiegley@gmail.com>
426
427 * ido.el (ido-use-virtual-buffers): New variable to indicate
428 whether "virtual buffer" support is enabled for IDO.
429 (ido-virtual): Face used to indicate virtual buffers in the list.
430 (ido-buffer-internal): If a buffer is chosen, and no such buffer
431 exists, but a virtual buffer of that name does (which would be why
432 it was in the list), recreate the buffer by reopening the file.
433 (ido-make-buffer-list): If virtual buffers are being used, call
434 `ido-add-virtual-buffers-to-list' before the make list hook.
435 (ido-virtual-buffers): New variable which contains a copy of the
436 current contents of the `recentf-list', albeit pared down for the
437 sake of speed, and with proper faces applied.
438 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
439 create a list of "virtual buffers" to present to the user in
440 addition to the currently open set. Note that this logic could
441 get rather slow if that list is too large. With the default
442 `recentf-max-saved-items' of 200, there is little speed penalty.
443
444 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
445
446 * font-lock.el: Require CL when compiling.
447 (font-lock-turn-on-thing-lock): Use `case'.
448
449 2010-04-03 Eli Zaretskii <eliz@gnu.org>
450
451 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
452 Zaretskii.
453
454 2010-04-02 Juanma Barranquero <lekktu@gmail.com>
455
456 * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
457 (semantic-create-imenu-directory-index): Fix typos in docstrings.
458 (semantic-imenu-goto-function): Reflow docstring.
459
460 2010-04-02 Juri Linkov <juri@jurta.org>
461
462 * ehelp.el (electric-help-orig-major-mode):
463 New buffer-local variable.
464 (electric-help-mode): Set it to original major-mode. Doc fix.
465 (with-electric-help): Use `electric-help-orig-major-mode' instead
466 of (default-value 'major-mode). Doc fix.
467 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
468
469 2010-04-02 Sam Steingold <sds@gnu.org>
470
471 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
472 `vc-hg-command' with a list of flags.
473
474 * progmodes/bug-reference.el (bug-reference-bug-regexp):
475 Also accept "patch" and "RFE".
476 (bug-reference-fontify): `bug-reference-url-format' can also be a
477 function to be able to handle the bug kind.
478 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
479
480 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
481
482 * tmm.el (tmm-get-keymap): Check with symbolp before passing
483 value to fboundp, it may not be a symbol.
484
485 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
486
487 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
488
489 2010-03-31 Juri Linkov <juri@jurta.org>
490
491 * simple.el (next-line, previous-line): Re-throw a signal
492 with `signal' instead of using `ding'.
493 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
494
495 2010-03-31 Juri Linkov <juri@jurta.org>
496
497 * simple.el (keyboard-escape-quit): Raise deselecting the active
498 region higher than exiting the minibuffer.
499 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
500
501 2010-03-31 Juri Linkov <juri@jurta.org>
502
503 * image.el (image-animated-p): Use `image-metadata' instead of
504 `image-extension-data'. Get GIF extenstion data from metadata
505 property `extension-data'.
506
507 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
508
509 * simple.el (append-to-buffer): Simplify.
510
511 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
512
513 * textmodes/artist.el (artist-mode): Fix typo in docstring.
514 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
515
516 2010-03-31 Kenichi Handa <handa@m17n.org>
517
518 * language/sinhala.el (composition-function-table): Fix regexp for
519 the new Unicode specification.
520
521 * language/indian.el (devanagari-composable-pattern)
522 (tamil-composable-pattern, kannada-composable-pattern)
523 (malayalam-composable-pattern): Adjust for the new Unicode
524 specification.
525 (bengali-composable-pattern, gurmukhi-composable-pattern)
526 (gujarati-composable-pattern, oriya-composable-pattern)
527 (telugu-composable-pattern): New variables to cope with the new
528 Unicode specification. Use them in composition-function-table.
529
530 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
531
532 Make tmm-menubar work for the Buffers menu again.
533 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
534 vectors rather than cons cells, as used in menu-bar-update-buffers.
535
536 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
537
538 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
539 (js-insert-and-indent): Revert 2009-08-15 change, restoring
540 electric punctuation for "{}();,:" (Bug#5586).
541
542 * mail/sendmail.el (mail-default-directory): Doc fix.
543
544 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
545
546 * mail/sendmail.el (mail-default-directory): Doc fix.
547
548 2010-03-31 Eli Zaretskii <eliz@gnu.org>
549
550 * subr.el (version-regexp-alist, version-to-list)
551 (version-list-<, version-list-=, version-list-<=)
552 (version-list-not-zero, version<, version<=, version=): Doc fix.
553 (Bug#5744).
554
555 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
556
557 * vc.el (vc-root-diff): Doc fix.
558
559 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
560
561 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
562
563 * simple.el (append-to-buffer): Fix last change.
564
565 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
566
567 * simple.el (append-to-buffer): Ensure that point is preserved if
568 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
569 (Bug#5749)
570
571 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
572
573 * files.el (auto-mode-case-fold): Change default to t.
574
575 2010-03-30 Juri Linkov <juri@jurta.org>
576
577 * dired-x.el (dired-omit-mode): Doc fix.
578
579 2010-03-30 Juri Linkov <juri@jurta.org>
580
581 * replace.el (occur-accumulate-lines): Move occur-engine related
582 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
583 to be located after `occur-engine'.
584
585 2010-03-30 Juri Linkov <juri@jurta.org>
586
587 Make occur handle multi-line matches cleanly with context.
588 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
589
590 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
591 (occur-engine): Add local variables `ret', `prev-after-lines',
592 `prev-lines'. Use more arguments for `occur-context-lines'.
593 Set first elem of its returned list to `data', and the second elem
594 to `prev-after-lines'. Don't print the separator line.
595 In the end, print remaining context after-lines.
596 (occur-context-lines): Add new arguments `begpt', `endpt',
597 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
598 after-lines of the previous match with before-lines of the
599 current match and not overlap them. Return a list with two
600 values: the output line and the list of context after-lines.
601
602 2010-03-30 Juri Linkov <juri@jurta.org>
603
604 * replace.el (occur-accumulate-lines): Fix a bug where the first
605 context line at the beginning of the buffer was missing.
606
607 2010-03-30 Eli Zaretskii <eliz@gnu.org>
608
609 * files.el: Make bidi-display-reordering safe variable for boolean
610 values.
611
612 2010-03-29 Phil Hagelberg <phil@evri.com>
613 Chong Yidong <cyd@stupidchicken.com>
614
615 * subr.el: Extend progress reporters to perform "spinning".
616 (progress-reporter-update, progress-reporter-do-update):
617 Handle non-numeric value arguments.
618 (progress-reporter--pulse-characters): New var.
619
620 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
621
622 * progmodes/compile.el (compilation-start): Fix regexp detection
623 of initial cd command (Bug#5771).
624
625 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
626
627 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
628
629 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
630
631 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
632 * lisp/progmodes/gdb-mi.el: Restore.
633 * lisp/progmodes/gdb-ui.el: Remove.
634 * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
635
636 2010-03-25 Glenn Morris <rgm@gnu.org>
637
638 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
639 all dired buffers, even tramp ones. (Bug#5755)
640
641 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
642
643 Add "union tags" in mpc.el.
644 * mpc.el: Remove backward compatibility code.
645 (mpc-browser-tags): Change default.
646 (mpc--find-memoize-union-tags): New var.
647 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
648 (mpc-cmd-find): Handle the case where the playlist does not exist.
649 Handle union-tags.
650 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
651 (mpc-cmd-add): Use mpc-cmd-flush.
652 (mpc-tagbrowser-tag-name): New fun.
653 (mpc-tagbrowser-buf): Use it.
654 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
655
656 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
657
658 Misc cleanup.
659 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
660 Use replace-regexp-in-string.
661 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
662 (makefile-imake-mode-syntax-table): Move init into defvar.
663 (makefile-mode): Use define-derived-mode.
664
665 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
666 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
667 not be present any more.
668
669 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
670
671 * faces.el (set-face-attribute): Fix typo in docstring.
672 (face-valid-attribute-values): Reflow docstring.
673
674 * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
675
676 2010-03-24 Glenn Morris <rgm@gnu.org>
677
678 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
679
680 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
681
682 * indent.el (indent-for-tab-command): Doc fix.
683
684 2010-03-24 Alan Mackenzie <acm@muc.de>
685
686 * progmodes/cc-engine.el (c-remove-stale-state-cache):
687 Fix off-by-one error. Fixes bug #5747.
688
689 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
690
691 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
692 (image-dired-read-comment): Doc fix.
693
694 * json.el (json-object-type, json-array-type, json-key-type)
695 (json-false, json-null, json-read-number):
696 * minibuffer.el (completion-in-region-functions):
697 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
698 (cal-tex-cursor-week):
699 * emacs-lisp/trace.el (trace-function):
700 * eshell/em-basic.el (eshell/printnl):
701 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
702 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
703 * obsolete/levents.el (allocate-event, event-key, event-object)
704 (event-point, event-process, event-timestamp, event-to-character)
705 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
706 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
707 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
708 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
709 (reftex-highlight-selection): Fix typos in docstrings.
710
711 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
712
713 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
714
715 2010-03-24 Glenn Morris <rgm@gnu.org>
716
717 * mail/rmail.el (rmail-highlight-face): Restore option deleted
718 2008-02-13 without comment; mark it obsolete.
719 (rmail-highlight-headers): Use rmail-highlight-face once more.
720
721 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
722
723 * woman.el (woman2-process-escapes): Only consume the newline if
724 the filler character is on a line by itself (Bug#5729).
725
726 2010-03-24 Kenichi Handa <handa@m17n.org>
727
728 * language/indian.el (devanagari-composable-pattern): Add more
729 consonants.
730
731 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
732
733 * net/trampver.el: Update release number.
734
735 2010-03-24 Glenn Morris <rgm@gnu.org>
736
737 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
738
739 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
740
741 * net/tramp.el (tramp-find-executable):
742 Use `tramp-get-connection-buffer'. Make the regexp for checking
743 output of "wc -l" more robust.
744 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
745 (tramp-open-connection-setup-interactive-shell): Remove workaround
746 for OpenSolaris bug, it is not needed anymore.
747
748 2010-03-24 Eric M. Ludlam <zappo@gnu.org>
749
750 * cedet/semantic/imenu.el: New file, from the CEDET repository
751 (Bug#5412).
752
753 2010-03-24 Glenn Morris <rgm@gnu.org>
754
755 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
756
757 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
758
759 * files.el (auto-mode-alist): Accept more verilog file patterns.
760
761 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
762
763 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
764
765 2010-03-24 Glenn Morris <rgm@gnu.org>
766
767 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
768 log-edit-before-checkin-process.
769
770 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
771
772 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
773
774 * vc-dispatcher.el (vc-start-logentry): Doc fix.
775 (log-view-process-buffer, log-edit-extra-flags): Declare.
776
777 * log-edit.el (log-edit-before-checkin-process): Doc fix.
778
779 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
780 Consistently check ede-object is bound throughout.
781
782 * cedet/ede/project-am.el (ede-shell-run-something): Declare.
783
784 2010-03-23 Sam Steingold <sds@gnu.org>
785
786 Fix bug#5620: recalculate all markers on compilation buffer
787 modifications, not on file modifications.
788 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
789 the buffer modification time, for buffers not associated with files.
790 (compilation-mode): Create it.
791 (compilation-filter): Update it.
792 (compilation-next-error-function): Use it instead of
793 `visited-file-modtime' for timestamp.
794
795 2010-03-23 Juri Linkov <juri@jurta.org>
796
797 Implement Occur multi-line matches.
798 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
799
800 * replace.el (occur): Doc fix.
801 (occur-engine): Set `begpt' to the beginning of the first line.
802 Set `endpt' to the end of the last match line. At first, count
803 line numbers between `origpt' and `begpt'. Split out code from
804 `out-line' variable to new let-bindings `match-prefix' and
805 `match-str'. In `out-line' add non-numeric prefix to all
806 non-first lines of multi-line matches. Finally, count lines
807 between `begpt' and `endpt' and add to `lines'.
808
809 2010-03-23 Juri Linkov <juri@jurta.org>
810
811 * replace.el (occur-accumulate-lines, occur-engine):
812 Use `occur-engine-line' instead of duplicate code.
813 (occur-engine-line): New function created from duplicate code
814 in `occur-accumulate-lines' and `occur-engine'.
815
816 * replace.el (occur-engine-line): Add optional arg `keep-props'.
817 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
818
819 2010-03-23 Juri Linkov <juri@jurta.org>
820
821 * finder.el: Remove TODO tasks.
822
823 * info.el (Info-finder-find-node): Add node "all"
824 with all package info. Handle a list of multiple keywords
825 separated by comma.
826 (info-finder): In interactive use with a prefix argument,
827 use `completing-read-multiple' to read a list of keywords
828 separated by comma.
829
830 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
831
832 Add a new completion style `substring'.
833 * minibuffer.el (completion-basic--pattern): New function.
834 (completion-basic-try-completion, completion-basic-all-completions):
835 Use it.
836 (completion-substring--all-completions)
837 (completion-substring-try-completion)
838 (completion-substring-all-completions): New functions.
839 (completion-styles-alist): New style `substring'.
840
841 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
842
843 Get rid of .elc files after removal of the corresponding .el.
844 * Makefile.in (compile-clean): New target.
845 (compile-main): Use it.
846
847 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
848
849 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
850 don't do make there. When compiling with separate object dir, there
851 is no Makefile there.
852
853 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
854
855 Get rid of the ELCFILES abomination, again.
856 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
857 (all, compile): Don't call compile-last.
858 (compile-main): Build the "elcfiles" list dynamically.
859 (compile-targets): New (internal) target.
860
861 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
862
863 * Makefile.in (top_srcdir): Define.
864 (abs_top_builddir): Define.
865 (srcdir): Don't append `/..'.
866 (EMACS): Use ${abs_top_builddir}.
867 (all, compile, compile-always, compile-last): Don't set emacswd.
868 (update-subdirs, update-authors): Use $(top_srcdir) instead of
869 $(srcdir).
870 (lisp): Use $(srcdir) instead of @srcdir@.
871
872 2010-03-21 Juri Linkov <juri@jurta.org>
873
874 Fix message of multi-line occur regexps and multi-buffer header lines.
875 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
876
877 * replace.el (occur-1): Don't display regexp if it is longer
878 than window-width. Use `query-replace-descr' to display regexp.
879 (occur-engine): Don't display regexp in the buffer header for
880 multi-buffer occur. Display a separate header line with total
881 match count and regexp for multi-buffer occur.
882 Use `query-replace-descr' to display regexp.
883
884 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
885
886 * net/secrets.el: Fix parenthesis.
887 (secrets-enabled): Fix parenthesis.
888
889 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
890
891 Use more relative file and directory names.
892 * Makefile.in (EMACS): Arrange for it to work when we chdir.
893 (setwins, setwins_almost, setwins_for_subdirs):
894 Don't `cd'; output relative names.
895 (all, compile, compile-always, compile-last): Set emacswd.
896 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
897 Just cd to the lisp source dir so we can use relative file names.
898
899 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
900
901 2010-03-20 Glenn Morris <rgm@gnu.org>
902
903 * textmodes/rst.el: Use faces for font-lock customization, and make the
904 old -face variables obsolete.
905 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
906 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
907 (rst-block-face, rst-external-face, rst-definition-face)
908 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
909 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
910 Make obsolete.
911 (rst-font-lock-keywords-function): Update for above changes.
912
913 2010-03-20 Juri Linkov <juri@jurta.org>
914
915 * s-region.el:
916 * obsolete/s-region.el: Move to obsolete.
917
918 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
919
920 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
921
922 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
923
924 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
925
926 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
927
928 Add special markup processing for commit logs.
929 * log-edit.el (log-edit-extra-flags): New variable.
930 (log-edit): Add new argument MODE. Use that mode when non-nil
931 instead of the log-view-mode.
932 (log-view-process-buffer): New function.
933
934 * vc.el: Document that the checkin method takes optional
935 arguments. Document new backend specific method: log-view-mode.
936 (vc-default-log-edit-mode): New function.
937 (vc-checkin): Use a backend specific log-view-mode.
938 Pass extra arguments to the checkin method.
939 (vc-modify-change-comment): Pass a dummy extra argument.
940
941 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
942 log-edit.
943 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
944 (vc-finish-logentry): Process the log buffer before passing it
945 down. Pass log-edit-extra-flags.
946
947 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
948 command.
949 (log-edit-extra-flags, log-edit-before-checkin-process):
950 New declarations.
951
952 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
953 command.
954 (log-edit-extra-flags, log-edit-before-checkin-process):
955 New declarations.
956 (vc-hg-log-edit-mode): New derived mode.
957
958 * vc-arch.el (vc-arch-checkin):
959 * vc-cvs.el (vc-cvs-checkin):
960 * vc-git.el (vc-git-checkin):
961 * vc-mtn.el (vc-mtn-checkin):
962 * vc-rcs.el (vc-rcs-checkin):
963 * vc-sccs.el (vc-sccs-checkin):
964 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
965
966 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
967
968 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
969 parent typo).
970
971 2010-03-19 Glenn Morris <rgm@gnu.org>
972
973 * password-cache.el (password-cache, password-cache-expiry): Autoload.
974
975 2010-03-18 Glenn Morris <rgm@gnu.org>
976
977 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
978
979 * replace.el (query-replace-history): Give it a doc string.
980 (map-query-replace-regexp): Use query-replace-from-history-variable
981 and query-replace-to-history-variable.
982
983 * mail/hashcash.el (declare-function): Remove duplicate definition.
984
985 * mail/emacsbug.el (report-emacs-bug-pretest-address):
986 Make it an obsolete alias for report-emacs-bug-address.
987 (message-strip-special-text-properties): Declare.
988 (report-emacs-bug): Remove test for a pretest bug address.
989 Combine message-mode-specific code.
990
991 * mail/supercite.el: Don't require sendmail.
992 (mh-in-header-p): Declare rather than using with-no-warnings.
993 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
994 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
995
996 * calendar/cal-french.el: Convert to utf-8.
997
998 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
999 Emacs scripts.
1000
1001 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
1002
1003 * net/secrets.el (secrets-enabled): New variable. Use it instead
1004 of a subfeature.
1005
1006 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
1007
1008 * net/secrets.el (top): Register the D-Bus signals only when the
1009 service "org.freedesktop.secrets" can be pinged.
1010 Provide subfeature `enabled'.
1011
1012 2010-03-14 Juri Linkov <juri@jurta.org>
1013
1014 Add finder unknown keywords.
1015
1016 * finder.el (finder-unknown-keywords): New function.
1017
1018 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
1019 to create a Finder node with unknown keywords.
1020
1021 2010-03-14 Juri Linkov <juri@jurta.org>
1022
1023 * finder.el (finder-compile-keywords): Replace `princ' with
1024 `prin1' on a list of symbols interned from keyword strings.
1025
1026 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
1027 a comma, then split keywords using a comma and optional whitespace.
1028 Otherwise, split by whitespace.
1029
1030 * complete.el:
1031 * face-remap.el:
1032 * log-view.el:
1033 * net/hmac-def.el:
1034 * net/hmac-md5.el:
1035 * net/netrc.el:
1036 * progmodes/mixal-mode.el: Fix keywords.
1037
1038 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
1039
1040 * Makefile.in (ELCFILES): Add net/secrets.elc.
1041
1042 * net/secrets.el: New file.
1043
1044 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
1045
1046 * facemenu.el (list-colors-display, list-colors-print): New arg
1047 callback. Use it to allow selecting colors.
1048
1049 * wid-edit.el (widget-image-insert): Insert image prop even if the
1050 current display is non-graphic.
1051 (widget-field-value-set): New fun.
1052 (editable-field): Use it.
1053 (widget-field-value-get): Clean up unused var.
1054 (widget-color-value-create, widget-color--choose-action):
1055 New funs. Allow using list-colors-display to choose color.
1056
1057 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
1058
1059 * cus-edit.el: Resort topmost custom groups.
1060 (custom-buffer-sort-alphabetically): Default to t.
1061 (customize-apropos): Use apropos-parse-pattern.
1062 (custom-search-field): New var.
1063 (custom-buffer-create-internal): Add custom-apropos search field.
1064 (custom-add-parent-links): Don't display parent doc.
1065 (custom-group-value-create): Don't sort top-level custom group.
1066 (custom-magic-value-create): Show visibility button before option name.
1067
1068 (custom-variable-state): New fun, from custom-variable-state-set.
1069 (custom-variable-state-set): Use it.
1070 (custom-group-value-create): Hide options with standard values
1071 using the :hidden-states property. Use progress reporter.
1072
1073 (custom-show): Simplify.
1074 (custom-visibility): Disable images by default.
1075 (custom-variable): New property :hidden-states.
1076 (custom-variable-value-create): Enable images for
1077 custom-visibility widgets. Use :hidden-states property to
1078 determine initial visibility.
1079
1080 * wid-edit.el (widget-image-find): Give images center ascent.
1081 (visibility): Add :on-image and :off-image properties.
1082 (widget-visibility-value-create): Use them.
1083
1084 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
1085
1086 * cus-edit.el (processes): Remove from development group.
1087 (oop, hypermedia): Delete group.
1088 (comm): Promote to top-level group.
1089
1090 * net/browse-url.el (browse-url):
1091 * net/xesam.el (xesam):
1092 * net/tramp.el (tramp):
1093 * net/goto-addr.el (goto-address):
1094 * net/ange-ftp.el (ange-ftp): Put in comm group.
1095
1096 * view.el (view): Remove from editing group.
1097
1098 * uniquify.el (uniquify): Put in files group.
1099
1100 * net/browse-url.el (browse-url):
1101 * ps-print.el (postscript): Put in external group.
1102
1103 * cus-edit.el (outlines):
1104 * textmodes/text-mode.el (text-mode-hook):
1105 * textmodes/table.el (table):
1106 * textmodes/picture.el (picture):
1107 * outline.el (outlines): Put in wp group.
1108
1109 * nxml/nxml-mode.el (nxml): Remove from wp group.
1110
1111 * net/tramp-imap.el (tramp-imap): Put in tramp group.
1112
1113 * mail/metamail.el (metamail): Remove from hypermedia group.
1114
1115 * cus-edit.el (abbrev):
1116 * whitespace.el (whitespace):
1117 * vcursor.el (vcursor):
1118 * reveal.el (reveal):
1119 * hl-line.el (hl-line): Put in convenience group.
1120
1121 * epg-config.el (epg): Put in data group.
1122
1123 * emulation/pc-select.el (pc-select): Put in emulations group.
1124
1125 * calculator.el (calculator): Put in applications group.
1126
1127 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
1128
1129 Add .dir-locals.el support for file-less buffers.
1130 * files.el (hack-local-variables): Split out code to apply local
1131 variable settings ...
1132 (hack-local-variables-apply): ... here. New function.
1133 (hack-dir-local-variables): Use the default directory for when the
1134 buffer does not have an associated file.
1135 (hack-dir-local-variables-non-file-buffer): New function.
1136 * diff-mode.el (diff-mode):
1137 * vc-annotate.el (vc-annotate-mode):
1138 * vc-dir.el (vc-dir-mode):
1139 * log-edit.el (log-edit-mode):
1140 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
1141
1142 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
1143
1144 Add support for shelving snapshots and for showing shelves.
1145 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
1146 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
1147 New functions.
1148 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
1149 (vc-bzr-extra-menu-map): Map them.
1150
1151 2010-03-11 Glenn Morris <rgm@gnu.org>
1152
1153 * cus-edit.el (customize-changed-options-previous-release):
1154 Bump to 23.1.
1155
1156 * image.el (image-animate-max-time): Fix :version tag.
1157
1158 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
1159
1160 * Branch for 23.2.
1161
1162 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
1163
1164 * vc-git.el (vc-git-revision-table): Include remote branches.
1165
1166 2010-03-10 Kim F. Storm <storm@cua.dk>
1167
1168 Animated image API.
1169 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
1170
1171 * image.el (image-animate-max-time): New defcustom.
1172 (image-animated-types): New defconst.
1173 (create-animated-image, image-animate-timer)
1174 (image-animate-start, image-animate-stop, image-animate-timeout)
1175 (image-animated-p): New functions.
1176
1177 * image-mode.el (image-toggle-display-image):
1178 Replace `create-image' with `create-animated-image'.
1179
1180 2010-03-09 Miles Bader <Miles Bader <miles@gnu.org>>
1181
1182 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
1183 instead of "format:"; this ensures that the output is
1184 newline-terminated.
1185
1186 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
1187
1188 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
1189 that all errors are caught, and that the return value is always a
1190 list (Bug#5692).
1191
1192 2010-03-08 Kenichi Handa <handa@m17n.org>
1193
1194 * language/misc-lang.el (windows-1256): New coding system.
1195 (cp1256): New alias of windows-1256 (bug#5690).
1196
1197 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
1198
1199 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
1200 call to rfc822-bad-address. (Bug#5692)
1201
1202 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
1203
1204 * vc-git.el (vc-git-annotate-extract-revision-at-line):
1205 Use vc-git-root as default directory for revision path (Bug#5657).
1206
1207 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
1208
1209 * calculator.el (calculator): Don't bind split-window-keep-point
1210 (Bug#5674).
1211
1212 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
1213
1214 * vc-git.el: Re-flow to fit into 80 columns.
1215 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
1216 Remove spurious `quote' element in each case alternative.
1217 (vc-git-show-log-entry): Use prog1.
1218 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
1219
1220 2010-03-06 Glenn Morris <rgm@gnu.org>
1221
1222 * cedet/semantic/grammar.el (semantic-grammar-header-template):
1223 Update template copyright to GPLv3+.
1224
1225 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
1226
1227 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
1228
1229 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
1230
1231 * macros.el (insert-kbd-macro): Look up keyboard macro using the
1232 definition, not the name (Bug#5481).
1233
1234 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
1235
1236 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
1237 argument with a local variable. (Bug#5670)
1238
1239 2010-03-02 Juri Linkov <juri@jurta.org>
1240
1241 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
1242
1243 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
1244
1245 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
1246 error when FILENAME and NEWNAME are existing remote directories.
1247
1248 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
1249 parameter DIR-FLAG.
1250
1251 2010-03-02 Glenn Morris <rgm@gnu.org>
1252
1253 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
1254 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
1255
1256 2010-03-01 Alan Mackenzie <acm@muc.de>
1257
1258 * progmodes/cc-engine.el (c-remove-stale-state-cache):
1259 Correct previous patch.
1260
1261 2010-03-01 Kenichi Handa <handa@m17n.org>
1262
1263 * language/burmese.el (burmese-composable-pattern): Rename from
1264 myanmar-composable-pattern.
1265
1266 * international/characters.el (script-list):
1267 * international/fontset.el (script-representative-chars):
1268 Change myanmar to burmese.
1269 (otf-script-alist): Likewise.
1270 (setup-default-fontset): Likewise. Re-fix :otf spec.
1271
1272 2010-03-01 Alan Mackenzie <bug-cc-mode@gnu.org>
1273
1274 * cc-engine.el (c-remove-stale-state-cache): Take account of when
1275 `good-pos' is in the same macro as `here'. Fixes bug#5649.
1276
1277 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
1278
1279 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
1280
1281 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
1282
1283 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
1284
1285 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1286
1287 * net/tramp.el (tramp-handle-write-region): START can be a string.
1288 Take care in the checks. Reported by Dan Davison
1289 <davison@stats.ox.ac.uk>.
1290
1291 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1292
1293 * net/dbus.el (dbus-introspect, dbus-get-property)
1294 (dbus-set-property, dbus-get-all-properties):
1295 Use `dbus-call-method' when noninteractive. (Bug#5645)
1296
1297 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
1298
1299 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1300 * emacs-lisp/elint.el (elint-add-required-env):
1301 * cedet/semantic/db-find.el
1302 (semanticdb-find-translate-path-brutish-default):
1303 * cedet/ede/make.el (ede-make-check-version):
1304 * calendar/icalendar.el (icalendar--add-diary-entry):
1305 * calc/calcalg2.el (math-tracing-integral):
1306 * files.el (recover-session-finish): Use with-current-buffer
1307 instead of save-excursion.
1308
1309 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
1310
1311 Fix in-buffer completion when after-change-functions modify the buffer.
1312 * minibuffer.el (completion--replace): New function.
1313 (completion--do-completion): Use it and use relative movement.
1314
1315 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
1316
1317 * international/fontset.el (setup-default-fontset): Fix :otf spec.
1318
1319 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
1320
1321 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1322 Allow the characters _<> in the stack entry (Bug#5653).
1323
1324 2010-02-26 Kenichi Handa <handa@m17n.org>
1325
1326 * language/burmese.el: Fix entries in composition-function-table.
1327 (myanmar-composable-pattern): New variable.
1328
1329 * international/fontset.el (setup-default-fontset): Add an entry
1330 for myanmar.
1331
1332 * international/characters.el (script-list): Add Myanmar
1333 Extended-A.
1334
1335 2010-02-26 Glenn Morris <rgm@gnu.org>
1336
1337 * custom.el (custom-initialize-delay): Doc fix.
1338
1339 * mail/sendmail.el (send-mail-function): Autoload the call
1340 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
1341
1342 2010-02-25 Alan Mackenzie <acm@muc.de>
1343
1344 * progmodes/cc-engine.el (c-clear-<-pair-props)
1345 (c-clear->-pair-props): Correct to wipe category text props, not
1346 syntax-table ones.
1347
1348 * progmodes/cc-mode.el (c-after-change): Remove any hard
1349 syntax-table properties for <, > which, e.g., C-y has
1350 inopportunely converted from category properties.
1351
1352 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
1353
1354 * files.el (hack-local-variables-filter): For eval forms, also
1355 check safe-local-variable-p (Bug#5636).
1356
1357 2010-02-24 Eduard Wiebe <usenet@pusto.de>
1358
1359 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
1360 and use c(ad)r of cddr (Bug#5640).
1361
1362 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
1363
1364 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
1365 setting the modes by `ignore-errors'. It might fail, for example
1366 if the file is not owned by the user but the group.
1367 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
1368
1369 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
1370
1371 * files.el (directory-listing-before-filename-regexp): Use
1372 stricter matching for iso-style dates, to avoid false matches with
1373 date-like filenames (Bug#5597).
1374
1375 * htmlfontify.el (htmlfontify): Doc fix.
1376
1377 * eshell/eshell.el (eshell): Doc fix.
1378
1379 * startup.el (fancy-about-screen): In mode-line, apply
1380 mode-line-buffer-id face only to the buffer name (Bug#5613).
1381
1382 2010-02-20 Kevin Ryde <user42@zip.com.au>
1383
1384 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1385 In `watcom' anchor regexp to start of line, to avoid slowness
1386 (Bug#5599).
1387
1388 2010-02-20 Eli Zaretskii <eliz@gnu.org>
1389
1390 * subr.el (remove-yank-excluded-properties): Explain in a comment
1391 why `category' property is removed.
1392
1393 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
1394
1395 * isearch.el (isearch-update-post-hook, isearch-update): Revert
1396 2010-02-17 change.
1397
1398 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
1399
1400 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
1401 (icalendar--convert-weekly-to-ical)
1402 (icalendar--convert-yearly-to-ical)
1403 (icalendar--convert-block-to-ical)
1404 (icalendar--convert-cyclic-to-ical)
1405 (icalendar--convert-anniversary-to-ical): Take care of time
1406 specifications where hour has 1-digit only (Bug#5549).
1407
1408 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
1409
1410 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
1411 of disassemble output in GDB 7.1.
1412
1413 2010-02-19 Glenn Morris <rgm@gnu.org>
1414
1415 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
1416 property. (Bug#5593)
1417
1418 2010-02-18 Sam Steingold <sds@gnu.org>
1419
1420 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
1421
1422 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1423
1424 Use abbreviated file names in bookmarks (bug#5591).
1425 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
1426 calls to expand-file-name.
1427 (bookmark-relocate): Use abbreviated file names in bookmarks.
1428 (bookmark-load): Use abbreviated file names in messages.
1429
1430 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
1431
1432 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
1433 expand "." and "..". Reported by Thierry Volpiatto
1434 <thierry.volpiatto@gmail.com>.
1435
1436 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
1437
1438 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
1439 permissions of the temporary file to "0600". In case the remote
1440 file has no read permissions for the owner, there might be
1441 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
1442
1443 22010-02-18 Glenn Morris <rgm@gnu.org>
1444
1445 * emacs-lisp/authors.el (authors-renamed-files-alist):
1446 Add entries for INSTALL.CVS.
1447
1448 2010-02-17 Mark A. Hershberger <mah@everybody.org>
1449
1450 * vc-bzr.el: Fix typo in Known Bugs section.
1451
1452 * isearch.el (isearch-update-post-hook): New hook.
1453 (isearch-update): Use the new hook.
1454
1455 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
1456
1457 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
1458 Fix errors in copying directories.
1459 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
1460 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
1461 (tramp-handle-delete-file)
1462 (tramp-handle-dired-recursive-delete-directory)
1463 (tramp-handle-write-region): Flush also the cache for the upper
1464 directory.
1465
1466 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
1467
1468 * simple.el (save-interprogram-paste-before-kill): Doc fix.
1469
1470 * cus-edit.el (hardware): Doc fix.
1471
1472 * man.el (man): Add to external custom group.
1473
1474 * delim-col.el (columns): Move to wp custom group.
1475
1476 * doc-view.el (doc-view): Add to data custom group.
1477
1478 * cedet/data-debug.el (data-debug): Move to extensions group.
1479
1480 * cedet/ede.el (ede):
1481 * cedet/srecode.el (srecode):
1482 * cedet/semantic.el (semantic): Put in tools and extensions group.
1483
1484 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
1485
1486 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
1487 by ispell-parse-output (Bug#5575).
1488
1489 2010-02-16 Kenichi Handa <handa@m17n.org>
1490
1491 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
1492 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
1493 (skkdic-convert): Use `euc-japan' coding system for writing.
1494
1495 2010-02-16 Glenn Morris <rgm@gnu.org>
1496
1497 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
1498 tex-main-file before using it. (Bug#5562)
1499
1500 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
1503 warnings, since it is annoying for the user to see them each time he
1504 runs the code.
1505
1506 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
1507
1508 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
1509 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
1510 instead of PROC for caching "first-password-request". Otherwise,
1511 new processes would not profit from passwords already entered.
1512
1513 * net/tramp-cache.el (tramp-dump-connection-properties):
1514 Don't save "first-password-request" property.
1515
1516 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
1517
1518 * outline.el (outline-head-from-level):
1519 * simple.el (with-wrapper-hook):
1520 * cedet/ede.el (ede-run-target, project-delete-target)
1521 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
1522 (ede-adebug-project, ede-adebug-project-parent)
1523 (ede-adebug-project-root):
1524 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
1525 (elint-defun, elint-buffer-env, elint-top-form-logged)
1526 (elint-unbound-variable):
1527 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
1528 Fix typos in docstrings.
1529
1530 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
1531
1532 * files.el (insert-directory): When WILDCARD-REGEXP and
1533 FULL-DIRECTORY-P are nil, insert the file entry instead of the
1534 whole directory. (Bug#5551)
1535
1536 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
1537 dired's alignment sanity. (Bug#5516)
1538
1539 2010-02-14 Juri Linkov <juri@jurta.org>
1540
1541 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
1542 Remove remaining ^H with their preceding chars. (Bug#5566)
1543
1544 2010-02-13 Glenn Morris <rgm@gnu.org>
1545
1546 * simple.el (transpose-subr): Give it a doc-string.
1547
1548 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
1549 Doc fixes.
1550
1551 2010-02-12 Juri Linkov <juri@jurta.org>
1552
1553 * arc-mode.el (archive-unique-fname): Make directories for nested
1554 archives. (Bug#5540)
1555
1556 2010-02-12 Juri Linkov <juri@jurta.org>
1557
1558 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
1559
1560 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1561
1562 * subr.el (copy-overlay): Handle deleted overlays.
1563
1564 * man.el (Man-completion-table): Don't signal an error if we can't run
1565 manual-program (bug#4056).
1566
1567 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
1568
1569 * textmodes/artist.el (artist-mt): Fix typos in docstring.
1570
1571 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1572
1573 * info.el (Info-bookmark-jump): Simplify.
1574
1575 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
1576 (bookmark-default-handler): Accept new bookmark field `buffer'.
1577
1578 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
1579
1580 * iswitchb.el (iswitchb-completions): Revert last change.
1581
1582 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
1583
1584 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
1585 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
1586 This prevents file names like "~/" being listed literally.
1587
1588 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1589
1590 * term/xterm.el (xterm-maybe-set-dark-background-mode):
1591 Remove dead code. (Bug#5546)
1592
1593 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
1594
1595 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
1596 correctly (Bug#5548).
1597
1598 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
1599
1600 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
1601 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
1602
1603 2010-02-08 Kenichi Handa <handa@m17n.org>
1604
1605 * international/mule-util.el (with-coding-priority): Add autoload
1606 cookie for putting `lisp-indent-function'.
1607
1608 2010-02-07 Glenn Morris <rgm@gnu.org>
1609
1610 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
1611 Move F2003 named interfaces from keywords-2 to keywords-1, and
1612 use function-name-face rather than constant-face.
1613 Simplify "abstract interface" regexp.
1614
1615 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
1616
1617 * eshell/esh-util.el (eshell-file-attributes): New optional arg
1618 ID-FORMAT. Pass it to `file-attributes'.
1619
1620 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
1621
1622 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
1623
1624 * faces.el (set-face-attribute): Allow calling
1625 internal-set-lisp-face-attribute with 'unspecified family and
1626 foundry argument (Bug#5536).
1627
1628 2010-02-07 Glenn Morris <rgm@gnu.org>
1629
1630 * progmodes/f90.el (f90-font-lock-keywords-2)
1631 (f90-looking-at-type-like, f90-looking-at-program-block-end):
1632 Handle F2003 named interfaces.
1633
1634 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
1635
1636 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
1637 beg and end before calling c-get-state-before-change-functions.
1638
1639 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
1640
1641 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
1642
1643 2010-02-05 Juri Linkov <juri@jurta.org>
1644
1645 * doc-view.el (doc-view-mode):
1646 * image-mode.el (image-mode): Put property mode-class=special.
1647 (Bug#4896)
1648
1649 2010-02-05 Mark A. Hershberger <mah@everybody.org>
1650
1651 * vc-svn.el (vc-svn-revision-table): New function.
1652
1653 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
1654
1655 * net/ange-ftp.el (ange-ftp-insert-directory):
1656 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1657 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1658 Handle also directories. (Bug#5478)
1659
1660 2010-02-05 Glenn Morris <rgm@gnu.org>
1661
1662 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
1663
1664 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
1665
1666 * startup.el (command-line-1): Convert options beginning with a
1667 single dash as well (Bug#5519).
1668
1669 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1670
1671 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
1672 * minibuffer.el (completion-initials-expand): Only check the presence
1673 of delims *within* the boundaries, since otherwise the / delim is
1674 always found for files.
1675
1676 Fix up various corner case problems.
1677 * doc-view.el (doc-view-last-page-number): New function.
1678 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
1679 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
1680 (doc-view-kill-proc): Avoid inf-loop in freak cases.
1681 (doc-view-reconvert-doc): Use the new recursive delete-directory.
1682 (doc-view-convert-current-doc): Don't create the resolution.el file
1683 here any more.
1684 (doc-view-pdf/ps->png): Do it here instead.
1685 (doc-view-already-converted-p): Check that resolution.el is present.
1686 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
1687 windows that are not yet showing images.
1688
1689 2010-02-04 Alan Mackenzie <acm@muc.de>
1690
1691 Change strategy for marking < and > as template delimiters: mark
1692 them strictly in matching pairs.
1693
1694 * cc-mode.el (c-before-change):
1695 Use c-get-state-before-change-functions.
1696 (c-common-init): Adapt to use
1697 c-get-state-before-change-functions (note plural).
1698
1699 * cc-langs.el (c-no-parens-syntax-table): New syntax table, used
1700 for searching syntactically for matching <s and >s.
1701 (c-get-state-before-change-functions): New language variable (note
1702 the plural) which supersedes c-get-state-before-change-function.
1703
1704 * cc-engine.el (c-clear-<-pair-props, c-clear->-pair-props)
1705 (c-clear-<>-pair-props, c-clear-<-pair-props-if-match-after)
1706 (c-clear->-pair-props-if-match-before)
1707 (c-before-change-check-<>-operators): New functions.
1708 (c-after-change-check-<>-operators): Use macro
1709 c-unmark-<->-as-paren.
1710
1711 * cc-defs.el (c-search-backward-char-property): New macro.
1712
1713 * cc-cmds.el (c-electric-lt-gt): Do not set text properties on <
1714 and > any more. (These will be handled by font locking.)
1715
1716 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
1717
1718 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
1719 `dired-uncache' for every elemnt which is an absolute file name.
1720
1721 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
1722 directory, handle its directory component.
1723 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
1724 function is called permanently and creates noise, otherwise.
1725
1726 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1727 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1728 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
1729
1730 2010-02-04 David Burger <dburger@google.com> (tiny change)
1731
1732 * macros.el (apply-macro-to-region-lines):
1733 Minor simplification. (Bug#5485)
1734
1735 2010-02-04 Glenn Morris <rgm@gnu.org>
1736
1737 * mail/rmail.el (rmail-show-message-1): Handle malformed
1738 quoted-printable text. (Bug#5441)
1739
1740 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
1741
1742 * simple.el (visual-line-mode): Capitalize lighter.
1743
1744 2010-02-03 John Wiegley <jwiegley@gmail.com>
1745
1746 * iswitchb.el (iswitchb-completions): Add bookmark files to the
1747 list of files considered for "virtual buffer" completions.
1748
1749 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
1750
1751 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
1752 also in case of (and (not full) (not wildcard)). This is needed,
1753 when dired is called with a list of files, which are not in
1754 `default-directory'. (Bug#5478)
1755
1756 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
1757
1758 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
1759
1760 2010-02-02 Juri Linkov <juri@jurta.org>
1761
1762 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
1763 from unidiff to allow function-line after @@.
1764
1765 2010-02-02 Juri Linkov <juri@jurta.org>
1766
1767 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
1768 '(RCS SCCS) with inverted condition.
1769
1770 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
1771
1772 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
1773 messages.
1774
1775 2010-02-01 Juri Linkov <juri@jurta.org>
1776
1777 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
1778 compare with "pkunzip" and "pkzip" instead of only "pkzip".
1779 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
1780 only when (car archive-zip-extract) is "unzip". (Bug#5475)
1781
1782 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
1783
1784 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
1785 (doc-view-revert-buffer): New command.
1786 (doc-view-mode-map): Use it.
1787
1788 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
1789
1790 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
1791 pending merge is detected.
1792
1793 2010-01-31 Juri Linkov <juri@jurta.org>
1794
1795 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
1796 beginning of interactive spec like all other grep commands do.
1797 Put "all" in front of "gz". (Bug#5260)
1798
1799 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
1800
1801 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
1802
1803 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
1804
1805 * dirtrack.el (dirtrack): Warn instead of signalling error if the
1806 regexp is incorrect (Bug#5476).
1807
1808 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
1809
1810 * net/tramp.el (tramp-handle-insert-directory): Handle also
1811 symlinks, when FILENAME is not in `default-directory'.
1812
1813 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
1814
1815 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
1816 FILE is not in `default-directory'. (Bug#5478)
1817
1818 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
1819 of SWITCHES. Handle the case, FILENAME is not in
1820 `default-directory'. (Bug#5478)
1821 (tramp-register-file-name-handlers): Add safe-magic property.
1822
1823 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
1824
1825 * arc-mode.el (archive-zip-extract): Quote the argument passed to
1826 unzip (Bug#5475).
1827
1828 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
1829
1830 * progmodes/flymake.el (flymake-allowed-file-name-masks)
1831 (flymake-master-make-header-init): Add other C++ filename masks.
1832 (flymake-find-possible-master-files)
1833 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
1834
1835 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
1836
1837 Fix some busybox annoyances.
1838
1839 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
1840 not responding." string.
1841 (tramp-open-connection-setup-interactive-shell): Dump stty
1842 settings. Enable "neveropen" arg for all `tramp-send-command'
1843 calls. Handle "=" in variable values properly.
1844 (tramp-find-inline-encoding): Raise an error, when no encoding is
1845 found.
1846 (tramp-wait-for-output): Check, whether PROC buffer is available.
1847 Remove spurious " ^H" sequences, sent by busybox.
1848 (tramp-get-ls-command): Suppress coloring, if possible.
1849
1850 2010-01-28 Glenn Morris <rgm@gnu.org>
1851
1852 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
1853
1854 * log-edit.el (log-edit-strip-single-file-name): Add missing
1855 :safe, :group, and :version tags.
1856
1857 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
1858
1859 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
1860 buffers. (Bug#5477)
1861
1862 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
1863
1864 * files.el (delete-directory): Handle moving to trash without
1865 first doing recursion (Bug#5436).
1866
1867 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
1868
1869 * vc-hooks.el (vc-path): Mark as obsolete.
1870
1871 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
1872
1873 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
1874 names too.
1875
1876 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
1877 for the short log.
1878 (vc-bzr-log-view-mode): Adjust regexp for the above change.
1879
1880 2010-01-25 Mark A. Hershberger <mah@everybody.org>
1881
1882 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
1883
1884 * vc-bzr.el (vc-bzr-revision-table): New function.
1885
1886 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
1887
1888 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
1889 diff-index command. This requires at least git-1.5.5. (Bug#1589).
1890
1891 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
1892
1893 Remove support for adding --signoff on commit.
1894 Future support will use an incompatible generic mechanism.
1895 * vc-git.el (vc-git-add-signoff): Remove variable.
1896 (vc-git-toggle-signoff): Remove function.
1897 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
1898
1899 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
1900 from xterm-set-background-mode. Return t if the background mode
1901 was set.
1902 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
1903 earlier, call it again in case the background mode has changed.
1904
1905 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
1906
1907 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
1908 (Bug#3541).
1909
1910 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
1911
1912 * emacs-lisp/assoc.el (aelement): Doc fix.
1913 (aput, adelete, amake): Use lexical-let (Bug#5450).
1914
1915 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
1916
1917 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
1918 is the same as subprogram call, not declaration. (Bug#5435).
1919
1920 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
1921
1922 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
1923 (tramp-smb-maybe-open-connection): Use it.
1924
1925 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
1926
1927 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
1928
1929 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
1930
1931 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
1932 just because we see "encoding: 8bit".
1933 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
1934
1935 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
1936
1937 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
1938
1939 2010-01-22 Eli Zaretskii <eliz@gnu.org>
1940
1941 * jka-compr.el (jka-compr-load): If load-file is not in
1942 load-history, try its file-truename version. (bug#5447)
1943
1944 2010-01-21 Alan Mackenzie <acm@muc.de>
1945
1946 Fix a situation where deletion of a cpp construct throws an error.
1947 * progmodes/cc-engine.el (c-invalidate-state-cache): Before
1948 invoking c-with-all-but-one-cpps-commented-out, check that the
1949 special cpp construct is still in the buffer.
1950 (c-parse-state): Record the special cpp with markers, not numbers.
1951
1952 2010-01-21 Kenichi Handa <handa@m17n.org>
1953
1954 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
1955 process last-command-event, as it is now decoded first (Bug#5380).
1956
1957 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
1958
1959 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
1960
1961 2010-01-20 Glenn Morris <rgm@gnu.org>
1962
1963 * indent.el (tab-always-indent): Fix custom-type.
1964
1965 2010-01-19 Alan Mackenzie <acm@muc.de>
1966
1967 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
1968 buffer throws "args out of range".
1969 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
1970 playing the role of delimiter.
1971
1972 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
1973
1974 * progmodes/ada-mode.el: Fix bug#5400.
1975 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
1976 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
1977 changed. Delete RECURSIVE parameter; never used. Improve doc string.
1978 Improve comments in "is" portion. Handle null procedure declaration.
1979 (ada-move-to-end): Improve doc string.
1980
1981 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
1982
1983 * ido.el (ido-cur-list): Initialize to nil.
1984 Remove obsolete information from commentary.
1985 (ido-choice-list): Initialize to nil.
1986 (ido-get-bufname): Reject minibuffers.
1987 (ido-make-buffer-list): If "default" is a nonexistent
1988 buffer, ignore it, as per the function's comment.
1989 (ido-kill-buffer-internal): New function.
1990 (ido-kill-buffer-at-head): Use it.
1991 (ido-visit-buffer): Likewise.
1992
1993 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
1994
1995 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
1996
1997 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
1998
1999 * cedet/ede/locate.el (ede-locate-file-in-project)
2000 (ede-locate-file-in-project-impl): Fix typos in docstrings.
2001 (ede-enable-locate-on-project): Fix typos in error messages.
2002
2003 * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
2004 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
2005 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
2006 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
2007 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
2008 Fix typos in menu help.
2009
2010 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2011 Fix typos in chart titles.
2012
2013 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2014 * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
2015 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
2016 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
2017 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
2018 (semantic-parse-stream, semantic-parse-region)
2019 (semantic-parse-region-default, semantic--set-buffer-cache)
2020 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
2021 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
2022 (semantic-default-submodes):
2023 * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
2024 (semanticdb-create-ebrowse-database)
2025 (semanticdb-find-tags-for-completion-method)
2026 (semanticdb-find-tags-by-class-method)
2027 (semanticdb-deep-find-tags-by-name-method)
2028 (semanticdb-deep-find-tags-for-completion-method):
2029 * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
2030 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
2031 (semanticdb-find-tags-for-completion-method)
2032 (semanticdb-find-tags-by-class-method)
2033 (semanticdb-deep-find-tags-for-completion-method):
2034 * cedet/semantic/db-find.el (semanticdb-find-translate-path)
2035 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
2036 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
2037 (semanticdb-find-tags-by-name-method)
2038 (semanticdb-find-tags-by-name-regexp-method)
2039 (semanticdb-find-tags-for-completion-method)
2040 (semanticdb-find-tags-by-class-method)
2041 (semanticdb-find-tags-external-children-of-type-method)
2042 (semanticdb-find-tags-subclasses-of-type-method)
2043 (semanticdb-deep-find-tags-by-name-method)
2044 (semanticdb-deep-find-tags-by-name-regexp-method)
2045 (semanticdb-deep-find-tags-for-completion-method):
2046 * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
2047 (semanticdb-enable-gnu-global-in-buffer)
2048 (semanticdb-find-tags-for-completion-method)
2049 (semanticdb-deep-find-tags-by-name-method)
2050 (semanticdb-deep-find-tags-for-completion-method):
2051 * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
2052 (javascript-mode, semanticdb-find-translate-path)
2053 (semanticdb-find-tags-for-completion-method)
2054 (semanticdb-find-tags-by-class-method)
2055 (semanticdb-deep-find-tags-by-name-method)
2056 (semanticdb-deep-find-tags-for-completion-method)
2057 (semanticdb-find-tags-external-children-of-type-method):
2058 * cedet/semantic/idle.el (semantic-idle-work-core-handler)
2059 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
2060 (global-semantic-idle-scheduler-mode):
2061 * cedet/srecode/dictionary.el (srecode-field-value)
2062 (srecode-dictionary-add-section-dictionary):
2063 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2064 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2065 (describe-class, eieio-describe-generic, describe-generic):
2066 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2067 (eieio-speedbar-expand):
2068 * emulation/viper-cmd.el (viper-exec-form-in-vi)
2069 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2070 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2071 (viper-del-backward-char-in-replace, viper-backward-indent)
2072 (viper-brac-function, viper-register-to-point, viper-submit-report):
2073 * net/tramp.el (tramp-remote-coding-commands):
2074 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2075 Fix typos in docstrings.
2076
2077 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
2078
2079 * mail/sendmail.el (mail-yank-original): Set the mark if the
2080 specified function for yanking does not do it.
2081
2082 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
2083
2084 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
2085
2086 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2087 resyncing a directory.
2088
2089 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
2090
2091 * progmodes/ada-mode.el: Fix bug#1920.
2092 (ada-ident-re): Delete ., allow multibyte characters.
2093 (ada-goto-label-re): New; matches goto labels.
2094 (ada-block-label-re): New; matches block labels.
2095 (ada-label-re): New; matches both.
2096 (ada-named-block-re): Deleted; callers changed to use
2097 `ada-block-label-re' instead.
2098 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2099 Use `ada-block-label-re'.
2100 (ada-indent-on-previous-lines): Improve handling of goto labels.
2101 (ada-get-indent-block-start): Special-case block label.
2102 (ada-get-indent-label): Split into `ada-indent-block-label' and
2103 `ada-indent-goto-label'.
2104 (ada-goto-stmt-start, ada-goto-next-non-ws):
2105 Optionally ignore goto labels.
2106 (ada-goto-next-word): Simplify.
2107 (ada-indent-newline-indent-conditional): Insert newline before
2108 trying to fix indentation; doc fix.
2109
2110 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
2111
2112 * calc/calc.el (calc-command-flags): Give it an initial value.
2113
2114 2010-01-17 Glenn Morris <rgm@gnu.org>
2115
2116 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
2117
2118 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
2119
2120 * cedet/semantic.el (semantic-mode):
2121 * files.el (minibuffer-with-setup-hook):
2122 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2123 (artist-key-draw-continously, artist-key-do-continously-continously)
2124 (artist-key-set-point-continously, artist-mouse-draw-continously):
2125 Fix typos in docstrings.
2126
2127 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
2128
2129 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
2130 return t (Bug#3898).
2131
2132 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
2133
2134 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2135 can parse the output of the external commands (Bug#5279).
2136
2137 2010-01-16 Jari Aalto <jari.aalto@cante.net>
2138
2139 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2140
2141 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2142
2143 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2144
2145 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2146
2147 * startup.el (command-line): Remove unused --icon-type arg.
2148 Handle --display arg, passing it to command-line-1 (Bug#5392).
2149
2150 2010-01-16 Mario Lang <mlang@delysid.org>
2151
2152 * cedet/ede/cpp-root.el (ede-cpp-root-project):
2153 * cedet/ede/files.el (ede-expand-filename):
2154 * cedet/ede/simple.el (ede-simple-project):
2155 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
2156 (semantic-complete-inline-tag-engine):
2157 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
2158 * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
2159 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
2160 * cedet/semantic/db.el (semanticdb-equivalent-mode):
2161 * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
2162 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
2163 * emacs-lisp/chart.el (chart-translate-namezone):
2164 * textmodes/artist.el (artist-compute-popup-menu-table):
2165 Remove duplicated words in doc-strings.
2166
2167 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
2168
2169 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2170 to mairix-search to suppress threading (Bug#5342).
2171
2172 2010-01-15 Kenichi Handa <handa@m17n.org>
2173
2174 * international/mule-cmds.el (canonicalize-coding-system-name):
2175 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2176
2177 2010-01-15 Glenn Morris <rgm@gnu.org>
2178
2179 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
2180
2181 * wid-edit.el (widget-keymap): Doc fix.
2182
2183 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2184 former seems to be more widely accepted by various svn versions.
2185
2186 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2187
2188 * find-cmd.el (find-constituents):
2189 * vc-arch.el (vc-arch-root):
2190 * window.el (window-body-height, pop-up-frames):
2191 * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
2192 (semantic-no-reparse-needed-change-hook):
2193 * cedet/srecode/insert.el (srecode-resolve-argument-list)
2194 (srecode-template-inserter-blank, srecode-template-inserter-variable)
2195 (srecode-template-inserter-ask, srecode-template-inserter-width)
2196 (srecode-template-inserter-section-start)
2197 (srecode-template-inserter-section-end, srecode-insert-method):
2198 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2199 * progmodes/ada-stmt.el (ada-if):
2200 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2201 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2202 (ispell-encoding8-command, ispell-aspell-supports-utf8)
2203 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2204
2205 * progmodes/flymake.el (flymake-post-syntax-check):
2206 Fix typo in error message.
2207
2208 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2209
2210 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2211 which is always a string. (Bug#5313)
2212
2213 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2214
2215 * progmodes/ada-xref.el (ada-default-prj-properties):
2216 Simplify previous change.
2217
2218 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2219
2220 * progmodes/ada-xref.el (ada-default-prj-properties):
2221 Default ada_project_path to $ADA_PROJECT_PATH.
2222
2223 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2224
2225 * progmodes/ada-mode.el (ada-create-keymap):
2226 Override `narrow-to-defun' with `ada-narrow-to-defun'.
2227
2228 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2229
2230 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2231 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2232 (ada-get-current-indent, ada-imenu-generic-expression)
2233 (ada-which-function): Check for it.
2234
2235 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2236
2237 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2238 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2239
2240 2010-01-14 Glenn Morris <rgm@gnu.org>
2241
2242 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
2243
2244 2010-01-14 Kenichi Handa <handa@m17n.org>
2245
2246 * composite.el (auto-composition-mode): Make it a buffer local
2247 variable (permanent-local).
2248 (auto-composition-function): Set the default value to
2249 auto-compose-chars.
2250 (auto-composition-mode): Make it a simple function, not a minor mode.
2251 (global-auto-composition-mode): Likewise.
2252 (turn-on-auto-composition-if-enabled): Delete it.
2253
2254 2010-01-13 Karl Fogel <kfogel@red-bean.com>
2255
2256 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
2257
2258 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
2259
2260 * files.el (copy-directory): Compute target for recursive
2261 directories with identical names. (Bug#5343)
2262
2263 2010-01-12 Glenn Morris <rgm@gnu.org>
2264
2265 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
2266 it to bug-gnu-emacs rather than emacs-pretest-bug.
2267
2268 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
2269
2270 * cedet/data-debug.el (data-debug): Fix customization group reference.
2271
2272 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
2273
2274 * cedet/semantic/analyze.el (semantic-analyze-push-error)
2275 (semantic-analyze-context, semantic-analyze-context-assignment)
2276 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
2277 * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
2278 (semantic-java-doc-keywords-map):
2279 * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
2280 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
2281 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
2282 (semantic-c-classname, semantic-format-tag-uml-prototype)
2283 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
2284 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
2285 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
2286 (semantic-get-local-variables, semantic-end-of-command)
2287 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
2288 (lisp-mode):
2289 * cedet/semantic/bovine/make.el (makefile-mode):
2290 * cedet/semantic/wisent/python.el (wisent-python-string-re)
2291 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
2292 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
2293 (semantic-lex, semantic-get-local-variables, python-mode):
2294 * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
2295 * cedet/srecode/extract.el (srecode-extract-state-set)
2296 (srecode-extract-method): Fix typos in docstrings.
2297
2298 2010-01-11 Sam Steingold <sds@gnu.org>
2299
2300 * imenu.el (imenu-default-create-index-function): Detect infinite
2301 loops caused by imenu-prev-index-position-function.
2302
2303 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2304
2305 * htmlfontify.el (htmlfontify-load-rgb-file)
2306 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2307 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2308 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2309 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2310 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2311 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2312 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2313 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2314 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2315 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2316 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2317 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2318 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2319 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2320 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2321 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2322 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2323 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2324 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2325 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2326 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2327 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2328 backslash-quoting from parentheses, etc.
2329
2330 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
2331
2332 * progmodes/js.el: Autoload javascript-mode alias.
2333
2334 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2335
2336 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2337 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2338 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2339 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2340 Fix typos in docstrings.
2341 (ffap-url-regexp): Doc fix.
2342 (ffap-at-mouse): Fix typo in message.
2343
2344 2010-01-11 Glenn Morris <rgm@gnu.org>
2345
2346 * version.el (emacs-copyright): Set copyright year to 2010.
2347
2348 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2349
2350 * format.el (format-annotate-function): Only set
2351 write-region-post-annotation-function after running to-fn so as not to
2352 affect nested write-region calls (bug#5273).
2353
2354 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
2355
2356 * cedet/semantic.el (semantic-new-buffer-setup-functions):
2357 Add python parser.
2358
2359 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2360 wisent/python.el.
2361
2362 2010-01-10 Richard Kim <emacs18@gmail.com>
2363
2364 * cedet/semantic/wisent/python-wy.el:
2365 * cedet/semantic/wisent/python.el: New files.
2366
2367 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2368
2369 * man.el (Man-goto-section): Signal error if the section is not
2370 found (Bug#5317).
2371
2372 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
2373
2374 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
2375 URLs with a leading triple slash in the file: scheme. (Bug#5345)
2376
2377 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2378
2379 * progmodes/compile.el: Don't treat compile-command as safe if
2380 compilation-read-command might be nil (Bug#4218).
2381
2382 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
2383
2384 * startup.el (command-line-1): Use orig-argi to check for ignored X and
2385 NS options.
2386
2387 2010-01-08 Kenichi Handa <handa@m17n.org>
2388
2389 * international/fontset.el (build-default-fontset-data):
2390 Exclude characters in scripts kana, hangul, han, or cjk-misc.
2391
2392 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
2393
2394 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2395 to `create-file-buffer' as it expects, not just a buffer name.
2396 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2397 to help uniquify. (Bug#3224)
2398
2399 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
2400
2401 * font-setting.el (font-setting-change-default-font): Use user-spec
2402 instead of name.
2403
2404 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
2405
2406 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2407
2408 2010-01-05 Tom Tromey <tromey@redhat.com>
2409
2410 * progmodes/python.el (python-font-lock-keywords):
2411 Handle qualified decorators (Bug#881).
2412
2413 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2414
2415 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2416 in a lightweight checkout.
2417
2418 2010-01-05 Kenichi Handa <handa@m17n.org>
2419
2420 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2421
2422 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2423
2424 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2425
2426 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
2427
2428 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2429 checkouts. (Bug#618)
2430 (vc-bzr-log-view-mode): Also highlight the author.
2431 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2432 (vc-bzr-shelve-menu-map):
2433 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2434 (vc-bzr-shelve-apply): Make prompt more explicit.
2435
2436 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
2437
2438 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2439 They are valid characters in URL paths (rfc3986), and at least
2440 Firefox does not understand the encoded version (Bug#3166).
2441
2442 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
2443
2444 * progmodes/octave-mod.el (octave-end-keywords)
2445 (octave-block-begin-or-end-regexp, octave-block-match-alist):
2446 Add "end" keyword (Bug#3061).
2447 (octave-end-as-array-index-p): New function.
2448 (calculate-octave-indent): Use it.
2449
2450 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2451
2452 * bookmark.el: Consistently put the text property on the bookmark name.
2453 (bookmark-bmenu-marks-width): Bump back to 2, to include
2454 annotation marks.
2455 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2456 property on the bookmark name, instead of not putting it at all.
2457 (bookmark-bmenu-list): Fix where we put the text property.
2458
2459 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2460
2461 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2462 for showing buffer modified state (as added in the previous change).
2463
2464 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2465
2466 * bookmark.el: Show modified state of bookmark buffer more accurately.
2467 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2468 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2469 (with-buffer-modified-unmodified): New macro.
2470 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2471 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2472 Use new macro to preserve the buffer modified state.
2473
2474 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2475
2476 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2477 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2478 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2479 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2480 (bookmark-bmenu-rename, bookmark-bmenu-locate)
2481 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2482 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2483
2484 2010-01-02 Eli Zaretskii <eliz@gnu.org>
2485
2486 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2487 Make the lines in the generated doc string shorter. (Bug#4668)
2488
2489 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
2490
2491 * net/rcirc.el: Add follow-link binding (Bug#4738).
2492
2493 2010-01-02 Eli Zaretskii <eliz@gnu.org>
2494
2495 * Makefile.in (bzr-update): Rename from cvs-update.
2496 (cvs-update): New target for backward compatibility.
2497
2498 * makefile.w32-in (bzr-update): Rename from cvs-update.
2499 (cvs-update): New target for backward compatibility.
2500
2501 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2502
2503 * bookmark.el: Remove gratuitous gratitude.
2504
2505 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2506
2507 * bookmark.el (bookmark-bmenu-any-marks): New function
2508 (bookmark-bmenu-save): Clear buffer modification if no marks.
2509
2510 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2511
2512 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
2513 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
2514 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
2515 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
2516
2517 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
2518 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
2519 To: emacs-devel {_AT_} gnu.org
2520 Subject: bookmark.el bug report
2521 Date: Mon, 28 Dec 2009 14:19:16 +0800
2522 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
2523
2524 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2525
2526 * bookmark.el: Improvements suggested by Drew Adams:
2527 (bookmark-bmenu-ensure-position): New name for
2528 `bookmark-bmenu-check-position'. Just ensure the position,
2529 don't return any meaningful value.
2530 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
2531 New constants.
2532
2533 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
2534
2535 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
2536 (bookmark-yank-point, bookmark-bmenu-check-position):
2537 Fix typos in docstrings.
2538 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
2539 (bookmark-name-from-full-record, bookmark-get-position)
2540 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
2541 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
2542 Remove useless quoting of parenthesis, etc. in docstrings.
2543
2544 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
2545 (ediff-append-custom-diff): Fix typo in error message.
2546 (ediff-meta-mark-equal-files): Fix typos in messages.
2547
2548 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
2549
2550 * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
2551 Fix typo in docstring.
2552
2553 * net/imap-hash.el (imap-hash-make): Doc fix.
2554 (imap-hash-test): Fix typo in error message; reflow docstring.
2555 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
2556 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
2557 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
2558 Fix typos in docstrings.
2559 (imap-hash-open-connection): Fix typo in error message.
2560
2561 * play/gomoku.el (gomoku): Fix typos in docstring.
2562
2563 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
2564 (gdb-jsonify-buffer): Fix typos in docstring.
2565 (gdb-goto-breakpoint): Fix typo in error message.
2566 ("Display Other Windows"): Fix typo in help message.
2567 (gdb-speedbar-expand-node): Fix typo in question.
2568
2569 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
2570 (idlwave-html-system-help-location, idlwave-html-help-location)
2571 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
2572 (idlwave-help-browser-generic-args, idlwave-help-directory)
2573 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
2574 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
2575 (idlwave-online-help, idlwave-help-html-link)
2576 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
2577 Fix typos in docstrings.
2578 (idlwave-help-with-source, idlwave-help-find-routine-definition):
2579 Reflow docstrings.
2580 (idlwave-help-assistant-start): Fix typo in error message.
2581
2582 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
2583 (octave-electric-space): Fix typos in docstrings.
2584
2585 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
2586
2587 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
2588
2589 2010-01-01 Juri Linkov <juri@jurta.org>
2590
2591 * comint.el (comint-input-ring-size): Make it a defcustom and
2592 increase the default to 500 (Bug#5148).
2593
2594 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
2595
2596 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
2597 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
2598 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
2599
2600 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
2601
2602 Show working revision correctly for mercurial.
2603 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
2604 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
2605
2606 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
2607
2608 Declare some functions for the byte-compiler.
2609 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
2610 (speedbar-timer-fn, speedbar-change-expand-button-char)
2611 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
2612
2613 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
2614
2615 This changeset reverts GDB Graphical Interface to use annotations.
2616 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
2617
2618 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
2619
2620 Make vc-dir work on subdirectories of the bzr root.
2621 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
2622 file names relative to it.
2623 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
2624 relative directory to vc-bzr-after-dir-status.
2625
2626 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
2627
2628 * font-lock.el (font-lock-refresh-defaults): New function, which
2629 can be used to let font-lock react to external changes in
2630 variables like font-lock-defaults and keywords.
2631 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
2632
2633 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
2634
2635 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
2636
2637 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
2638
2639 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
2640
2641 Supersede color.diff settings in git log (bug#5211).
2642
2643 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
2644 escape chars in its output when the user has color.diff set to `always'.
2645 This fix works on git 1.4.2 and newer (released on 2006-08-13).
2646
2647 2009-12-26 Kevin Ryde <user42@zip.com.au>
2648
2649 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
2650 node. Keep previous "Index" name to work with past coreutils too.
2651
2652 * man.el (man): Revise docstring a bit to show -a and -l as
2653 examples. Add -k description since support for it has otherwise
2654 been a secret. (Further to bug#3717.)
2655 (Man-bgproc-sentinel): When "-k foo" produces no output show error
2656 "no matches" rather than "Can't find manpage", as the latter reads
2657 like -k was interpreted as a page name, which is not so. (Bug#5431)
2658
2659 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
2660
2661 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
2662 switches. Check also for //SUBDIRED// line.
2663
2664 2009-12-25 Kenichi Handa <handa@m17n.org>
2665
2666 * language/indian.el (devanagari-composable-pattern): Fixed to
2667 handle ZWNJ and ZWJ. Use it in composition-function-table for
2668 Devanagari.
2669 (malayalam-composable-pattern): Fix previous change.
2670
2671 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2672
2673 * ps-print.el (ps-face-attributes): It was not returning the
2674 attribute face for faces specified as string. Reported by harven
2675 <harven@free.fr>.
2676 (ps-print-version): New version 7.3.5.
2677
2678 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
2679
2680 * calendar/icalendar.el (icalendar--convert-tz-offset):
2681 Fix timezone names.
2682 (icalendar--convert-tz-offset): Fix the "last-day-problem".
2683 (icalendar--add-diary-entry): Remove the trailing blank that
2684 diary-make-entry inserts.
2685
2686 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
2687
2688 Make `file-expand-wildcards' work for remote files.
2689
2690 * files.el (file-expand-wildcards): In case of remote files, check
2691 only local file name part for wildcards. Provide feature 'files
2692 and subfeature 'remote-wildcards. (Bug#5198)
2693
2694 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
2695 if there is already an established connection.
2696 (tramp-advice-file-expand-wildcards): Remove it.
2697
2698 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
2699 (tramp-advice-file-expand-wildcards): Move from tramp.el.
2700 Activate advice for older GNU Emacs versions. (Bug#5237)
2701
2702 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
2703
2704 Some doc fixes (more needed).
2705
2706 * find-cmd.el (find-constituents): Reflow docstring.
2707 (find-cmd, find-prune, find-command): Fix typos in docstrings.
2708 (find-generic): Doc fix.
2709
2710 2009-12-17 Juri Linkov <juri@jurta.org>
2711
2712 Fix regression from 23.1 to allow multiple modes in Local Variables.
2713
2714 * files.el (hack-local-variables-filter): While ignoring duplicates,
2715 don't take `mode' into account.
2716 (hack-local-variables-filter, hack-dir-local-variables):
2717 Don't remove duplicate `mode' from local-variables-alist (like `eval').
2718
2719 2009-12-17 Juri Linkov <juri@jurta.org>
2720
2721 Make `dired-diff' safer. (Bug#5225)
2722
2723 * dired-aux.el (dired-diff): Signal an error when `file' equals to
2724 `current' or when `file' is a directory of the `current' file.
2725
2726 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
2727
2728 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
2729 unconditionally preloaded files.
2730
2731 2009-12-16 Juri Linkov <juri@jurta.org>
2732
2733 Revert to old 23.1 logic of using the file at the mark as default.
2734 * dired-aux.el (dired-diff): Use the file at the mark as default
2735 if it's not the same as the current file, and the target dir is
2736 the current dir or the mark is active. Add the current file
2737 as the arg of `dired-dwim-target-defaults'. Use the default file
2738 in the prompt. (Bug#5225)
2739
2740 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
2741
2742 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
2743 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
2744 (tramp-check-for-regexp): Check also, when an echoing shell stops
2745 to echo sent commands.
2746
2747 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
2748
2749 * Makefile.in: Revert last change (Bug#5191).
2750
2751 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
2752
2753 * vc-hg.el (vc-hg-print-log): Fix argument order.
2754 (vc-hg-working-revision): Make sure the command is executed in a
2755 known environment so that we can parse the output. (Bug#4417)
2756
2757 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
2758
2759 * progmodes/python.el (python-symbol-completions): Remove text
2760 properties from symbol string before calling python-send-receive.
2761
2762 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
2763
2764 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
2765 when there are values for both file and line. (Bug#5060)
2766
2767 2009-12-14 Juri Linkov <juri@jurta.org>
2768
2769 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
2770 whitespace after the file name of the first line of unified format,
2771 because git-diff doesn't output whitespace and file modification time
2772 after the file name.
2773
2774 2009-12-14 David Kastrup <dak@gnu.org>
2775
2776 * info.el (Info-hide-cookies-node): Before hiding a cookie,
2777 check if it already has the `display' property added by
2778 `Info-display-images-node', and not put the `invisible' property
2779 in this case.
2780
2781 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
2782
2783 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
2784 (semantic-mru-bookmark-mode): Doc fixes.
2785
2786 * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
2787 of assert.
2788
2789 2009-12-13 Glenn Morris <rgm@gnu.org>
2790
2791 * mail/emacsbug.el (message-sort-headers): Define for compiler.
2792 (report-emacs-bug): In message-mode, sort manually before storing
2793 original report text. (Bug#5178)
2794 Remove superfluous save-excursion.
2795
2796 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
2797
2798 * net/dbus.el (dbus-property-handler): Filter lambda forms out
2799 when responding to "GetAll" properties.
2800
2801 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
2802
2803 * simple.el (compose-mail): Remove mail-setup-with-from from
2804 customization checks.
2805
2806 2009-12-12 Eli Zaretskii <eliz@gnu.org>
2807
2808 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
2809 RAR archives created on Unix systems.
2810
2811 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
2812
2813 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
2814 the varalias that was accidentally removed by the 2009-11-19 change
2815 (bug#5186).
2816
2817 2009-12-12 Kenichi Handa <handa@m17n.org>
2818
2819 * language/indian.el (indian-compose-regexp): New function.
2820 (malayalam-composable-pattern): Fix the pattern.
2821 (composition-function-table): Set malayalam-composable-pattern for
2822 Malayalam characters.
2823
2824 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
2825
2826 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
2827 rather than down-mouse-1, based on follow-link conventions.
2828
2829 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
2830 are compiled.
2831
2832 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
2833
2834 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
2835 (verilog-vmm-statement-re, verilog-ovm-statement-re)
2836 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
2837 (verilog-leap-to-head, verilog-backward-token):
2838 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
2839
2840 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
2841
2842 * progmodes/verilog-mode.el (verilog-auto-lineup)
2843 (verilog-nameable-item-re): Cleanup user-visible spelling and
2844 documentation errors. One reported by Gary Delp.
2845 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
2846 (verilog-read-decls): Fix AUTOWIRE with types declared in a
2847 package, bug195. Reported by Pierre-David Pfister.
2848
2849 2009-12-11 Glenn Morris <rgm@gnu.org>
2850
2851 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
2852
2853 * mail/emacsbug.el: No longer require sendmail.
2854 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
2855 (report-emacs-bug-orig-text): Doc fix.
2856 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
2857 New local variables, to adapt to different mail-user-agents.
2858 (report-emacs-bug): Fix test for a gnu.org address.
2859 Use overlays for emphasis, since font-lock defeats 'face property.
2860 Pretest bugs also end up at the newsgroup these days.
2861 Stop message-mode stripping text properties.
2862 Set and use the new buffer-local variables.
2863 (report-emacs-bug-hook): Add doc-string.
2864 Remove some unnecessary save-excursions and simplify.
2865 Use the appropriate hook and send-command.
2866
2867 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
2868 capitalization of some menu entries.
2869
2870 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2871
2872 * whitespace.el (whitespace-display-char-on): Ensure
2873 `buffer-display-table' is unique when two or more windows are
2874 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
2875 New version 12.1.
2876
2877 2009-12-10 Eli Zaretskii <eliz@gnu.org>
2878
2879 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
2880 characters in the Attribute field.
2881
2882 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
2883
2884 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
2885
2886 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2887
2888 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
2889 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2890 Disregard autoload-excludes.
2891 (update-directory-autoloads): Obey autoload-excludes here instead.
2892 But don't store its contents in no-autoloads and remove entries that
2893 refer to excludes files.
2894
2895 2009-12-10 Glenn Morris <rgm@gnu.org>
2896
2897 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
2898 (expand-mail-aliases): Define for compiler.
2899
2900 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
2901 Define for compiler.
2902
2903 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
2904 appropriate for the mail-user-agent in use.
2905
2906 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
2907
2908 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
2909
2910 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
2911
2912 Fix short log parsing and fontification.
2913 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
2914 Fix fontification for the [merge] label.
2915
2916 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
2917
2918 Drop some properties to avoid surprises (bug#5002).
2919 * htmlfontify.el (hfy-ignored-properties): New defcustom.
2920 (hfy-fontify-buffer): Use it.
2921
2922 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
2923
2924 Minor cleanup.
2925 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
2926 Adjust all callers.
2927 (ffap-locate-file): Remove unused arg `dir-ok' and make other
2928 args compulsory. Adjust callers.
2929 (ffap-gopher-at-point): Remove unused var `name'.
2930
2931 Get rid of the ELCFILES abomination.
2932 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
2933 (compile-elcfiles): New phony target.
2934 (compile-main): Compute ELCFILES dynamically.
2935 (compile-clean): New target to remove left-over elc files.
2936 (compile, all): Use it.
2937
2938 2009-12-09 Kenichi Handa <handa@etlken>
2939
2940 * international/mule-diag.el: Require help-mode instead of help-fns.
2941
2942 2009-12-09 Kenichi Handa <handa@m17n.org>
2943
2944 * international/mule-cmds.el (ucs-names): Supply sufficiently
2945 fine ranges instead of pre-calculating accurate ranges.
2946 Iterate with bigger gc-cons-threshold.
2947
2948 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
2949
2950 Add support for stashing a snapshot of the current tree.
2951 * vc-git.el (vc-git-stash-snapshot): New function.
2952 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
2953
2954 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
2955
2956 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
2957 instead of `(beginning|end)-of-line'.
2958
2959 2009-12-08 Glenn Morris <rgm@gnu.org>
2960
2961 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
2962
2963 * Makefile.in (ELCFILES): Regenerate.
2964
2965 2009-12-07 Juri Linkov <juri@jurta.org>
2966
2967 Don't lazy-highlight the comint output in history Isearch mode.
2968
2969 * comint.el (comint-history-isearch-search): Instead of
2970 `comint-line-beginning-position', use `comint-after-pmark-p'
2971 to check if point if before the process mark, and go to
2972 `process-mark' in this case.
2973
2974 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2975
2976 * textmodes/tex-mode.el (latex-complete)
2977 (latex-indent-or-complete): Remove.
2978 (latex-mode): Set completion-at-point-functions instead.
2979
2980 Provide a standard completion command and hook it into TAB.
2981 * minibuffer.el (completion-at-point-functions): New var.
2982 (completion-at-point): New command.
2983 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
2984 * progmodes/python.el (python-mode-map): Use completion-at-point.
2985 (python-completion-at-point): Rename from python-partial-symbol and
2986 adjust for use in completion-at-point-functions.
2987 (python-mode): Setup completion-at-point for Python completion.
2988 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
2989 extracted from lisp-complete-symbol.
2990 (lisp-complete-symbol): Use it.
2991 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
2992 setup completion-at-point for Elisp completion.
2993 (emacs-lisp-mode-map, lisp-interaction-mode-map):
2994 Use completion-at-point.
2995 * ielm.el (ielm-map): Use completion-at-point.
2996 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
2997 * progmodes/sym-comp.el: Move to...
2998 * obsolete/sym-comp.el: Move from progmodes.
2999
3000 2009-12-07 Eli Zaretskii <eliz@gnu.org>
3001
3002 Prevent save-buffer in Rmail buffers from using the coding-system
3003 of the current message, and from clobbering the encoding mnemonics
3004 in the mode line (Bug#4623).
3005
3006 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
3007 flag, too.
3008 (rmail-message-encoding): New variable.
3009 (rmail-write-region-annotate): Record the encoding of the current
3010 message in rmail-message-encoding.
3011 (rmail-after-save-hook): New function, restores the encoding of
3012 the current message after the message collection is saved.
3013
3014 2009-12-07 Juri Linkov <juri@jurta.org>
3015
3016 * progmodes/grep.el (grep-read-files): Use `completing-read'
3017 instead of `read-string'. Set its `collection' arg to
3018 `read-file-name-internal'. (Bug#4301)
3019
3020 2009-12-07 Juri Linkov <juri@jurta.org>
3021
3022 Correctly restore original Isearch point. (Bug#4994)
3023
3024 * isearch.el (isearch-mode): Move `isearch-push-state' after
3025 `(run-hooks 'isearch-mode-hook)'.
3026 (isearch-cancel): When `isearch-push-state-function' is defined,
3027 let-bind `isearch-cmds' to the first state (the last element of
3028 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
3029 function and restores the original point). Otherwise, move point
3030 to `isearch-opoint'.
3031
3032 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3033
3034 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3035 chars that don't have names, so the table can be built much faster at
3036 run-time.
3037
3038 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
3039
3040 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3041 change. Suggested by David Kastrup.
3042
3043 * simple.el (compose-mail): Check for incompatibilities and warn.
3044 (compose-mail-user-agent-warnings): New option.
3045
3046 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3047
3048 Support showing a single log entry from vc-annotate.
3049 * vc.el (print-log): Add a new argument: START-REVISION.
3050 (vc-print-log-internal): Add a new optional argument and
3051 pass it to the backend.
3052 (vc-print-log, vc-print-root-log): Adjust callers.
3053 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3054 buffer already displays the requested log entry, use it.
3055 Otherwise display only the log entry in question.
3056 * vc-svn.el (vc-svn-print-log):
3057 * vc-mtn.el (vc-mtn-print-log):
3058 * vc-hg.el (vc-hg-state):
3059 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3060 (vc-git-show-log-entry): Return t on success.
3061 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3062 (vc-bzr-show-log-entry): Return t on success.
3063 * vc-rcs.el (vc-rcs-print-log):
3064 * vc-sccs.el (vc-sccs-print-log):
3065 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3066
3067 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3068
3069 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3070 Add menus to the meta mode. (Bug#5043)
3071
3072 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
3073
3074 * ediff-init.el (ediff-event-key): Use event-to-character instead of
3075 event-key.
3076
3077 * ediff.el (ediff-buffers-internal): Add unwind-protect.
3078
3079 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
3080
3081 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
3082 Berbain <raphael.berbain@gmail.com>.
3083
3084 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
3085 characters.
3086 (tramp-initial-end-of-output): New defconst.
3087 (tramp-methods, tramp-find-shell)
3088 (tramp-open-connection-setup-interactive-shell)
3089 (tramp-maybe-open-connection): Use it.
3090 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
3091 existence of `#' and `$'.
3092
3093 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
3094 `tramp-initial-end-of-output'.
3095
3096 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3097
3098 Get the background mode from the terminal for xterm, and set
3099 faces accordingly.
3100 * term/xterm.el (xterm-set-background-mode): New function.
3101 (terminal-init-xterm): Use it in case xterm supports background
3102 color queries. Recompute faces after getting the background
3103 color.
3104
3105 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
3106
3107 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3108 number comment back on its own line, for easier parsing.
3109
3110 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3111
3112 Make it work for non-file buffers (bug#5102).
3113 * doc-view.el (doc-view-current-cache-dir):
3114 Use doc-view-buffer-file-name rather than buffer-file-name.
3115 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3116
3117 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
3118
3119 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3120 author field is too short.
3121
3122 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
3123
3124 * vc-git.el (vc-git-print-log): Handle a limit argument.
3125 Display the short log in graph form and with labels.
3126 (vc-git-log-view-mode): Handle labels.
3127
3128 Make vc-revert change VC state from 'added to 'unregistered.
3129 * vc-git.el (vc-git-revert): Call git reset first.
3130
3131 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3132
3133 * net/newst-backend.el, net/newst-plainview.el:
3134 * net/newst-reader.el, net/newst-ticker.el:
3135 * net/newst-treeview.el, net/newsticker.el:
3136 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
3137
3138 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3139
3140 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3141
3142 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3143 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
3144 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3145 Update annotation regexp.
3146
3147 * simple.el (beginning-of-visual-line): Constrain to field
3148 boundaries (Bug#5106).
3149
3150 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3151
3152 * xml.el (xml-substitute-numeric-entities): Move
3153 newsticker--decode-numeric-entities in newst-backend.el to
3154 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3155 * net/newst-backend.el (newsticker--parse-generic-feed)
3156 (newsticker--parse-generic-items)
3157 (newsticker--decode-numeric-entities): Move
3158 newsticker--decode-numeric-entities in newst-backend.el to
3159 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3160
3161 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
3162
3163 * progmodes/js.el (js--js-not): Add null to the list of values.
3164
3165 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3166
3167 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3168
3169 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3170
3171 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3172 delimiter if it is at the end of the current line.
3173 (bibtex-generate-url-list): Fix docstring.
3174
3175 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3176
3177 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3178 minibuffer's content with itself.
3179 Fold the confirm-after-completion case into the `confirm' case.
3180 (completion-pcm-word-delimiters): Add : and / to the delimiters.
3181
3182 2009-12-06 Kevin Ryde <user42@zip.com.au>
3183
3184 * ffap.el (ffap-rfc-path): Make this a defcustom since
3185 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
3186
3187 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3188 manuals, similar to existing setup for help-mode. (Bug#3913.)
3189
3190 2009-12-05 Juri Linkov <juri@jurta.org>
3191
3192 Save and restore dired buffer's point positions too. (Bug#4880)
3193
3194 * dired.el (dired-save-positions): Return in the first element
3195 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3196 Doc fix.
3197 (dired-restore-positions): First restore buffer's position.
3198 While restoring window's positions, check if window still displays
3199 the original buffer.
3200
3201 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
3202
3203 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3204 if possible.
3205
3206 * cedet/semantic/ia.el (semantic-ia-complete-symbol):
3207 Make argument optional.
3208
3209 * shell.el (shell): Require ansi-color (Bug#5113).
3210
3211 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3212
3213 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3214
3215 2009-12-05 Alan Mackenzie <acm@muc.de>
3216
3217 * progmodes/cc-mode.el (c-before-hack-hook)
3218 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3219 `c-file-style' to work again. This reversion restores the current
3220 software to its state in Emacs 23.1. (Bug#4146)
3221
3222 2009-12-05 Kevin Ryde <user42@zip.com.au>
3223
3224 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
3225 comment-start-skip to comment-end-skip as comment (Bug#4781).
3226
3227 2009-12-05 Juri Linkov <juri@jurta.org>
3228
3229 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3230 for virtual nodes. (Bug#4147)
3231 (Info-find-node-2): Set `Info-current-node-virtual' to nil
3232 when moving from a virtual node.
3233 (Info-mode-menu): Add `Info-virtual-index' to the menu.
3234 (Info-mode): Add `Info-virtual-index' to the docstring.
3235
3236 2009-12-05 Eric Ludlam <zappo@gnu.org>
3237
3238 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
3239 Describe project macro symbols.
3240
3241 * cedet/semantic/complete.el (semantic-complete-do-completion):
3242 Don't call semantic-collector-current-exact-match.
3243
3244 * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
3245 ede-objects as targets.
3246
3247 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
3248 a target's object list even if compiler vars are already in the
3249 Makefile.
3250
3251 * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
3252 list of headers producing necessary macros.
3253
3254 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3255
3256 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3257 track of the buffer position of the end of a BibTeX entry as this
3258 position may change during reformatting.
3259 (bibtex-format-entry): Remove whitespace before processing
3260 numerical fields so that we recognize the latter properly.
3261 (bibtex-reformat): Do not use push which changes the global value
3262 of bibtex-entry-format.
3263 (bibtex-field-braces-alist, bibtex-field-strings-alist)
3264 (bibtex-field-re-init): Replace only space characters by regexp
3265 for whitespace.
3266 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3267 (bibtex-initialize): Also update bibtex-strings.
3268 (bibtex-kill-field): Preserve white space at end of entry.
3269 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3270 Update bibtex-reference-keys.
3271
3272 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
3273
3274 * minibuffer.el (completion-pcm--merge-try): Also consider placing
3275 point after a star, if that's the only place where modifications can
3276 make progress.
3277
3278 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
3279
3280 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3281 in docstrings.
3282
3283 2009-12-04 Juri Linkov <juri@jurta.org>
3284
3285 * proced.el (proced): Call `(proced-update t)' to update process
3286 information instead of only running proced-post-display-hook.
3287 (proced-send-signal): Add a leading space to the buffer name
3288 " *Marked Processes*" to make this buffer ephemeral.
3289
3290 2009-12-04 Juri Linkov <juri@jurta.org>
3291
3292 * dired.el (dired-auto-revert-buffer): New defcustom.
3293 (dired-internal-noselect): Use it.
3294
3295 2009-12-04 Juri Linkov <juri@jurta.org>
3296
3297 Change roles of modes and functions in image-mode.el (Bug#5062).
3298
3299 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3300 in `auto-mode-alist'.
3301 (image-mode-previous-major-mode): New variable.
3302 (image-minor-mode-map): Rename from `image-mode-text-map'.
3303 (image-mode): Move graceful error-handling code from
3304 `image-minor-mode' to here. On errors call `image-mode-as-text'.
3305 (image-minor-mode): Remove all image-handling code.
3306 Replace `image-mode-text-map' with `image-minor-mode-map'.
3307 Check for `image-type' in mode-line format string.
3308 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3309 (image-mode-as-text): New function with most code from
3310 `image-mode-maybe'.
3311 (image-toggle-display-text): Move code that removes image
3312 properties from `image-toggle-display' to here.
3313 (image-toggle-display-image): New function with code that adds
3314 image properties copied from `image-toggle-display'.
3315 (image-toggle-display): Remove most code with leaving only code
3316 that toggles between `image-mode-as-text' and `image-mode'.
3317
3318 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
3319
3320 * net/newst-treeview.el
3321 (newsticker--treeview-list-highlight-start): Restored call to
3322 save-excursion: Selected item was stuck.
3323 (newsticker--treeview-list-select): New.
3324 (newsticker--treeview-item-show-text)
3325 (newsticker--treeview-item-show)
3326 (newsticker--treeview-item-update): Use new
3327 newsticker-treeview-item-mode.
3328 (newsticker-treeview-update): Keep current item.
3329 (newsticker-treeview-next-new-or-immortal-item): Doc change.
3330 (newsticker--treeview-first-feed): Doc change.
3331 (newsticker-treeview-list-menu)
3332 (newsticker-treeview-item-menu): Added menu entries.
3333 (newsticker-treeview-item-mode): New.
3334
3335 * net/newst-backend.el (newsticker-customize): Delete other
3336 windows.
3337
3338 2009-12-04 Sam Steingold <sds@gnu.org>
3339
3340 * log-view.el (log-view-mode-map): "q" calls quit-window,
3341 like in all the other non-self-insert buffers.
3342
3343 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3344
3345 Minor cleanup.
3346 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3347 key decoding rather than do it manually via last-input-event +
3348 ascii-character.
3349 (term-exec): Use delete-and-extract-region.
3350 (term-handle-ansi-terminal-messages): Remove unused var `end'.
3351 (term-process-pager): Remove unused var `i'.
3352 (term-dynamic-simple-complete): Make obsolete.
3353 (serial-update-config-menu): Remove unused vars `y' and `str'.
3354 (term-update-mode-line): Remove unused var `temp'.
3355
3356 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3357
3358 Limit the number of log entries displayed by default.
3359 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3360 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3361 using a prefix argument.
3362
3363 2009-12-03 Glenn Morris <rgm@gnu.org>
3364
3365 * progmodes/idlwave.el (class): Restore still useful declaration.
3366
3367 2009-12-03 Alan Mackenzie <acm@muc.de>
3368
3369 Enhance `c-parse-state' to run efficiently in "brace deserts".
3370
3371 * progmodes/cc-mode.el (c-basic-common-init):
3372 Call c-state-cache-init.
3373 (c-neutralize-syntax-in-and-mark-CPP): Rename from
3374 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
3375 placing `category' properties value 'c-cpp-delimiter at its boundaries.
3376
3377 * progmodes/cc-langs.el (c-before-font-lock-function):
3378 c-extend-and-neutralize-syntax-in-CPP has been renamed
3379 c-neutralize-syntax-in-and-mark-CPP.
3380
3381 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3382 with `category' properties now, not `syntax-table' ones.
3383
3384 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3385 enhanced (but slower) version of c-end-of-macro that won't land
3386 inside a literal or on another awkward character.
3387 (c-state-cache-too-far, c-state-cache-start)
3388 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3389 (c-state-nonlit-pos-cache-limit, c-state-point-min)
3390 (c-state-point-min-lit-type, c-state-point-min-lit-start)
3391 (c-state-min-scan-pos, c-state-brace-pair-desert)
3392 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3393 buffer local variables.
3394 (c-state-literal-at, c-state-lit-beg)
3395 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3396 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3397 (c-state-cache-top-paren, c-state-cache-after-top-paren)
3398 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3399 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3400 (c-renarrow-state-cache)
3401 (c-append-lower-brace-pair-to-state-cache)
3402 (c-state-push-any-brace-pair, c-append-to-state-cache)
3403 (c-remove-stale-state-cache)
3404 (c-remove-stale-state-cache-backwards, c-state-cache-init)
3405 (c-invalidate-state-cache-1, c-parse-state-1)
3406 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3407 (c-parse-state): Enhance and refactor.
3408 (c-debug-parse-state): Amend to deal with all the new variables.
3409
3410 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3411 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3412 modify to use category text properties rather than syntax-table ones.
3413 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3414 to switch off/on the syntactic paren property of C++ template
3415 delimiters using the category property.
3416 (c-with-<->-as-parens-suppressed): Macro to invoke code with
3417 template delims suppressed.
3418 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3419 New constant/macros which apply category properties to the start
3420 and end of preprocessor constructs.
3421 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3422 "comment out" the syntactic value of characters in preprocessor
3423 constructs.
3424 (c-with-cpps-commented-out)
3425 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3426 with characters in all or all but one preprocessor constructs
3427 "commented out".
3428
3429 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3430
3431 * proced.el (proced-filter-alist): Use regexp-quote.
3432
3433 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
3434
3435 Cleanup.
3436 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3437 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
3438 arguments. Expand `default-directory'.
3439
3440 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3441 the benefit of returning an expanded localname.
3442 (tramp-tramp-file-p): Handle the case NAME is not a string.
3443
3444 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3445
3446 Add support for bzr shelve/unshelve.
3447 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3448 (vc-bzr-extra-menu-map): New variables.
3449 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3450 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3451 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3452 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3453 (vc-bzr-dir-extra-headers): Display shelves.
3454
3455 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3456
3457 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3458
3459 * textmodes/bibtex.el (bibtex-complete-internal):
3460 Use completion-in-region.
3461 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3462
3463 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3464
3465 Support applying stashes. Improve UI.
3466 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3467 (vc-git-stash-apply, vc-git-stash-pop)
3468 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3469 (vc-git-stash-menu): New functions.
3470 (vc-git-stash-menu-map): New variable.
3471 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3472
3473 2009-12-03 Glenn Morris <rgm@gnu.org>
3474
3475 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3476 (vc-print-log-internal): Fix previous change.
3477 (vc-revert): Correct pluralization.
3478
3479 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3480
3481 * progmodes/make-mode.el (makefile-special-targets-list): No need for
3482 it to be an alist any more.
3483 (makefile-complete): Use completion-in-region.
3484
3485 * progmodes/octave-mod.el (octave-complete-symbol):
3486 Use completion-in-region.
3487
3488 Misc cleanup.
3489 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3490 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3491 (idlwave-complete-class): Don't quote lambda.
3492 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3493 (idlwave-mode-map): Move initialization into declaration.
3494 (idlwave-action-and-binding): Use backquotes.
3495 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3496 Simplify.
3497 (idlwave-is-pointer-dereference): Remove unused var `pos'.
3498 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3499 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3500 `parts', and `all-parts'.
3501 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3502 (idlwave-convert-xml-system-routine-info): Remove unused string
3503 `version-string'.
3504 (idlwave-display-user-catalog-widget): Use dolist.
3505 (idlwave-scanning-lib): Declare dynamically-scoped var.
3506 (idlwave-scan-library-catalogs): Remove unused var `flags'.
3507 (completion-highlight-first-word-only): Declare to silence bytecomp.
3508 (idlwave-popup-select): Tighten scope of `resp'.
3509 (idlwave-find-struct-tag): Remove unused var `beg'.
3510 (idlwave-after-load-rinfo-hook): Declare.
3511 (idlwave-sintern-class-info): Remove unused var `taglist'.
3512 (idlwave-find-class-definition): Remove unused var `list'.
3513 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
3514 (idlwave-what-module-find-class): Remove unused var `classes'.
3515
3516 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
3517
3518 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
3519
3520 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3521
3522 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
3523 buffers visited. Remove redundant current-buffer-saving.
3524
3525 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3526
3527 Use completion-in-buffer and remove uses of dynamic scoping.
3528 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
3529 (pascal-buffer-to-use, pascal-flag): Don't declare.
3530 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
3531 (pascal-get-completion-decl, pascal-keyword-completion):
3532 Add `pascal-str' argument, save-excursion,
3533 return the found completions, and don't filter with pascal-pred.
3534 (pascal-completion-cache): New var.
3535 (pascal-completion): Don't switch buffer any more (it was never
3536 necessary). Don't save-excursion any more (it's done by the called
3537 subroutines). Use a cache to avoid redundant computations.
3538 Use complete-with-action rather than pascal-completion-response and
3539 let it apply the predicate as well.
3540 (pascal-complete-word): Use completion-in-buffer when
3541 pascal-toggle-completions is nil.
3542 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
3543 not used any more.
3544 (pascal-comp-defun): Don't change buffer any more.
3545 Use complete-with-action rather than pascal-completion-response and
3546 let it apply the predicate as well.
3547 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
3548 when neded.
3549
3550 2009-12-02 Kenichi Handa <handa@m17n.org>
3551
3552 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
3553 shape for all Indic scripts.
3554
3555 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3556
3557 Use completion-in-buffer.
3558 * wid-edit.el (widget-field-text-end): New function.
3559 (widget-field-value-get): Use it.
3560 (widget-string-complete, widget-file-complete)
3561 (widget-color-complete): Use it and completion-in-region.
3562 (widget-complete): Don't narrow the buffer.
3563
3564 2009-12-02 Glenn Morris <rgm@gnu.org>
3565
3566 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
3567 (rmail-select-summary): Use rmail-pop-to-buffer.
3568 * mail/rmailsum.el: Replace all pop-to-buffer calls with
3569 rmail-pop-to-buffer, to prevent horizontal splits.
3570
3571 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
3572 save-excursion with save-current-buffer.
3573 Widen before searching. (Bug#5093)
3574 (diary-list-sexp-entries): Remove superfluous save-excursion.
3575
3576 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
3577
3578 * woman.el (woman-make-bufname): Handle man-pages with "." in the
3579 name. (Bug#5038)
3580
3581 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
3582
3583 * ido.el (ido-file-internal): Handle filenames at point that do
3584 not have a directory part. (Bug#5049)
3585
3586 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
3587
3588 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
3589 (mpc-songs-jump-to, mpc-resume): Doc fixes.
3590
3591 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
3592
3593 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
3594 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
3595 any more.
3596
3597 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
3598
3599 * comint.el (comint-insert-input): Ignore clicks to the right of
3600 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
3601
3602 * vc.el (vc-print-log-internal): Don't wait for the process to
3603 terminate before setting up the major mode.
3604
3605 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
3606 in case.
3607
3608 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
3609 the last element.
3610
3611 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
3612
3613 2009-12-01 Glenn Morris <rgm@gnu.org>
3614
3615 * window.el (window--display-buffer-2): Fix previous changes.
3616
3617 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
3618
3619 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
3620
3621 2009-12-01 Glenn Morris <rgm@gnu.org>
3622
3623 * Makefile.in (ELCFILES): Add mpc.elc.
3624
3625 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
3626
3627 * mpc.el: New file.
3628
3629 2009-12-01 Glenn Morris <rgm@gnu.org>
3630
3631 * window.el (window-to-use): Define for compiler.
3632
3633 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
3634 consistent with others (no final period).
3635
3636 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
3637 (rmail-mime-show): Downcase the encoding. (Bug#5070)
3638
3639 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
3640
3641 Make vc-print-log buttons work.
3642 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
3643
3644 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
3645
3646 * savehist.el (savehist-autosave-interval): Allow setting to nil
3647 through customize. (Bug#5056)
3648
3649 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
3650
3651 Fix references to jit-lock properties.
3652 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3653 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
3654 (perl-font-lock-special-syntactic-constructs):
3655 Quote jit-lock-defer-multiline property.
3656
3657 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
3658
3659 * vc-git.el (vc-git-registered): Call vc-git-root only once.
3660
3661 2009-11-30 Juri Linkov <juri@jurta.org>
3662
3663 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
3664 value `buffer' of `multi-isearch-next-buffer-current-function'.
3665 Use `(current-buffer)' when `buffer' is nil.
3666 (multi-isearch-next-buffer-from-list): Don't fallback to
3667 `(current-buffer)' when `buffer' is nil. (Bug#4947)
3668
3669 2009-11-30 Juri Linkov <juri@jurta.org>
3670
3671 * misearch.el (multi-isearch-read-buffers): Move canonicalization
3672 of buffers with `get-buffer' to `multi-isearch-buffers'.
3673 (multi-isearch-buffers, multi-isearch-buffers-regexp):
3674 Canonicalize BUFFERS with `get-buffer'. Doc fix.
3675 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
3676 FILES with `expand-file-name' converting relative file names
3677 to absolute. Doc fix. (Bug#4727)
3678
3679 2009-11-30 Juri Linkov <juri@jurta.org>
3680
3681 * misearch.el (multi-isearch-read-buffers)
3682 (multi-isearch-read-matching-buffers): New functions.
3683 (multi-isearch-buffers, multi-isearch-buffers-regexp):
3684 Use them in the `interactive' spec. Doc fix.
3685 (multi-isearch-read-files, multi-isearch-read-matching-files):
3686 New functions.
3687 (multi-isearch-files, multi-isearch-files-regexp):
3688 Use them in the `interactive' spec. Doc fix. (Bug#4725)
3689
3690 2009-11-30 Juri Linkov <juri@jurta.org>
3691
3692 * doc-view.el (doc-view-continuous):
3693 Rename from `doc-view-continuous-mode'.
3694 (doc-view-menu): Move "Toggle display" to the top.
3695 Add submenu "Continuous" with radio buttons "Off"/"On"
3696 and "Save as Default".
3697 (doc-view-scroll-up-or-next-page)
3698 (doc-view-scroll-down-or-previous-page)
3699 (doc-view-next-line-or-next-page)
3700 (doc-view-previous-line-or-previous-page): Rename
3701 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
3702
3703 2009-11-30 Juri Linkov <juri@jurta.org>
3704
3705 * comint.el (comint-mode-map): Rebind `M-r' from
3706 `comint-previous-matching-input' to
3707 `comint-history-isearch-backward-regexp'.
3708 Unbind `M-s' to allow global key binding `M-s'.
3709 Add menu items for `comint-history-isearch-backward' and
3710 `comint-history-isearch-backward-regexp'. (Bug#3746)
3711
3712 2009-11-30 Juri Linkov <juri@jurta.org>
3713
3714 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
3715 For def=recenter, replace `recenter' with `recenter-top-bottom'
3716 that is called with `this-command' and `last-command' let-bound
3717 to `recenter-top-bottom'. When the last `def' was not `recenter',
3718 set `recenter-last-op' to nil. (Bug#4981)
3719
3720 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
3721
3722 Minor cleanup and simplification.
3723 * filecache.el (file-cache-add-directory)
3724 (file-cache-add-directory-recursively)
3725 (file-cache-add-from-file-cache-buffer)
3726 (file-cache-delete-file-regexp, file-cache-delete-directory)
3727 (file-cache-files-matching-internal, file-cache-display): Use dolist.
3728 (file-cache-temp-minibuffer-message): Delete function.
3729 (file-cache-minibuffer-complete): Use minibuffer-message instead.
3730
3731 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
3732 Don't signal an error when bumping into EOB in tr, s, or y.
3733
3734 2009-11-29 Juri Linkov <juri@jurta.org>
3735
3736 * startup.el (fancy-about-text): Fix wording of Guided Tour.
3737 (Bug#4960)
3738
3739 * descr-text.el (describe-char-unidata-list): Use lowercase name
3740 for "Unicode name" like in other tags.
3741
3742 2009-11-29 Juri Linkov <juri@jurta.org>
3743
3744 * ediff-util.el (ediff-minibuffer-with-setup-hook):
3745 New compatibility macro.
3746 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
3747
3748 2009-11-29 Juri Linkov <juri@jurta.org>
3749
3750 Add defcustom to define the cycling order of `recenter-top-bottom'.
3751 (Bug#4981)
3752
3753 * window.el (recenter-last-op): Doc fix.
3754 (recenter-positions): New defcustom.
3755 (recenter-top-bottom): Rewrite to use `recenter-positions'.
3756 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
3757
3758 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
3759
3760 Improve integration of Tramp and ange-ftp in eshell.
3761
3762 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
3763 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
3764 (eshell/sudo): Flatten args. Let-bind `default-directory'.
3765
3766 * eshell/esh-util.el (top): Require also Tramp when compiling.
3767 (eshell-directory-files-and-attributes): Check for FTP remote
3768 connection.
3769 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
3770 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
3771 (eshell-file-attributes): Handle ".". Return `entry'.
3772
3773 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
3774 (ange-ftp-directory-files-and-attributes)
3775 (ange-ftp-real-directory-files-and-attributes): New defuns.
3776
3777 * net/tramp.el (tramp-maybe-open-connection): Open the remote
3778 shell with "exec" when possible. This prevents trailing prompts
3779 in `start-file-process'.
3780
3781 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
3782
3783 Try and remove assumptions about point-min==1.
3784 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
3785 (rng-compute-mode-line-string): Show the validation percentage in
3786 terms of the narrowed text, not the widened text.
3787 (rng-do-some-validation): Don't catch internal errors when debugging.
3788 (rng-first-error): Simplify.
3789 (rng-after-change-function): Remove work around. AFAIK the bug has
3790 been fixed a while ago.
3791
3792 * image-mode.el (image-minor-mode): Exit more gracefully when the image
3793 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
3794
3795 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
3796
3797 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
3798 `cd' doesn't always do it for us (bug#5067).
3799
3800 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
3801 on 2009-10-25 as part of some other change (bug#5067).
3802
3803 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3804
3805 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
3806 `suspicious'.
3807 (byte-compile-warnings): Use byte-compile-warning-types.
3808 (byte-compile-save-excursion): Warn about use of set-buffer right
3809 after save-excursion.
3810
3811 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
3812 the excursion as well.
3813
3814 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
3815
3816 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
3817 providing a Tramp related implementation of "su" and "sudo".
3818 (eshell-unix-initialize): Add "su" and "sudo".
3819
3820 2009-11-27 Daiki Ueno <ueno@unixuser.org>
3821
3822 * net/socks.el (socks-send-command): Convert binary request to
3823 unibyte before sending. This fixes mishandling of some port
3824 numbers such as 129.
3825
3826 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3827
3828 * help.el (describe-bindings-internal): Remove `interactive'.
3829
3830 * man.el (Man-completion-table): Trim a terminating "(".
3831 Remove the space between name page a section.
3832 Add the command's description on the `help-echo' property.
3833 Remove `process-connection-type' binding since it's unused by
3834 call-process.
3835 Provide completion for the "<section> <name>" format as well.
3836 (Man-default-man-entry): Remove spurious var shadowing the argument.
3837
3838 2009-11-26 Kevin Ryde <user42@zip.com.au>
3839
3840 * log-view.el: Add "Keywords: tools", since its other keywords
3841 aren't in finder-known-keywords, and following vc.el.
3842
3843 * sha1.el (sha1-string-external): default-directory "/" in case
3844 otherwise non-existent. process-connection-type pipe for touch of
3845 efficiency recommended by elisp manual. (An aside in Bug#3911.)
3846
3847 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3848
3849 Misc coding convention cleanups.
3850 * htmlfontify.el (hfy-init-kludge-hook): Rename from
3851 hfy-init-kludge-hooks.
3852 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
3853 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
3854 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
3855 and push.
3856 (hfy-slant, hfy-weight): Use tables rather than code.
3857 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
3858 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
3859 (hfy-face-attr-for-class): Initialize `face-spec' directly.
3860 (hfy-face-to-css): Remove `nconc' with single arg.
3861 (hfy-p-to-face-lennart): Use `or'.
3862 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
3863 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
3864 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
3865 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
3866 (hfy-force-fontification): Use run-hooks.
3867
3868 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
3869
3870 Various minor fixes.
3871 * htmlfontify.el (hfy-default-header): Add toggle_invis since
3872 Javascript belongs in the header, not the body.
3873 (hfy-javascript): Remove.
3874 (hfy-fontify-buffer): Don't insert it any more.
3875 (hfy-face-at): Handle (face0 face1 face2) style face properties.
3876 Fix bug in invis handling when there were no invis props in a chunk.
3877
3878 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3879
3880 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
3881
3882 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
3883
3884 * finder.el (finder-mode-map): Add a menu.
3885
3886 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
3887
3888 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
3889 "unsigned" structs.
3890
3891 (verilog-leap-to-head, verilog-backward-token): Handle "disable
3892 fork" statement better.
3893
3894 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
3895
3896 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
3897 (verilog-delete-auto, verilog-delete-empty-auto-pair)
3898 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
3899 Reported by Clay Douglass.
3900
3901 (verilog-auto-inst, verilog-auto-star-safe)
3902 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
3903 Fix removing "// Interfaces" when saving .* expansions. Reported by
3904 Pierre-David Pfister.
3905
3906 2009-11-26 Glenn Morris <rgm@gnu.org>
3907
3908 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
3909 the scope.
3910
3911 2009-11-25 Johan Bockgård <bojohan@gnu.org>
3912
3913 * vc-annotate.el (vc-annotate-revision-previous-to-line):
3914 Really use previous revision.
3915
3916 2009-11-25 Kevin Ryde <user42@zip.com.au>
3917
3918 * man.el (Man-completion-table): default-directory "/" in case
3919 doesn't otherwise exist. process-environment COLUMNS=999 so as
3920 not to truncate long names. process-connection-type pipe to avoid
3921 any chance of hitting the pseudo-tty TIOCGWINSZ.
3922 (man): completion-ignore-case t for friendliness and since man
3923 itself is case-insensitive on the command line.
3924 Further to Bug#3717.
3925
3926 * arc-mode.el: Add "Keywords: files", so the details in its
3927 commentary can be reached from finder-by-keyword.
3928 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
3929 editing mode, but it's comms related and sgml-mode.el has "comm"
3930 on that basis too.
3931 * textmodes/bibtex-style.el: Add "Keywords: tex".
3932 * international/isearch-x.el, international/ja-dic-cnv.el:
3933 * international/ja-dic-utl.el, international/kkc.el:
3934 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
3935
3936 2009-11-25 Juri Linkov <juri@jurta.org>
3937
3938 * man.el (Man-completion-table): Modify regexp to include
3939 section names to completion strings. (Bug#3717)
3940
3941 2009-11-25 Juri Linkov <juri@jurta.org>
3942
3943 Search recursively in gzipped files. (Bug#4982)
3944
3945 * progmodes/grep.el (grep-highlight-matches): Add new options
3946 `always' and `auto'. Doc fix.
3947 (grep-process-setup): Check `grep-highlight-matches' for
3948 `auto-detect' to determine the need to compute grep defaults.
3949 Move Windows/DOS specific --colors settings handling
3950 to `grep-compute-defaults'. Check `grep-highlight-matches'
3951 to get the value of "--color=".
3952 (grep-compute-defaults): Compute `grep-highlight-matches' when it
3953 has the value `auto-detect'. Move Windows/DOS specific settings
3954 from `grep-process-setup'.
3955 (zrgrep): New command with alias `rzgrep'.
3956
3957 2009-11-25 Juri Linkov <juri@jurta.org>
3958
3959 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
3960 to nil instead of switching off view-mode. (Bug#4896)
3961
3962 2009-11-25 Juri Linkov <juri@jurta.org>
3963
3964 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
3965
3966 * mwheel.el (mwheel-scroll-up-function)
3967 (mwheel-scroll-down-function): New defvars.
3968 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
3969 `scroll-up', and `mwheel-scroll-down-function' instead of
3970 `scroll-down'.
3971
3972 * doc-view.el (doc-view-scroll-up-or-next-page)
3973 (doc-view-scroll-down-or-previous-page): Add optional ARG.
3974 Use this ARG in the call to image-scroll-up/image-scroll-down.
3975 Change `interactive' spec to "P". Goto next/previous page only
3976 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
3977 SPC/DEL case). Doc fix.
3978 (doc-view-next-line-or-next-page)
3979 (doc-view-previous-line-or-previous-page): Rename arg to ARG
3980 for consistency.
3981 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
3982 `doc-view-scroll-up-or-next-page', and buffer-local
3983 `mwheel-scroll-down-function' to
3984 `doc-view-scroll-down-or-previous-page'.
3985
3986 2009-11-25 Juri Linkov <juri@jurta.org>
3987
3988 Provide additional default values (directories at other Dired
3989 windows) via M-n in the minibuffer of some Dired commands.
3990
3991 * dired-aux.el (dired-diff, dired-compare-directories)
3992 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
3993 `minibuffer-default' in `minibuffer-with-setup-hook'.
3994 (dired-dwim-target-directory): Find a window that displays Dired
3995 buffer instead of failing when the next window is not Dired.
3996 Use `get-window-with-predicate' to find for the next Dired window.
3997 (dired-dwim-target-defaults): New function.
3998
3999 * ediff-util.el (ediff-read-file-name):
4000 Use `dired-dwim-target-defaults' to set `minibuffer-default'
4001 in `minibuffer-with-setup-hook'.
4002
4003 2009-11-25 Juri Linkov <juri@jurta.org>
4004
4005 Provide additional default values (file name at point or at the
4006 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
4007
4008 * minibuffer.el (read-file-name-defaults): New function.
4009 (read-file-name): Reset `minibuffer-default' to nil when
4010 it duplicates initial input `insdef'.
4011 Bind `minibuffer-default-add-function' to lambda that
4012 calls `read-file-name-defaults' in `minibuffer-selected-window'.
4013 (minibuffer-insert-file-name-at-point): New command.
4014
4015 * files.el (file-name-at-point-functions): New defcustom.
4016 (find-file-default): Remove defvar.
4017 (find-file-read-args): Don't use `find-file-default'.
4018 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4019 to `read-file-name'.
4020 (find-file-literally): Use `read-file-name' with
4021 `confirm-nonexistent-file-or-buffer'.
4022
4023 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
4024
4025 * dired.el (dired-read-dir-and-switches):
4026 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4027 to `read-file-name'.
4028 (dired-file-name-at-point): New function.
4029 (dired-mode): Add hook `dired-file-name-at-point' to
4030 `file-name-at-point-functions'.
4031
4032 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4033
4034 Really make the *Completions* window soft-dedicated (bug#5030).
4035 * window.el (window--display-buffer-2): Add `dedicated' argument.
4036 (display-buffer): Pass it when needed so the dedicated flag is set
4037 after calling set-window-buffer, which would otherwise reset it.
4038
4039 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4040
4041 * progmodes/meta-mode.el (meta-complete-symbol):
4042 * progmodes/etags.el (complete-tag):
4043 * mail/mailabbrev.el (mail-abbrev-complete-alias):
4044 Use completion-in-region.
4045
4046 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
4047 (dabbrev-completion): Use completion-in-region.
4048 (dabbrev--abbrev-at-point): Simplify regexp.
4049
4050 * abbrev.el (abbrev--before-point): Use word-motion functions
4051 if :regexp is not specified (bug#5031).
4052
4053 * subr.el (string-prefix-p): New function.
4054
4055 * man.el (Man-completion-cache): New var.
4056 (Man-completion-table): Use it.
4057
4058 * vc.el (vc-print-log-internal): Make `limit' optional for better
4059 compatibility (e.g. with vc-annotate.el).
4060
4061 2009-11-24 Kevin Ryde <user42@zip.com.au>
4062
4063 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4064 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
4065
4066 * emacs-lisp/elint.el (elint-add-required-env): Better error message
4067 when .el source file not found or other error.
4068
4069 2009-11-24 Markus Triska <markus.triska@gmx.at>
4070
4071 * linum.el (linum-update-window): Ignore intangible (bug#4996).
4072
4073 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4074
4075 Handle the [back] button properly (bug#4979).
4076 * descr-text.el (describe-text-properties): Add a `buffer' argument.
4077 Use help-setup-xref, help-buffer, and with-help-window.
4078 (describe-char): Add `buffer' argument.
4079 Pass proper command to help-setup-xref. Don't meddle with
4080 help-xref-stack-item directly.
4081 (describe-text-category): Use with-help-window and help-buffer.
4082
4083 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4084 for the displayed buffer (bug#4887).
4085
4086 * man.el (Man-completion-table): New function.
4087 (man): Use it.
4088
4089 2009-11-24 David Reitter <david.reitter@gmail.com>
4090
4091 * vc-git.el (vc-git-registered): Use checkout directory (where
4092 .git is) rather than the file's directory and a relative path spec
4093 to work around a bug in git.
4094
4095 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
4096
4097 Improve handling of processes on remote hosts.
4098
4099 * eshell/esh-util.el (eshell-path-env): New defvar.
4100 (eshell-parse-colon-path): New defun.
4101 (eshell-file-attributes): Use `eshell-parse-colon-path'.
4102
4103 * eshell/esh-ext.el (eshell-search-path):
4104 Use `eshell-parse-colon-path'.
4105 (eshell-remote-command): Remove argument HANDLER.
4106 (eshell-external-command): Check for FTP remote connection.
4107
4108 * eshell/esh-proc.el (eshell-gather-process-output):
4109 Use `file-truename', in order to start also symlinked files.
4110 Apply `start-file-process' instead of `start-process'.
4111 Shorten `command' to the local file name part.
4112
4113 * eshell/em-cmpl.el (eshell-complete-commands-list):
4114 Use `eshell-parse-colon-path'.
4115
4116 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4117
4118 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
4119 to `eshell-directory-change-hook'.
4120
4121 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
4122
4123 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4124 because it could be enabled automatically if view-read-only is non-nil.
4125
4126 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
4127
4128 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4129 made on 2009-11-22.
4130
4131 2009-11-24 Glenn Morris <rgm@gnu.org>
4132
4133 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4134 deleted variable bookmark-bmenu-bookmark-column.
4135
4136 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
4137 Move after definition of global-semantic-idle-tag-highlight-mode.
4138
4139 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4140
4141 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4142
4143 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
4144
4145 * net/browse-url.el (browse-url-filename-alist): On Windows, add
4146 two slashes to the "file:" prefix.
4147 (browse-url-file-url): De-munge Cygwin filenames before passing
4148 them to Windows browser.
4149 (browse-url-default-windows-browser): Use call-process.
4150
4151 2009-11-23 Juri Linkov <juri@jurta.org>
4152
4153 Implement DocView Continuous mode. (Bug#4896)
4154 * doc-view.el (doc-view-continuous-mode): New defcustom.
4155 (doc-view-mode-map): Bind C-n/<down> to
4156 `doc-view-next-line-or-next-page', C-p/<up> to
4157 `doc-view-previous-line-or-previous-page'.
4158 (doc-view-next-line-or-next-page)
4159 (doc-view-previous-line-or-previous-page): New commands.
4160
4161 2009-11-23 Juri Linkov <juri@jurta.org>
4162
4163 Implement Isearch in comint input history. (Bug#3746)
4164 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4165 `isearch-mode-hook'.
4166 (comint-history-isearch): New defcustom.
4167 (comint-history-isearch-backward)
4168 (comint-history-isearch-backward-regexp): New commands.
4169 (comint-history-isearch-message-overlay): New buffer-local variable.
4170 (comint-history-isearch-setup, comint-history-isearch-end)
4171 (comint-goto-input, comint-history-isearch-search)
4172 (comint-history-isearch-message, comint-history-isearch-wrap)
4173 (comint-history-isearch-push-state)
4174 (comint-history-isearch-pop-state): New functions.
4175
4176 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
4177
4178 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4179 return.
4180 (tramp-handle-make-symbolic-link)
4181 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4182 Quote file names.
4183 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4184 (tramp-handle-process-file): Use it.
4185
4186 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4187
4188 * window.el (move-to-window-line-last-op): Remove.
4189 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4190
4191 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4192
4193 Make M-r mirror the new cycling behavior of C-l.
4194 * window.el (move-to-window-line-last-op): New var.
4195 (move-to-window-line-top-bottom): New command.
4196 (global-map): Bind M-r move-to-window-line-top-bottom.
4197
4198 2009-11-23 Sven Joachim <svenjoac@gmx.de>
4199
4200 * dired-x.el (dired-guess-shell-alist-default):
4201 Support xz format. (Bug#4953)
4202
4203 2009-11-22 Chong Yidong <cyd@stupidchicken.com>
4204
4205 * cedet/srecode/map.el (srecode-get-maps):
4206 * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
4207 * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
4208 * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
4209 (semantic-toggle-decoration-style):
4210 * cedet/semantic/decorate/include.el
4211 (semantic-decoration-include-describe)
4212 (semantic-decoration-unknown-include-describe)
4213 (semantic-decoration-unparsed-include-describe)
4214 (semantic-decoration-all-include-summary):
4215 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
4216 * cedet/semantic/analyze/complete.el
4217 (semantic-analyze-possible-completions):
4218 * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
4219 (semantic-show-unmatched-syntax-mode)
4220 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
4221 (semantic-highlight-func-mode):
4222 * cedet/semantic/util.el (semantic-describe-buffer):
4223 * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
4224 (semantic-symref-find-tags-by-name)
4225 (semantic-symref-find-tags-by-regexp)
4226 (semantic-symref-find-tags-by-completion)
4227 (semantic-symref-find-file-references-by-name)
4228 (semantic-symref-find-text):
4229 * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
4230 (senator-yank-tag):
4231 * cedet/semantic/scope.el (semantic-calculate-scope):
4232 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
4233 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
4234 (define-semantic-idle-service):
4235 * cedet/semantic/complete.el (semantic-complete-analyze-inline)
4236 (semantic-complete-analyze-inline-idle):
4237 * cedet/semantic/analyze.el (semantic-analyze-current-context):
4238 * cedet/mode-local.el (describe-mode-local-bindings)
4239 (describe-mode-local-bindings-in-mode):
4240 * cedet/ede/make.el (ede-make-check-version):
4241 * cedet/ede/locate.el (ede-enable-locate-on-project):
4242 * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
4243 (cedet-idutils-version-check):
4244 * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
4245 (cedet-gnu-global-version-check):
4246 * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
4247 (cedet-cscope-version-check): Use called-interactively-p instead
4248 of interactive-p.
4249
4250 * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
4251 Use semantic-format-tag-prototype.
4252
4253 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
4254
4255 * emulation/viper-cmd.el: Use viper-last-command-char instead of
4256 last-command-char/last-command-event.
4257 (viper-prefix-arg-value): Do correct conversion of event-char for
4258 XEmacs.
4259
4260 * emulation/viper-util.el, emulation/viper.el:
4261 Use viper-last-command-char instead of
4262 last-command-char/last-command-event.
4263
4264 * ediff-init.el, ediff-mult.el, ediff-util.el:
4265 Replace last-command-char and last-command-event
4266 with (ediff-last-command-char) everywhere.
4267
4268 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4269 created in fundamental mode.
4270
4271 * ediff.el (ediff-version): Revert the change of interactive-p to
4272 called-interactively-p.
4273
4274 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
4275
4276 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4277 generation from word-movement command names.
4278
4279 2009-11-21 Chong Yidong <cyd@stupidchicken.com>
4280
4281 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
4282 (semantic-complete-jump-local, semantic-complete-jump):
4283 Improve prompt string.
4284
4285 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
4286
4287 * cus-start.el (all): Add native condition for font-use-system-font.
4288
4289 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
4290
4291 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4292 Correct the patch from 2009-11-18. (Bug#3910)
4293
4294 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
4295
4296 * progmodes/subword.el: Rename from lisp/subword.el.
4297
4298 * subword.el: Rename to progmodes/subword.el.
4299
4300 * Makefile.in (ELCFILES): Adapt to subword.el move.
4301
4302 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4303 Stefan Monnier <monnier@iro.umontreal.ca>
4304
4305 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4306 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4307 (bookmark-bmenu-show-filenames): Use push.
4308 (bookmark-bmenu-hide-filenames): Use local var instead of
4309 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
4310 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4311 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4312 filenames now that the bookmark names are always available.
4313
4314 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4315
4316 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4317 (bookmark-search-pattern): Move and leave unbound.
4318 (bookmark-bmenu-mode-map): Change binding.
4319 (bookmark-read-search-input): Simplify.
4320 Don't use text-char-description. Don't error on non-char events.
4321 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4322 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4323 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4324 Use a local var for the timer.
4325 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4326 (i.e. bookmark-bmenu-search).
4327
4328 2009-11-21 Glenn Morris <rgm@gnu.org>
4329
4330 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
4331
4332 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
4333
4334 * net/browse-url.el (browse-url-default-windows-browser):
4335 Use cygstart for cygwin.
4336
4337 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
4338
4339 * bookmark.el: Formatting and doc fixes only:
4340 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4341 (bookmark-bmenu-search): Wrap to fit within 80 columns.
4342 Minor grammar and punctuation fixes in doc string.
4343 (bookmark-read-search-input): Adjust to fit within 80 columns.
4344
4345 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4346
4347 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4348 (c-backward-into-nomenclature): Adapt to subword renaming.
4349
4350 * subword.el (subword-forward, subword-backward, subword-mark)
4351 (subword-kill, subword-backward-kill, subword-transpose)
4352 (subword-downcase, subword-upcase, subword-capitalize)
4353 (subword-forward-internal, subword-backward-internal):
4354 Rename from forward-subword, backward-subword, mark-subword,
4355 kill-subword, backward-kill-subword, transpose-subwords,
4356 downcase-subword, upcase-subword, capitalize-subword,
4357 forward-subword-internal, backward-subword-internal.
4358
4359 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4360
4361 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4362 New options.
4363 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4364 New vars.
4365 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4366 (bookmark-bmenu-filter-alist-by-regexp)
4367 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4368 (bookmark-bmenu-search): New command.
4369 (bookmark-bmenu-mode-map): Bind it.
4370
4371 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
4372
4373 * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
4374
4375 * cedet/semantic/idle.el (define-semantic-idle-service)
4376 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
4377
4378 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4379
4380 * progmodes/cc-cmds.el: declare-functioned forward-subword and
4381 backward-subword to quit the byte-compiler.
4382
4383 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4384
4385 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4386
4387 * progmodes/cc-cmds.el (c-update-modeline)
4388 (c-forward-into-nomenclature, c-backward-into-nomenclature):
4389 Refer to subword.el functions instead of cc-subword.el.
4390
4391 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4392 subword.el functions instead of cc-subword.el.
4393
4394 * progmodes/cc-subword.el: Rename to subword.el.
4395 * subword.el: Rename from progmodes/cc-subword.el.
4396 (subword-mode-map): Rename from c-subword-mode-map.
4397 (subword-mode): Rename from c-subword-mode.
4398 (global-subword-mode): New global minor mode.
4399 (forward-subword): Rename from c-forward-subword.
4400 (backward-subword): Rename from c-backward-subword.
4401 (mark-subword): Rename from c-mark-subword.
4402 (kill-subword): Rename from c-kill-subword.
4403 (backward-kill-subword): Rename from c-backward-kill-subword.
4404 (transpose-subwords): Rename from c-tranpose-subword.
4405 (downcase-subword): Rename from c-downcase-subword.
4406 (capitalize-subword): Rename from c-capitalize-subword.
4407 (forward-subword-internal): Rename from c-forward-subword-internal.
4408 (backward-subword-internal): Rename from c-backward-subword-internal.
4409
4410 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
4411
4412 * vc.el (vc-deduce-fileset): Allow non-state changing operations
4413 from a dired buffer.
4414 (vc-dired-deduce-fileset): New function.
4415 (vc-root-diff, vc-print-root-log): Use it.
4416
4417 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4418 nil LIMIT argument to vc-print-log-internal.
4419
4420 2009-11-20 Glenn Morris <rgm@gnu.org>
4421
4422 * Makefile.in (ELCFILES): Regenerate.
4423
4424 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
4425
4426 * cedet/cedet.el (cedet-menu-map): Re-order menu items.
4427
4428 * cedet/semantic.el: Enable idle-mode menu items only if
4429 global-semantic-idle-scheduler-mode is enabled.
4430 (semantic-default-submodes): Doc fix.
4431
4432 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
4433 When turning off, disable other idle modes.
4434
4435 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
4436
4437 * calc/calc.el (calc-set-mode-line):
4438 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4439 (math-format-number): Rename `math-format-complement-signed' to
4440 `math-format-twos-complement'.
4441
4442 * calc/calc-bin.el (math-format-twos-complement): Rename from
4443 math-format-complement-signed.
4444 (calc-radix): Rename `calc-complement-signed-mode' to
4445 `calc-twos-complement-mode'.
4446 (calc-octal-radix, calc-hex-radix): Add an argument for
4447 two's complement.
4448
4449 * calc/calc-embed.el (calc-embedded-mode-vars):
4450 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4451
4452 * calc/calc-ext.el (calc-init-extensions):
4453 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4454 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4455
4456 * calc/calc-units.el (math-build-units-table-buffer):
4457 Let `calc-twos-complement-mode' be nil.
4458
4459 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4460 entries.
4461
4462 * calc/calc-vec.el (calcFunc-vunpack):
4463 * calc/calc-aent.el (calc-do-calc-eval):
4464 * calc/calc-forms.el (math-format-date):
4465 * calc/calc-graph.el (calc-graph-plot):
4466 * calc/calc-math.el (math-use-emacs-fn):
4467 * calc/calccomp.el (math-compose-expr):
4468 Let `calc-twos-complement-mode' be nil.
4469
4470 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4471
4472 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4473 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
4474 * minibuffer.el (completion-in-region-functions): New hook.
4475 (completion-in-region): New function.
4476 * emacs-lisp/lisp.el (lisp-complete-symbol):
4477 * pcomplete.el (pcomplete-std-complete): Use it.
4478
4479 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4480
4481 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4482 (latex-complete-alist): New vars.
4483 (latex-string-prefix-p, latex-complete-bibtex-keys)
4484 (latex-complete-envnames, latex-complete-refkeys)
4485 (latex-complete-data): New functions.
4486 (latex-complete, latex-indent-or-complete): New commands.
4487
4488 * window.el (display-buffer-mark-dedicated): New var.
4489 (display-buffer): Obey it.
4490 * minibuffer.el (minibuffer-completion-help): Use it.
4491
4492 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4493
4494 * filecache.el (file-cache-add-file): Use push and cons.
4495 (file-cache-delete-file-regexp): Use push.
4496 (file-cache-complete): Use completion-in-region.
4497
4498 * simple.el (with-wrapper-hook): Fix thinko.
4499
4500 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4501 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4502 Use with-current-buffer and string-to-number.
4503 (hfy-fallback-colour-values): Use assoc-string.
4504 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4505 (hfy-face-at): Remove unused var `found-face'.
4506 (hfy-compile-stylesheet): Remove unused var `css'.
4507 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4508 and `orig-buffer'.
4509 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
4510 Use with-current-buffer.
4511 (hfy-text-p): Use expand-file-name and fewer setq.
4512
4513 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
4514
4515 * htmlfontify.el, hfy-cmap.el: New files.
4516
4517 2009-11-19 Juri Linkov <juri@jurta.org>
4518
4519 * minibuffer.el (completions-format): New defcustom.
4520 (completion--insert-strings): Implement vertical format.
4521
4522 * simple.el (switch-to-completions): Move point to the first
4523 completion when point was at the beginning of the buffer.
4524
4525 2009-11-19 Juri Linkov <juri@jurta.org>
4526
4527 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
4528
4529 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
4530
4531 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
4532
4533 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
4534 (mail-signature): Change default to t.
4535 (mail-from-style): Deprecate `system-default' value.
4536 (mail-insert-from-field): For default value of mail-from-style,
4537 default to `angles' unless `angles' needs quoting and `parens'
4538 does not.
4539 (mail-citation-prefix-regexp): Use citation regexp from
4540 message-mode.
4541
4542 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
4543
4544 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
4545 Set variables for computing the prompt for reading password.
4546
4547 2009-11-19 Glenn Morris <rgm@gnu.org>
4548
4549 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
4550
4551 * textmodes/flyspell.el (sgml-lexical-context): Declare.
4552
4553 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
4554 (newsticker-treeview-listwindow-height): Fix custom type.
4555
4556 2009-11-19 Kenichi Handa <handa@m17n.org>
4557
4558 * descr-text.el (describe-char-padded-string): Compose with TAB
4559 only if there's a font for CH.
4560 (describe-char): Fix the condition for detecting a trivial composition.
4561
4562 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
4563
4564 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
4565 more accurate version of the regexp. (Bug#3910)
4566
4567 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
4568
4569 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
4570
4571 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
4572
4573 * font-setting.el (font-use-system-font): Declare for byte-compiler.
4574 (font-setting-change-default-font): Fix typo in docstring.
4575
4576 2009-11-18 Alan Mackenzie <acm@muc.de>
4577
4578 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
4579
4580 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4581
4582 * font-setting.el (font-use-system-font): Move ...
4583
4584 * cus-start.el (all): ... to here.
4585
4586 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
4587
4588 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
4589 Don't set `ad-return-value' if `ad-do-it' doesn't.
4590
4591 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
4592 modification time.
4593
4594 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4595
4596 * menu-bar.el: Put "Use system font" in Option-menu.
4597 (menu-bar-options-save): Add font-use-system-font.
4598
4599 * loadup.el: If feature system-font-setting or font-render-setting is
4600 there, load font-setting.
4601
4602 * Makefile.in (ELCFILES): Add font-settings.el.
4603 * font-setting.el: New file.
4604
4605 2009-11-17 Glenn Morris <rgm@gnu.org>
4606
4607 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
4608
4609 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
4610 Preserve point in the list buffer. (Bug#4939)
4611 Use point-at-eol.
4612 (newsticker--treeview-list-update-highlight)
4613 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
4614
4615 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
4616
4617 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
4618 Remove.
4619
4620 * calc/calc-ext.el (calc-init-extensions): Remove references to
4621 symclip.
4622
4623 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
4624
4625 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
4626 * calc/calc-help.el (calc-b-prefix-help): Remove references to
4627 `calc-symclip'.
4628
4629 2009-11-16 Kevin Ryde <user42@zip.com.au>
4630
4631 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
4632 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
4633
4634 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
4635 (lm-keywords-list): Allow comma-only separator like "foo,bar".
4636 Ignore trailing spaces by omit-nulls to split-string (fixing
4637 regression from Emacs 21 due to the incompatible split-string
4638 change). (Bug #4928.)
4639
4640 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
4641
4642 * vc.el (vc-log-show-limit): Default to 2000.
4643 (vc-print-log-internal): Insert buttons to request more entries
4644 when limiting the output.
4645
4646 * vc-sccs.el (vc-sccs-print-log):
4647 * vc-rcs.el (vc-rcs-print-log):
4648 * vc-cvs.el (vc-cvs-print-log):
4649 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
4650 LIMIT is non-nil.
4651
4652 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
4653
4654 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
4655 error when `tramp-gvfs-dbus-event-vector' is set.
4656 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
4657
4658 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4659
4660 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
4661
4662 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
4663
4664 * net/dbus.el (dbus-unregister-service): New defun.
4665 (dbus-register-property): Register the handlers of
4666 "org.freedesktop.DBus.Properties" for SERVICE.
4667 (dbus-property-handler): Fix docstring.
4668
4669 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4670
4671 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
4672 Quote doc string reference in defvaralias as it is not in special form.
4673 (byte-compile-output-docform): Doc fix.
4674
4675 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
4676
4677 * calc/calc.el (math-2-word-size, math-half-2-word-size)
4678 (calc-complement-signed-mode): New variables.
4679 (calc-set-mode-line): Add indicator for twos-complements.
4680 (math-format-number): Format twos-complement notation.
4681
4682 * calc/calc-bin.el (calc-word-size): Reset the variables
4683 `math-2-word-size' and `math-half-2-word-size'.
4684 (math-format-complement-signed, math-symclip, calcFunc-symclip)
4685 (calc-symclip): New functions.
4686
4687 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
4688
4689 * calc/calc-embed.el (calc-embedded-mode-vars):
4690 Add `calc-complement-signed-mode' to the list of modes.
4691
4692 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
4693 (calc-b-oper-keys): Add `calc-symclip' to list.
4694
4695 * calc/calc-ext.el (math-read-number-fancy): Read complement
4696 signed numbers.
4697 (calc-init-extensions): Add binding for `calc-symclip'.
4698 Add autoload for `calcFunc-symclip' and `calc-symclip'.
4699
4700 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
4701 `calc-symclip'.
4702 (calc-modes-menu): Add item for twos complement mode.
4703
4704 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
4705
4706 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
4707
4708 * register.el (jump-to-register, insert-register): Handle Semantic
4709 tags. From commented-out advice in semantic/senator.el.
4710
4711 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
4712
4713 * vc.el (vc-log-show-limit): New variable.
4714 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
4715 when using a prefix argument.
4716 (vc-print-log-internal): Add new argument LIMIT.
4717
4718 * vc-svn.el (vc-svn-print-log):
4719 * vc-mtn.el (vc-mtn-print-log):
4720 * vc-hg.el (vc-hg-print-log):
4721 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
4722 pass it to the log command when set. Make the BUFFER argument
4723 non-optional.
4724
4725 * vc-sccs.el (vc-sccs-print-log):
4726 * vc-rcs.el (vc-rcs-print-log):
4727 * vc-git.el (vc-git-print-log):
4728 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
4729 ignore it. Make the BUFFER argument non-optional
4730
4731 * bindings.el (mode-line-buffer-identification): Do not purecopy.
4732
4733 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
4734
4735 * dired.el (dired-mode-map): Move encryption items to "Operate"
4736 menu (Bug#4703).
4737
4738 * strokes.el (strokes-update-window-configuration): Make strokes
4739 buffer current before erasing (Bug#4906).
4740
4741 * cedet/semantic/idle.el (semantic-idle-summary-mode)
4742 (semantic-idle-summary-mode): Define using define-minor-mode
4743 instead of define-semantic-idle-service.
4744 (semantic-idle-summary-mode): New function.
4745 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
4746 that mouse motion does not reset the echo area.
4747
4748 2009-11-15 Juri Linkov <juri@jurta.org>
4749
4750 * simple.el (set-mark-default-inactive): Add :type, :group
4751 and :version. (Bug#4876)
4752
4753 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
4754
4755 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
4756 (archive-unique-fname): ... here. (Bug#4929)
4757
4758 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4759
4760 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
4761 with a real fix.
4762
4763 * novice.el (disabled-command-function): Add useful args.
4764 Setup the help buffer so that [back] works.
4765 Remove redundant call to help-mode.
4766 (disabled-command-function): Use `case'.
4767 (en/disable-command): New function extracted from enable-command.
4768 (enable-command, disable-command): Use it.
4769
4770 2009-11-14 Glenn Morris <rgm@gnu.org>
4771
4772 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
4773 constants. (Bug#4913)
4774
4775 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
4776
4777 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
4778
4779 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
4780 defined in C that have no doc-strings. (Bug#1063)
4781
4782 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
4783
4784 * cus-edit.el (data, files):
4785 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
4786
4787 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
4788
4789 * simple.el (shell-command): Doc fix (Bug#4891).
4790
4791 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
4792
4793 2009-11-14 Glenn Morris <rgm@gnu.org>
4794
4795 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
4796 statements for vc-diff, emerge-quit, and rmail-cease-edit.
4797 If they are already loaded, eval-after-load will do the right thing.
4798
4799 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
4800 compiling.
4801
4802 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
4803
4804 * simple.el (x-selection-owner-p): Declare.
4805 (read-mail-command): Use custom radio type rather than choice.
4806 (completion-no-auto-exit): Doc fix.
4807
4808 * custom.el (defgroup):
4809 * epg-config.el (epg): Doc fixes.
4810
4811 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
4812
4813 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
4814 * international/ccl.el (define-ccl-program): Do not purecopy the
4815 docstring, defconst does it anyway.
4816
4817 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4818
4819 * add-log.el (add-change-log-entry): Avoid displaying the changelog
4820 a second time.
4821
4822 * x-dnd.el (x-dnd-maybe-call-test-function):
4823 * window.el (split-window-vertically):
4824 * whitespace.el (whitespace-help-on):
4825 * vc-rcs.el (vc-rcs-consult-headers):
4826 * userlock.el (ask-user-about-lock-help)
4827 (ask-user-about-supersession-help):
4828 * type-break.el (type-break-force-mode-line-update):
4829 * time-stamp.el (time-stamp-conv-warn):
4830 * terminal.el (te-set-output-log, te-more-break, te-filter)
4831 (te-sentinel, terminal-emulator):
4832 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
4833 (term-write-input-ring, term-check-source, term-start-output-log):
4834 (term-display-buffer-line, term-dynamic-list-completions):
4835 (term-ansi-make-term, serial-term):
4836 * subr.el (selective-display):
4837 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
4838 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
4839 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
4840 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
4841 (speedbar-remove-localized-speedbar-support)
4842 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
4843 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
4844 (speedbar-buffers-line-directory):
4845 * simple.el (shell-command-on-region, append-to-buffer)
4846 (prepend-to-buffer):
4847 * shadowfile.el (shadow-save-todo-file):
4848 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
4849 (scroll-bar-maybe-set-window-start):
4850 * sb-image.el (speedbar-image-dump):
4851 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
4852 (load-save-place-alist-from-file):
4853 * ps-samp.el (ps-print-message-from-summary):
4854 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
4855 (ps-background-image, ps-begin-job, ps-do-despool):
4856 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
4857 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
4858 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
4859 (pr-call-process, pr-file-list, pr-interface-save):
4860 * novice.el (disabled-command-function)
4861 (enable-command, disable-command):
4862 * mouse.el (mouse-buffer-menu-alist):
4863 * mouse-copy.el (mouse-kill-preserving-secondary):
4864 * macros.el (kbd-macro-query):
4865 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
4866 * informat.el (batch-info-validate):
4867 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
4868 * hippie-exp.el (try-expand-dabbrev-visible):
4869 * help-mode.el (help-make-xrefs):
4870 * help-fns.el (describe-variable):
4871 * generic-x.el (bat-generic-mode-run-as-comint):
4872 * finder.el (finder-mouse-select):
4873 * find-dired.el (find-dired-sentinel):
4874 * filesets.el (filesets-file-close):
4875 * files.el (list-directory):
4876 * faces.el (list-faces-display, describe-face):
4877 * facemenu.el (list-colors-display):
4878 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
4879 * epg.el (epg--process-filter, epg-cancel):
4880 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
4881 (epa--read-signature-type):
4882 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
4883 (emerge-file-names):
4884 * ehelp.el (electric-helpify):
4885 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
4886 * ediff-vers.el (rcs-ediff-view-revision):
4887 * ediff-util.el (ediff-setup):
4888 * ediff-mult.el (ediff-append-custom-diff):
4889 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
4890 (ediff-wordify):
4891 * echistory.el (Electric-command-history-redo-expression):
4892 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4893 * disp-table.el (describe-display-table):
4894 * dired.el (dired-find-buffer-nocreate):
4895 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
4896 * dabbrev.el (dabbrev--same-major-mode-p):
4897 * chistory.el (list-command-history):
4898 * apropos.el (apropos-documentation):
4899 * allout.el (allout-obtain-passphrase):
4900 (allout-copy-exposed-to-buffer):
4901 (allout-verify-passphrase): Use with-current-buffer.
4902
4903 2009-11-13 Glenn Morris <rgm@gnu.org>
4904
4905 * Makefile.in (ELCFILES): Regenerate.
4906
4907 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
4908
4909 * net/dbus.el (dbus-registered-objects-table): Rename from
4910 `dbus-registered-functions-table', because it contains also properties.
4911 (dbus-unregister-object): Unregister also properties.
4912 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4913 Use a timeout of 500 msec, in order to not block.
4914 (dbus-register-property, dbus-property-handler): New defuns.
4915
4916 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4917
4918 * simple.el (minibuffer-default-add-completions): Drop deprecated
4919 4th arg.
4920
4921 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
4922
4923 * textmodes/artist.el (artist-mouse-choose-operation):
4924 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
4925 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
4926 (artist-compute-up-event-key): New function.
4927 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
4928
4929 2009-11-13 Kenichi Handa <handa@m17n.org>
4930
4931 * language/japan-util.el: Make sure that the value of jisx0208
4932 property is jisx0208 character.
4933
4934 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
4935
4936 * international/mule.el (auto-coding-regexp-alist): Only purecopy
4937 car or each item, not the whole list.
4938
4939 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4940
4941 * minibuffer.el (minibuffer-completion-help):
4942 Use minibuffer-hide-completions.
4943
4944 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
4945
4946 * dired.el (dired-save-positions, dired-restore-positions): New funs.
4947 (dired-revert): Use them (bug#4880).
4948
4949 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
4950
4951 * tooltip.el (tooltip-frame-parameters): Undo previous change.
4952
4953 2009-11-12 Juri Linkov <juri@jurta.org>
4954
4955 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
4956 New functions.
4957 (find-file-literally-at-point): Alias of `ffap-literally'.
4958
4959 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
4960
4961 * textmodes/ispell.el (ispell-skip-region-alist):
4962 * textmodes/css-mode.el (auto-mode-alist):
4963 * progmodes/compile.el (auto-mode-alist):
4964 * international/mule.el (ctext-non-standard-encodings-alist)
4965 (ctext-non-standard-encodings-regexp):
4966 * simple.el (shell-command-switch, text-read-only):
4967 * replace.el (occur-mode-map):
4968 * paths.el (rmail-file-name):
4969 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
4970 * find-file.el (ff-special-constructs):
4971 * files.el (file-name-handler-alist):
4972 * composite.el: Purecopy strings.
4973
4974 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
4975
4976 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
4977
4978 * widget.el (define-widget): Purecopy the docstring.
4979 * international/mule-cmds.el (charset): Do not purecopy the
4980 docstring here, define-widget does it.
4981
4982 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
4983 * textmodes/bibtex-style.el (auto-mode-alist):
4984 * progmodes/inf-lisp.el (inferior-lisp-prompt):
4985 * progmodes/compile.el (compile-command):
4986 * language/korea-util.el (default-korean-keyboard):
4987 * international/mule-conf.el (file-coding-system-alist):
4988 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
4989 * tooltip.el (tooltip-frame-parameters):
4990 * newcomment.el (comment-end, comment-padding):
4991 * dired.el (dired-trivial-filenames):
4992 * comint.el (comint-file-name-prefix): Purecopy initial values.
4993
4994 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
4995
4996 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
4997 (tramp-advice-minibuffer-electric-tilde): Unload advices via
4998 `tramp-unload'.
4999 (tramp-advice-make-auto-save-file-name)
5000 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
5001 after removing the advice.
5002
5003 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5004
5005 * progmodes/grep.el (grep-regexp-alist):
5006 * international/mule-cmds.el (iso-2022-control-alist):
5007 * emacs-lisp/timer.el (timer-duration-words):
5008 * subr.el (version-separator, version-regexp-alist):
5009 * minibuffer.el (completion-styles-alist):
5010 * faces.el (face-attribute-name-alist, list-faces-sample-text):
5011 Change defvars to defconsts.
5012
5013 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
5014 * loadup.el ("international/mule-conf"): Load the byte compiled version.
5015 * international/mule-conf.el: Allow to be byte compiled.
5016
5017 * international/mule.el (define-charset): Purecopy props.
5018 (load-with-code-conversion): Purecopy doc string and file name.
5019 (put-charset-property): Purecopy strings.
5020 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
5021
5022 * international/mule-cmds.el (register-input-method): Purecopy arguments.
5023 (define-char-code-property): Correctly purecopy the table.
5024
5025 * international/ccl.el (define-ccl-program): Purecopy the docstring.
5026
5027 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
5028
5029 * subr.el (add-hook): Purecopy strings.
5030 (eval-after-load): Purecopy load-history-regexp and the form.
5031
5032 * custom.el (custom-declare-group): Purecopy load-file-name.
5033
5034 * subr.el (menu-bar-separator): New defconst.
5035 * net/eudc.el (eudc-tools-menu):
5036 * international/mule-cmds.el (set-coding-system-map)
5037 (mule-menu-keymap):
5038 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5039 * vc-hooks.el (vc-menu-map):
5040 * replace.el (occur-mode-map):
5041 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
5042 (menu-bar-edit-menu, menu-bar-goto-menu)
5043 (menu-bar-custom-menu, menu-bar-showhide-menu)
5044 (menu-bar-options-menu, menu-bar-tools-menu)
5045 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
5046 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
5047 (menu-bar-help-menu):
5048 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
5049 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
5050
5051 * term/x-win.el (x-gtk-stock-map):
5052 * progmodes/vera-mode.el (auto-mode-alist):
5053 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5054 (inferior-lisp-program, inferior-lisp-load-command):
5055 * progmodes/hideshow.el (hs-special-modes-alist):
5056 * progmodes/gud.el (same-window-regexps):
5057 * progmodes/grep.el (grep-program, find-program, xargs-program):
5058 * net/telnet.el (same-window-regexps):
5059 * net/rlogin.el (same-window-regexps):
5060 * language/ethiopic.el (font-ccl-encoder-alist):
5061 * vc-sccs.el (vc-sccs-master-templates):
5062 * vc-rcs.el (vc-rcs-master-templates):
5063 * subr.el (cl-assertion-failed):
5064 * simple.el (next-error-overlay-arrow-position):
5065 * lpr.el (lpr-command):
5066 * locate.el (locate-ls-subdir-switches):
5067 * info.el (same-window-regexps, info)
5068 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
5069 * image-mode.el (image-mode, auto-mode-alist):
5070 * hippie-exp.el (hippie-expand-ignore-buffers):
5071 * format.el (format-alist):
5072 * find-dired.el (find-ls-subdir-switches, find-grep-options)
5073 (find-name-arg):
5074 * facemenu.el (facemenu-keybindings):
5075 * dired.el (dired-listing-switches, dired-chown-program):
5076 * diff.el (diff-switches, diff-command):
5077 * cus-edit.el (same-window-regexps):
5078 * bindings.el (mode-line-mule-info)
5079 (mode-line-buffer-identification): Purecopy strings.
5080
5081 2009-11-11 Juri Linkov <juri@jurta.org>
5082
5083 * simple.el (dired-get-filename) <declare-function>:
5084 Tell the byte-compiler about dired-get-filename.
5085 (shell-command): In Dired mode, get filename from the current line
5086 as the default value.
5087
5088 2009-11-10 Glenn Morris <rgm@gnu.org>
5089
5090 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
5091 * calendar/holidays.el, progmodes/cperl-mode.el:
5092 Update x-popup-menu declarations.
5093
5094 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
5095 (list-load-path-shadows): Use dolist.
5096 (list-load-path-shadows): Use with-current-buffer.
5097
5098 2009-11-10 Juri Linkov <juri@jurta.org>
5099
5100 * minibuffer.el (read-file-name): Support a list of default values
5101 in `default-filename'. Use the first file name where only one
5102 element is required. Doc fix.
5103
5104 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
5105
5106 * net/dbus.el (dbus-unregister-object): Release service, if no
5107 other method is registered for it.
5108
5109 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
5110
5111 * bookmark.el (bookmark-completing-read): Sort bookmark names if
5112 bookmark-sort-flag is non-nil (Bug#4653).
5113
5114 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5115
5116 * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
5117 the progress reporter entirely.
5118
5119 * emulation/cua-base.el: Add CUA property to some CC mode commands
5120 (Bug#4100).
5121
5122 2009-11-08 Kevin Ryde <user42@zip.com.au>
5123
5124 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
5125 at end of sentence (Bug#4818).
5126
5127 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
5128
5129 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5130 Handle "see declaration of" MSFT statements (Bug#4100).
5131
5132 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
5133
5134 * net/tramp.el (tramp-advice-make-auto-save-file-name)
5135 (tramp-advice-file-expand-wildcards): Unload via
5136 `ad-remove-advice'.
5137
5138 * net/trampver.el: Update release number.
5139
5140 2009-11-08 Kevin Ryde <user42@zip.com.au>
5141
5142 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5143 `ad-do-it'.
5144
5145 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
5146
5147 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5148 in order to keep context in SELinux.
5149
5150 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5151
5152 * dired-aux.el (dired-query): Place cursor in echo area and allow
5153 C-g.
5154
5155 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5156 menu item if not on a directory (Bug#4701).
5157
5158 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
5159
5160 Sync with Tramp 2.1.17.
5161
5162 * net/tramp.el (tramp-handle-copy-directory): Don't use
5163 `file-remote-p' (due to compatibility).
5164
5165 * net/tramp-compat.el (tramp-compat-copy-directory)
5166 (tramp-compat-delete-directory): New defuns.
5167
5168 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5169 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
5170 `tramp-compat-delete-directory'.
5171
5172 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5173 (tramp-smb-handle-delete-directory): Use
5174 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5175
5176 * net/trampver.el: Update release number.
5177
5178 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
5179
5180 * tar-mode.el (tar-copy): Call write-region on the right buffer
5181 (Bug#4857).
5182
5183 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5184 by hand, if necessary (Bug#4878).
5185
5186 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
5187
5188 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5189 align size column (Bug#4839).
5190
5191 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5192 statement.
5193
5194 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5195
5196 * progmodes/ld-script.el (auto-mode-alist):
5197 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5198
5199 * cus-face.el (custom-declare-face): Purecopy face spec.
5200
5201 2009-11-06 Kenichi Handa <handa@m17n.org>
5202
5203 * international/uni-bidi.el: Re-generated.
5204 * international/uni-category.el: Re-generated.
5205 * international/uni-combining.el: Re-generated.
5206 * international/uni-mirrored.el: Re-generated.
5207
5208 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5209
5210 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5211 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5212 (tex-start-options, slitex-run-command, latex-run-command)
5213 (tex-run-command, tex-directory):
5214 * textmodes/ispell.el (ispell-html-skip-alists)
5215 (ispell-tex-skip-alists, ispell-tex-skip-alists):
5216 * textmodes/fill.el (adaptive-fill-first-line-regexp):
5217 (adaptive-fill-regexp):
5218 * textmodes/dns-mode.el (auto-mode-alist):
5219 * progmodes/python.el (interpreter-mode-alist):
5220 * progmodes/etags.el (tags-compression-info-list):
5221 * progmodes/etags.el (tags-file-name):
5222 * net/browse-url.el (browse-url-galeon-program)
5223 (browse-url-firefox-program):
5224 * mail/sendmail.el (mail-signature-file)
5225 (mail-citation-prefix-regexp):
5226 * international/mule-conf.el (eight-bit):
5227 * international/latexenc.el (latex-inputenc-coding-alist):
5228 * international/fontset.el (x-pixel-size-width-font-regexp):
5229 * emacs-lisp/warnings.el (warning-type-format):
5230 * emacs-lisp/trace.el (trace-buffer):
5231 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5232 (emacs-lisp-mode-map):
5233 * calendar/holidays.el (holiday-solar-holidays)
5234 (holiday-bahai-holidays, holiday-islamic-holidays)
5235 (holiday-christian-holidays, holiday-hebrew-holidays)
5236 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5237 (hebrew-holidays-1, holiday-oriental-holidays)
5238 (holiday-general-holidays):
5239 * x-dnd.el (x-dnd-known-types):
5240 * tool-bar.el (tool-bar):
5241 * startup.el (site-run-file):
5242 * shell.el (shell-dumb-shell-regexp):
5243 * rfn-eshadow.el (file-name-shadow-tty-properties)
5244 (file-name-shadow-properties):
5245 * paths.el (remote-shell-program, news-directory):
5246 * mouse.el ([C-down-mouse-3]):
5247 * menu-bar.el (menu-bar-tools-menu):
5248 * jka-cmpr-hook.el (jka-compr-load-suffixes)
5249 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5250 (jka-compr-compression-info-list):
5251 * isearch.el (search-whitespace-regexp):
5252 * image-file.el (image-file-name-extensions):
5253 * find-dired.el (find-ls-option):
5254 * files.el (directory-listing-before-filename-regexp)
5255 (directory-free-space-args, insert-directory-program)
5256 (list-directory-brief-switches, magic-fallback-mode-alist)
5257 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5258 (automount-dir-prefix):
5259 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5260 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5261 (face-font-registry-alternatives, face-font-registry-alternatives)
5262 (face-font-family-alternatives):
5263 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5264 (facemenu-foreground-menu, facemenu-face-menu):
5265 * epa-hook.el (epa-file-name-regexp):
5266 * dnd.el (dnd-protocol-alist):
5267 * textmodes/rst.el (auto-mode-alist):
5268 * button.el (default-button): Purecopy strings.
5269
5270 2009-11-06 Glenn Morris <rgm@gnu.org>
5271
5272 * Makefile.in (ELCFILES): Update.
5273
5274 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
5275
5276 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5277 * emacs-lisp/levents.el: Move to obsolete/levents.el.
5278
5279 * nxml/xsd-regexp.el (xsdre-gen-categories):
5280 * nxml/xmltok.el (xmltok-parse-entity):
5281 * nxml/rng-parse.el (rng-parse-validate-file):
5282 * nxml/rng-maint.el (rng-format-manual)
5283 (rng-manual-output-force-new-line):
5284 * nxml/rng-loc.el (rng-save-schema-location-1):
5285 * nxml/rng-cmpct.el (rng-c-parse-file):
5286 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5287 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5288
5289 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
5290
5291 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5292 Remove extra save-excursions and make-variable-buffer-local's.
5293 Suggested by Stefan Monnier.
5294
5295 (verilog-getopt-file, verilog-module-inside-filename-p)
5296 (verilog-set-define): Merge GNU 1.35 and repair changes from
5297 switching to using with-current-buffer.
5298
5299 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5300 being treated as a number and confusing AUTORESET.
5301 Reported by Dan Dever.
5302
5303 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5304 Add verilog-auto-ignore-concat to fix backward compatibility with
5305 older verilog-modes. Reported by Dan Katz.
5306
5307 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5308 containing closing anchors "...$".
5309
5310 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5311 Reported by Wade Smith.
5312
5313 (verilog-batch-execute-func): Comment on function usage.
5314
5315 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
5316
5317 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5318 for labels.
5319
5320 (verilog-label-re, verilog-calc-1): Support proper indent of named
5321 asserts.
5322
5323 (verilog-backward-token, verilog-basic-complete-re)
5324 (verilog-beg-of-statement, verilog-indent-re): Support proper
5325 indent of the assert statement at the beginning of a block of text.
5326
5327 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5328 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5329 tokens as begins.
5330
5331 2009-11-05 Glenn Morris <rgm@gnu.org>
5332
5333 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5334 Emacs 19. (Bug#1531)
5335 (byte-compile-fix-header): Update for the above change.
5336 Drop test for epoch::version.
5337
5338 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5339 * cus-dep.el (custom-make-dependencies):
5340 * finder.el (finder-compile-keywords):
5341 Use autoload-rubric's feature argument.
5342
5343 * calendar/diary-lib.el (top-level): Make load behave more like require.
5344
5345 * vc-git.el (vc-git-stash-map): Move definition before use.
5346
5347 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
5348
5349 * custom.el (custom-declare-group): Purecopy standard-value.
5350 (custom-declare-group): Purecopy custom-prefix.
5351
5352 * international/mule.el (load-with-code-conversion):
5353 Call do-after-load-evaluation unconditionally.
5354
5355 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5356
5357 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
5358
5359 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5360
5361 2009-11-04 Glenn Morris <rgm@gnu.org>
5362
5363 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5364 (byte-compile-compatibility): Remove option.
5365 (byte-compile-close-variables, byte-compile-fix-header)
5366 (byte-compile-insert-header, byte-compile-output-docform)
5367 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5368 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5369 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5370 (byte-compile-insert, byte-compile-defun):
5371 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
5372 (byte-defop-compiler19): Remove.
5373 Without byte-compile-compatibility, the 'emacs19-opcode property is not
5374 used by anything. Replace all calls with byte-defop-compiler.
5375
5376 2009-11-04 Juri Linkov <juri@jurta.org>
5377
5378 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5379 (menu-bar-options-menu): Don't quote the `prop' arg of
5380 `menu-bar-make-mm-toggle'.
5381
5382 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
5383
5384 * calendar/calendar.el (cal-loaddefs):
5385 * calendar/diary-lib.el (diary-loaddefs):
5386 * calendar/holidays.el (hol-loaddefs):
5387 * eshell/esh-module.el (esh-groups): Load rather than require.
5388
5389 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5390
5391 * calendar/todo-mode.el (todo-add-category): Don't hardcode
5392 point-min==1.
5393 (todo-top-priorities): Only display-buffer when called interactively.
5394 (todo-item-start): Don't save excursion point.
5395 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
5396 (todo-insert-item-here, todo-file-item, todo-remove-item):
5397 Adjust uses of todo-item-start and todo-item-end.
5398
5399 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5400 (autoload-rubric): Don't use any more.
5401 * cedet/semantic/fw.el (semantic/loaddefs):
5402 * cedet/srecode.el (srecode/loaddefs):
5403 * cedet/ede.el (ede/loaddefs): Load rather than require.
5404 * cedet/ede/cpp-root.el:
5405 * cedet/ede/emacs.el:
5406 * cedet/ede/files.el:
5407 * cedet/ede/linux.el:
5408 * cedet/ede/locate.el:
5409 * cedet/ede/make.el:
5410 * cedet/ede/shell.el:
5411 * cedet/ede/speedbar.el:
5412 * cedet/ede/system.el:
5413 * cedet/ede/util.el:
5414 * cedet/semantic/analyze.el:
5415 * cedet/semantic/bovine.el:
5416 * cedet/semantic/complete.el:
5417 * cedet/semantic/ctxt.el:
5418 * cedet/semantic/db-file.el:
5419 * cedet/semantic/db-find.el:
5420 * cedet/semantic/db-global.el:
5421 * cedet/semantic/db-mode.el:
5422 * cedet/semantic/db-typecache.el:
5423 * cedet/semantic/db.el:
5424 * cedet/semantic/debug.el:
5425 * cedet/semantic/dep.el:
5426 * cedet/semantic/doc.el:
5427 * cedet/semantic/edit.el:
5428 * cedet/semantic/find.el:
5429 * cedet/semantic/format.el:
5430 * cedet/semantic/html.el:
5431 * cedet/semantic/ia-sb.el:
5432 * cedet/semantic/ia.el:
5433 * cedet/semantic/idle.el:
5434 * cedet/semantic/lex-spp.el:
5435 * cedet/semantic/lex.el:
5436 * cedet/semantic/mru-bookmark.el:
5437 * cedet/semantic/scope.el:
5438 * cedet/semantic/senator.el:
5439 * cedet/semantic/sort.el:
5440 * cedet/semantic/symref.el:
5441 * cedet/semantic/tag-file.el:
5442 * cedet/semantic/tag-ls.el:
5443 * cedet/semantic/tag-write.el:
5444 * cedet/semantic/tag.el:
5445 * cedet/semantic/util-modes.el:
5446 * cedet/semantic/analyze/complete.el:
5447 * cedet/semantic/analyze/refs.el:
5448 * cedet/semantic/bovine/c.el:
5449 * cedet/semantic/bovine/gcc.el:
5450 * cedet/semantic/bovine/make.el:
5451 * cedet/semantic/bovine/scm.el:
5452 * cedet/semantic/decorate/include.el:
5453 * cedet/semantic/decorate/mode.el:
5454 * cedet/semantic/symref/cscope.el:
5455 * cedet/semantic/symref/global.el:
5456 * cedet/semantic/symref/grep.el:
5457 * cedet/semantic/symref/idutils.el:
5458 * cedet/semantic/symref/list.el:
5459 * cedet/semantic/wisent/java-tags.el:
5460 * cedet/semantic/wisent/javascript.el:
5461 * cedet/srecode/compile.el:
5462 * cedet/srecode/cpp.el:
5463 * cedet/srecode/document.el:
5464 * cedet/srecode/el.el:
5465 * cedet/srecode/expandproto.el:
5466 * cedet/srecode/getset.el:
5467 * cedet/srecode/insert.el:
5468 * cedet/srecode/java.el:
5469 * cedet/srecode/map.el:
5470 * cedet/srecode/mode.el:
5471 * cedet/srecode/template.el:
5472 * cedet/srecode/texi.el: Remove the file-local setting of
5473 generated-autoload-feature.
5474
5475 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5476 and only put a prop if it is non-nil.
5477
5478 2009-11-03 Juri Linkov <juri@jurta.org>
5479
5480 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5481 (menu-bar-options-menu): Fix list quoting (Bug#4429).
5482
5483 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5484 and "Menu" to make top-level menu item visually one unit (like
5485 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5486 multi-word menu items). Fix :help string for quit-window.
5487
5488 2009-11-03 Glenn Morris <rgm@gnu.org>
5489
5490 * cedet/mode-local.el (with-mode-local): Doc fix.
5491
5492 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5493 (byte-compile-file-form-define-abbrev-table)
5494 (byte-compile-file-form-custom-declare-variable)
5495 (byte-compile-variable-ref, byte-compile-defvar):
5496 Whether or not a warning is enabled should only affect whether we issue
5497 the warning, not whether or not we collect the relevant data.
5498 Eg warnings can be turned on and off throughout the course of a file.
5499
5500 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5501 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5502
5503 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5504
5505 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5506 * play/mpuz.el (mpuz-create-buffer):
5507 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5508 (lm-print-y,s,noise, lm-print-w0, lm-init):
5509 * play/gomoku.el (gomoku-prompt-for-move):
5510 * play/fortune.el (fortune-in-buffer):
5511 * play/dissociate.el (dissociated-press):
5512 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5513 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
5514 * mail/supercite.el (sc-eref-show):
5515 * mail/smtpmail.el (smtpmail-send-it):
5516 * mail/rmailsum.el (rmail-summary-next-labeled-message)
5517 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
5518 (rmail-summary-undelete-many, rmail-summary-rmail-update)
5519 (rmail-summary-goto-msg, rmail-summary-expunge)
5520 (rmail-summary-get-new-mail, rmail-summary-search-backward)
5521 (rmail-summary-add-label, rmail-summary-output-menu)
5522 (rmail-summary-output-body):
5523 * mail/rfc822.el (rfc822-addresses):
5524 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
5525 * mail/mailpost.el (post-mail-send-it):
5526 * mail/hashcash.el (hashcash-generate-payment):
5527 * mail/feedmail.el (feedmail-run-the-queue)
5528 (feedmail-queue-send-edit-prompt-help-first)
5529 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
5530 (feedmail-deduce-address-list):
5531 * eshell/esh-ext.el (eshell-remote-command):
5532 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
5533 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
5534 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
5535 (viper-save-string-in-file, viper-valid-marker):
5536 * emulation/viper-keym.el (viper-toggle-key):
5537 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
5538 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
5539 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
5540 * emulation/viper-cmd.el (viper-exec-form-in-vi)
5541 (viper-exec-form-in-emacs, viper-brac-function):
5542 * emulation/viper.el (viper-delocalize-var):
5543 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
5544 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
5545 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
5546 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
5547 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
5548 * emulation/edt.el (edt-electric-helpify):
5549 * emulation/cua-rect.el (cua--rectangle-aux-replace):
5550 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
5551 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
5552 (cua-indent-to-global-mark-column):
5553 * calendar/diary-lib.el (calendar-mark-1):
5554 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
5555 Use with-current-buffer.
5556 * emulation/viper.el (viper-delocalize-var): Use dolist.
5557
5558 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
5559
5560 * comint.el (comint-replace-by-expanded-history-before-point):
5561 Replace !! with the previous input string literally (Bug#1795).
5562
5563 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
5564
5565 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
5566 to be made up of whitespace.
5567
5568 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
5569
5570 * minibuffer.el (read-file-name): Don't use file dialogs for
5571 remote directories (Bug#99).
5572
5573 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
5574
5575 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
5576
5577 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
5578
5579 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
5580 instead of deleting the window or frame.
5581
5582 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
5583
5584 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
5585 Support face colors.
5586
5587 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
5588 New function. Support face colors (Bug#1168).
5589 (tex-common-initialization): Use it.
5590
5591 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
5592 mode allows it (Bug#1168).
5593
5594 2009-10-31 Juri Linkov <juri@jurta.org>
5595
5596 * facemenu.el (list-colors-display): Don't mark buffer as
5597 modified (Bug#3948).
5598
5599 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
5600
5601 * international/mule-diag.el (list-character-sets-1): Minor
5602 message fix (Bug#3526).
5603
5604 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
5605 face property (Bug#4834).
5606 (etags-list-tags, etags-tags-apropos-additional)
5607 (etags-tags-apropos, tags-select-tags-table): Add follow-link
5608 property.
5609
5610 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
5611 items.
5612
5613 * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
5614 items.
5615
5616 * cedet/ede.el (ede-minor-mode):
5617 * cedet/semantic.el (semantic-mode): Toggle menu separators.
5618
5619 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
5620
5621 * textmodes/two-column.el (2C-split):
5622 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
5623 * textmodes/tex-mode.el (tex-set-buffer-directory):
5624 * textmodes/spell.el (spell-region, spell-string):
5625 * textmodes/reftex.el (reftex-erase-buffer):
5626 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
5627 * textmodes/reftex-toc.el (reftex-toc-promote-action):
5628 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
5629 (reftex-select-item):
5630 * textmodes/reftex-ref.el (reftex-label-info-update)
5631 (reftex-offer-label-menu):
5632 * textmodes/reftex-index.el (reftex-index-change-entry)
5633 (reftex-index-phrases-info):
5634 * textmodes/reftex-global.el (reftex-create-tags-file)
5635 (reftex-save-all-document-buffers, reftex-ensure-write-access):
5636 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
5637 (reftex-view-crossref-from-bibtex):
5638 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
5639 (reftex-extract-bib-entries-from-thebibliography)
5640 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
5641 * textmodes/refbib.el (r2b-capitalize-title):
5642 (r2b-convert-buffer, r2b-help):
5643 * textmodes/page-ext.el (pages-directory)
5644 (pages-directory-goto-with-mouse):
5645 * textmodes/bibtex.el (bibtex-validate-globally):
5646 * textmodes/bib-mode.el (bib-capitalize-title):
5647 * textmodes/artist.el (artist-clear-buffer, artist-system):
5648 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
5649 (local-set-scheme-interaction-buffer, xscheme-process-filter)
5650 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
5651 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
5652 (xscheme-send-control-g-interrupt, xscheme-start-process)
5653 (xscheme-process-sentinel, xscheme-cd):
5654 * progmodes/verilog-mode.el (verilog-read-always-signals)
5655 (verilog-set-define, verilog-getopt-file)
5656 (verilog-module-inside-filename-p):
5657 * progmodes/sh-script.el:
5658 * progmodes/python.el (python-pdbtrack-get-source-buffer)
5659 (python-pdbtrack-grub-for-buffer, python-execute-file):
5660 * progmodes/octave-inf.el (inferior-octave):
5661 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5662 (idlwave-shell-compile-helper-routines, idlwave-set-local)
5663 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
5664 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
5665 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
5666 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
5667 (idlwave-shell-filter, idlwave-shell-examine-highlight)
5668 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
5669 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
5670 (idlwave-shell-examine-display, idlwave-shell-run-region)
5671 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
5672 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
5673 * progmodes/idlw-help.el (idlwave-help-get-special-help)
5674 (idlwave-help-get-help-buffer):
5675 * progmodes/gud.el (gud-basic-call, gud-find-class)
5676 (gud-tooltip-activate-mouse-motions-if-enabled):
5677 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5678 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
5679 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
5680 (ebrowse-tags-next-file):
5681 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
5682 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
5683 (ebnf-eps-finish-and-write):
5684 * progmodes/cpp.el (cpp-edit-save):
5685 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
5686 * progmodes/cc-defs.el (c-emacs-features):
5687 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
5688 (antlr-directory-dependencies):
5689 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
5690 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
5691 (ada-find-any-references, ada-make-filename-from-adaname)
5692 (ada-make-body-gnatstub):
5693 * obsolete/rnews.el (news-list-news-groups):
5694 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
5695 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
5696 * net/rcirc.el (rcirc-debug):
5697 * net/newst-treeview.el (newsticker--treeview-list-add-item)
5698 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
5699 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
5700 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5701 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
5702 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
5703 (newsticker--treeview-list-clear-highlight)
5704 (newsticker--treeview-list-update-highlight)
5705 (newsticker--treeview-list-highlight-start)
5706 (newsticker--treeview-tree-update-highlight)
5707 (newsticker--treeview-get-selected-item)
5708 (newsticker-treeview-mark-list-items-old)
5709 (newsticker--treeview-set-current-node):
5710 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
5711 * net/newst-backend.el (newsticker--get-news-by-funcall)
5712 (newsticker--get-news-by-wget, newsticker--image-get)
5713 (newsticker--image-sentinel):
5714 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
5715 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
5716 (eudc-ph-close-session):
5717 * net/eudc.el (eudc-save-options):
5718 * language/thai-word.el (thai-update-word-table):
5719 * language/japan-util.el (japanese-string-conversion):
5720 * international/titdic-cnv.el (tsang-quick-converter)
5721 (ziranma-converter, ctlau-converter):
5722 * international/mule-cmds.el (describe-language-environment):
5723 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
5724 (skkdic-convert-postfix, skkdic-convert-prefix):
5725 (skkdic-convert-okuri-nasi, skkdic-convert):
5726 * emacs-lisp/re-builder.el (reb-update-overlays):
5727 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
5728 * emacs-lisp/gulp.el (gulp-send-requests):
5729 * emacs-lisp/find-gc.el (trace-call-tree):
5730 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
5731 (eieio-describe-generic):
5732 * emacs-lisp/eieio-base.el (eieio-persistent-read):
5733 * emacs-lisp/edebug.el (edebug-outside-excursion):
5734 * emacs-lisp/debug.el (debugger-make-xrefs):
5735 * emacs-lisp/cust-print.el (custom-prin1-to-string):
5736 * emacs-lisp/chart.el (chart-new-buffer):
5737 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
5738 Use with-current-buffer.
5739 * textmodes/artist.el (artist-system): Don't call
5740 copy-sequence on a fresh string.
5741 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
5742
5743 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
5744
5745 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
5746 is no item to edit. (Bug#4820)
5747 (todo-top-priorities): Restore point and restore narrowing in Todo
5748 buffer. (Bug#4820)
5749
5750 2009-10-31 Glenn Morris <rgm@gnu.org>
5751
5752 * net/ange-ftp.el (top-level): Don't require dired when compiling.
5753 (comint-last-output-start, comint-last-input-start)
5754 (comint-last-input-end): Don't defvar when compiling.
5755 (ange-ftp-process-file): Use bound-and-true-p.
5756
5757 * pcmpl-rpm.el (top-level): Move provide statement to end.
5758 (pcmpl-rpm): Remove unused custom group.
5759
5760 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
5761
5762 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
5763
5764 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
5765 (byte-compile-warnings): Add `constants' as an option.
5766 (byte-compile-callargs-warn, byte-compile-arglist-warn)
5767 (display-call-tree): Update for byte-compile-fdefinition possibly
5768 returning `(macro lambda ...)'. (Bug#4778)
5769 (byte-compile-variable-ref, byte-compile-setq-default):
5770 Respect `constants' member of byte-compile-warnings.
5771
5772 * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
5773 Use mapc rather than mapcar because the return value is never used.
5774
5775 * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
5776 * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
5777 * cedet/semantic/html.el:
5778 Suppress harmless warnings about setting up semantic-imenu (not
5779 part of Emacs) variables.
5780
5781 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
5782
5783 * vc-bzr.el (vc-bzr-revision-keywords): New var.
5784 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
5785 to "submit:".
5786
5787 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
5788 * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
5789 * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
5790 * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
5791 * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
5792 * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
5793 (semantic-analyzer-debug-global-symbol)
5794 (semantic-analyzer-debug-missing-innertype)
5795 (semantic-analyzer-debug-insert-include-summary):
5796 * cedet/semantic/util.el (semantic-file-tag-table):
5797 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
5798 (semantic-recursive-find-nonterminal-by-name):
5799 * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
5800 * cedet/semantic/tag-file.el (semantic-prototype-file):
5801 * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
5802 * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
5803 * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
5804 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
5805 (semantic-idle-summary-maybe-highlight):
5806 * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
5807 (semantic-ia-sb-tag-info):
5808 * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
5809 * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
5810 * cedet/semantic/ede-grammar.el (project-compile-target):
5811 (ede-proj-makefile-insert-variables):
5812 * cedet/semantic/debug.el (semantic-debug-set-parser-location):
5813 (semantic-debug-set-source-location, semantic-debug-interface-layout)
5814 (semantic-debug-mode, semantic-debug):
5815 * cedet/semantic/db.el (semanticdb-needs-refresh-p):
5816 * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
5817 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
5818 * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
5819 (semanticdb-find-translate-path-includes--internal)
5820 (semanticdb-reset-log, semanticdb-find-log-activity):
5821 * cedet/semantic/db-file.el (object-write):
5822 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
5823 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
5824 (semanticdb-create-ebrowse-database):
5825 * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
5826 * cedet/semantic/complete.el (semantic-displayor-focus-request)
5827 (semantic-collector-calculate-completions-raw)
5828 (semantic-complete-read-tag-analyzer):
5829 * cedet/semantic/analyze.el (semantic-analyze-pulse):
5830 * cedet/ede/util.el (ede-update-version-in-source):
5831 * cedet/ede/proj.el (project-delete-target):
5832 * cedet/ede/proj-elisp.el (ede-update-version-in-source)
5833 (ede-proj-flush-autoconf):
5834 * cedet/ede/pconf.el (ede-proj-configure-synchronize)
5835 (ede-proj-configure-synchronize):
5836 * cedet/ede/locate.el (ede-locate-file-in-project-impl):
5837 * cedet/ede/linux.el (ede-linux-version):
5838 * cedet/ede/emacs.el (ede-emacs-version):
5839 * cedet/ede/dired.el (ede-dired-add-to-target):
5840 * cedet/ede.el (ede-buffer-header-file, ede-find-target)
5841 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
5842 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
5843 * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
5844 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
5845 (cedet-idutils-version-check):
5846 * cedet/cedet-global.el (cedet-gnu-global-call):
5847 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
5848 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
5849 * cedet/cedet-cscope.el (cedet-cscope-call)
5850 (cedet-cscope-expand-filename, cedet-cscope-version-check):
5851 Use with-current-buffer.
5852 * cedet/ede.el (ede-make-project-local-variable)
5853 (ede-set-project-variables, ede-set): Use dolist.
5854
5855 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
5856
5857 * textmodes/ispell.el (ispell-skip-region-alist):
5858 * international/mule-conf.el (eight-bit):
5859 * international/fontset.el (font-encoding-alist):
5860 * startup.el (pure-space-overflow-message):
5861 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
5862 * paths.el (gnus-nntp-service, rmail-spool-directory)
5863 (term-file-prefix):
5864 * files.el (save-some-buffers-action-alist):
5865 * cmuscheme.el (same-window-buffer-names):
5866 * ielm.el (same-window-buffer-names):
5867 * shell.el (same-window-buffer-names):
5868 * mail/sendmail.el (same-window-buffer-names):
5869 * progmodes/inf-lisp.el (same-window-buffer-names):
5870 * bindings.el (mode-line-client)
5871 (mode-line-column-line-number-mode-map):
5872 * language/tibetan.el (tibetan-precomposition-rule-regexp)
5873 (tibetan-precomposed-regexp): Purecopy string arguments.
5874
5875 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5876
5877 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
5878 (calcDigit-nondigit):
5879 * calc/calc-yank.el (calc-copy-to-buffer):
5880 * calc/calc-units.el (calc-invalidate-units-table):
5881 * calc/calc-trail.el (calc-trail-yank):
5882 * calc/calc-store.el (calc-insert-variables):
5883 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
5884 * calc/calc-prog.el (calc-read-parse-table):
5885 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
5886 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
5887 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
5888 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
5889 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
5890 (calc-graph-name, calc-graph-find-command, calc-graph-view)
5891 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
5892 * calc/calc-ext.el (calc-realign):
5893 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
5894 (calc-embedded-finish-edit, calc-embedded-make-info)
5895 (calc-embedded-finish-command, calc-embedded-stack-change):
5896 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
5897
5898 * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
5899 (overload-docstring-extension): Use that info.
5900 * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
5901 * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
5902 * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
5903 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
5904 (semantic-nonterminal-full-name): Add the new `when' info.
5905 * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
5906 `assert'.
5907
5908 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
5909 shell-dynamic-complete-filename in preference to
5910 comint-dynamic-complete-filename.
5911
5912 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
5913 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
5914 Don't consider whether the display supports colors.
5915 (bookmark-import-new-list): Use dolist.
5916 (bookmark-bmenu-mode-map): Move initialization into declaration.
5917 (bookmark-bmenu-list): Use dolist, simplify.
5918 (bookmark-show-all-annotations): Use save-selected-window and dolist.
5919 (menu-bar-final-items): Use push.
5920
5921 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
5922
5923 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
5924 it works on remote files.
5925 (vc-hg-diff): Don't pass any `--cwd' argument.
5926
5927 2009-10-27 Kevin Ryde <user42@zip.com.au>
5928
5929 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5930 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
5931 (Further to Bug#3921).
5932
5933 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
5934
5935 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
5936 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
5937 calling `tramp-imap-put-file'. Add file size to the call.
5938 (tramp-imap-get-file-entries): Compute also user name, file size,
5939 and date.
5940 (tramp-imap-handle-insert-directory): Insert uid and gid.
5941 (tramp-imap-handle-file-attributes): Transform uid and gid
5942 according to `id-format'.
5943 (tramp-imap-put-file): New optional parameter SIZE. Encode file
5944 size in header X-Size.
5945
5946 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
5947
5948 * simple.el (transpose-subr): Give clearer error when the mark
5949 is not set. (Bug#4807)
5950
5951 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
5952
5953 * net/tramp.el (tramp-perl-file-truename): New defconst.
5954 Perl code contributed by yary <not.com@gmail.com> (tiny change).
5955 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
5956 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
5957 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
5958
5959 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
5960 Ignore `dired-call-process'.
5961 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
5962
5963 2009-10-26 Julian Scheid <julians37@gmail.com>
5964
5965 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
5966 (tramp-get-remote-readlink): New defun.
5967 (tramp-handle-file-truename): Use it.
5968 (tramp-handle-file-exists-p): Check file-attributes cache, assume
5969 file exists if cache value present.
5970 (tramp-check-cached-permissions): New defun.
5971 (tramp-handle-file-readable-p): Use it.
5972 (tramp-handle-file-writable-p): Likewise.
5973 (tramp-handle-file-executable-p): Likewise.
5974 (tramp-handle-file-name-all-completions): Try using Perl to get
5975 partial completions. When perl not available, combine `cd' and
5976 `ls' into single remote operation and use shell expansion to get
5977 partial remote directory contents. Set `file-exists-p' cache for
5978 directory and any files returned by ls. Change cache handling to
5979 support partial directory contents. Use error message emitted by
5980 remote `cd' or Perl code for local tramp-error.
5981 (tramp-do-copy-or-rename-file-directly): Avoid separate
5982 tramp-send-command-and-check call.
5983 (tramp-handle-process-file): Merge three remote ops into one.
5984 Do not flush all caches when `process-file-side-effects' is set.
5985 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
5986 file-attributes shows uid/gid to be set already.
5987
5988 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
5989
5990 * textmodes/tex-mode.el (tex-dvi-view-command)
5991 (tex-show-queue-command, tex-open-quote):
5992 * progmodes/ruby-mode.el (auto-mode-alist)
5993 (interpreter-mode-alist): Purecopy strings.
5994
5995 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
5996
5997 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
5998 string for the hook, keymap and abbrev table.
5999
6000 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
6001
6002 * x-dnd.el (x-dnd-xdnd-to-action):
6003 * startup.el (fancy-startup-text, fancy-about-text): Change to
6004 defconst from defvar.
6005
6006 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
6007
6008 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
6009 Purecopy initialization strings.
6010
6011 * mail/sendmail.el (mail-header-separator)
6012 (mail-personal-alias-file):
6013 * mail/rmail.el (rmail-default-dont-reply-to-names)
6014 (rmail-ignored-headers, rmail-retry-ignored-headers)
6015 (rmail-highlighted-headers, rmail-secondary-file-directory)
6016 (rmail-secondary-file-regexp):
6017 * files.el (null-device, file-name-invalid-regexp)
6018 (locate-dominating-stop-dir-regexp)
6019 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
6020 (interpreter-mode-alist): Use mapcar instead of mapc.
6021
6022 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
6023
6024 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
6025 (completion-ignored-extensions):
6026 (debug-ignored-errors): Purecopy strings.
6027
6028 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6029
6030 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
6031 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
6032 (pcomplete--here): Use push.
6033
6034 * subr.el (all-completions): Declare the 4th arg obsolete.
6035
6036 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6037
6038 * pcomplete.el (pcomplete-unquote-argument-function): New var.
6039 (pcomplete-unquote-argument): New function.
6040 (pcomplete--common-suffix): Always pay attention to case.
6041 (pcomplete--table-subvert): Quote and unquote the text.
6042 (pcomplete--common-quoted-suffix): New function.
6043 (pcomplete-std-complete): Use it and pcomplete-begin.
6044
6045 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
6046 we're inside a dedicated or minibuffer window.
6047
6048 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6049
6050 * cedet/semantic/fw.el (semantic-alias-obsolete)
6051 (semantic-varalias-obsolete): Make the `when' arg mandatory.
6052 (define-mode-overload-implementation):
6053 * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
6054 * cedet/semantic/wisent.el (wisent-lex-make-token-table):
6055 * cedet/semantic/util.el (semantic-file-token-stream)
6056 (semantic-something-to-stream):
6057 * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
6058 (semantic-expand-nonterminal):
6059 * cedet/semantic/tag-file.el (semantic-find-nonterminal)
6060 (semantic-find-dependency, semantic-find-nonterminal)
6061 (semantic-find-dependency):
6062 * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
6063 (semantic-flex-text, semantic-flex-make-keyword-table)
6064 (semantic-flex-keyword-p, semantic-flex-keyword-put)
6065 (semantic-flex-keyword-get, semantic-flex-map-keywords)
6066 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
6067 * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
6068 * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
6069 (semantic-after-idle-scheduler-reparse-hooks):
6070 * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
6071 * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
6072 * cedet/semantic.el (semantic-toplevel-bovine-table)
6073 (semantic-toplevel-bovine-cache)
6074 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
6075 (semantic-init-mode-hooks, semantic-init-db-hooks)
6076 (semantic-bovination-working-type): Provide the `when' arg.
6077
6078 2009-10-24 Karl Fogel <kfogel@red-bean.com>
6079
6080 * bookmark.el: Update documentation, especially documentation
6081 of `bookmark-alist' and of the bookmark file format.
6082 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
6083
6084 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
6085
6086 * mail/emacsbug.el (report-emacs-bug): Clarify that the
6087 keybindings apply to the mail buffer (Bug#4003). Shrink help
6088 window to buffer.
6089
6090 * whitespace.el (whitespace-mode, whitespace-newline-mode)
6091 (global-whitespace-mode, global-whitespace-newline-mode)
6092 (whitespace-toggle-options, global-whitespace-toggle-options):
6093 Doc fix (Bug#3660).
6094
6095 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
6096 of xmltok-start before the end tag was inserted (Bug#2840).
6097
6098 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
6099 patterns that are preceded by an open-paren (Bug#1320).
6100
6101 2009-10-24 Sven Joachim <svenjoac@gmx.de>
6102
6103 * files.el (delete-directory): Delete symlinks to directories with
6104 delete-file (Bug#4739).
6105
6106 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
6107
6108 * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
6109 * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
6110 argument to make-obsolete.
6111
6112 * cedet/semantic/fw.el (semantic-alias-obsolete)
6113 (semantic-varalias-obsolete): Add optional WHEN argument.
6114
6115 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
6116
6117 * vc.el (vc-backend-for-registration): Rename from
6118 vc-get-backend-for-registration. Update callers.
6119
6120 * international/mule-cmds.el (set-language-info-alist):
6121 Purecopy lang-env.
6122 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
6123 (charset): Purecopy the name.
6124 (define-char-code-property): Purecopy string arguments.
6125
6126 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6127 Purecopy string arguments.
6128
6129 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6130 * ediff-hook.el (menu-bar-ediff-menu):
6131 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
6132 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
6133
6134 2009-10-24 Glenn Morris <rgm@gnu.org>
6135
6136 * comint.el (comint-dynamic-list-completions):
6137 * term.el (term-dynamic-list-completions): Use choose-completion rather
6138 than obsolete alias mouse-choose-completion.
6139
6140 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
6141 file-cache-choose-completion.
6142 (file-cache-choose-completion): Handle an optional event argument.
6143 (file-cache-mouse-choose-completion): Make it an obsolete alias.
6144
6145 * progmodes/octave-mod.el (octave-complete-symbol):
6146 Use choose-completion if mouse-choose-completion is ever removed.
6147
6148 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
6149 use.
6150
6151 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
6152 compiler.
6153
6154 * vc-hooks.el (vc-responsible-backend): Fix declaration.
6155
6156 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6157
6158 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
6159 Ignore `pred' now that we receive one.
6160 Handle test-completion specially.
6161
6162 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6163
6164 * vc.el (vc-responsible-backend): Throw an error if not backend is
6165 found. Remove the REGISTER argument. Move the code dealing with
6166 REGISTER ...
6167 (vc-get-backend-for-registration): ... here. New function.
6168 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
6169 of vc-responsible-backend, pass the file name instead of the
6170 directory name.
6171
6172 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
6173
6174 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
6175 New funs.
6176 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
6177 (pcomplete-comint-setup): Don't modify a global var via
6178 accidental side-effects.
6179 (pcomplete-shell-setup): Adjust call accordingly.
6180 (pcomplete-parse-comint-arguments): Use push.
6181
6182 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
6183
6184 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6185 Allow uncapitalized info node names (Bug#3921).
6186
6187 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
6188 to the DEBUG file (Bug#3781).
6189
6190 2009-10-23 Jari Aalto <jari.aalto@cante.net>
6191
6192 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
6193 dictionary entry (Bug#4579).
6194
6195 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
6196
6197 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
6198 from `rfn-eshadow-update-overlay-hook' when unloading.
6199 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
6200 "rsyncc". Adjust doc string.
6201 (tramp-temp-buffer-file-name): New buffer-local defvar.
6202 (tramp-handle-insert-file-contents, tramp-handle-write-region):
6203 Keep temporary file when indicated by method ("rsync" and
6204 "rsyncc").
6205 (tramp-handle-write-region): Handle APPEND.
6206 (tramp-delete-temp-file-function): New defun. Added to
6207 `kill-buffer-hook'.
6208
6209 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
6210
6211 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
6212
6213 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6214
6215 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
6216 (color-name-rgb-alist, tty-standard-colors)
6217 (tty-color-mode-alist): Change to defconst.
6218
6219 * simple.el (mark-inactive): Purecopy message.
6220
6221 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
6222 (global-map, yank-menu):
6223 * textmodes/ispell.el (ispell-menu-map):
6224 * net/eudc.el (eudc-tools-menu):
6225 * international/mule-cmds.el (describe-language-environment-map)
6226 (setup-language-environment-map, set-coding-system-map)
6227 (mule-menu-keymap):
6228 * vc-hooks.el (vc-menu-entry, vc-menu-map):
6229 * replace.el (occur-mode-map):
6230 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
6231
6232 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
6233
6234 * calc/calc.el (math-read-number, math-read-number-simple): Use
6235 `save-match-data'.
6236
6237 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6238
6239 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
6240 rather than fiddling with global-map bindings, since it should only
6241 affect per-terminal settings.
6242 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
6243
6244 * minibuffer.el (completion-table-with-terminator): Allow to specify
6245 the terminator-regexp.
6246
6247 * simple.el (switch-to-completions): Look for *Completions* in other
6248 frames as well.
6249
6250 * pcomplete.el: Allow the use of completion-tables.
6251 (pcomplete-std-complete): New command.
6252 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
6253 (pcomplete--here): Use a function for `form' rather than an expression,
6254 so it can be byte-compiled.
6255 (pcomplete-here, pcomplete-here*): Adjust accordingly.
6256 Add edebug declaration.
6257 (pcomplete-show-completions): Remove unused var `curbuf'.
6258 (pcomplete-do-complete, pcomplete-stub):
6259 Don't assume `completions' is a list of strings any more.
6260
6261 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
6262
6263 * find-dired.el (find-name-arg): Fix typo in docstring.
6264
6265 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6266
6267 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
6268 (pcmpl-linux-fs-types): Same, and update to new modules layout.
6269
6270 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
6271 pcomplete-entries.
6272
6273 * comint.el (comint-read-input-ring, comint-write-input-ring)
6274 (comint-substitute-in-file-name)
6275 (comint-dynamic-complete-as-filename)
6276 (comint-dynamic-simple-complete)
6277 (comint-dynamic-list-filename-completions)
6278 (comint-dynamic-list-completions)
6279 (comint-redirect-results-list-from-process): Minor simplifications.
6280
6281 2009-10-21 Kevin Ryde <user42@zip.com.au>
6282
6283 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6284 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
6285 the first form. And insert a blank line after ";;; Code" since
6286 that's usual style. (Bug#4612)
6287
6288 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
6289
6290 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6291
6292 * minibuffer.el (completion-table-with-terminator): Properly implement
6293 boundaries, in case `terminator' appears in the suffix.
6294 (completion--embedded-envvar-table): Don't return boundaries if
6295 there's no valid completion. Simplify.
6296 (completion-file-name-table): New completion table extracted from
6297 completion--file-name-table.
6298 (completion--file-name-table): Use it.
6299 (read-file-name-predicate): Declare obsolete.
6300 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6301 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6302 completion-file-name-table, and use the `pred' argument.
6303 * files.el (locate-file-completion-table): Use the `pred' arg rather
6304 than read-file-name-predicate.
6305 (abbreviate-file-name): Use \` rather than ^ for BOS.
6306
6307 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
6308
6309 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6310 vc-responsible-backend to register, it causes problems.
6311
6312 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6313
6314 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6315
6316 2009-10-21 Eric Ludlam <zappo@gnu.org>
6317
6318 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
6319 (semantic-c-debug-mode-init-pch): New functions.
6320 (semantic-c-debug-mode-init-last-mode): New var.
6321 (semantic-c-parse-lexical-token): Use them.
6322
6323 * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
6324 When extracting the argument list, limit only by point-max.
6325
6326 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
6327
6328 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6329 (tramp-smb-handle-file-attributes): Use it.
6330 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6331 (tramp-smb-handle-insert-directory): Use `mapc' rather than
6332 `mapcar'. Use `tramp-smb-get-stat-capability'.
6333 Add `dired-filename' text properties.
6334 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6335 (tramp-smb-maybe-open-connection): Simplify check for smbclient
6336 version.
6337
6338 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6339
6340 * subr.el (read-key-delay): Reduce to 0.01.
6341 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6342 (bug#4751).
6343
6344 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6345
6346 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6347
6348 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6349 (Info-menu): Remove unused vars `last' and `completions'.
6350 (Info-index-nodes): Remove unused var `node'.
6351
6352 * info.el (Info-complete-menu-item): Use complete-with-action.
6353
6354 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
6355
6356 Make vc-annotate work through copies and renames.
6357 * vc-annotate.el (vc-annotate-extract-revision-at-line):
6358 Return the file name too.
6359 (vc-annotate-revision-at-line)
6360 (vc-annotate-find-revision-at-line)
6361 (vc-annotate-revision-previous-to-line)
6362 (vc-annotate-show-log-revision-at-line): Update to get the file
6363 name from vc-annotate-extract-revision-at-line.
6364 (vc-annotate-show-diff-revision-at-line-internal): Change the
6365 argument to mean whether to show a file diff or not. Get the file
6366 name from vc-annotate-extract-revision-at-line.
6367 (vc-annotate-show-diff-revision-at-line):
6368 Update vc-annotate-show-diff-revision-at-line call.
6369 (vc-annotate-warp-revision): Add an optional file argument.
6370
6371 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6372 (vc-git-annotate-extract-revision-at-line): Also return the file
6373 name if found.
6374
6375 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6376 command. Remove unused code.
6377 (vc-hg-annotate-re): Update to match --follow output.
6378 (vc-hg-annotate-extract-revision-at-line): Also return the file
6379 name if found.
6380
6381 * vc.el: Update annotate-extract-revision-at-line documentation.
6382
6383 2009-10-18 Kevin Ryde <user42@zip.com.au>
6384
6385 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6386 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6387
6388 * net/browse-url.el (browse-url): Identify alist with "consp and
6389 not functionp" and let all other things go down the `apply' leg,
6390 as suggested by Stefan. (Further to bug#4531.)
6391
6392 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
6393
6394 * minibuffer.el (read-file-name): Check for repeat before putting
6395 a default argument in file-name-history (Bug#4657).
6396
6397 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6398 read syntax (Bug#4737).
6399
6400 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6401
6402 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6403
6404 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6405 (html-tag-alist, html-tag-help): Add descriptions for undocumented
6406 entries and make note of obsolete tags.
6407
6408 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6409
6410 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6411
6412 2009-10-18 Glenn Morris <rgm@gnu.org>
6413
6414 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6415 grep, so that binary files (eg international/uni-bidi.el) can match.
6416 Remove test for "UnicodeData" files, since it is hopefully unnecessary
6417 now, and in any case the file header format has changed.
6418
6419 2009-10-17 Glenn Morris <rgm@gnu.org>
6420
6421 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6422 (flyspell-get-word, flyspell-large-region)
6423 (flyspell-auto-correct-previous-word): Doc/error message fixes.
6424
6425 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
6426
6427 * Makefile.in (ELCFILES): Add ede/shell.
6428
6429 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
6430
6431 * term/common-win.el (x-colors): Purecopy it.
6432
6433 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6434
6435 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6436 permissive for when the buffer is empty.
6437 (tar-header-block-tokenize): Decode the username and groupname.
6438 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6439
6440 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
6441
6442 * cedet/srecode/srt.el:
6443 * cedet/srecode/compile.el:
6444 * cedet/semantic/mru-bookmark.el:
6445 * cedet/semantic/debug.el:
6446 * cedet/semantic/complete.el:
6447 * cedet/semantic/analyze.el: Require CL when compiling.
6448
6449 2009-10-17 Eric Ludlam <zappo@gnu.org>
6450
6451 * cedet/semantic/scope.el
6452 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
6453 tmpscope so that the regular scope will continue to work.
6454
6455 * cedet/semantic/idle.el (semantic-idle-tag-highlight):
6456 Use semantic-idle-summary-highlight-face as the highlighting.
6457
6458 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
6459 contains multibyte characters, choose first applicable coding
6460 system automatically.
6461
6462 * cedet/ede/project-am.el (project-run-target): New method.
6463 (project-run-target): New method.
6464
6465 * cedet/ede.el (ede-target): Add run target menu item.
6466 (ede-project, ede-minor-keymap): Add ede-run-target binding.
6467 (ede-run-target): New function.
6468 (ede-target::project-run-target): New method.
6469
6470 * cedet/ede/proj.el (project-run-target): New method.
6471
6472 * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
6473 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
6474 Add :rules.
6475 (ede-proj-target-makefile-shared-object): Only libtool compilers
6476 now available. Add linkers for libtool.
6477 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
6478 (ede-proj-makefile-target-name): Always use .la extension.
6479
6480 * cedet/ede/proj-prog.el (project-run-target): New method.
6481
6482 * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
6483 (ede-g++-linker): Change Change link lines.
6484
6485 * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
6486 When searching for old variables, go to the end of the buffer and
6487 search backward from there.
6488 (ede-proj-makefile-automake-insert-subdirs)
6489 (ede-proj-makefile-automake-insert-extradist): New methods.
6490 (ede-proj-makefile-create): Use them.
6491
6492 * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
6493 Force FILE to expand to the current target. Use file-exists-p to
6494 check that it exists.
6495
6496 * cedet/ede/linux.el (ede-linux-version): Don't call "head".
6497 (ede-linux-load): Wrap dir in file-name-as-directory.
6498 Set :version slot.
6499
6500 * cedet/ede/files.el (ede-get-locator-object): When enabling
6501 locate, do so on "top".
6502
6503 * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
6504 file-name-as-directory during compare.
6505 (ede-emacs-version): Return Emacs/XEmacs differentiator.
6506 Get version number from different places. Don't call egrep.
6507 (ede-emacs-load): Set :version slot. Call file-name-as-directory
6508 to set the directory.
6509
6510 * cedet/ede/shell.el: New file.
6511
6512 * cedet/inversion.el (inversion-decoders): Allow for stray . in
6513 alpha/beta variants.
6514
6515 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6516
6517 * international/mule-cmds.el (select-safe-coding-system): If the file
6518 has a coding cookie, use it regardless of any other setting (bug#4712).
6519
6520 2009-10-17 Glenn Morris <rgm@gnu.org>
6521
6522 * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
6523 All errors should have messages.
6524
6525 * foldout.el (foldout-mouse-swallow-events):
6526 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6527
6528 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6529 (dired-keep-marker-copy, dired-keep-marker-hardlink)
6530 (dired-keep-marker-symlink, dired-dwim-target)
6531 (dired-copy-preserve-time): Do not autoload these defcustoms.
6532
6533 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6534 messages from messing up the file coding. (Bug#4623)
6535
6536 2009-10-17 Jari Aalto <jari.aalto@cante.net>
6537
6538 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6539 if no match is found for the current dictionary. (Bug#4578)
6540
6541 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6542 optional, since that is how it is documented, and this is often called
6543 with a nil argument. (Bug#4577)
6544 (flyspell-external-point-words, flyspell-auto-correct-word)
6545 (flyspell-correct-word-before-point, flyspell-word-search-forward)
6546 (flyspell-word-search-backward): Remove nil argument in calls to
6547 flyspell-get-word, since it is not needed now.
6548
6549 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
6550
6551 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
6552
6553 2009-10-16 Glenn Morris <rgm@gnu.org>
6554
6555 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6556
6557 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6558
6559 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6560 (ange-ftp-file-size): New function.
6561 (ange-ftp-file-attributes): Use it.
6562
6563 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
6564
6565 * net/tramp-smb.el (tramp-smb-version): New defvar.
6566 (tramp-smb-maybe-open-connection): Use it, in order to avoid
6567 repeated checks.
6568
6569 2009-10-16 Glenn Morris <rgm@gnu.org>
6570
6571 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6572 Maybe copy some custom properties from old to new name. (Bug#4706)
6573
6574 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
6575
6576 * subr.el (error, sit-for, start-process-shell-command)
6577 (start-file-process-shell-command): Set the calling convention
6578 after the function definition.
6579
6580 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
6581
6582 * subr.el (error, sit-for, start-process-shell-command)
6583 (start-file-process-shell-command): Use the new
6584 set-advertised-calling-convention feature.
6585
6586 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
6587
6588 * international/ucs-normalize.el (ucs-normalize-version):
6589 Change to 1.2.
6590 (check-range): Adjust for Unicode 5.2.
6591
6592 2009-10-15 Juri Linkov <juri@jurta.org>
6593
6594 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6595 to the `menu-item' format.
6596
6597 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
6598
6599 * net/tramp.el (tramp-replace-environment-variables): Do not fail
6600 if the environment variable does not exist.
6601
6602 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6603 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6604 parameter.
6605 (tramp-smb-handle-add-name-to-file)
6606 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6607 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6608 (tramp-smb-handle-file-attributes)
6609 (tramp-smb-do-file-attributes-with-stat)
6610 (tramp-smb-handle-file-local-copy)
6611 (tramp-smb-handle-insert-directory)
6612 (tramp-smb-handle-make-directory)
6613 (tramp-smb-handle-make-directory-internal)
6614 (tramp-smb-handle-make-symbolic-link)
6615 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6616 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6617 (tramp-smb-maybe-open-connection): Apply the changed parameters.
6618 (tramp-smb-read-file-entry): Read Disk names in compressed format.
6619 Handle long file names.
6620 (tramp-smb-get-cifs-capabilities): Check, whether the connection
6621 process is running.
6622 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6623 Read share names with "-g" option.
6624
6625 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
6626
6627 * net/rcirc.el (rcirc-view-log-file): New command.
6628 (rcirc-track-minor-mode-map): Remove C-c ` binding.
6629 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6630 specified.
6631
6632 2009-10-15 Glenn Morris <rgm@gnu.org>
6633
6634 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6635 from the second command-line argument.
6636 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6637 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6638 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6639 w32-batch-update-autoloads.
6640 * emacs-lisp/autoload.el (autoload-make-program): New variable.
6641 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6642
6643 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6644 the headers cannot be located. Simplify, subtracting superflous
6645 save-excursions.
6646
6647 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
6648
6649 Replace completion-base-size by completion-base-position to fix bugs
6650 such as (bug#4699).
6651 * simple.el (completion-base-position): New var.
6652 (completion-base-size): Mark as obsolete.
6653 (choose-completion): Make it work for mouse events as well.
6654 Pass the new base-position to choose-completion-string.
6655 (choose-completion-guess-base-position): New function, extracted from
6656 choose-completion-delete-max-match.
6657 (choose-completion-delete-max-match): Use it. Make obsolete.
6658 (choose-completion-string): Use the new base-position info.
6659 (completion-root-regexp): Delete.
6660 (completion-setup-function): Preserve completion-base-position.
6661 Eliminate obsolete base-size manipulation.
6662 * minibuffer.el (display-completion-list): Don't mess with base-size.
6663 (minibuffer-completion-help): Set completion-base-position instead.
6664 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6665 choose-completion.
6666 * textmodes/bibtex.el (bibtex-complete):
6667 * emacs-lisp/crm.el (crm--choose-completion-string):
6668 Adjust to new calling convention.
6669 * complete.el (partial-completion-mode): Use minibufferp to avoid
6670 bumping into incompatible change to choose-completion-string-functions.
6671 * ido.el (ido-choose-completion-string): Make its calling convention
6672 more permissive.
6673 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6674 base-size manipulation.
6675 (comint-dynamic-list-input-ring): Use dotimes and push.
6676 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6677 fundamental-mode. Use `or'.
6678
6679 2009-10-14 Juri Linkov <juri@jurta.org>
6680
6681 * misearch.el (multi-isearch-next-buffer-from-list)
6682 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
6683
6684 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6685
6686 * Makefile.in (compile-onefile): Load `bytecomp' rather than
6687 `bytecomp.el'.
6688
6689 * minibuffer.el (completion-pcm--merge-completions): Make sure the
6690 string we return is all made up of text from the completions rather
6691 than part from the completions and part from the input (bug#4219).
6692
6693 * ido.el (ido-everywhere): Use define-minor-mode.
6694
6695 * buff-menu.el (list-buffers, ctl-x-map):
6696 Mark the entry points with ;;;###autoload cookies.
6697
6698 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
6699
6700 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6701 correctly in the detached head case.
6702 (vc-git-print-log): Remove unused binding.
6703
6704 * vc.el (vc-responsible-backend): When a directory is passed for
6705 for registration create a VC repository if no backend is
6706 responsible for the directory argument.
6707 (vc-deduce-fileset): Tell vc-responsible-backend to register.
6708
6709 * vc.el: Move comments about RCS and SCCS ...
6710 * vc-rcs.el:
6711 * vc-sccs.el: ... here, respectively.
6712
6713 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6714
6715 * minibuffer.el (completion--file-name-table): Return nil if there's
6716 no file completion, even if substitute-in-file-name changed
6717 the string (bug#4708).
6718
6719 2009-10-13 Juri Linkov <juri@jurta.org>
6720
6721 * files-x.el (read-file-local-variable-value): Don't filter out
6722 minor modes from mode name completion (bug#4664).
6723
6724 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
6725
6726 * international/mule-cmds.el (ucs-names): Remove exclusion of
6727 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
6728
6729 2009-10-13 Kenichi Handa <handa@m17n.org>
6730
6731 * international/uni-name.el: Regenerated.
6732
6733 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
6734
6735 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
6736 should be automatically buffer-local, but isn't.)
6737
6738 2009-10-12 Sam Steingold <sds@gnu.org>
6739
6740 * progmodes/compile.el (compilation-next-error-function): Fix the
6741 timestamps if the buffer has been visited before.
6742 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
6743 non-anchored patterns, like the perl one (bug#3928).
6744
6745 2009-10-12 Glenn Morris <rgm@gnu.org>
6746
6747 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
6748 Let-bind `size'.
6749
6750 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
6751
6752 * proced.el (proced-unload-function): New function.
6753
6754 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
6755 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
6756 Doc fix.
6757
6758 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
6759
6760 2009-10-11 Juri Linkov <juri@jurta.org>
6761
6762 * files-x.el (read-file-local-variable-value):
6763 Provide default value only for bound variables (bug#4664).
6764
6765 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
6766
6767 * net/tramp.el (tramp-local-host-p): Function shall return nil for
6768 connection methods like smb.
6769
6770 * net/tramp-cache.el (tramp-flush-connection-property): The hash
6771 can be empty.
6772
6773 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6774 (tramp-smb-file-name-handler-alist): Add handlers for
6775 `add-name-to-file', `make-symbolic-link'.
6776 (tramp-smb-handle-add-name-to-file)
6777 (tramp-smb-do-file-attributes-with-stat)
6778 (tramp-smb-handle-make-symbolic-link)
6779 (tramp-smb-get-cifs-capabilities): New defuns.
6780 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6781 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6782 (tramp-smb-handle-file-local-copy)
6783 (tramp-smb-handle-make-directory-internal)
6784 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
6785 The file name syntax depends on cifs capabilities.
6786 (tramp-smb-handle-file-attributes):
6787 Call `tramp-smb-do-file-attributes-with-stat' if possible.
6788 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
6789 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
6790
6791 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
6792
6793 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
6794 (eieio-defclass): Apply deftype handler and setf-method properties
6795 directly.
6796 (eieio-add-new-slot): Avoid union function from cl library.
6797 (eieio--typep): New function.
6798 (eieio-perform-slot-validation): Use it.
6799
6800 2009-10-10 Karl Fogel <kfogel@red-bean.com>
6801
6802 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6803 Update documentation to refer to the variables documented in r1.135.
6804 (Bug#4188)
6805
6806 2009-10-10 Karl Fogel <kfogel@red-bean.com>
6807
6808 * bookmark.el (Info-suffix-list): Remove this unused variable.
6809 (bookmark-current-point): Remove this obsolete variable.
6810 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
6811 Adjust for removal of bookmark-current-point.
6812
6813 (bookmarks-already-loaded, bookmark-current-buffer)
6814 (bookmark-yank-point): Document. (Bug#4188)
6815
6816 2009-10-10 Glenn Morris <rgm@gnu.org>
6817
6818 * frame.el (frame-height): Doc fix.
6819
6820 * calendar/calendar.el (calendar-split-width-threshold): New option.
6821 (calendar-basic-setup): Use calendar-split-width-threshold.
6822
6823 2009-10-10 Sascha Wilde <wilde@sha-bang.de>
6824
6825 * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
6826 Use .la for Automake.
6827
6828 2009-10-09 Chong Yidong <cyd@stupidchicken.com>
6829
6830 * cedet/ede/pconf.el (ede-proj-configure-synchronize):
6831 Use "autoreconf -i". Suggested by Andreas Schwab.
6832
6833 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
6834
6835 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
6836 Ideographic Supplement" range (U+1F200..U+1F2FF).
6837
6838 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6839
6840 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
6841 since the list will have been rebuilt anyway. (Bug#4349)
6842
6843 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6844
6845 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
6846 (bookmark-bmenu-execute-deletions): Don't save here, as
6847 bookmark-delete will now do so if necessary.
6848 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
6849 (Bug#4348)
6850
6851 2009-10-09 Glenn Morris <rgm@gnu.org>
6852
6853 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
6854
6855 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6856
6857 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
6858 (bookmark-jump-other-window): Just invoke bookmark-jump with new
6859 argument now, so the two function's behaviors will match. (Bug#3645)
6860
6861 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
6862
6863 * cedet/ede/proj.el (project-make-dist, project-compile-project):
6864 Fix filename test.
6865 (ede-proj-dist-makefile): Use expand-file-name instead of concat
6866 to expand file names.
6867
6868 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
6869
6870 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
6871 (tramp-file-name-real-host, tramp-file-name-port):
6872 Apply `save-match-data'.
6873
6874 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
6875 case both directories are remote.
6876 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
6877 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
6878
6879 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
6880
6881 * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
6882 (ede-proj-target-makefile-objectcode): Use it.
6883
6884 * cedet/ede/source.el (ede-want-any-source-files-p)
6885 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
6886 Return search result. This error was introduced while merging.
6887
6888 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
6889
6890 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
6891
6892 2009-10-07 Glenn Morris <rgm@gnu.org>
6893
6894 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
6895 of concat.
6896
6897 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
6898
6899 * files-x.el (read-file-local-variable): Include some
6900 non-user-variables in the completion table (bug#4664).
6901
6902 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
6903
6904 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
6905 message.
6906
6907 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6908 (tramp-smb-file-name-handler-alist): Add handler for
6909 `copy-directory', `expand-file-name', `set-file-modes'.
6910 (tramp-smb-handle-copy-directory)
6911 (tramp-smb-handle-expand-file-name)
6912 (tramp-smb-handle-set-file-modes): New defuns.
6913 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
6914 (tramp-smb-handle-file-attributes): Simplify check for retrieving
6915 entry.
6916 (tramp-smb-handle-insert-directory): Don't flush the cache.
6917 (tramp-smb-maybe-open-connection): Check for samba client and
6918 server versions.
6919
6920 2009-10-07 Eli Zaretskii <eliz@gnu.org>
6921
6922 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
6923 to not error out of search for "^lisp=" fails.
6924
6925 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
6926
6927 * makefile.w32-in (WINS_UPDATES): New macro.
6928 (custom-deps, finder-data, autoloads): Use it.
6929
6930 2009-10-07 Glenn Morris <rgm@gnu.org>
6931
6932 * Makefile.in (autoloads): Revert previous change.
6933 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
6934 the list of preloaded files passed on the command-line, get
6935 it from src/Makefile.
6936
6937 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
6938 show the original buffer rather than a random one.
6939
6940 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
6941
6942 * help.el (describe-no-warranty): Place point in a slightly better
6943 position in the GPLv3 text.
6944
6945 2009-10-06 Sam Steingold <sds@gnu.org>
6946
6947 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
6948 the comm attribute is present before calling regexp-quote.
6949
6950 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
6951
6952 * play/animate.el (animate-string): For good effect, make sure
6953 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
6954
6955 * play/animate.el (animate-sequence, animate-birthday-present):
6956 * misc.el (butterfly): Don't set `indent-tabs-mode'.
6957
6958 2009-10-06 Glenn Morris <rgm@gnu.org>
6959
6960 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
6961
6962 * emacs-lisp/autoload.el (autoload-excludes): New variable.
6963 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
6964 (batch-update-autoloads): Process a string value of autoload-excludes,
6965 set during the build process.
6966 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
6967
6968 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
6969 inside with-parsed... macro so that `v' is defined.
6970
6971 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
6972 * progmodes/fortran.el (fortran-end-of-block)
6973 (fortran-beginning-of-block):
6974 Also push mark in the macro case.
6975
6976 * emerge.el (emerge-show-file-name):
6977 * calc/calc.el (calc-quit):
6978 * calc/calc-misc.el (calc-big-or-small):
6979 * calc/calc-graph.el (calc-graph-view):
6980 * calc/calc-ext.el (calc-reset):
6981 * calendar/calendar.el (calendar-basic-setup):
6982 Use window-full-height-p.
6983
6984 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
6985 header we don't understand, don't insert another. (Bug#4624)
6986 If changing mime charset, insert the new one in the right place.
6987
6988 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
6989
6990 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6991 (cal-tex-cursor-month): Correctly increment the end date for diary and
6992 holiday listing. (Bug#4626)
6993
6994 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
6995
6996 * help-fns.el (describe-function-1): Don't burp if the function is not
6997 a symbol.
6998
6999 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
7000
7001 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
7002 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
7003 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
7004 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
7005
7006 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
7007 (eieio-default-superclass): Reflow docstrings.
7008 (this, class-option-assoc, defclass, eieio-class-un-autoload)
7009 (eieio-unbind-method-implementations, defmethod)
7010 (eieio-validate-slot-value, eieio-validate-class-slot-value)
7011 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
7012 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
7013 (eieio-slot-originating-class-p, eieio-slot-name-index)
7014 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
7015 (constructor, initialize-instance, no-next-method, object-print)
7016 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
7017 Fix typos in docstrings.
7018 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
7019 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
7020 (next-method-p): Doc fixes.
7021 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
7022 Fix typos in error messages.
7023 (eieio-defmethod): Fix typo in description of generic method.
7024
7025 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
7026 (eieio-persistent-save-interactive, slot-missing):
7027 Fix typos in docstrings.
7028 (eieio-instance-inheritor-slot-boundp): Doc fix.
7029
7030 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
7031 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
7032
7033 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
7034 (eieio-custom-object-apply-reset):
7035 Fix typos in docstrings and error messages.
7036
7037 * emacs-lisp/eieio-datadebug.el (data-debug-show):
7038 Fix typo in docstring.
7039
7040 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
7041 (eieio-browse-tree): Doc fix.
7042 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
7043 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
7044 Fix typos in docstrings.
7045
7046 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
7047 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
7048 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
7049 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
7050 Reflow docstrings.
7051
7052 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
7053
7054 * vc-hg.el (log-view-vc-backend): Declare for compiler.
7055 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
7056 Set log-view-vc-backend so that diff can work.
7057
7058 * log-view.el (log-view-diff): Use vc-diff-internal instead of
7059 vc-version-diff.
7060 (vc-diff-internal): Autoload this instead of vc-version-diff.
7061
7062 2009-10-05 Eli Zaretskii <eliz@gnu.org>
7063
7064 * simple.el (eval-expression): Doc fix.
7065
7066 * progmodes/cwarn.el (cwarn-mode): Doc fix.
7067
7068 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
7069
7070 * files.el (directory-files-no-dot-files-regexp): New defconst.
7071 (delete-directory): Use it.
7072 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
7073
7074 * net/tramp.el (tramp-verbose): Fix docstring.
7075 (tramp-methods): Add recursive option to `tramp-copy-args'.
7076 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
7077 "scp1_old", "scp2_old", "rsync", "rsyncc".
7078 (tramp-default-method): Check also for `auth-source-user-or-password'.
7079 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
7080 Add handler for `copy-directory'.
7081 (tramp-handle-copy-directory): New defun.
7082 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
7083 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
7084 Optimize sent command.
7085
7086 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7087
7088 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
7089 window if necessary.
7090
7091 * calendar/calendar.el (calendar-basic-setup): Don't call
7092 switch-to-buffer in a dedicated window.
7093
7094 2009-10-05 Karl Fogel <kfogel@red-bean.com>
7095
7096 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
7097 don't do anything related to relocating, just return nil.
7098 (bookmark-error-no-filename): New error.
7099 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
7100 bookmark has no file. Don't even attempt to handle things that
7101 are not files; the whole point of custom handlers is to keep that
7102 knowledge elsewhere anyway. Tighten some comments.
7103 (bookmark-file-or-variation-thereof): Remove now-unused function.
7104 (bookmark-location): Doc string fix.
7105 (Bug#4250)
7106
7107 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7108
7109 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
7110 don't use a file dialog, because they usually don't know how to read
7111 a directory target from the user. (Bug#4230)
7112 Also, make sure the prompt can display directories as well as files.
7113
7114 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7115
7116 * bookmark.el (bookmark-set, bookmark-buffer-name):
7117 Improve doc strings. (Bug#1193)
7118
7119 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7120
7121 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
7122 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
7123 (bookmark-get-annotation, bookmark-set-annotation)
7124 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
7125 (bookmark-set-position, bookmark-get-front-context-string)
7126 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
7127 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
7128 (bookmark-jump-other-window, bookmark-handle-bookmark)
7129 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
7130 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
7131 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
7132 Improve doc strings to say whether bookmark can be a string or
7133 a record or both, and make other consistency and clarity fixes.
7134 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
7135 (bookmark-default-annotation-text, bookmark-yank-word)
7136 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
7137 (bookmark-import-new-list, bookmark-maybe-rename)
7138 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7139 (bookmark-bmenu-bookmark): Give these doc strings.
7140 (bookmark-bmenu-check-position): Give this a doc string, but also
7141 add a FIXME comment about how the function may be pointless.
7142 (bookmark-default-handler): Rework doc string and change a
7143 parameter name, to clarify that this takes a bookmark record
7144 not a bookmark name.
7145 (bookmark-set): Change a parameter name to indicate its meaning,
7146 and improve the doc string a bit.
7147 (Bug#4188)
7148
7149 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7150
7151 * bookmark.el (bookmark-alist): Document the new `handler' element
7152 in the param alist.
7153 (bookmark-make-record-function): Adjust documentation for above.
7154 (Bug#4193)
7155
7156 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7157
7158 * info.el (Info-bookmark-make-record): Document this function.
7159 (Info-bookmark-jump): Document with a doc string, not just a comment.
7160 (Bug#4203)
7161
7162 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
7163
7164 * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
7165 (semantic-new-buffer-fcn): Call parser setup functions here.
7166 (semantic-mode): Don't call parser setup functions here, it's done
7167 in semantic-new-buffer-fcn now.
7168 (semantic-mode): Parse all existing buffers when enabled.
7169
7170 * cedet/srecode/compile.el (srecode-compile-file):
7171 Call semantic-new-buffer-fcn if the buffer has not been parsed.
7172
7173 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
7174
7175 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
7176
7177 * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
7178 (proj-comp-insert-variable-once): New macro, renamed from
7179 ede-pmake-insert-variable-once in ede/pmake.edl.
7180 (ede-proj-makefile-insert-variables): Use it.
7181
7182 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
7183
7184 * files.el (copy-directory): New defun.
7185
7186 * dired-aux.el (dired-copy-file-recursive): Use it.
7187
7188 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
7189
7190 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
7191 (makefile-end-of-command):
7192 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
7193 (semantic-end-of-context): Fix previous change. Doc fixes.
7194
7195 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
7196
7197 * files-x.el (modify-dir-local-variable)
7198 (copy-dir-locals-to-file-locals-prop-line):
7199 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
7200 (makefile-end-of-command):
7201 * cedet/semantic/lex.el (semantic-lex-token):
7202 * cedet/semantic/analyze/fcn.el
7203 (semantic-analyze-dereference-metatype-1):
7204 * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
7205 (semantic-lex-cpp-undef):
7206 * cedet/semantic/wisent/wisent.el (wisent-skip-block):
7207 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
7208 (semantic-end-of-context): Fix typos in docstrings.
7209
7210 * recentf.el (recentf-unload-function): New function.
7211
7212 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
7213
7214 * cedet/ede.el (ede-project-placeholder-cache-file):
7215 * cedet/semantic/db-file.el (semanticdb-default-save-directory):
7216 * cedet/srecode/map.el (srecode-map-save-file):
7217 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
7218
7219 2009-10-04 Glenn Morris <rgm@gnu.org>
7220
7221 * window.el (window-full-height-p): Add doc string.
7222
7223 2009-10-04 Martin Rudalics <rudalics@gmx.at>
7224
7225 * window.el (window-full-height-p): New function. (Bug#4543)
7226
7227 2009-10-03 Chong Yidong <cyd@stupidchicken.com>
7228
7229 * cedet/srecode/insert.el: Require srecode/args.
7230
7231 * cedet/srecode/args.el: Require srecode/dictionary instead of
7232 srecode/insert.
7233
7234 * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
7235
7236 * files.el (auto-mode-alist): Add .srt and Project.ede.
7237
7238 * cedet/semantic.el (semantic-mode):
7239 Handle srecode-template-mode-hook as well.
7240 (semantic-mode): Use js-mode-hook for Javascript hook.
7241
7242 * cedet/srecode/template.el: Remove hook variable.
7243
7244 * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
7245
7246 * cedet/ede.el (ede-target-forms-menu): Don't enable if no
7247 projects exist.
7248 (ede-project-placeholder-cache-file): Default to a file in
7249 user-emacs-directory.
7250
7251 * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
7252 templates in data-directory.
7253 (srecode-map-save-file): Default to a file in user-emacs-directory.
7254
7255 * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
7256 directory.
7257
7258 2009-09-30 Eric Ludlam <zappo@gnu.org>
7259
7260 * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
7261 Doc fix.
7262
7263 * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
7264 Only insert each variable once.
7265
7266 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
7267 (ede-pmake-insert-variable-shared): Use it.
7268
7269 * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
7270 for lexical table iff table is nil.
7271
7272 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
7273
7274 * vc.el: Remove commented out code.
7275 (vc-derived-from-dir-mode): Remove, unused.
7276 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
7277
7278 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
7279
7280 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
7281 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
7282 there could be recursive loading when `default-directory' is a
7283 remote file name. (Bug#4614)
7284
7285 2009-10-03 Glenn Morris <rgm@gnu.org>
7286
7287 * calendar/calendar.el (calendar-basic-setup): Handle the case where
7288 the frame is wide.
7289 (calendar-generate-window): Test for shrinkability rather than width.
7290
7291 * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
7292 declaration, currently false.
7293
7294 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
7295 reusing existing buffers, in case we happen to visit two files with the
7296 same basename. (Bug#4593)
7297
7298 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7299
7300 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
7301 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
7302 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
7303 subdirs of cedet as well.
7304 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
7305
7306 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
7307
7308 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
7309 Obey advertised-signature-table.
7310
7311 * help-fns.el (help-function-arglist): Don't check
7312 advertised-signature-table.
7313 (describe-function-1): Do it here instead so it also applies to subrs.
7314
7315 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
7316
7317 * simple.el (start-file-process): Say in the doc-string, that file
7318 handlers might not support pty association, if PROGRAM is nil.
7319
7320 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
7321 HOST and USER are strings. They are nil, when there are
7322 incomplete entries in ~/.netrc, for example.
7323 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
7324 root directory ("device busy" error otherwise).
7325
7326 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
7327 Flush file properties of created directory.
7328
7329 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7330
7331 * makefile.w32-in (WINS_BASIC): Remove cedet.
7332 (WINS_CEDET): Add cedet.
7333 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
7334
7335 2009-10-02 Kevin Ryde <user42@zip.com.au>
7336
7337 * net/browse-url.el (browse-url): Pass any symbol in
7338 browse-url-browser-function to `apply', since if you've mistakenly put
7339 an unbound symbol then the error is clearer. (Bug#4531)
7340
7341 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
7342
7343 * allout.el (allout-init, allout-back-to-current-heading)
7344 (allout-beginning-of-current-entry, allout-ascend-to-depth)
7345 (allout-ascend, allout-up-current-level, allout-end-of-level)
7346 (allout-previous-visible-heading, allout-forward-current-level)
7347 (allout-backward-current-level, allout-show-children):
7348 * apropos.el (apropos-describe-plist):
7349 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
7350 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
7351 * completion.el (add-completion, add-permanent-completion):
7352 * descr-text.el (describe-text-category, describe-char):
7353 * desktop.el (desktop-lazy-abort):
7354 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
7355 * dired.el (dired-build-subdir-alist):
7356 * ediff.el (ediff-version):
7357 * elide-head.el (elide-head, elide-head-show):
7358 * emerge.el (emerge-version):
7359 * env.el (getenv):
7360 * face-remap.el (variable-pitch-mode):
7361 * faces.el (describe-face):
7362 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
7363 (dired-at-point):
7364 * files.el (find-file-existing, auto-save-mode):
7365 * font-lock.el (font-lock-fontify-buffer):
7366 * help-fns.el (describe-function, describe-variable)
7367 (describe-syntax, describe-categories):
7368 * help.el (view-lossage, describe-bindings, describe-key)
7369 (describe-mode):
7370 * hexl.el (hexl-current-address):
7371 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
7372 * info.el (Info-goto-emacs-key-command-node):
7373 * log-edit.el (log-edit-insert-cvs-template)
7374 (log-edit-insert-cvs-rcstemplate):
7375 * menu-bar.el (menu-bar-mode):
7376 * mouse.el (mouse-appearance-menu):
7377 * newcomment.el (comment-indent-new-line):
7378 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
7379 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
7380 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
7381 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
7382 * recentf.el (recentf-mode):
7383 * savehist.el (savehist-mode, savehist-save):
7384 * shadowfile.el (shadow-copy-files):
7385 * simple.el (kill-ring-save, next-line, previous-line)
7386 (normal-erase-is-backspace-mode):
7387 * strokes.el (strokes-update-window-configuration)
7388 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
7389 (strokes-xpm-for-stroke):
7390 * time.el (emacs-uptime, emacs-init-time):
7391 * tutorial.el (tutorial--describe-nonstandard-key)
7392 (tutorial--detailed-help):
7393 * type-break.el (type-break-mode)
7394 (type-break-mode-line-message-mode, type-break-query-mode)
7395 (type-break-guesstimate-keystroke-threshold):
7396 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
7397 * version.el (emacs-version):
7398 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
7399 * winner.el (winner-mode):
7400 * calendar/timeclock.el (timeclock-in, timeclock-out)
7401 (timeclock-status-string, timeclock-change)
7402 (timeclock-workday-remaining-string)
7403 (timeclock-workday-elapsed-string)
7404 (timeclock-when-to-leave-string):
7405 * calendar/todo-mode.el (todo-add-category):
7406 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
7407 * emacs-lisp/autoload.el (update-file-autoloads):
7408 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
7409 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
7410 (checkdoc-message-text, checkdoc-defun):
7411 * emacs-lisp/debug.el (debugger-list-functions):
7412 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7413 * emacs-lisp/eieio-opt.el (eieio-describe-class)
7414 (eieio-describe-generic):
7415 * emacs-lisp/lisp-mnt.el (lm-synopsis):
7416 * emacs-lisp/shadow.el (list-load-path-shadows):
7417 * emulation/cua-base.el (cua-mode):
7418 * emulation/edt.el (edt-set-scroll-margins):
7419 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
7420 (tpu-toggle-regexp, tpu-toggle-search-direction)
7421 (tpu-toggle-rectangle, tpu-toggle-control-keys):
7422 * emulation/tpu-extras.el (tpu-set-scroll-margins):
7423 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7424 (viper-set-parsing-style-toggling-macro)
7425 (viper-set-emacs-state-searchstyle-macros):
7426 * emulation/viper.el (viper-set-hooks):
7427 * eshell/esh-mode.el (eshell-truncate-buffer):
7428 * international/mule-cmds.el (prefer-coding-system)
7429 (describe-input-method, describe-language-environment):
7430 * international/mule-diag.el (list-character-sets)
7431 (describe-character-set, describe-coding-system)
7432 (describe-fontset, list-fontsets, list-input-methods):
7433 * mail/sendmail.el (mail-signature):
7434 * net/ange-ftp.el (ange-ftp-copy-file):
7435 * net/browse-url.el (browse-url):
7436 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
7437 * net/quickurl.el (quickurl-add-url):
7438 * net/rcirc.el (names, topic):
7439 * net/xesam.el (xesam-mode):
7440 * play/5x5.el (5x5-new-game):
7441 * play/yow.el (apropos-zippy):
7442 * progmodes/ada-mode.el (ada-mode-version):
7443 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
7444 (f90-end-of-block)
7445 (f90-beginning-of-block):
7446 * progmodes/fortran.el (fortran-end-of-block)
7447 (fortran-beginning-of-block):
7448 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
7449 * progmodes/python.el (python-describe-symbol, python-shell):
7450 * term/ns-win.el (ns-print-buffer):
7451 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
7452 * textmodes/flyspell.el (flyspell-mode-on):
7453 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
7454 (pages-directory-for-addresses):
7455 * textmodes/table.el (table-recognize-cell)
7456 (table-query-dimension, table-generate-source)
7457 (table-insert-sequence, table--warn-incompatibility):
7458 * textmodes/tex-mode.el (tex-validate-buffer):
7459 * textmodes/texinfmt.el (texinfmt-version)
7460 (texinfo-format-buffer):
7461 Use `called-interactively-p' instead of `interactive-p'.
7462
7463 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
7464
7465 * image-mode.el (image-toggle-display):
7466 * emacs-lisp/elp.el (elp-instrument-function):
7467 * emacs-lisp/advice.el (ad-make-advised-definition):
7468 * emacs-lisp/easy-mmode.el (define-minor-mode):
7469 * net/browse-url.el (browse-url-maybe-new-window):
7470 * progmodes/sh-script.el (sh-learn-buffer-indent):
7471 Pass new argument 'any to `called-interactively-p'.
7472
7473 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
7474
7475 * international/uni-bidi.el:
7476 * international/uni-category.el:
7477 * international/uni-combining.el:
7478 * international/uni-comment.el:
7479 * international/uni-decimal.el:
7480 * international/uni-decomposition.el:
7481 * international/uni-digit.el:
7482 * international/uni-lowercase.el:
7483 * international/uni-mirrored.el:
7484 * international/uni-name.el:
7485 * international/uni-numeric.el:
7486 * international/uni-old-name.el:
7487 * international/uni-titlecase.el:
7488 * international/uni-uppercase.el:
7489 Regenerate from Unicode 5.2.0 data.
7490
7491 2009-10-01 Glenn Morris <rgm@gnu.org>
7492
7493 * Makefile.in (ELCFILES): Regenerate.
7494
7495 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7496
7497 * subr.el (interactive-p): Mark obsolete.
7498 (called-interactively-p): Make the optional-ness of `kind' obsolete.
7499 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7500 advertised-signature-table for subroutines as well.
7501
7502 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7503 (set-advertised-calling-convention): New function.
7504 (make-obsolete, define-obsolete-function-alias)
7505 (make-obsolete-variable, define-obsolete-variable-alias):
7506 Make the optional-ness of `when' obsolete.
7507 (define-obsolete-face-alias): Make `when' non-optional.
7508 * help-fns.el (help-function-arglist):
7509 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
7510 Use advertised-signature-table.
7511
7512 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
7513
7514 * files.el (delete-directory): New defun. The original function
7515 in fileio.c has been renamed to `delete-directory-internal'.
7516
7517 * dired.el (dired-delete-file): Call `delete-directory' with
7518 RECURSIVE parameter.
7519
7520 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
7521 parameter RECURSIVE. Implementation is missing.
7522
7523 * net/tramp.el (tramp-handle-make-directory): Flush upper
7524 directory's file properties.
7525 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
7526 (tramp-handle-dired-recursive-delete-directory): Flush directory
7527 properties after the remove command only.
7528
7529 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7530 Handle optional parameter RECURSIVE.
7531
7532 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
7533 Handle optional parameter RECURSIVE.
7534
7535 * net/tramp-smb.el (tramp-smb-errors): Add error message for
7536 connection timeout.
7537 (tramp-smb-handle-delete-directory): Handle optional parameter
7538 RECURSIVE.
7539
7540 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7541
7542 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
7543 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
7544 (byte-compile-defmacro): Use backquotes.
7545
7546 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
7547
7548 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
7549 has no associated file.
7550 (vc-resynch-buffer): Use vc-dir-buffers.
7551
7552 2009-10-01 Glenn Morris <rgm@gnu.org>
7553
7554 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7555 (chart-file-count):
7556 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7557 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7558 * emacs-lisp/eieio-opt.el (eieio-describe-class):
7559 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7560 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7561 (eieio-copy-parents-into-subclass, make-instance, class-children)
7562 (eieio-generic-form):
7563 * cedet/cedet-files.el (cedet-directory-name-to-file-name):
7564 * cedet/cedet-idutils.el (cedet-idutils-search)
7565 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
7566 (cedet-idutils-version-check):
7567 * cedet/cedet.el (cedet-version):
7568 * cedet/data-debug.el (data-debug-insert-overlay-button)
7569 (data-debug-insert-overlay-list-button)
7570 (data-debug-insert-buffer-button)
7571 (data-debug-insert-buffer-list-button)
7572 (data-debug-insert-process-button, data-debug-insert-ring-button)
7573 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
7574 (data-debug-insert-stuff-vector-button)
7575 (data-debug-insert-symbol-button, data-debug-insert-string)
7576 (data-debug-insert-number, data-debug-insert-lambda-expression)
7577 (data-debug-insert-nil, data-debug-insert-simple-thing)
7578 (data-debug-insert-custom, data-debug-edebug-expr):
7579 * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
7580 (global-ede-mode-map, ede-new, ede-debug-target)
7581 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
7582 * cedet/semantic.el (semantic-minimum-working-buffer-size)
7583 (semantic-fetch-tags, semantic-submode-list)
7584 (semantic-default-submodes):
7585 * cedet/ede/source.el (ede-source-match):
7586 * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
7587 (project-am-package-info):
7588 * cedet/ede/proj.el (ede-proj-target, project-new-target):
7589 * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
7590 * cedet/ede/proj-comp.el (ede-current-build-list):
7591 * cedet/ede/makefile-edit.el (makefile-move-to-macro):
7592 * cedet/ede/files.el (ede-toplevel-project-or-nil):
7593 * cedet/ede/cpp-root.el (initialize-instance):
7594 * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
7595 (autoconf-parameter-strip, autoconf-insert-new-macro):
7596 * cedet/semantic/wisent.el (wisent-lex-eoi):
7597 * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
7598 (semantic-show-parser-state-mode):
7599 * cedet/semantic/texi.el (semantic-texi-environment-regexp):
7600 * cedet/semantic/tag.el (semantic-tag-new-variable)
7601 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
7602 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
7603 (semantic--tag-deep-copy-tag-list)
7604 (semantic-tag-components-with-overlays-default):
7605 * cedet/semantic/symref.el (semantic-symref-find-text):
7606 * cedet/semantic/senator.el (senator-yank-tag)
7607 (senator-transpose-tags-up):
7608 * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
7609 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
7610 * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
7611 * cedet/semantic/lex.el (semantic-lex-comment-regex)
7612 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
7613 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
7614 * cedet/semantic/lex-spp.el
7615 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
7616 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
7617 * cedet/semantic/idle.el
7618 (semantic-idle-summary-current-symbol-info-brutish)
7619 (semantic-idle-summary-current-symbol-info-default):
7620 * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
7621 (semantic--grammar-macro-compl-dict):
7622 * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
7623 * cedet/semantic/format.el (semantic-format-tag-custom-list)
7624 (semantic-format-tag-canonical-name-default):
7625 * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
7626 (semantic-find-tags-for-completion)
7627 (semantic-find-tags-by-scope-protection-default)
7628 (semantic-deep-find-tags-for-completion):
7629 * cedet/semantic/edit.el
7630 (semantic-edits-incremental-reparse-failed-hook)
7631 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
7632 (semantic-edits-splice-remove, semantic-edits-splice-replace):
7633 * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
7634 * cedet/semantic/dep.el (semantic-dependency-include-path):
7635 * cedet/semantic/db.el (semanticdb-default-find-index-class)
7636 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
7637 (semanticdb-project-roots):
7638 * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
7639 (semanticdb-find-adebug-insert-scanned-tag-cons)
7640 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
7641 (semanticdb-brute-deep-find-tags-for-completion):
7642 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
7643 * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
7644 (semantic-end-of-context-default)
7645 (semantic-ctxt-current-function-default)
7646 (semantic-ctxt-scoped-types-default):
7647 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
7648 (semantic-complete-inline-tag-engine)
7649 (semantic-complete-inline-custom-type)
7650 (semantic-complete-read-tag-analyzer):
7651 * cedet/semantic/chart.el (semantic-chart-tags-by-class)
7652 (semantic-chart-database-size):
7653 * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
7654 (semantic-analyze-current-context):
7655 * cedet/semantic/symref/list.el (semantic-symref)
7656 (semantic-symref-hide-buffer, semantic-symref-symbol):
7657 * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
7658 * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
7659 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
7660 * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
7661 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
7662 (semantic-c-dereference-template):
7663 * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
7664 (semantic--analyze-refs-full-lookup-with-parents)
7665 (semantic--analyze-refs-full-lookup-simple):
7666 * cedet/semantic/analyze/complete.el
7667 (semantic-analyze-possible-completions):
7668 * cedet/srecode/table.el (srecode-mode-table-new):
7669 * cedet/srecode/srt.el (srecode-read-variable-name):
7670 * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
7671 * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
7672 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
7673 * cedet/srecode/map.el (srecode-current-map):
7674 * cedet/srecode/insert.el (srecode-insert)
7675 (srecode-insert-variable-secondname-handler, srecode-insert-method)
7676 (srecode-template-inserter-point-override)
7677 (srecode-insert-include-lookup):
7678 * cedet/srecode/getset.el (srecode-auto-choose-class):
7679 * cedet/srecode/extract.el (srecode-inserter-extract):
7680 * cedet/srecode/document.el
7681 (srecode-document-autocomment-return-last-alist)
7682 (srecode-document-autocomment-param-type-alist)
7683 (srecode-document-insert-function-comment)
7684 (srecode-document-insert-variable-one-line-comment)
7685 (srecode-document-function-name-comment):
7686 * cedet/srecode/dictionary.el (srecode-create-dictionary)
7687 (srecode-compound-toString):
7688 * cedet/srecode/compile.el (srecode-flush-active-templates):
7689 * cedet/srecode/args.el (srecode-semantic-handle-:blank):
7690 Doc/message fixes.
7691
7692 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7693 match-data. (Bug#4555).
7694
7695 * cedet/semantic/bovine/gcc.el
7696 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
7697 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
7698
7699 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7700 rather than parsing it as a regexp. This relaxes the layout
7701 requirements and makes errors easier to detect.
7702 (check-declare-verify): Check file is regular.
7703 (check-declare-directory): Doc fix.
7704 * subr.el (declare-function): Doc fix.
7705
7706 * ibuffer.el (ibuffer-format-qualifier):
7707 * isearch.el (hi-lock-regexp-okay):
7708 * calc/calc.el (math-zerop):
7709 * mail/uce.el (rmail-msgbeg, rmail-msgend):
7710 * term/w32-win.el (setup-default-fontset, set-fontset-font):
7711 Remove unused declarations.
7712
7713 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
7714
7715 * cedet/semantic/wisent/javat-wy.el
7716 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
7717
7718 2009-09-30 Juanma Barranquero <lekktu@gmail.com>
7719
7720 * cedet/srecode/expandproto.el: Fix provide statement.
7721
7722 2009-09-30 Eric Ludlam <zappo@gnu.org>
7723
7724 * emacs-lisp/eieio.el (boolean-p): Delete.
7725
7726 2009-09-30 Sascha Wilde <wilde@sha-bang.de>
7727
7728 * cedet/ede/srecode.el: Fix provide statement.
7729
7730 2009-09-30 Glenn Morris <rgm@gnu.org>
7731
7732 * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
7733 * cedet/ede/proj-aux.el (ede-aux-source):
7734 * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
7735 (ede-misc-source):
7736 * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
7737 (semantic-mrub-switch-tags): Fix doc typos.
7738
7739 * cedet/semantic/db-global.el (data-debug-new-buffer)
7740 (data-debug-insert-thing): Remove unneeded declarations (one broken).
7741 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
7742
7743 * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
7744
7745 * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
7746 use of CL function `remove-if-not'.
7747
7748 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7749
7750 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7751 filename is not a string.
7752
7753 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
7754
7755 * files.el (safe-local-eval-forms): Fix typo.
7756
7757 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
7758
7759 * vc-hooks.el (vc-dir-buffers): New var.
7760 (vc-state-refresh): New function.
7761 (vc-state): Use it.
7762 (vc-after-save): Always ask the backend to recompute the new state.
7763 Always call vc-dir if necessary, using vc-dir-buffers.
7764 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7765 Use vc-dir-buffers.
7766 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7767 (vc-dir-prepare-status-buffer, vc-dir-update)
7768 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7769 Don't call expand-file-name on default-directory.
7770
7771 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7772
7773 * speedbar.el (speedbar-item-delete):
7774 * calc/calc-prog.el (calc-kbd-if):
7775 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7776
7777 * epa.el (epa-key-list-mode-map):
7778 * hi-lock.el (hi-lock-menu): Fix typos in menus.
7779
7780 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7781 (hs-show-hook): Fix typo in docstring.
7782
7783 2009-09-29 Glenn Morris <rgm@gnu.org>
7784
7785 * cedet/semantic/symref/idutils.el:
7786 * cedet/semantic/symref/list.el: Relicense under GPLv3+.
7787
7788 * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
7789
7790 * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
7791 * cedet/semantic/tag-file.el (semanticdb-table-child-p):
7792 * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
7793 Mark declarations not understood by check-declare.
7794
7795 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7796 file-name-nondirectory call preventing location of cedet files.
7797 (check-declare-verify): Use literal search rather than re-search.
7798 Add basic defmethod and defclass, and define-overloadable-function.
7799
7800 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7801 Use tramp-compat-file-attributes rather than nonexistent
7802 tramp-compat-handle-file-attributes.
7803
7804 * Makefile.in (lisptagsfiles4): New.
7805 (AUTOGENEL): Add cedet loaddefs files.
7806 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7807 (update-elclist, compile-always, backup-compiled-files)
7808 (bootstrap-clean): Add yet another directory level.
7809 (update-elclist): Use LC_COLLATE rather than COLLATE.
7810 (ELCFILES): Update, via `make update-elclist'.
7811
7812 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7813
7814 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7815 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7816 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7817
7818 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
7819
7820 * Makefile.in (lisptagsfiles3): Define.
7821 (TAGS, TAGS-LISP): Use it.
7822 (update-elclist): Add third directory level to look for elc files.
7823 (compile-always): Likewise.
7824 (backup-compiled-files): Likewise.
7825 (bootstrap-clean): Likewise.
7826 (ELCFILES): Update.
7827
7828 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
7829
7830 * Makefile.in (ELCFILES): Add CEDET files.
7831
7832 2009-09-28 Eric Ludlam <zappo@gnu.org>
7833
7834 CEDET (development tools) package merged.
7835
7836 * cedet/*.el:
7837 * cedet/ede/*.el:
7838 * cedet/semantic/*.el:
7839 * cedet/srecode/*.el: New files.
7840
7841 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
7842
7843 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7844
7845 * net/tramp.el (top): Require tramp-imap.
7846
7847 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7848 Use `tramp-compat-handle-file-attributes'.
7849
7850 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
7851
7852 * net/tramp-imap.el: New package.
7853
7854 2009-09-28 Eric Ludlam <zappo@gnu.org>
7855
7856 * emacs-lisp/chart.el:
7857 * emacs-lisp/eieio-base.el:
7858 * emacs-lisp/eieio-comp.el:
7859 * emacs-lisp/eieio-custom.el:
7860 * emacs-lisp/eieio-datadebug.el:
7861 * emacs-lisp/eieio-opt.el:
7862 * emacs-lisp/eieio-speedbar.el:
7863 * emacs-lisp/eieio.el: New files.
7864
7865 * cedet/cedet-cscope.el:
7866 * cedet/cedet-files.el:
7867 * cedet/cedet-global.el:
7868 * cedet/cedet-idutils.el:
7869 * cedet/data-debug.el:
7870 * cedet/inversion.el:
7871 * cedet/mode-local.el:
7872 * cedet/pulse.el: New files.
7873
7874 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7875
7876 * whitespace.el (whitespace-trailing-regexp)
7877 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7878 Fix doc string.
7879
7880 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
7881
7882 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7883 menu.
7884
7885 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7886 menu-bar-ediff-menu.
7887
7888 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7889 define-overloadable-function.
7890
7891 * progmodes/autoconf.el: Provide autoconf as well, so that this
7892 file can be `require'd.
7893
7894 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7895
7896 * emacs-lisp/autoload.el (generated-autoload-feature)
7897 (generated-autoload-load-name): New vars.
7898 (autoload-rubric, autoload-generate-file-autoloads): Use them.
7899 (make-autoload): Recognize define-overloadable-function and
7900 defclass forms (for EIEIO).
7901
7902 * Makefile.in (update-subdirs): Exclude cedet directory.
7903
7904 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7905
7906 * term/ns-win.el: Don't set the region face background. (Bug#4381)
7907
7908 * faces.el: Default light-background background for region face to
7909 ns_selection_color under NS.
7910
7911 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
7912
7913 * net/imap-hash.el: New library, see NEWS.
7914
7915 * Makefile.in (ELCFILES): Add imap-hash.el.
7916
7917 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
7918
7919 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7920 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7921 * help-macro.el (make-help-screen): Avoid using an ambiguous function
7922 definition where the docstring could be taken for the return value.
7923
7924 2009-09-26 Glenn Morris <rgm@gnu.org>
7925
7926 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7927 Add option to only show images below a certain size.
7928 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7929 save-excursion calls.
7930
7931 2009-09-26 Eli Zaretskii <eliz@gnu.org>
7932
7933 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7934 subdirectories) and eieio.
7935
7936 2009-09-26 Alan Mackenzie <acm@muc.de>
7937
7938 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
7939 buggy bracketing. (Bug#4289)
7940
7941 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7942 character constants (as case labels). (Bug#4289)
7943
7944 2009-09-25 Juri Linkov <juri@jurta.org>
7945
7946 * files.el (safe-local-eval-forms): Allow time-stamp in
7947 before-save-hook (Bug#4554).
7948
7949 2009-09-25 Drew Adams <drew.adams@oracle.com>
7950
7951 * menu-bar.el (list-buffers-directory): Doc fix.
7952
7953 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
7954
7955 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7956 Try and avoid copying twice the same paragraph.
7957 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7958 Remove save-excursion.
7959 (log-edit-changelog-entry): Do it here instead.
7960
7961 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
7962
7963 * bs.el (bs--get-file-name): Use `list-buffers-directory'
7964 when available, instead of hardcoding mode names. Doc fix.
7965
7966 * menu-bar.el (list-buffers-directory): Add docstring.
7967 Make automatically buffer-local.
7968
7969 * dired.el (dired-mode):
7970 * files.el (cd-absolute):
7971 * pcvs.el (cvs-temp-buffer):
7972 * pcvs-util.el (cvs-get-buffer-create):
7973 * shell.el (shell-mode):
7974 * vc-dir.el (vc-dir-mode):
7975 Don't make `list-buffers-directory' buffer local.
7976
7977 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
7978
7979 * comint.el (comint-exec, comint-run, make-comint):
7980 Doc fixes (Bug#4542).
7981
7982 2009-09-25 Glenn Morris <rgm@gnu.org>
7983
7984 * mail/rmailmm.el (rmail-mime): New custom group.
7985 Move all defcustoms in this file into this group.
7986 (rmail-mime-media-type-handlers-alist): Revert previous change.
7987 (rmail-mime-show-images): New option.
7988 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7989 references to it, since it wasn't actually used for anything.
7990 (rmail-mime-insert-image): New function.
7991 (rmail-mime-image): Use rmail-mime-insert-image.
7992 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7993 obey the value of `rmail-mime-show-images' option. Print the size of
7994 attachments.
7995
7996 2009-09-25 David Engster <deng@randomsample.de>
7997
7998 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
7999
8000 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8001
8002 * whitespace.el: Does not highlight trailing spaces While point is
8003 at end of line. Does not highligt spaces at beginning of buffer
8004 while point is at beginning of buffer. Does not highlight spaces
8005 at end of buffer while point is at end of buffer. (Bug#4177)
8006 New version 12.0.
8007 (whitespace-display-mappings): Adjust initialization.
8008 (whitespace-point, whitespace-font-lock-refontify): New vars.
8009 (whitespace-color-on, whitespace-color-off): Adjust code.
8010 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
8011 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
8012 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
8013
8014 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
8015
8016 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
8017
8018 * textmodes/sgml-mode.el: Remove xml-mode alias.
8019
8020 * files.el (auto-mode-alist, conf-mode-maybe)
8021 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
8022
8023 2009-09-24 Alan Mackenzie <acm@muc.de>
8024
8025 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
8026 c-forward-conditionals, but it doesn't move point and doesn't set
8027 the mark.
8028 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
8029 (c-down-conditional-with-else, c-backward-conditional)
8030 (c-forward-conditional): Refactor to use c-scan-conditionals.
8031
8032 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8033
8034 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
8035 (help-default-arg-highlight): Remove.
8036 (help-highlight-arg): New function.
8037 (help-do-arg-highlight): Use it.
8038 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
8039
8040 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
8041
8042 * term.el (term-set-scroll-region, term-handle-ansi-escape):
8043 Undo last change, which didn't fix the problem and introduced others.
8044
8045 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
8046
8047 * progmodes/gdb-mi.el: Don't require speedbar.
8048 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
8049
8050 2009-09-24 Glenn Morris <rgm@gnu.org>
8051
8052 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
8053
8054 * term/ns-win.el (ns-reg-to-script): Define for compiler.
8055
8056 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
8057 there is no newline after the final mime boundary. (Bug#4539)
8058 Move markers on insertion so that any buttons inserted don't end up in
8059 the next part of a multipart message.
8060 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
8061 (rmail-mime-bulk-handler): Optionally handle images.
8062 (rmail-mime-image): New button action.
8063 (rmail-mime-image-handler): New function.
8064 (rmail-mime-mode): New mode.
8065 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
8066
8067 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
8068
8069 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
8070 than just dropping elements from it (bug#4504).
8071
8072 * term.el (term-set-scroll-region): Don't move cursor any more.
8073 (term-handle-ansi-escape): Call term-goto here instead.
8074 Suggested by Ivan Kanis <apple@kanis.eu>.
8075
8076 * term.el: Require CL.
8077 (term-ansi-reset): New function.
8078 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
8079 (term-handle-colors-array): Simplify.
8080
8081 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8082
8083 * allout.el (allout-overlay-interior-modification-handler)
8084 (allout-obtain-passphrase):
8085 * epa-file.el (epa-file-write-region):
8086 * ps-print.el (ps-begin-job):
8087 * vc-hooks.el (vc-toggle-read-only):
8088 * vc-rcs.el (vc-rcs-rollback):
8089 * vc-sccs.el (vc-sccs-rollback):
8090 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
8091 (vc-version-diff, vc-revert, vc-rollback):
8092 * wdired.el (wdired-check-kill-buffer):
8093 * emacs-lisp/authors.el (authors):
8094 * net/socks.el (socks-open-connection):
8095 * net/zeroconf.el (zeroconf-service-add-hook):
8096 * obsolete/vc-mcvs.el (vc-mcvs-register):
8097 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
8098 (gdb-select-frame):
8099 * progmodes/grep.el (lgrep, rgrep):
8100 * progmodes/idlw-help.el (idlwave-help-check-locations)
8101 (idlwave-help-html-link, idlwave-help-assistant-open-link):
8102 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
8103 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
8104 (reftex-toc-rename-label): Fix typos in error messages.
8105
8106 * dired-aux.el (dired-do-shell-command): Reflow docstring.
8107 (dired-copy-how-to-fn): Doc fix.
8108 (dired-files-attributes, dired-read-shell-command):
8109 Fix typos in docstrings.
8110
8111 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
8112 (dired-x-find-file-other-window): Reflow docstrings.
8113 (dired-omit-marker-char, dired-read-shell-command)
8114 (dired-x-submit-report): Fix typos in docstrings.
8115
8116 * shell.el (shell-mode-hook):
8117 * view.el (View-scroll-line-forward):
8118 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
8119 Fix typos in docstrings.
8120
8121 * net/dig.el (dig-invoke): Fix typo in docstring.
8122 (query-dig): Reflow docstring.
8123
8124 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
8125 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
8126 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
8127 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
8128 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
8129 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
8130 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
8131 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
8132 (idlwave-completion-map, idlwave-current-indent)
8133 (idlwave-custom-ampersand-surround, idlwave-customize)
8134 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
8135 (idlwave-define-abbrev, idlwave-determine-class-special)
8136 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
8137 (idlwave-end-block-reg, idlwave-end-of-statement)
8138 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
8139 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
8140 (idlwave-explicit-class-listed, idlwave-file-header)
8141 (idlwave-fill-paragraph, idlwave-find-class-definition)
8142 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
8143 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
8144 (idlwave-in-quote, idlwave-indent-action-table)
8145 (idlwave-indent-expand-table, idlwave-indent-line)
8146 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
8147 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
8148 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
8149 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
8150 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
8151 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
8152 (idlwave-outlawed-buffers, idlwave-popup-select)
8153 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
8154 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
8155 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
8156 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
8157 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
8158 (idlwave-statement-type, idlwave-struct-skip)
8159 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
8160 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
8161 (idlwave-what-module-find-class): Fix typos in docstrings.
8162 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
8163 (idlwave-calculate-cont-indent, idlwave-expand-equal)
8164 (idlwave-find-module, idlwave-find-structure-definition)
8165 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
8166 (idlwave-list-load-path-shadows, idlwave-next-statement)
8167 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
8168 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
8169 (idlwave-template): Reflow docstrings.
8170
8171 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
8172 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
8173 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
8174 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
8175 (idlwave-shell-display-line, idlwave-shell-display-wframe)
8176 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
8177 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
8178 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
8179 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
8180 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
8181 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
8182 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
8183 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
8184 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
8185 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
8186 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
8187 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
8188 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
8189 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
8190 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
8191 Fix typos in docstrings.
8192 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
8193 (idlwave-shell-hide-output, idlwave-shell-mode)
8194 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
8195 Reflow docstrings.
8196
8197 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
8198
8199 2009-09-24 Ivan Kanis <apple@kanis.eu>
8200
8201 * term.el (term-bold-attribute): New var.
8202 (term-handle-colors-array): Use it.
8203
8204 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
8205
8206 * progmodes/gdb-mi.el (gdb-version): New variable.
8207 (gdb-non-stop-handler): Set gdb-version.
8208 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
8209 Condition "--thread" option on gdb-version.
8210 (gdb-invalidate-threads): Remove unused argument.
8211
8212 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8213
8214 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
8215 to looking-back to avoid ridiculous slow down in large files (bug#4511).
8216
8217 2009-09-23 Glenn Morris <rgm@gnu.org>
8218
8219 * mail/rmail.el (rmail-reply): Don't try to add a References header when
8220 replying to mail without References or Message-Id. (Bug#4525)
8221
8222 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
8223
8224 * term/ns-win.el (ns-reg-to-script): New variable.
8225
8226 2009-09-23 Daiki Ueno <ueno@unixuser.org>
8227
8228 * epg.el (epg-wait-for-status): Preserve existing 'error results.
8229
8230 2009-09-22 Sam Steingold <sds@gnu.org>
8231
8232 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
8233 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
8234 to 1 because hg returns status 1 when nothing is found.
8235 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
8236
8237 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
8238
8239 * textmodes/fill.el: Convert to utf-8 encoding.
8240 (fill-french-nobreak-p): Remove redundant » and « inherited from our
8241 pre-unicode days.
8242
8243 * add-log.el (change-log-fill-forward-paragraph): New function.
8244 (change-log-mode): Use it so fill-region DTRT.
8245 Set fill-indent-according-to-mode here rather than in
8246 change-log-fill-paragraph.
8247 (change-log-fill-paragraph): Remove.
8248
8249 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
8250
8251 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
8252 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
8253
8254 2009-09-22 Glenn Morris <rgm@gnu.org>
8255
8256 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
8257 the scroll-bar scroll the calendar window rather than the buffer.
8258
8259 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
8260 commands that move point (as opposed to scrolling).
8261
8262 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
8263
8264 * emacs-lisp/elint.el (elint): New custom group.
8265 (elint-log-buffer): Make it a defcustom.
8266 (elint-scan-preloaded, elint-ignored-warnings)
8267 (elint-directory-skip-re): New options.
8268 (elint-builtin-variables): Doc fix.
8269 (elint-preloaded-env): New variable.
8270 (elint-unknown-builtin-args): Add an entry for encode-time.
8271 (elint-extra-errors): Make it a variable rather than a constant.
8272 (elint-preloaded-skip-re): New constant.
8273 (elint-directory): Skip files matching elint-directory-skip-re.
8274 (elint-features): New variable, local to linted buffers.
8275 (elint-update-env): Initialize elint-features. Possibly add
8276 elint-preloaded-env to the buffer's environment.
8277 (elint-get-top-forms): Bind elint-current-pos, for log messages.
8278 Skip quoted forms.
8279 (elint-init-form): New function, extracted from elint-init-env.
8280 Make non-list forms a warning rather than an error.
8281 Add the mode-map for define-derived-mode. Handle define-minor-mode,
8282 easy-menu-define, put that adds an error-condition, and provide.
8283 When requiring cl, also require cl-macs. Really require cl, to handle
8284 some cl macros. Store required libraries in the list elint-features,
8285 so as not to re-load them. Treat cc-require like require.
8286 (elint-init-env): Call elint-init-form to do the work.
8287 Handle eval-and-compile and such like.
8288 (elint-add-required-env): Do not clear messages.
8289 (elint-special-forms): Add handlers for function, defalias, if, when,
8290 unless, and, or.
8291 (elint-form): Add optional argument to ignore elint-special-forms,
8292 useful to prevent recursive calls from handlers. Doc fix.
8293 Respect elint-ignored-warnings.
8294 (elint-form): Respect elint-ignored-warnings.
8295 (elint-bound-variable, elint-bound-function): New variables.
8296 (elint-unbound-variable): Respect elint-bound-variable.
8297 (elint-get-args): Respect elint-bound-function.
8298 (elint-check-cond-form): Add some simple handling for (f)boundp and
8299 featurep tests.
8300 (elint-check-defalias-form): New handler.
8301 (elint-check-let-form): Make an empty let a warning rather than an
8302 error.
8303 (elint-check-setq-form): Make an empty setq a warning rather than an
8304 error. Respect elint-ignored-warnings.
8305 (elint-check-defvar-form): Accept null doc-strings.
8306 (elint-check-conditional-form): New handler. Does some simple-minded
8307 checking of featurep and (f)boundp tests.
8308 (elint-put-function-args): New function.
8309 (elint-initialize): Use elint-scan-doc-file rather than
8310 elint-find-builtin-variables. Use elint-put-function-args.
8311 Possibly scan preloaded-file-list.
8312 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
8313 extend to handle functions as well.
8314
8315 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
8316
8317 * linum.el (linum-delete-overlays, linum-update-window):
8318 Do not modify the right margin. (Bug#3971)
8319
8320 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
8321
8322 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
8323 nxml-mode instead of xml-mode.
8324
8325 2009-09-21 Kevin Ryde <user42@zip.com.au>
8326
8327 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
8328
8329 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8330
8331 * net/dig.el (dig-mode): Use define-derived-mode.
8332
8333 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
8334
8335 * vc-dispatcher.el (vc-do-command): Return the process object in
8336 the asynchronous case. Use when instead of if. Do not run
8337 vc-exec-after to display a message if not enabled. (Bug#4463)
8338
8339 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
8340 properties to the stash strings.
8341 (vc-git-stash-list): Return a list of strings.
8342 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
8343 (vc-git-stash-show-at-point): New functions.
8344 (vc-git-stash-map): New keymap.
8345
8346 * register.el (ctl-x-r-map): Define the keys here instead of
8347 using autoload.
8348
8349 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
8350
8351 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
8352 list, to workaround performance problem (bug#4485).
8353
8354 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
8355
8356 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
8357
8358 2009-09-20 Daiki Ueno <ueno@unixuser.org>
8359
8360 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8361 Document that this option is not recommended to use.
8362
8363 2009-09-19 Glenn Morris <rgm@gnu.org>
8364
8365 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
8366 variable `var'.
8367
8368 * calc/calc-alg.el (var):
8369 * calc/calcalg2.el (var): Define for compiler.
8370
8371 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
8372
8373 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
8374 Doc fix (Bug#3932).
8375
8376 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
8377
8378 * time-stamp.el (time-stamp-month-dd-yyyy)
8379 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
8380 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
8381 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
8382 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
8383 Remove functions that have been obsolete since 1995 (Bug#4436).
8384
8385 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
8386 indent buffer only if called interactively (Bug#4452).
8387
8388 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
8389 Eli Zaretskii <eliz@gnu.org>
8390
8391 This fixes bug#4197 (merged to bug#865, though not identical).
8392 * server.el (server-auth-dir): Add docstring note about FAT32.
8393 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
8394 but warn against using them.
8395
8396 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
8397
8398 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
8399 older GDB where there is no has_more field.
8400
8401 2009-09-19 Glenn Morris <rgm@gnu.org>
8402
8403 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
8404
8405 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
8406
8407 * files.el (auto-mode-alist): Change default for XML files to nXML
8408 mode (Bug#4169).
8409
8410 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
8411
8412 * server.el (server-ensure-safe-dir): Pass 'integer
8413 to `file-attributes', as suggested.
8414
8415 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
8416
8417 * dired-aux.el (dired-query-alist): Remove spurious backslash.
8418 (dired-query): Use read-key.
8419
8420 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
8421
8422 * cus-start.el (ns-use-qd-smoothing): Remove.
8423
8424 2009-09-18 Glenn Morris <rgm@gnu.org>
8425
8426 * allout.el (top-level): Remove unnecessary progn.
8427
8428 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
8429
8430 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
8431 definition of abbrev table.
8432
8433 * speedbar.el (speedbar-track-mouse):
8434 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
8435 * net/eudc.el (eudc-expand-inline):
8436 * net/newst-backend.el (newsticker--cache-read-feed):
8437 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
8438 condition-case handlers.
8439
8440 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
8441
8442 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
8443 (gdb-var-list): Add an element for has_more field.
8444 (gdb-non-stop-handler): Enable pretty printing for STL containers.
8445 (gdb-var-create-handler, gdb-var-list-children-handler-1)
8446 (gdb-var-update-handler-1): Parse output of dynamic variable
8447 objects (STL containers).
8448 (gdb-var-delete-1): Pass var1 as an explicit second argument.
8449 (gdb-get-field): Delete alias. Use bindat-get-field directly.
8450
8451 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
8452 gdb-var-list.
8453 (gud-speedbar-buttons): Make node expandable if expression "has more"
8454 children.
8455
8456 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
8457
8458 * startup.el (emacs-quick-startup): Remove variable and all uses.
8459 (command-line): Set `inhibit-x-resources' instead.
8460 (command-line-1): Use `inhibit-x-resources' instead.
8461
8462 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
8463
8464 * subr.el: Fix last change to avoid using the `unless' macro,
8465 which breaks bootstrapping.
8466
8467 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8468
8469 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
8470 extended definitions, in case we reload subr.el after having
8471 loaded CL.
8472 (eval-next-after-load): Mark as obsolete.
8473
8474 2009-09-17 Juri Linkov <juri@jurta.org>
8475
8476 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
8477 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
8478 (menu-bar-showhide-menu, menu-bar-tools-menu)
8479 (menu-bar-describe-menu, menu-bar-help-menu)
8480 (minibuffer-local-completion-map, minibuffer-local-map):
8481 Fix list quoting.
8482
8483 2009-09-17 Glenn Morris <rgm@gnu.org>
8484
8485 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
8486 arguments, whether or not it has a handler.
8487
8488 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
8489
8490 * simple.el (hard-newline): Give it a doc-string.
8491
8492 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8493 (lisp-mode-syntax-table): Give them doc-strings.
8494
8495 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
8496
8497 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
8498 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
8499 (menu-bar-options-menu, menu-bar-showhide-menu)
8500 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
8501 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
8502 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
8503 (menu-bar-options-menu, menu-bar-tools-menu)
8504 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
8505 (menu-bar-help-menu):
8506 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
8507 string arguments.
8508
8509 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
8510 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
8511 calls for the menu names and :help.
8512
8513 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8514
8515 * mouse.el (minor-mode-menu-from-indicator): Pay attention
8516 to :minor-mode-function (bug#4455).
8517
8518 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8519
8520 * startup.el (command-line): Initialize the window-system after
8521 processing the command-line.
8522
8523 * textmodes/page.el (what-page): Make sure we don't inf-loop if
8524 page-delimiter matches the empty string.
8525
8526 2009-09-16 Glenn Morris <rgm@gnu.org>
8527
8528 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
8529 byte-compile-not-obsolete-var. It's a list now.
8530 (byte-compile-not-obsolete-funcs): New variable.
8531 (byte-compile-warn-obsolete): Don't warn about functions if they are in
8532 byte-compile-not-obsolete-funcs.
8533 (byte-compile-variable-ref, byte-compile-defvar): Update for
8534 byte-compile-not-obsolete-vars name-change and list nature.
8535 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
8536 and variables behind (f)boundp tests.
8537 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
8538
8539 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
8540
8541 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
8542
8543 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8544
8545 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
8546 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
8547 Don't autoload.
8548
8549 2009-09-15 Stephen Eglen <stephen@gnu.org>
8550
8551 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
8552 the virtual-buffers, use the name of the buffer specified by
8553 find-file-noselect, as the match may be a symlink. (This was a
8554 problem if the target and the symlink had different names.)
8555
8556 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8557
8558 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
8559
8560 * desktop.el (desktop-path): Check user-emacs-directory.
8561
8562 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
8563
8564 * loadup.el: Use after-load-functions to GC after loading each file.
8565 Remove the explicit GC calls that used to be sprinkled around.
8566
8567 * subr.el (after-load-functions): New hook.
8568 (do-after-load-evaluation): Run it. Use string-match-p to detect
8569 `obsolete' packages, rather than painfully extracting the relevant
8570 directory name.
8571
8572 2009-09-15 Glenn Morris <rgm@gnu.org>
8573
8574 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
8575 free variable `doc'.
8576
8577 * dired.el (dired-mode-map): Add menu entry for async shell command.
8578
8579 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
8580 variables, also consider the .elc files, since the .el files are
8581 normally gzipped (subsequent code locates the .el.gz from the .elc).
8582
8583 * calc/calc-prog.el (arglist): Define for compiler.
8584
8585 * calendar/diary-lib.el (diary-display-function): Change the default to
8586 fancy display.
8587 (body): Define for compiler.
8588
8589 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
8590 (byte-compile-file-form, byte-compile-lambda)
8591 (byte-compile-top-level-body, byte-compile-form)
8592 (byte-compile-variable-ref, byte-compile-setq)
8593 (byte-compile-setq-default, byte-compile-body)
8594 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
8595 (batch-byte-compile): Give some more local variables with common names
8596 a "bytecomp-" prefix to avoid masking warnings about free variables.
8597
8598 * startup.el (command-line-1): Give local variables with common names a
8599 distinguishing prefix, so as not to hide free variable warnings during
8600 bootstrap.
8601
8602 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
8603 clever and add a suffix to make a unique name, just let the user decide
8604 whether or not to overwrite it. If the input is a directory, write the
8605 default filename to that directory. (Bug#4388)
8606 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
8607 is a filename-as-a-directory.
8608
8609 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8610
8611 * textmodes/page.el (what-page): Don't move to beginning of line.
8612 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
8613
8614 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
8615
8616 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
8617
8618 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
8619
8620 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
8621 * help.el (help-for-help-internal): Add purecopy calls for text.
8622
8623 * vc.el (top): print-log method now takes an optional SHORTLOG
8624 argument. Add a new method: root.
8625 (vc-root-diff, vc-print-root-log): New functions.
8626 (vc-log-short-style): New variable.
8627 (vc-print-log-internal): Add support for showing short logs.
8628
8629 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
8630 vc-print-root-log and vc-print-root-diff.
8631
8632 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
8633 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
8634 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
8635 short logs.
8636
8637 * vc-cvs.el (vc-cvs-print-log):
8638 * vc-mtn.el (vc-mtn-print-log):
8639 * vc-rcs.el (vc-rcs-print-log):
8640 * vc-sccs.el (vc-sccs-print-log):
8641 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
8642 that is ignored for now.
8643
8644 * vc-mtn.el (vc-mtn-annotate-command):
8645 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
8646
8647 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8648
8649 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
8650 to function-key-map, and give them ascii-character property.
8651 * term/x-win.el (x-alternatives-map):
8652 * term/ns-win.el (ns-alternatives-map):
8653 * term/internal.el (msdos-key-remapping-map):
8654 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
8655
8656 2009-09-14 Glenn Morris <rgm@gnu.org>
8657
8658 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
8659 temp-buffers (2009-09-12).
8660
8661 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8662
8663 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
8664 the new read-key function.
8665
8666 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
8667
8668 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
8669 is defined (Bug#4405).
8670
8671 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
8672
8673 * recentf.el (recentf-cleanup): Use a hash table to find
8674 duplicates (Bug#4407).
8675
8676 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
8677
8678 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
8679 kp-0 to ascii equivalents (Bug#4325).
8680
8681 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
8682
8683 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
8684
8685 * eshell/em-hist.el:
8686 * eshell/em-dirs.el (eshell-complete-user-reference):
8687 Declare pcomplete functions and variables to avoid compiler warnings.
8688
8689 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
8690
8691 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
8692 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
8693 * eshell/em-alias.el (eshell-aliases-file):
8694 * eshell/em-hist.el (eshell-history-file-name):
8695 Use expand-file-name instead of concat to make file names (Bug#4308).
8696
8697 2009-09-13 Glenn Morris <rgm@gnu.org>
8698
8699 * ediff-merg.el (ediff-do-merge):
8700 * filesets.el (filesets-run-cmd):
8701 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
8702 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
8703 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
8704 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
8705 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
8706 Replace empty `let's with `progn'.
8707
8708 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8709
8710 * mail/sendmail.el (send-mail-function):
8711 * tooltip.el (tooltip-mode):
8712 * simple.el (transient-mark-mode):
8713 * rfn-eshadow.el (file-name-shadow-mode):
8714 * frame.el (blink-cursor-mode):
8715 * font-core.el (global-font-lock-mode):
8716 * files.el (temporary-file-directory)
8717 (small-temporary-file-directory, auto-save-file-name-transforms):
8718 * epa-hook.el (auto-encryption-mode):
8719 * composite.el (global-auto-composition-mode):
8720 Use custom-initialize-delay.
8721 * startup.el (command-line): Don't explicitly call
8722 custom-reevaluate-setting for all the above vars.
8723 * custom.el (custom-initialize-safe-set)
8724 (custom-initialize-safe-default): Delete.
8725
8726 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8727
8728 * term/x-win.el (x-initialize-window-system):
8729 * term/w32-win.el (w32-initialize-window-system):
8730 * term/ns-win.el (ns-initialize-window-system): Don't call
8731 mouse-wheel-mode since it's enabled globally by default already.
8732
8733 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
8734 actually define the variable, but only silences the byte-compiler.
8735 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
8736 before looking it up.
8737 (mouse-wheel-scroll-amount): Also reset the bindings if this value
8738 is changed.
8739
8740 2009-09-12 Glenn Morris <rgm@gnu.org>
8741
8742 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
8743 1000.
8744 (elint-add-required-env): Don't beep on error.
8745 (elint-forms): In case of error, return ENV unchanged.
8746 (elint-init-env): Skip non-list forms.
8747 (elint-log): Handle unknown file positions.
8748
8749 2009-09-12 Daiki Ueno <ueno@unixuser.org>
8750
8751 * epg.el (epg-make-context): Add autoload cookie.
8752 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
8753 (epg-decrypt-string, epg-start-verify, epg-verify-file)
8754 (epg-verify-string, epg-start-sign, epg-sign-file)
8755 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
8756 (epg-encrypt-string, epg-start-export-keys)
8757 (epg-export-keys-to-file, epg-export-keys-to-string)
8758 (epg-start-import-keys, epg-import-keys-from-file)
8759 (epg-import-keys-from-string, epg-start-receive-keys)
8760 (epg-receive-keys, epg-import-keys-from-server)
8761 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8762 (epg-sign-keys, epg-start-generate-key)
8763 (epg-generate-key-from-file, epg-generate-key-from-string):
8764 Remove autoload cookie.
8765
8766 2009-09-12 Eli Zaretskii <eliz@gnu.org>
8767
8768 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8769 reevaluation of trash-directory.
8770
8771 * mwheel.el: Fix last change.
8772 (mouse-wheel-mode): New defvar.
8773 (mouse-wheel-mode): Remove autoload cookie.
8774
8775 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8776
8777 * mwheel.el (mwheel-installed-bindings): New var.
8778 (mouse-wheel-mode): Use it, so as to make sure we really remove all
8779 the bindings we set last time. Use custom-initialize-delay.
8780 * loadup.el: Load mwheel after term/*-win.el.
8781 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8782 and mouse-wheel-up-event now that their first evaluation is done
8783 sufficiently late to be correct.
8784
8785 * startup.el (tutorial-directory): Make it a defcustom.
8786 Use custom-initialize-delay rather than eval-at-startup to set it.
8787 * image.el (image-load-path): Make it a defcustom.
8788 Use custom-initialize-delay rather than eval-at-startup to set it.
8789 * subr.el (eval-at-startup): Remove.
8790 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8791
8792 * subr.el (do-after-load-evaluation): Warn the user after loading an
8793 obsolete package.
8794
8795 2009-09-12 Glenn Morris <rgm@gnu.org>
8796
8797 * proced.el (proced-mark-alt): Remove alias.
8798 (proced-mode-map): Remove proced-mark-alt.
8799
8800 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8801 Elint file and directory. Remove initialization entry.
8802
8803 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8804 commands.
8805 (elint-current-buffer): Set mode-line-process.
8806 (elint-init-env): Handle define-derived-mode.
8807 Fix declare-function with unspecified arglist. Guard against odd
8808 defalias statements (eg iso-insert's 8859-1-map).
8809 (elint-add-required-env): Use a temp buffer.
8810 (elint-form): Just print the function/macro name, not the whole form.
8811 Return env unchanged if we fail to parse a macro.
8812 (elint-forms): Guard against parse errors.
8813 (elint-output): New function, to handle batch mode.
8814 (elint-log-message): Add optional argument. Use elint-output.
8815 (elint-set-mode-line): New function.
8816
8817 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
8818
8819 * emacs-lisp/elp.el (elp-not-profilable): Add more
8820 functions (Bug#4233).
8821
8822 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
8823
8824 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8825 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8826
8827 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8828
8829 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8830 (gdb-var-list-children): Use json parsing.
8831
8832 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
8833
8834 * progmodes/js.el (js--proper-indentation): Handle the case where
8835 char-before is null. Reported by Deniz Dogan.
8836
8837 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8838
8839 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8840
8841 2009-09-11 Daiki Ueno <ueno@unixuser.org>
8842
8843 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8844 (epg-digest-algorithm-alist): Add SHA224.
8845 (epg-context-set-passphrase-callback)
8846 (epg-context-set-progress-callback): Add description about
8847 callback function.
8848
8849 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8850
8851 * custom.el (custom-delayed-init-variables): New var.
8852 (custom-initialize-delay): New function.
8853 * startup.el (command-line): "Re"evaluate all vars in
8854 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
8855 explicitly any more.
8856 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8857 to avoid creating a ~/.emacs.d at build-time (bug#4347).
8858
8859 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8860
8861 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8862
8863 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8864 (gdb-var-update-handler): Use json parsing.
8865
8866 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8867
8868 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8869 decode annotated text, regardless of language environment. (Bug#2741)
8870
8871 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8872
8873 * Makefile.in (autoloads): Make rmail.el writable as well.
8874
8875 2009-09-11 Glenn Morris <rgm@gnu.org>
8876
8877 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8878 loaddefs.el.
8879 * dired.el: Regenerate with extracted autoloads.
8880 * Makefile.in (autoloads): Make dired.el writable.
8881
8882 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8883 * ibuffer.el: Regenerate with extracted autoloads.
8884 * Makefile.in (autoloads): Make ibuffer.el writable.
8885
8886 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8887 * version.el (emacs-copyright, emacs-major-version)
8888 (emacs-minor-version): Reformat doc-strings for make-docfile.
8889
8890 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8891 functions and variables, since they must be stuff specific to some other
8892 platform.
8893 (apropos-print): Make mouse-click message less specific about button.
8894
8895 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8896 that records where a macro was defined.
8897 * help-fns.el (describe-function-1): Mention if a function has a
8898 compiler-macro.
8899 * help-mode.el (help-function-cmacro): New button.
8900
8901 * locate.el (top-level): Always require dired.
8902 (locate-mode-map): Initialize inside the defvar.
8903
8904 * net/ange-ftp.el (dired-compress-file): Declare.
8905 (ange-ftp-dired-compress-file): Add doc string.
8906
8907 * term/ns-win.el (x-display-name, x-setup-function-keys):
8908 Unify doc-strings with X versions.
8909
8910 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8911
8912 * emulation/crisp.el (crisp-mode-map): Move initialization
8913 into declaration.
8914 (crisp-mode): Use define-minor-mode.
8915
8916 * progmodes/xscheme.el (xscheme-evaluation-commands):
8917 Put a :advertised-binding property rather than using
8918 advertised-xscheme-send-previous-expression.
8919 (advertised-xscheme-send-previous-expression): Declare obsolete.
8920 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8921 `advertised-undo'.
8922 (crisp-mode): Add corresponding bindings to
8923 undo's :advertised-binding instead.
8924 * dired.el (dired-mode-map): Put a :advertised-binding property rather
8925 than using dired-advertised-find-file.
8926 (dired-advertised-find-file):
8927 * simple.el (advertised-undo):
8928 * wid-edit.el (advertised-widget-backward): Declare obsolete.
8929 (widget-keymap): Put a :advertised-binding property rather
8930 than using advertised-widget-backward.
8931 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8932 than using advertised-undo.
8933 * tutorial.el (tutorial--default-keys): Adjust accordingly.
8934
8935 2009-09-10 Simon South <ssouth@slowcomputing.org>
8936
8937 * progmodes/delphi.el (delphi-tab): Indent region when Transient
8938 Mark mode is enabled and region is active; otherwise indent or
8939 insert TAB as usual.
8940 (delphi-mode): Update description of TAB-key binding.
8941
8942 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8943
8944 * subr.el (define-key-rebound-commands): Mark obsolete.
8945 * startup.el (precompute-menubar-bindings): Remove.
8946 (normal-top-level): Remove obsolete code that tried to precompute
8947 menubar bindings.
8948 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8949 define-key-rebound-commands and precompute-menubar-bindings.
8950
8951 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
8952
8953 * net/imap.el (imap-interactive-login): Better messages.
8954 (imap-open): Fix bug with renamed buffer on reconnect.
8955 (imap-authenticate): Add buffer-local imap-last-authenticator variable
8956 for easier debugging and cleaner code. On successful (guessed based on
8957 server capabilities) secondary authentication, set imap-state
8958 correctly.
8959 (imap-last-authenticator): Define imap-last-authenticator as a variable
8960 to avoid warnings.
8961
8962 2009-09-10 Glenn Morris <rgm@gnu.org>
8963
8964 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8965
8966 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8967 (byte-compile-file-form-autoload): Don't warn about unknown functions
8968 where the autoload statement comes after the use.
8969 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8970 that any handlers inside the body (eg require) are in turn respected.
8971
8972 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8973 effects.
8974
8975 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8976 and syntax and abbrev tables basic docs, if they don't have any.
8977
8978 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8979
8980 * international/mule-cmds.el (top-level): Require cl when compiling.
8981 (view-hello-file): Use default-value rather than
8982 default-enable-multibyte-characters.
8983
8984 * progmodes/fortran.el: Move all safe and risky properties into the
8985 defcustoms.
8986
8987 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8988 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8989 * mail/undigest.el:
8990 Put autoloads in rmail.el rather than loaddefs.el.
8991 * mail/rmail.el: Regenerate with extracted autoloads.
8992
8993 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8994 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8995
8996 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
8997
8998 Reported in thread for Bug#4375.
8999 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
9000 "-data-evaluate-expression" instead of print.
9001 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
9002 (gdb-tooltip-print): Parse output from above MI command.
9003 (gdb): Revert 2009-08-11 change. User should detach inferior
9004 manually.
9005
9006 Remove the word "separate" from IO functions as inferior
9007 output is now never displayed in the GUD buffer.
9008
9009 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
9010
9011 * startup.el (command-line-normalize-file-name): On Windows and
9012 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
9013
9014 2009-09-10 Juri Linkov <juri@jurta.org>
9015
9016 * isearch.el (isearch-text-char-description): Propertize escape
9017 character sequences with the `escape-glyph' face. (Bug#4344)
9018
9019 * simple.el (shell-command): Set asynchronous process filter to
9020 `comint-output-filter'. (Bug#4343)
9021
9022 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
9023 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
9024 the list. Move "asm" to the bottom.
9025 (grep-find-ignored-directories): Add `choice' with nil value
9026 to empty the list easily.
9027 (grep-find-ignored-files): New option.
9028 (grep-files-history): Set to nil by default instead of '("ch" "el").
9029 (grep-compute-defaults): Add "<X>" to `grep-template'.
9030 (grep-read-files): Bind new local variables `default-alias' and
9031 `default-extension'. Use a list of default values for the file prompt.
9032 (lgrep): Add `--exclude=' command line options composed from
9033 `grep-find-ignored-files'.
9034 (rgrep): Add `-name' command line options composed from
9035 `grep-find-ignored-files'. (Bug#4301)
9036
9037 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
9038
9039 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
9040 (bug#4368).
9041
9042 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
9043
9044 * calendar/time-date.el (autoload):
9045 Expand define-obsolete-function-alias into defalias and make-obsolete
9046 for old Emacsen that Gnus supports.
9047 (with-no-warnings): Define it for old Emacsen.
9048 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
9049 is available.
9050 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
9051 float-time is available; suppress compile warning for time-to-seconds.
9052
9053 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
9054
9055 * net/imap.el (imap-message-map): Docstring fix.
9056
9057 2009-09-09 Glenn Morris <rgm@gnu.org>
9058
9059 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
9060 line numbers too. (Bug#4374)
9061
9062 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
9063
9064 * smerge-mode.el (smerge-remove-props, smerge-refine):
9065 Use with-silent-modifications (bug#4342).
9066
9067 * subr.el (with-silent-modifications): New macro.
9068
9069 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
9070
9071 * files.el (top-level): Require `cl' when compiling.
9072
9073 2009-09-07 Glenn Morris <rgm@gnu.org>
9074
9075 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
9076
9077 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
9078 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
9079
9080 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
9081
9082 * vc-git.el (vc-git-annotate-command): Use separator to parse
9083 arguments correctly.
9084
9085 2009-09-06 Eli Zaretskii <eliz@gnu.org>
9086
9087 * proced.el (proced-mode): Doc fix.
9088
9089 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
9090
9091 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
9092 lstat fails.
9093 (tramp-do-file-attributes-with-ls): Check for file existence at
9094 remote end.
9095 (tramp-do-file-attributes-with-stat): Likewise.
9096 (tramp-convert-file-attributes): Return nil when attr is nil.
9097
9098 2009-09-05 Glenn Morris <rgm@gnu.org>
9099
9100 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
9101 properties to this button.
9102 (diary-fancy-display): Don't extend the button to the final newline.
9103 (diary-fancy-display-mode): Continue to define "q" as a local key.
9104
9105 * calendar/cal-china.el (holiday-chinese): Make it slightly more
9106 efficient.
9107
9108 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
9109
9110 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
9111 (byte-compile-dest-file-function): New option.
9112 (byte-compile-dest-file): Doc fix.
9113 Obey byte-compile-dest-file-function.
9114 (byte-compile-cl-file-p): New function.
9115 (byte-compile-eval): Only suppress noruntime warnings about cl functions
9116 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
9117 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
9118 than for file being previously loaded.
9119 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
9120 (byte-compile-file-form-require): Handle the case where requiring a file
9121 indirectly causes CL to be loaded.
9122
9123 2009-09-05 Karl Fogel <kfogel@red-bean.com>
9124
9125 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
9126 before killing the old buffer, since by the time `kill-buffer' is
9127 run so many buffer variables have been set to nil that it may not
9128 behave as expected. (Bug#4061)
9129
9130 2009-09-05 Karl Fogel <kfogel@red-bean.com>
9131
9132 * files.el (find-alternate-file): If the old buffer is modified
9133 and visiting a file, behave similarly to `kill-buffer' when
9134 killing it, thus reverting to the pre-1.878 behavior; see
9135 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
9136 for discussion. Also, consult `buffer-file-name' as a variable
9137 not as a function, for consistency with the rest of the code.
9138
9139 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
9140
9141 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
9142 also when adding a new directory.
9143
9144 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
9145 defun.
9146
9147 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
9148
9149 * files.el (locate-file-completion-table): Make it provide boundary
9150 information, so partial-completion works better.
9151
9152 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
9153
9154 * mail/footnote.el (Footnote-text-under-cursor):
9155 Check footnote-text-marker-alist before using it (bug#4324).
9156
9157 2009-09-04 Glenn Morris <rgm@gnu.org>
9158
9159 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
9160 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
9161 * play/solitaire.el, play/tetris.el:
9162 Remove leading * from defcustom and defface docs.
9163
9164 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
9165 necessary.
9166 (diary-fancy-overriding-map): New variable.
9167 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
9168 Use view-mode.
9169
9170 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
9171 goto-line.
9172
9173 2009-09-03 Glenn Morris <rgm@gnu.org>
9174
9175 * arc-mode.el (archive-mode):
9176 * dos-fns.el (set-default-process-coding-system):
9177 * man.el (Man-getpage-in-background):
9178 * menu-bar.el (menu-bar-describe-menu):
9179 * server.el (server-process-filter):
9180 * startup.el (command-line):
9181 * tar-mode.el (tar-header-block-tokenize, tar-extract):
9182 * w32-fns.el (set-default-process-coding-system):
9183 * x-dnd.el (x-dnd-handle-file-name):
9184 * international/mule-cmds.el (mule-menu-keymap)
9185 (set-default-coding-systems, language-info-alist, set-language-info)
9186 (set-language-environment, standard-display-european-internal)
9187 (set-locale-environment):
9188 * international/mule-diag.el (mule-diag):
9189 * mail/emacsbug.el (report-emacs-bug):
9190 * mail/rmail.el (rmail-mode):
9191 * mail/sendmail.el (mail-setup):
9192 Use default-value rather than default-enable-multibyte-characters.
9193
9194 * progmodes/f90.el: Move all safe properties into the defcustoms.
9195 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
9196
9197 * calendar/appt.el (appt-check):
9198 * calendar/diary-lib.el (diary-set-header, diary-live-p)
9199 (diary-check-diary-file, diary-list-entries)
9200 (diary-include-other-diary-files, diary-simple-display)
9201 (diary-fancy-display, diary-print-entries)
9202 (diary-mark-included-diary-files, diary-make-entry):
9203 Don't call substitute-in-file-name on diary-file.
9204
9205 2009-09-03 Eduard Wiebe <usenet@pusto.de>
9206 Stefan Monnier <monnier@iro.umontreal.ca>
9207
9208 * mail/footnote.el (footnote-prefix): Make it a defcustom.
9209 (footnote-mode-map): Move initialization into the declaration.
9210 (footnote-minor-mode-map): Define it rather than changing global-map.
9211 (footnote-mode): Use define-minor-mode.
9212
9213 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
9214
9215 * net/tramp.el (tramp-handle-file-attributes-with-ls)
9216 (tramp-do-file-attributes-with-perl)
9217 (tramp-do-file-attributes-with-stat): Rename from
9218 `tramp-handle-file-attributes-with-*'.
9219 (tramp-handle-file-attributes): Use them.
9220 (tramp-do-directory-files-and-attributes-with-perl)
9221 (tramp-do-directory-files-and-attributes-with-stat): Rename from
9222 `tramp-handle-directory-files-and-attributes-with-*'.
9223 (tramp-handle-directory-files-and-attributes): Use them.
9224 (tramp-method-out-of-band-p): Additional parameter SIZE.
9225 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
9226 (tramp-handle-write-region): Use it.
9227 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
9228 (tramp-handle-vc-registered): Check, whether the first run did
9229 return files to be tested.
9230 (tramp-advice-make-auto-save-file-name): Do not call directly
9231 `tramp-handle-make-auto-save-file-name', because this would bypass
9232 the locking mechanism.
9233
9234 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
9235 (file-remote-p, process-file, start-file-process, set-file-times)
9236 (tramp-compat-file-attributes): Compatibility functions shall not
9237 call directly `tramp-handle-*', because this would bypass the
9238 locking mechanism.
9239 (tramp-compat-number-sequence): New defun.
9240
9241 2009-09-02 Glenn Morris <rgm@gnu.org>
9242
9243 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
9244 alias for float-time.
9245 (time-to-number-of-days): In Emacs, use float-time.
9246 * net/newst-backend.el (time-add): Suppress warnings from compat
9247 function.
9248 * time.el (emacs-uptime, emacs-init-time):
9249 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
9250 Use float-time rather than time-to-seconds.
9251
9252 * minibuffer.el (completion-initials-expand): Fix typo.
9253
9254 * faces.el (modeline, modeline-inactive, modeline-highlight)
9255 (modeline-buffer-id):
9256 * info.el (info-menu-5): Mark these face aliases as obsolete.
9257
9258 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9259
9260 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
9261 space ...
9262 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
9263 no "--thread" option.
9264 (gdb-stopped): Don't print "Switched to thread" message when it is
9265 unchanged.
9266
9267 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
9268
9269 * minibuffer.el (completion-try-completion)
9270 (completion-all-completions): Remove ill-defined (and
9271 mistakenly installed and luckily never used nor documented)
9272 `completion-styles' property.
9273 (completion-initials-expand, completion-initials-all-completions)
9274 (completion-initials-try-completion): New functions.
9275 (completion-styles-alist): Add doc to each entry.
9276 Add new `initials' entry.
9277
9278 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9279
9280 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
9281 MI command -var-evaluate-expression.
9282 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
9283 and tweak for case of string child.
9284 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
9285
9286 2009-09-01 Glenn Morris <rgm@gnu.org>
9287
9288 * add-log.el (change-log-date-face, change-log-name-face)
9289 (change-log-email-face, change-log-file-face, change-log-list-face)
9290 (change-log-conditionals-face, change-log-function-face)
9291 (change-log-acknowledgement-face):
9292 * cus-edit.el (custom-invalid-face, custom-rogue-face)
9293 (custom-modified-face, custom-set-face, custom-changed-face)
9294 (custom-saved-face, custom-button-face, custom-button-pressed-face)
9295 (custom-documentation-face, custom-state-face, custom-comment-face)
9296 (custom-comment-tag-face, custom-variable-tag-face)
9297 (custom-variable-button-face, custom-face-tag-face)
9298 (custom-group-tag-face-1, custom-group-tag-face):
9299 * diff-mode.el (diff-header-face, diff-file-header-face)
9300 (diff-index-face, diff-hunk-header-face, diff-removed-face)
9301 (diff-added-face, diff-changed-face, diff-function-face)
9302 (diff-context-face, diff-nonexistent-face):
9303 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
9304 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
9305 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
9306 (Info-title-4-face):
9307 * isearch.el (isearch-lazy-highlight-face):
9308 * log-view.el (log-view-file-face, log-view-message-face):
9309 * paren.el (show-paren-match-face, show-paren-mismatch-face):
9310 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
9311 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
9312 (cvs-msg-face):
9313 * smerge-mode.el (smerge-mine-face, smerge-other-face)
9314 (smerge-base-face, smerge-markers-face):
9315 * wid-edit.el (widget-documentation-face, widget-button-face)
9316 (widget-field-face, widget-single-line-field-face)
9317 (widget-inactive-face, widget-button-pressed-face):
9318 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
9319 (woman-addition-face):
9320 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
9321 (eshell-ls-executable-face, eshell-ls-readonly-face)
9322 (eshell-ls-unreadable-face, eshell-ls-special-face)
9323 (eshell-ls-missing-face, eshell-ls-archive-face)
9324 (eshell-ls-backup-face, eshell-ls-product-face)
9325 (eshell-ls-clutter-face):
9326 * eshell/em-prompt.el (eshell-prompt-face):
9327 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
9328 * obsolete/old-whitespace.el (whitespace-highlight-face):
9329 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
9330 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
9331 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
9332 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
9333 (antlr-font-lock-literal-face):
9334 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9335 (ebrowse-root-class-face, ebrowse-file-name-face)
9336 (ebrowse-default-face, ebrowse-member-attribute-face)
9337 (ebrowse-member-class-face, ebrowse-progress-face):
9338 * progmodes/make-mode.el (makefile-space-face):
9339 * progmodes/sh-script.el (sh-heredoc-face):
9340 * textmodes/flyspell.el (flyspell-incorrect-face)
9341 (flyspell-duplicate-face):
9342 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
9343 * textmodes/texinfo.el (texinfo-heading-face):
9344 Mark face aliases with "-face" suffix as obsolete.
9345
9346 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
9347 compiler.
9348
9349 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
9350 (eudc-bob-sound-menu): Use defvar rather than defconst, since
9351 easy-menu-define wants to modify these.
9352
9353 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
9354
9355 * net/browse-url.el (browse-url-file-url):
9356 * term/internal.el (dos-codepage-setup):
9357 Use default-value rather than default-enable-multibyte-characters.
9358
9359 * progmodes/etags.el (etags-goto-tag-location):
9360 * progmodes/flymake.el (flymake-highlight-line)
9361 (flymake-goto-file-and-line, flymake-goto-line):
9362 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
9363 (gdb-goto-breakpoint):
9364 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
9365 * progmodes/python.el (python-find-function)
9366 (python-pdbtrack-track-stack-file):
9367 * progmodes/verilog-mode.el (verilog-surelint-off):
9368 * term/ns-win.el (ns-open-file-select-line):
9369 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
9370 Use forward-line rather than goto-line.
9371
9372 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
9373 * textmodes/reftex-index.el (reftex-display-index):
9374 * textmodes/reftex-ref.el (reftex-offer-label-menu):
9375 * textmodes/reftex-toc.el (reftex-toc):
9376 Remove unnecessary bindings of default-major-mode (all are followed by
9377 major-mode check and possible mode switch).
9378
9379 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
9380
9381 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9382 Handle watchpoints (bug#4282).
9383 (def-gdb-thread-buffer-command): Enable thread to be selected by
9384 clicking without selecting threads buffer first.
9385 (gdb-current-context-command): Use selected frame so that "up",
9386 "down" etc work in the GUD buffer.
9387 (gdb-update): Find selected frame before rendering stack buffer.
9388 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
9389
9390 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
9391
9392 * progmodes/sym-comp.el (displayed-completions): Remove.
9393 (symbol-complete): Use minibuffer-complete.
9394
9395 2009-08-31 Glenn Morris <rgm@gnu.org>
9396
9397 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
9398
9399 * apropos.el (apropos-symbols-internal):
9400 Handle (obsolete) face aliases.
9401
9402 * faces.el (describe-face): Adjust the output format to be more like
9403 describe-variable, and to mention (obsolete) face aliases.
9404 Adjust the whitespace so that help-setup-xref works.
9405
9406 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
9407 * calendar/diary-lib.el (diary-button-face):
9408 Mark these face aliases as obsolete.
9409
9410 * calendar/calendar.el (calendar-today): Doc fix.
9411
9412 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
9413
9414 * progmodes/gdb-mi.el (gdb-control-all-threads)
9415 (gdb-control-current-thread): Force tool bar update.
9416 (gdb-non-stop-handler): New function.
9417 (gdb-init-1): Use it to test if non-stop mode is supported.
9418 Remove unused gdbmi buffer type.
9419
9420 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
9421
9422 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
9423 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
9424
9425 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
9426
9427 * comint.el (comint-exec-1): Check command is non-null first.
9428 Part of gdb-mi.el change (2009-08-28).
9429
9430 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9431
9432 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
9433
9434 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
9435
9436 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
9437 instead of `dolist' to avoid a recursive require when bootstrapping.
9438
9439 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9440
9441 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
9442
9443 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
9444
9445 * net/imap.el (imap-send-command): Simplify.
9446 (imap-wait-for-tag): point-max -> buffer-size.
9447
9448 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
9449
9450 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
9451 with constant argument.
9452
9453 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
9454
9455 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
9456
9457 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
9458 Change default, since most of our files don't have a history.
9459 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
9460 the user.
9461
9462 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9463 Add comint-run.
9464
9465 * calc/calc.el: Improve commenting convention.
9466 (calc-digit-map, toplevel): Simplify.
9467
9468 * comint.el (comint-insert-input): Be careful to only set point if we
9469 don't delegate to some other command.
9470
9471 * proced.el (proced-signal-list): Make it an alist.
9472 (proced-grammar-alist): Capitalize names.
9473 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
9474 Disable undo manually and make it read-only.
9475 Use completion-annotate-function.
9476
9477 * minibuffer.el (minibuffer-message): If the current buffer is not
9478 a minibuffer, insert the message in the echo area rather than at the
9479 end of the buffer.
9480 (completion-annotate-function): New variable.
9481 (minibuffer-completion-help): Use it.
9482 (completion--embedded-envvar-table): Environment vars are
9483 always case-sensitive.
9484
9485 2009-08-30 Glenn Morris <rgm@gnu.org>
9486
9487 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
9488 from fortran-current-defun.
9489 (fortran-beginning-of-subprogram): Be more precise about finding the
9490 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
9491 (fortran-end-of-subprogram): Simplify.
9492 (fortran-current-defun): Use fortran-start-prog-re.
9493
9494 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
9495
9496 * subr.el (do-after-load-evaluation): Simplify.
9497
9498 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
9499
9500 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
9501
9502 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
9503 (vc-rcs-print-log): Use it.
9504
9505 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
9506
9507 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9508
9509 * paths.el (abbrev-file-name): Move to abbrev.el.
9510 * abbrev.el (abbrev-file-name): Move from paths.el.
9511 Obey user-emacs-directory.
9512 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
9513 user-emacs-directory.
9514 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
9515 abbrev-file-name and calc-settings-file any more.
9516 * startup.el (command-line): Recompute abbrev-file-name and
9517 abbreviated-home-dir.
9518 (normal-no-mouse-startup-screen): Improve the generic code and get rid
9519 of the special code for when C-h bindings haven't been changed.
9520 (display-startup-echo-area-message): Use with-current-buffer.
9521 (command-line-1): Use a list of strings, rather than a list of lists
9522 of strings for longopts.
9523
9524 * files.el (get-free-disk-space): Use / for default-directory.
9525
9526 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
9527 Use with-current-buffer.
9528
9529 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
9530 Recognize immutable variables like most-positive-fixnum.
9531 (byte-compile-setq-default): Check and warn if trying to assign
9532 to an immutable variable, or a non-variable.
9533
9534 * progmodes/cc-vars.el (c-comment-continuation-stars):
9535 * progmodes/cc-engine.el (c-looking-at-bos):
9536 * progmodes/cc-cmds.el (c-toggle-auto-state)
9537 (c-forward-into-nomenclature, c-backward-into-nomenclature)
9538 (c-comment-line-break-function): Add version of obsolescence.
9539
9540 2009-08-28 Juri Linkov <juri@jurta.org>
9541
9542 * files.el (magic-fallback-mode-alist): Add ZIP magic number
9543 associated with `archive-mode'.
9544
9545 * image.el (image-type-header-regexps): Use only JPEG magic number
9546 to determine JPEG images, and don't use `image-jpeg-p' because
9547 Emacs can display non-JFIF non-Exif JPEG images.
9548
9549 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
9550
9551 * arc-mode.el (archive-mode):
9552 * emacs-lisp/re-builder.el (re-builder-unload-function):
9553 Protect against the default value of `major-mode' being nil.
9554
9555 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
9556
9557 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
9558 Fix typos in docstrings.
9559
9560 * progmodes/js.el (js--macro-decl-re): Doc fix.
9561 (js--plain-method-re, js--split-name): Refloc docstring.
9562 (js--class-styles, js--make-merged-item, js--splice-into-items):
9563 Fix typos in docstrings; reflow docstrings.
9564 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
9565 (js--variable-decl-matcher, js--inside-pitem-p)
9566 (js--parse-state-at-point, js--get-all-known-symbols)
9567 (js--symbol-history, js-find-symbol, js--js-references)
9568 (js--moz-interactor, js--js-encode-value, js--read-tab):
9569 Fix typos in docstrings.
9570
9571 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9572
9573 * textmodes/reftex.el (reftex-get-file-buffer-force):
9574 * progmodes/verilog-mode.el (verilog-batch-execute-func):
9575 * emulation/viper.el (viper-go-away, viper-set-hooks):
9576 * emacs-lisp/re-builder.el (re-builder-unload-function):
9577 * emacs-lisp/bytecomp.el (byte-compile-file):
9578 * ses.el (ses-unload-function):
9579 * hexl.el (hexl-find-file):
9580 * files.el (normal-mode):
9581 * ehelp.el (with-electric-help):
9582 * autoinsert.el (auto-insert-alist):
9583 * arc-mode.el (archive-mode):
9584 Use (default-value 'major-mode) instead of default-major-mode.
9585
9586 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
9587 * international/mule.el (load-with-code-conversion):
9588 * emacs-lisp/debug.el (debug):
9589 * ediff-vers.el (ediff-rcs-get-output-buffer):
9590 * dired.el (dired-internal-noselect): Don't let-bind
9591 default-major-mode around code that doesn't use it.
9592 E.g. buffer creation via get-buffer-create doesn't use it.
9593
9594 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
9595
9596 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
9597 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
9598 when writing the temp file. Otherwise, epa-file gets confused.
9599 (tramp-register-file-name-handlers): Make it a defun. Move also
9600 `epa-file-handler' to the front of `file-name-handler-alist'.
9601
9602 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9603
9604 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
9605 start right after a ^M.
9606 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
9607 (tramp-completion-file-name-regexp-separate)
9608 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
9609 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
9610 Don't modify last-coding-system-used by accident.
9611 (tramp-completion-file-name-handler): Apply the checks here,
9612 instead during registration.
9613 (tramp-register-file-name-handlers): Renamed from
9614 `tramp-register-file-name-handler'. Register both
9615 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
9616 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
9617
9618 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
9619
9620 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
9621 Remove variable ...
9622 (gdb-init-1, gdb-display-separate-io-buffer)
9623 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
9624 references to it.
9625 (gdb-inferior-io-mode): Use make-comint-in-buffer.
9626 (gdb-inferior-filter): Use comint-output-filter to stop
9627 echoing and remove ^M characters.
9628
9629 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9630
9631 * emulation/viper-init.el (viper-restore-cursor-type):
9632 * emulation/cua-base.el (cua--update-indications):
9633 Replace default-cursor-type with (default-value 'cursor-type).
9634
9635 * mail/sendmail.el (mail-recover-1):
9636 * international/mule-diag.el (describe-current-coding-system-briefly)
9637 (describe-current-coding-system):
9638 * international/mule-cmds.el (select-safe-coding-system)
9639 (select-message-coding-system)
9640 (set-language-environment-coding-systems, set-locale-environment):
9641 * hexl.el (hexl-insert-multibyte-char):
9642 * dos-w32.el (find-buffer-file-type-coding-system):
9643 * simple.el (what-cursor-position):
9644 Replace uses of default-buffer-file-coding-system
9645 with (default-value 'buffer-file-coding-system).
9646
9647 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
9648 Replace uses of default-cursor-in-non-selected-windows
9649 with (default-value 'cursor-in-non-selected-windows).
9650 Use with-current-buffer.
9651
9652 * mail/feedmail.el: Use CL macros.
9653 (feedmail-run-the-queue, feedmail-send-it-immediately):
9654 * dos-w32.el (find-buffer-file-type): Replace uses of
9655 default-buffer-file-type with (default-value 'buffer-file-type).
9656
9657 2009-08-28 Glenn Morris <rgm@gnu.org>
9658
9659 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
9660 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
9661 Use default-value of major-mode rather than default-major-mode.
9662
9663 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9664
9665 * Makefile.in (update-elcfiles): Report left over elc files.
9666
9667 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
9668 expand-file-name and with-current-buffer.
9669 (mail-get-names, mail-directory): Use with-current-buffer.
9670
9671 * vc.el (vc-read-revision): New function.
9672 (vc-version-diff, vc-merge): Use it.
9673
9674 2009-08-27 Sam Steingold <sds@gnu.org>
9675
9676 * simple.el (kill-do-not-save-duplicates): New user option.
9677 (kill-new): When it is non-nil, and the new string is the same as
9678 the latest kill, set replace to t to avoid duplicates in kill-ring.
9679
9680 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
9681
9682 * net/tramp.el (tramp-handle-process-file): Do not flush all
9683 caches when `process-file-side-effects' is set.
9684 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
9685 instead of `tramp-find-file-exists-command'.
9686 Unset `process-file-side-effects'.
9687
9688 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
9689
9690 * net/tramp.el (tramp-methods): New method "rsyncc".
9691 (top): Add completion function for "rsyncc".
9692 (tramp-message-show-message): New defvar.
9693 (tramp-message, tramp-error): Use it.
9694 (tramp-do-copy-or-rename-file-directly): Extend check for direct
9695 remote copying.
9696 (tramp-do-copy-or-rename-file-out-of-band): Handle new
9697 `tramp-methods' entry `copy-env' of "rsyncc".
9698 (tramp-vc-registered-read-file-names): New defconst.
9699 (tramp-vc-registered-file-names): New defvar.
9700 (tramp-handle-vc-registered): Implement optimization strategy.
9701 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
9702 (tramp-vc-file-name-handler): New defun.
9703 (tramp-get-ls-command, tramp-get-test-command)
9704 (tramp-get-file-exists-command, tramp-get-remote-ln)
9705 (tramp-get-remote-perl, tramp-get-remote-stat)
9706 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
9707
9708 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
9709 (tramp-cache-inhibit-cache): Extend doc string. It allows also
9710 timestamps.
9711 (tramp-get-file-property): Check for timestamps in
9712 `tramp-cache-inhibit-cache'.
9713 (tramp-set-file-property): Write timestamp.
9714
9715 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
9716
9717 * language/japan-util.el (japanese-symbol-table): Add entries for
9718 cp932-2-byte.
9719
9720 * international/characters.el: Add category `j' to cp932-2-byte.
9721
9722 2009-08-27 Kenichi Handa <handa@m17n.org>
9723
9724 * international/fontset.el (build-default-fontset-data): New macro.
9725 (setup-default-fontset): Use build-default-fontset-data for CJK,
9726 tibetan, ethiopic, and ipa.
9727
9728 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9729
9730 * cus-start.el (default-major-mode): Customize `major-mode' instead.
9731 (enable-multibyte-characters): Not customizable any more.
9732
9733 * subr.el (default-mode-line-format, default-header-line-format)
9734 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
9735 (default-direction-reversed, default-truncate-lines)
9736 (default-left-margin, default-tab-width, default-case-fold-search)
9737 (default-left-margin-width, default-right-margin-width)
9738 (default-left-fringe-width, default-right-fringe-width)
9739 (default-fringes-outside-margins, default-scroll-bar-width)
9740 (default-vertical-scroll-bar, default-indicate-empty-lines)
9741 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
9742 (default-fringe-cursor-alist, default-scroll-up-aggressively)
9743 (default-scroll-down-aggressively, default-fill-column)
9744 (default-cursor-type, default-buffer-file-type)
9745 (default-cursor-in-non-selected-windows)
9746 (default-buffer-file-coding-system, default-major-mode)
9747 (default-enable-multibyte-characters): Mark as obsolete.
9748
9749 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
9750
9751 * vc-dir.el (vc-dir-update): Remove debug helper.
9752
9753 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
9754
9755 2009-08-26 Sam Steingold <sds@gnu.org>
9756
9757 * simple.el (save-interprogram-paste-before-kill): New user option.
9758 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9759 save the interprogram-paste into kill-ring before overriding it
9760 with the Emacs kill.
9761
9762 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9763
9764 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9765 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9766 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9767 and move to vc-rcs.el.
9768 (vc-default-next-revision): Rename to vc-rcs-next-revision and
9769 move to vc-rcs.el.
9770 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9771 (vc-rcs-update-changelog): Remove.
9772 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9773 and move to vc-rcs.el.
9774
9775 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9776 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9777 renaming.
9778 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9779 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9780 vc.el, renamed to be RCS specific.
9781
9782 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9783 New functions.
9784 (vc-cvs-update-changelog): Move here from vc.el.
9785
9786 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9787 New functions.
9788
9789 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
9790
9791 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9792
9793 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9794
9795 * vc-git.el (vc-git-register): Use "git add" for directories.
9796 (vc-git-stash, vc-git-stash-show): New functions.
9797 (vc-git-extra-menu-map): Bind them.
9798
9799 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9800 directory correctly in case the item is a directory itself.
9801
9802 * vc.el: Document the desired behavior for reverted files in the
9803 `added' state.
9804 (vc-default-prettify-state-info): Remove function, unused.
9805
9806 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9807
9808 2009-08-26 Glenn Morris <rgm@gnu.org>
9809
9810 * bindings.el (standard-mode-line-format): Reposition dashes in
9811 which-func entry. (Bug#4217)
9812
9813 * files.el (enable-local-variables, enable-local-eval)
9814 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9815 the defcustoms.
9816 (auto-mode-alist, ignored-local-variables)
9817 (save-some-buffers-action-alist): Move risky declarations to the
9818 definitions.
9819 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9820 (font-lock-defaults, format-alist, imenu--index-alist)
9821 (imenu-generic-expression, input-method-alist, minor-mode-alist)
9822 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9823 (mode-line-modified, mode-line-mule-info, mode-line-position)
9824 (mode-line-process, mode-line-remote, outline-level)
9825 (parse-time-rules, rmail-output-file-alist)
9826 (special-display-buffer-names, vc-mode):
9827 Move risky declarations to the relevant files.
9828 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9829 (mode-line-modified, mode-line-process, mode-line-position)
9830 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9831 * font-core.el (font-lock-defaults):
9832 * format.el (format-alist):
9833 * vc-hooks.el (vc-mode):
9834 * window.el (special-display-buffer-names):
9835 * international/mule-cmds.el (input-method-alist):
9836 Define riskiness here (dumped file) rather than in files.el.
9837 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9838 * imenu.el (imenu-generic-expression, imenu--index-alist):
9839 * outline.el (outline-level):
9840 * time.el (display-time-string):
9841 * calendar/parse-time.el (parse-time-rules):
9842 * mail/rmailout.el (rmail-output-file-alist):
9843 Autoload riskiness here, rather than placing in files.el.
9844
9845 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
9846
9847 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9848
9849 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
9850
9851 * simple.el (process-file-side-effects): New defvar.
9852
9853 * dired-aux.el (dired-show-file-type):
9854 * vc.el (vc-diff-internal):
9855 * vc-arch.el (vc-arch-diff):
9856 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9857 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9858 * vc-git.el (vc-git-registered, vc-git-working-revision)
9859 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9860 (vc-git--empty-db-p):
9861 * vc-hooks.el (vc-user-login-name):
9862 * vc-svn.el (vc-svn-registered, vc-svn-state)
9863 (vc-svn-dir-extra-headers, vc-svn-find-revision):
9864 * progmodes/grep.el (grep-probe): Let-bind
9865 `process-file-side-effects' with nil.
9866
9867 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9868
9869 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9870 daemon. Replace ping by checking for running service for bluez
9871 and zeroconf. (Bug#4239)
9872
9873 2009-08-25 Kevin Ryde <user42@zip.com.au>
9874
9875 * net/dig.el (dig): Add autoload cookie.
9876
9877 2009-08-25 Glenn Morris <rgm@gnu.org>
9878
9879 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9880 load-history for absolute file-names.
9881 (byte-compile-file-form-require): Warn about use of the cl package.
9882
9883 * format.el (format-alist): Doc fix.
9884
9885 * play/bubbles.el (top-level): Don't require cl at run-time.
9886
9887 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9888 run-time cl).
9889
9890 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
9891
9892 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9893 from cl package.
9894 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9895
9896 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
9897
9898 * calc/calc-alg.el (math-trig-rewrite)
9899 (math-hyperbolic-trig-rewrite): New functions.
9900 (calc-simplify): Simplify trig functions when asked.
9901
9902 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9903
9904 * diff-mode.el (diff-find-source-location): Avoid goto-line.
9905
9906 2009-08-24 Kenichi Handa <handa@m17n.org>
9907
9908 * language/ind-util.el (mapthread): Delete it.
9909 (combinatorial): New function.
9910 (indian--puthash-cv): Use combinatorial instead of mapthread.
9911
9912 2009-08-22 Kevin Ryde <user42@zip.com.au>
9913
9914 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9915 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9916 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9917 Clarify docstring that the value is strings not symbols.
9918 (checkdoc-list-of-strings-p): New function.
9919
9920 2009-08-22 Glenn Morris <rgm@gnu.org>
9921
9922 * files.el (auto-mode-alist):
9923 * hippie-exp.el (he-concat-directory-file-name):
9924 * lpr.el (lpr-windows-system, printer-name):
9925 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9926 * ps-print.el (ps-windows-system):
9927 * startup.el (command-line):
9928 * emulation/viper-ex.el (viper-glob-function):
9929 * international/mule-cmds.el (set-language-environment-coding-systems):
9930 * net/ange-ftp.el (ange-ftp-write-region):
9931 * obsolete/fast-lock.el (fast-lock-cache-name):
9932 Remove code for defunct system-types emx, macos, mswindows, next-mach,
9933 unisoft-unix, vax-vms, win32, w32.
9934
9935 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9936 given name if the pattern is not more specific.
9937
9938 * calendar/lunar.el (lunar-phase-names): New option.
9939 (lunar-phase): Doc fix.
9940 (lunar-cycles-per-year): New constant.
9941 (lunar-index): New function.
9942 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9943 (lunar-phase-name): Use lunar-phase-names.
9944 (calendar-lunar-phases): Use format.
9945 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9946
9947 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9948 Copy imenu-example--name-and-position function here for own use.
9949 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9950
9951 * bs.el (bs--redisplay):
9952 * cus-edit.el (custom-redraw):
9953 * ibuffer.el (ibuffer-bury-buffer):
9954 * server.el (server-goto-line-column):
9955 * startup.el (command-line-1):
9956 * strokes.el (strokes-xpm-for-stroke):
9957 * term.el (term-display-buffer-line):
9958 * view.el (View-goto-line):
9959 * calc/calc.el (calc-do, calc-trail-buffer):
9960 * play/gamegrid.el (gamegrid-add-score-insecure):
9961 * progmodes/ada-mode.el (ada-compile-goto-error):
9962 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9963 (ebrowse-select-1st-to-9nth):
9964 * progmodes/cperl-mode.el (cperl-time-fontification):
9965 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9966 * progmodes/gud.el (gud-display-line):
9967 (idlwave-shell-display-line):
9968 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9969 * progmodes/make-mode.el (makefile-browser-toggle):
9970 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9971 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9972 * textmodes/picture.el (picture-draw-rectangle):
9973 * textmodes/reftex-index.el (reftex-index-goto-letter):
9974 (reftex-select-jump-to-previous):
9975 * textmodes/reftex-sel.el (reftex-find-start-point)
9976 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9977 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9978 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9979 * textmodes/tex-mode.el (tex-compilation-parse-errors):
9980 * textmodes/two-column.el (2C-associated-buffer):
9981 Use forward-line rather than goto-line.
9982
9983 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9984 goto-line.
9985
9986 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9987 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9988 (quick-check-list-to-regexp): Declare.
9989
9990 * progmodes/make-mode.el (makefile-browser-insert-selection):
9991 Use goto-char rather than goto-line.
9992
9993 * progmodes/prolog.el (compilation-error-regexp-alist)
9994 (compilation-forget-errors): Declare.
9995
9996 2009-08-22 Juri Linkov <juri@jurta.org>
9997
9998 * progmodes/grep.el (lgrep, rgrep): At the beginning
9999 set `dir' to `default-directory' unless `dir' is a non-nil
10000 readable directory. (Bug#4052)
10001 (lgrep, rgrep): Change a weird way to report an error
10002 from using `read-string' to using `error'.
10003 Instead of using interactive arguments in the function body,
10004 add new argument `confirm'.
10005
10006 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
10007
10008 * textmodes/remember.el (remember-buffer):
10009 * progmodes/cperl-mode.el (cperl-vc-header-alist):
10010 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
10011 (icalendar-extract-ical-from-buffer):
10012 * net/newst-treeview.el (newsticker-groups-filename):
10013 * net/newst-backend.el (newsticker-cache-filename):
10014 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
10015 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
10016 (speedbar-add-ignored-path-regexp, speedbar-line-path)
10017 (speedbar-buffers-line-path, speedbar-path-line)
10018 (speedbar-buffers-line-path):
10019 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
10020 (epg-sign-keys):
10021 * epa.el (epa-display-verify-result):
10022 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
10023
10024 2009-08-21 Glenn Morris <rgm@gnu.org>
10025
10026 * progmodes/js.el (inferior-moz-process): Fix declaration.
10027
10028 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
10029
10030 * obsolete/rnewspost.el (news-mail-reply):
10031 Use goto-char rather than goto-line.
10032
10033 * term/ns-win.el (ns-open-file-select-line):
10034 Use line-beginning-position rather than goto-line.
10035
10036 * apropos.el (apropos-command):
10037 * ehelp.el (electric-helpify):
10038 * printing.el (pr-show-setup):
10039 * strokes.el (strokes-help):
10040 * tutorial.el (tutorial--describe-nonstandard-key)
10041 (tutorial--detailed-help):
10042 * woman.el (woman-mini-help, woman-display-extended-fonts):
10043 * calc/calc-help.el (calc-describe-key):
10044 * emulation/edt.el (edt-electric-helpify):
10045 * international/mule-diag.el (mule-diag):
10046 * play/yow.el (apropos-zippy):
10047 * progmodes/python.el (python-describe-symbol):
10048 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
10049 * textmodes/table.el (*table--cell-describe-mode)
10050 (*table--cell-describe-bindings):
10051 Use help-print-return-message rather than the now obsolete alias.
10052
10053 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
10054 (calendar-cursor-to-visible-date):
10055 * play/5x5.el (5x5-position-cursor):
10056 * play/decipher.el (decipher):
10057 * play/gomoku.el (gomoku-goto-xy):
10058 * play/landmark.el (lm-goto-xy):
10059 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
10060 (mpuz-paint-digit):
10061 Use forward-line, not goto-line.
10062
10063 * mail/rmail.el (rmail-obsolete): Delete custom group.
10064 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
10065 (rmail-remote-password, rmail-remote-password-required):
10066 Remove unneeded :set-after and :set properties.
10067
10068 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
10069
10070 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
10071
10072 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
10073
10074 * loadup.el: Remove leftover macos code.
10075
10076 * vc-git.el (vc-git-annotate-command): Run asynchronously.
10077 Explicitly pass the date format to git blame so that user local
10078 so that the output format can be parsed.
10079
10080 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
10081
10082 * net/dbus.el (top): Don't check for (getenv
10083 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
10084
10085 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
10086
10087 * log-edit.el (log-edit-strip-single-file-name): New var.
10088 (log-edit-insert-changelog): Use it. Bug#3571
10089
10090 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10091
10092 * subr.el (read-passwd): Use read-key so keypad keys work as well.
10093 Bug#3287
10094
10095 * help.el (help-print-return-message): Rename from
10096 print-help-return-message.
10097
10098 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
10099 cvs-mode-map parent hack.
10100 (log-view-mode): Derive from special-mode.
10101
10102 * linum.el (linum-mode): window-size-change-functions is redundant.
10103 Adapt to new window-configuration-change-hook behavior.
10104 (linum-after-size, linum-after-config): Remove.
10105
10106 * imenu.el (imenu-example--name-and-position)
10107 (imenu-example--lisp-extract-index-name)
10108 (imenu-example--create-lisp-index, imenu-example--create-c-index):
10109 Mark as obsolete.
10110
10111 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
10112 (inferior-prolog-mode): Use it.
10113 (inferior-prolog-load-file): Reset list of errors.
10114
10115 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
10116
10117 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
10118
10119 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
10120
10121 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
10122
10123 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
10124 is running already.
10125
10126 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10127
10128 * subr.el (listify-key-sequence-1): Use normal syntax since those
10129 integers are nowadays always represented by the same (positive) number
10130 on all platforms.
10131 (read-key-empty-map): New const.
10132 (read-key-delay): New var.
10133 (read-key): New function.
10134 (force-mode-line-update): Use with-current-buffer.
10135 (locate-user-emacs-file): Don't forget to abbreviate the file name.
10136 (start-process-shell-command, start-file-process-shell-command):
10137 Discourage the use of command-args.
10138
10139 2009-08-19 Glenn Morris <rgm@gnu.org>
10140
10141 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
10142
10143 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10144
10145 * simple.el (choose-completion-string): Don't rely on
10146 minibuffer-completing-file-name and ad-hoc checks to decide whether
10147 to continue completion or not.
10148
10149 * minibuffer.el (minibuffer-hide-completions): New function.
10150 (completion--do-completion): Use it.
10151 (completions-annotations): New face.
10152 (completion--insert-strings): Use it.
10153 (completion-pcm--delim-wild-regex): Add docstring.
10154 (completion-pcm--string->pattern): Add support for 0-width delimiters
10155 in completion-pcm--delim-wild-regex.
10156
10157 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
10158
10159 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
10160 Remove unused var `buffer-modified-p'.
10161
10162 * minibuffer.el (completion--do-completion): Move point for the #b001
10163 case as well (bug#4176).
10164 (minibuffer-complete, minibuffer-complete-word): Don't move point.
10165
10166 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
10167
10168 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
10169 and :session buses.
10170
10171 2009-08-18 Kenichi Handa <handa@m17n.org>
10172
10173 * international/ucs-normalize.el (ucs-normalize-version):
10174 Change to 1.1.
10175 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
10176 (utf-8-hfs): Make it perform normalization on encoding too.
10177
10178 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
10179 (sentence-end-without-space): Delete duplicated chars.
10180 (sentence-end-base): Likewise.
10181
10182 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
10183 (html-mode): Delete duplicated chars from sentence-end-base.
10184
10185 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
10186 (texinfo-mode): Delete duplicated chars from sentence-end-base.
10187
10188 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
10189
10190 * files.el (hack-one-local-variable): If the mode function is for
10191 a minor mode, pass it an argument (Bug#4148).
10192
10193 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
10194
10195 * net/tramp.el (tramp-register-completion-file-name-handler):
10196 Check also for (member 'partial-completion completion-styles).
10197
10198 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10199
10200 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
10201 abbrev (Bug#3943).
10202
10203 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
10204
10205 * progmodes/cperl-mode.el: Merge upstream 6.2.
10206 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
10207 (cperl-forward-re): Check cperl-brace-recursing.
10208 (cperl-highlight-charclass): New function.
10209 (cperl-find-pods-heres): Use it.
10210 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
10211 (cperl-beautify-regexp-piece): Fix column calculation.
10212 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
10213 (cperl-beautify-level): Don't process entire regexp.
10214 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
10215 calling man.
10216 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
10217 (cperl-init-faces): Build a list in the normal way.
10218
10219 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10220
10221 * calendar/parse-time.el (parse-time-string-chars): Save match
10222 data.
10223
10224 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
10225
10226 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
10227 (sql-product): Use it.
10228 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
10229 (sql-set-product): Add completion.
10230 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
10231 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
10232 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
10233 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
10234 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
10235 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
10236 (sql-highlight-db2-keywords): Remove.
10237 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
10238 (sql-highlight-product): Use derived-mode-p.
10239 (sql-set-sqli-buffer): Use with-current-buffer.
10240 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
10241 Simplify.
10242
10243 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
10244
10245 * term.el: Fix commenting convention, turn comments into docstrings.
10246
10247 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
10248
10249 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
10250
10251 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
10252
10253 * calendar/parse-time.el (parse-time-string-chars): Compute using
10254 character classes, to handle non-ascii characters (Bug#3190).
10255
10256 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10257
10258 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
10259 another heredoc if the user adds another < (Bug#3226).
10260
10261 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10262 Don't initialize based on window-system (Bug#4124).
10263
10264 * facemenu.el (facemenu-read-color): Use a completion function
10265 that accepts any defined color, such as RGB triplets (Bug#3677).
10266
10267 * files.el (get-free-disk-space): Change fallback default
10268 directory to /. Expand DIR argument before switching to fallback.
10269 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
10270
10271 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10272
10273 * files.el (load-library): Doc fix.
10274
10275 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
10276
10277 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
10278 (viper-if-string): Redefine C-s in the minibuffer to insert the last
10279 incremental search string.
10280
10281 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
10282 XEmacs.
10283
10284 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
10285 (ediff-merge-region-is-non-clash)
10286 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
10287 Also check if the job is really a merge job.
10288
10289 * ediff.el (ediff-current-file): New function.
10290
10291 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10292
10293 * progmodes/js.el: Edit docstrings throughout to follow Emacs
10294 conventions.
10295 (js-insert-and-indent): Delete function.
10296 (js-mode-map): Don't bind keys to js-insert-and-indent.
10297 (js-beginning-of-defun): Rename from js--beginning-of-defun.
10298 (js-end-of-defun): Rename from js--end-of-defun.
10299 (js-auto-indent-flag): Delete variable.
10300
10301 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
10302
10303 * progmodes/js.el: Remove proclaim statement.
10304 Defvar which-func-imenu-joiner-function to silence compiler.
10305
10306 * files.el (auto-mode-alist): Use js-mode for .js files.
10307
10308 * progmodes/js2-mode.el: Remove file.
10309
10310 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
10311
10312 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
10313
10314 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
10315
10316 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
10317 Karl Landstrom <karl.landstrom@brgeight.se>
10318
10319 * progmodes/js.el: New file.
10320
10321 2009-08-14 Mark A. Hershberger <mah@everybody.org>
10322
10323 * timezone.el (timezone-parse-date): Add ability to understand ISO
10324 basic format (minimal separators) dates in addition to the
10325 already-supported extended format dates.
10326
10327 2009-08-14 Eli Zaretskii <eliz@gnu.org>
10328
10329 * international/ucs-normalize.el: Add a `coding' file variable.
10330
10331 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
10332
10333 2009-08-14 Sam Steingold <sds@gnu.org>
10334
10335 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
10336
10337 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
10338
10339 * faces.el (help-argument-name): Define it here instead of
10340 help-fns.el, because in daemon mode help-fns.el may be loaded when
10341 faces are still uninitialized (Bug#1078).
10342
10343 * help-fns.el (help-argument-name): Move defface to faces.el.
10344
10345 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
10346
10347 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
10348 create buffer with a pty but no process so that GDB can make the
10349 inferior the controlling process.
10350
10351 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
10352
10353 * international/ucs-normalize.el: New file.
10354
10355 2009-08-13 Richard Stallman <rms@gnu.org>
10356
10357 * mail/rmail.el (rmail-get-attr-names):
10358 Accept an attribute header that is too short.
10359
10360 * mail/rmail.el (rmail-forget-messages):
10361 Ignore nil elt in rmail-message-vector. Use dotimes.
10362
10363 * progmodes/compile.el (compilation-goto-locus):
10364 Use next-error-move-function.
10365
10366 * simple.el (next-error-move-function): New variable.
10367
10368 2009-08-12 Juri Linkov <juri@jurta.org>
10369
10370 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
10371 always non-nil. (Bug#4052)
10372
10373 * replace.el (read-regexp): Return empty string when
10374 `default-value' is nil.
10375 (keep-lines-read-args): Don't use empty string as the
10376 default value for `read-regexp'. (Bug#2495)
10377
10378 2009-08-12 Juri Linkov <juri@jurta.org>
10379
10380 * international/mule-cmds.el (ucs-insert): Change arguments
10381 from `arg' to `character', `count', `inherit' to be the same
10382 as in `insert-char'. Doc fix. (Bug#4039)
10383
10384 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
10385
10386 2009-08-12 Juri Linkov <juri@jurta.org>
10387
10388 * files-x.el: New file.
10389
10390 * files.el: Move code that deals with adding/deleting
10391 file/directory-local variables to files-x.el.
10392
10393 * Makefile.in (ELCFILES): Add files-x.elc.
10394
10395 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
10396
10397 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
10398 to use `goto-line'.
10399 (gdb-place-breakpoints, gdb-get-location): Rewritten without
10400 `goto-line'.
10401 (gdb-invalidate-disassembly): Do not refresh upon receiving
10402 'update signal. Instead, update all disassembly buffers only after
10403 threads list.
10404 (gdb): Send -target-detach when buffer is killed (Bug#3794).
10405 (gdb-starting): Moved -data-list-register-names...
10406 (gdb-stopped): ...here so it's sent when first thread stops.
10407 (gdb-registers-handler-custom): Do nothing if register names are
10408 unknown yet.
10409
10410 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
10411 from `gdb-mi.el' to avoid extra tangling.
10412
10413 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
10414 change which breaks `gud-def' definitions used in `gdb'.
10415 (gdb-update-gud-running): No extra fuss for updating frame number.
10416
10417 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
10418
10419 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
10420 (describe-language-environment-map, setup-language-environment-map)
10421 (set-coding-system-map): Move initialization into declaration.
10422 (set-language-info-alist): Last arg to define-key-after can be skipped.
10423
10424 * international/quail.el (quail-completion-1): Simplify.
10425 (quail-define-rules): Use slightly more compact code.
10426 (quail-insert-decode-map): Propertize keys, compact columns.
10427
10428 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10429 Add goto-line.
10430
10431 2009-08-10 Miles Bader <miles@gnu.org>
10432
10433 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
10434 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
10435 (js2-instance-member, js2-private-member, js2-private-function-call)
10436 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
10437 (js2-magic-paren, js2-external-variable):
10438 Remove "-face" suffix from face names.
10439 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
10440 (js2-highlight-undeclared-vars, js2-peek-token)
10441 (js2-parse-function-params, js2-mode-show-errors)
10442 (js2-mode-show-warnings, js2-make-magic-delimiter)
10443 (js2-mode-highlight-magic-parens): Update to use new face names.
10444
10445 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
10446
10447 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
10448 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
10449
10450 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
10451
10452 * subr.el: Provide hashtable-print-readable.
10453
10454 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
10455 hs-c-like-adjust-block-beginning.
10456 (hs-hide-block-at-point): Stop hiding at the beginning of
10457 hs-block-end-regexp (Bug#700).
10458
10459 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
10460
10461 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
10462 a macro.
10463 (gdb-registers-handler-custom): Do not fail when register names
10464 are unavailable.
10465
10466 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
10467
10468 * progmodes/gdb-mi.el (gdb-control-all-threads)
10469 (gdb-control-current-thread): Interactive setters for
10470 `gdb-gud-control-all-threads' to use in menu.
10471 (gdb-show-run-p): Show «Go» when process is not active.
10472 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
10473 gud/thread.xpm and gud/all.xpm.
10474
10475 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
10476
10477 * net/net-utils.el (net-utils-font-lock-keywords): New var.
10478 (nslookup-font-lock-keywords): Make it a variable.
10479 (net-utils-mode): New mode for viewing diagnostic network output.
10480 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
10481 (net-utils-run-simple): New function.
10482 (ifconfig, iwconfig, netstat, arp, route): Use it.
10483
10484 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
10485
10486 * progmodes/gdb-mi.el (gdb-read-memory-custom)
10487 (gdb-memory-set-address, def-gdb-set-positive-number)
10488 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
10489 after changing settings.
10490 (gdb-invalidate-disassembly): Update when first shown.
10491 (gdb-edit-locals-value): Fixed.
10492 (gdb-registers-handler-custom): Print registers in right order and
10493 allow changing register values (only for current thread yet).
10494 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
10495 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
10496 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
10497 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
10498 info in mode name.
10499 (gdb-registers-mode-map): TAB to switch to locals.
10500
10501 2009-08-08 Eli Zaretskii <eliz@gnu.org>
10502
10503 * mail/rmail.el (rmail-add-mbox-headers)
10504 (rmail-set-message-counters-counter): Search for
10505 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
10506
10507 2009-08-08 Glenn Morris <rgm@gnu.org>
10508
10509 * Makefile.in (ELCFILES): Update.
10510
10511 2009-08-07 Eli Zaretskii <eliz@gnu.org>
10512
10513 * mail/sendmail.el (mail-yank-original): Set
10514 buffer-file-coding-system from the one used by the message whose
10515 text is yanked.
10516
10517 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
10518 to "windows" when "pgnuplot" is used.
10519 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
10520 call accept-process-output if "pgnuplot" is used.
10521 (calc-graph-init): Don't send -display and -geometry to
10522 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
10523 running "pgnuplot -V" with shell-command-to-string.
10524
10525 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
10526 the default.
10527
10528 2009-08-07 Eli Zaretskii <eliz@gnu.org>
10529
10530 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
10531 org/org-latex.elc.
10532
10533 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
10534
10535 * vc-dispatcher.el (vc-resynch-window): Update comment.
10536
10537 * term.el (term-handle-ansi-escape): Add comments with the
10538 terminfo capabilities implemented.
10539
10540 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
10541
10542 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
10543 (gdb-var-create-handler): Rewritten using JSON parser.
10544 (gdb-propertize-header): Moved earlier.
10545 (gdb-set-header): Removed to avoid duplication.
10546 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
10547 Refresh disassembly buffers only after threads list have been
10548 update.
10549 (gdb-threads-header, gdb-registers-header): Per-buffer header line
10550 variables.
10551
10552 2009-08-04 Juri Linkov <juri@jurta.org>
10553
10554 * files.el: Commands to add/delete file/directory-local variables.
10555 (read-file-local-variable, read-file-local-variable-value)
10556 (read-file-local-variable-mode, modify-file-local-variable)
10557 (modify-file-local-variable-prop-line)
10558 (modify-dir-local-variable): New functions.
10559 (add-file-local-variable, delete-file-local-variable)
10560 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
10561 (add-dir-local-variable, delete-dir-local-variable)
10562 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
10563 (copy-dir-locals-to-file-locals-prop-line): New commands.
10564
10565 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
10566
10567 * abbrev.el (insert-abbrev-table-description): Prettify output.
10568 Suggested by Karl Chen.
10569
10570 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
10571
10572 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
10573 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
10574 (gdb-overlay-arrow-position, gdb-thread-position)
10575 (gdb-disassembly-position): Declare variables.
10576 (gdb-wait-for-pending): Function now.
10577 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
10578 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
10579 compilation goes smoothly.
10580 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
10581 (gdb-non-stop-setting): New customization setting which replaces
10582 `gdb-non-stop' so changing it doesn't break active GDB session.
10583 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
10584 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
10585 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
10586 (gdb-show-threads-by-default): New customization options.
10587 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
10588 routines.
10589 (gdb-get-buffer-create): Send buffers update signal when they are
10590 created.
10591 (gdb-invalidate-locals, gdb-invalidate-registers)
10592 (gdb-invalidate-breakpoints)
10593 (gdb-invalidate-threads, gdb-invalidate-disassembly)
10594 (gdb-invalidate-memory): Accept update signal.
10595 (gdb-current-context-command): Use --frame option.
10596 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
10597 Implement `gdb-frame-number' selection logic.
10598 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
10599 whether to show GUD toolbar buttons.
10600 (gdb-thread-exited): Unselect current thread when it exits.
10601 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
10602 (gdb-mark-line): Routine which sets overlay arrow or inverses
10603 video on fringeless displays.
10604 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
10605 to build aligned columns of data in GDB buffers and set text
10606 properties line-by-line.
10607 (gdb-invalidate-breakpoints)
10608 (gdb-breakpoints-list-handler-custom)
10609 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
10610 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
10611 (gdb-registers-handler-custom): Align data columns.
10612 (gdb-locals-handler-custom): Now prints data like in variable
10613 declarations.
10614 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
10615 Removed confusing buttons.
10616 (gdb-invalidate-threads): Append --frame.
10617 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
10618 between breakpoints/threads buffers.
10619 (gdb-set-window-buffer): Now can ignore dedicated windows.
10620 (gdb-propertize-header): Use `gdb-set-window-buffer'.
10621 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
10622 (def-gdb-thread-buffer-gud-command): Replaces
10623 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
10624 for fine thread control.
10625 (gdb-preempt-existing-or-display-buffer): New function used to
10626 display bound buffers without breaking window layout.
10627 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
10628 (gdb-select-frame): New version of `gdb-frames-select' which now
10629 sets `gdb-frame-number' so commands may use --frame option instead
10630 of inner debugger state.
10631 (gdb-frame-handler): Do not set `gdb-frame-number'.
10632 (gdb-threads-mode-map): Select threads with mouse.
10633
10634 * progmodes/gud.el (gdb-gud-context-call): Declare function to
10635 avoid compilation warning.
10636 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
10637 `gdb-show-stop-p`.
10638
10639 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
10640 Argument `key' renamed to `buffer-type'.
10641 (gdb-current-context-buffer-name): Do not add thread info to
10642 buffer name when no thread is selected.
10643 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
10644 command (bug 3794).
10645 (gdb-thread-selected): Handle `=thread-selected' notification.
10646 (gdb-wait-for-pending): New macro to deal with congestion problems.
10647 (gdb-breakpoints-list-handler-custom): Don't fail on pending
10648 breakpoints.
10649 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
10650 This fixes problem similar to one described in bug 3947.
10651 (gud-menu-map): More menu items.
10652 (gdb-init-1): Reset `gdb-thread-number' to nil.
10653
10654 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
10655 non-stop settings.
10656
10657 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
10658 (gdb-current-context-command): Do not append --thread if
10659 `gdb-thread-number' is nil.
10660 (gdb-running-threads-count, gdb-stopped-threads-count): New
10661 variables.
10662 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
10663 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
10664 customization options.
10665 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
10666 GUD commands.
10667 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
10668 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
10669 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
10670 set `gdb-thread-number' and update `gud-running' properly.
10671 (gdb-running): Update threads list when new threads appear.
10672 (gdb-stopped): Support non-stop operation and new thread switching
10673 logic.
10674 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
10675 (gdb-json-partial-output): New set of JSON routines.
10676 (def-gdb-auto-update-trigger): New `signal-list' optional
10677 argument.
10678 (gdb-thread-list-handler-custom): Update `gud-running',
10679 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
10680 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
10681 (gdb-continue-thread, gdb-step-thread): New commands for fine
10682 thread execution control.
10683 (gud-menu-map): New menu items to switch non-stop options.
10684 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
10685 (gdb-send): Mimic RET properly (bug 3794).
10686
10687 * progmodes/gdb-mi.el (gdb-rules-name-maker)
10688 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
10689 gdb-buffer-rules.
10690 (def-gdb-auto-update-handler): New nopreserve optional argument.
10691 (gdb-stack-list-frames-custom): Print stack from top to bottom.
10692
10693 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
10694 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
10695 (gdb-parent-mode): New mode to derive other GDB modes from.
10696 (gdb-display-disassembly-for-thread)
10697 (gdb-frame-disassembly-for-thread): New commands for threads
10698 buffer.
10699
10700 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
10701 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
10702 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
10703 (gdb-update): We now store all GDB buffers in a list so that they
10704 can be updated by traversing a list instead of calling invalidate
10705 triggers explicitly.
10706 (def-gdb-trigger-and-handler): New macro to define trigger-handler
10707 pair for GDB buffer.
10708 (gdb-stack-buffer-name): Add thread information.
10709 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
10710 handle pending triggers.
10711 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
10712 (def-gdb-thread-buffer-simple-command)
10713 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
10714 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
10715 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
10716 New commands which show buffers bound to thread.
10717 (gdb-stack-list-locals-regexp): Removed unused regexp.
10718
10719 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
10720 (gdb-locals-buffer-name, gdb-registers-buffer-name)
10721 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
10722 to (gud-comint-buffer) in *-buffer-name functions
10723 because (gdb-get-target-string) already does that.
10724 (gdb-locals-handler-custom, gdb-registers-handler-custom)
10725 (gdb-changed-registers-handler): Rewritten without regexps.
10726
10727 * progmodes/gdb-mi.el: Basic thread selection support.
10728 (gdb-thread-number): New variable.
10729 (gdb-current-context-command): New macro which adds --thread
10730 option to command.
10731 (gdb-threads-mode-map): Select thread with SPC.
10732 (gdb-thread-list-handler-custom): Mark current thread with overlay
10733 arrow. Synchronize GDB thread and Emacs thread.
10734 (gdb-select-thread): New command which selects current thread.
10735 (gdb-invalidate-frames, gdb-invalidate-locals)
10736 (gdb-invalidate-registers): Use --thread option.
10737
10738 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
10739
10740 * net/tramp.el (top): Make check for tramp-gvfs loading more
10741 robust. (Bug#3977)
10742 (tramp-handle-insert-file-contents): `unwind-protect' must be
10743 inside `with-parsed-tramp-file-name'.
10744
10745 * net/tramp-gvfs.el (top): Remove superfluous message when loading
10746 fails.
10747
10748 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
10749
10750 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
10751 directory if CLASSPATH is not set.
10752
10753 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
10754
10755 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
10756 New defconst.
10757 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
10758
10759 2009-08-02 Kevin Ryde <user42@zip.com.au>
10760
10761 * net/newst-backend.el (newsticker--raw-url-list-defaults):
10762 Update freshmeat link. Delete newsforge.com as it seems gone.
10763
10764 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10765
10766 * select.el (x-set-selection): Doc fix (Bug#4021).
10767
10768 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10769
10770 * help-fns.el (describe-variable): Treat list return values from
10771 dir-locals-find-file properly (Bug#4005).
10772
10773 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
10774
10775 * net/tramp.el (tramp-debug-message): Print also microseconds.
10776
10777 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
10778
10779 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10780 or END is non-nil.
10781 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10782 (tramp-get-debug-buffer): Change `outline-regexp' according to new
10783 format.
10784
10785 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10786 (tramp-get-file-property): Use it.
10787
10788 * autorevert.el (auto-revert-handler): Allow
10789 `auto-revert-tail-mode' for remote files.
10790
10791 2009-08-02 Jason Rumney <jasonr@gnu.org>
10792
10793 * minibuffer.el (read-file-name): Treat confirm options to
10794 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
10795
10796 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10797
10798 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10799 (font-lock-variable-name-face, font-lock-constant-face): Darken
10800 the colors for light backgrounds.
10801
10802 2009-08-01 Eli Zaretskii <eliz@gnu.org>
10803
10804 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10805 month names. (Bug#3987)
10806
10807 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
10808
10809 * simple.el (line-move-finish): Pass whole number to
10810 line-move-to-column.
10811 (line-move-visual): Perform hscroll to the recorded position.
10812
10813 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
10814
10815 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10816
10817 2009-07-29 Alan Mackenzie <acm@muc.de>
10818
10819 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10820
10821 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
10822
10823 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10824 (gdb-place-breakpoints): Use full path when setting breakpoints.
10825
10826 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
10827
10828 * calc/calc.el (calc-mode-map): Add keybinding for
10829 `calc-transpose-lines'.
10830
10831 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
10832
10833 * calc/calc-misc.el (calc-transpose-lines): New function.
10834
10835 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
10836
10837 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10838 Simplify check for out-of-band methods.
10839 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10840 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
10841
10842 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
10843
10844 * vc-git.el (vc-git-checkin): Fix typo.
10845
10846 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
10847
10848 * progmodes/js2-mode.el: New file.
10849
10850 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
10851
10852 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10853 (gud-menu-map): Adjust tooltip accordingly.
10854
10855 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
10856
10857 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10858 (vc-bzr-log-view-mode): Adjust log-view-file-re.
10859
10860 * add-log.el (change-log-mode-map): Add a menu.
10861
10862 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
10863
10864 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10865 function returns nil.
10866 (dbus-handle-event): Handle special return value :ignore.
10867 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10868
10869 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
10870
10871 * view.el (view-mode-enable): Don't define Helper-return-blurb if
10872 it's not needed.
10873
10874 2009-07-25 Eli Zaretskii <eliz@gnu.org>
10875
10876 Fix Bug#3888:
10877
10878 * w32-vars.el (x-select-enable-clipboard): Doc fix.
10879
10880 * term/pc-win.el (x-display-name, x-colors)
10881 (x-select-enable-clipboard, x-select-text): Doc fix.
10882
10883 * term/common-win.el (x-display-name, x-colors): Doc fix.
10884
10885 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10886 (xw-defined-colors): Doc fix.
10887
10888 * w32-fns.el (x-select-text, x-setup-function-keys)
10889 (x-get-selection, x-set-selection): Doc fix.
10890
10891 * term/x-win.el (x-select-text, x-setup-function-keys)
10892 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10893
10894 * select.el (x-set-selection): Doc fix.
10895
10896 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
10897
10898 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10899 instead of "IsNSSSupportAvailable". Avahi ought to work also when
10900 "IsNSSSupportAvailable" method is not available. Reported by
10901 Steve Youngs <steve@sxemacs.org>.
10902
10903 2009-07-24 Kenichi Handa <handa@m17n.org>
10904
10905 * international/characters.el: Fix setting of category ?C, ?|, ?K,
10906 and ?H. Fix setting of case for Latin Extended and Greek Extended.
10907 (build-unicode-category-table): Fix range checks.
10908
10909 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
10910
10911 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10912 the buffer we try to sync is current when calling
10913 vc-resynch-buffer.
10914
10915 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10916 not show up to date files.
10917
10918 2009-07-24 Glenn Morris <rgm@gnu.org>
10919
10920 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10921 Add autoload cookies. If necessary, initialize.
10922 (elint-log): Handle non-file buffers.
10923 (elint-initialize): Add optional argument to reinitialize.
10924 (elint-find-builtin-variables): Save excursion.
10925
10926 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
10927
10928 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10929 for Lint.
10930
10931 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10932
10933 * vc.el (vc-print-log-internal): New function, split out from ...
10934 (vc-print-log): ... here.
10935 (vc-dir-move-to-goal-column): Declare.
10936
10937 * vc-git.el (vc-git-add-signoff): New variable.
10938 (vc-git-checkin): Use it.
10939 (vc-git-toggle-signoff): New function.
10940 (vc-git-extra-menu-map): Bind it to menu.
10941 (vc-git--run-command-string): Accept a nil FILE argument.
10942 (vc-git-stash-list): New function.
10943 (vc-git-dir-extra-headers): Use it.
10944
10945 2009-07-23 Glenn Morris <rgm@gnu.org>
10946
10947 * help-fns.el (describe-variable): Describe ignored and risky local
10948 variables in a similar way to that in which we describe safe ones.
10949
10950 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10951 (byte-compile-output-file-form, byte-compile-output-docform)
10952 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10953 Give some more local variables with common names a "bytecomp-" prefix,
10954 so as not to shadow things during compilation.
10955 * emacs-lisp/cl-macs.el (load-time-value)
10956 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10957 `outbuffer' to `bytecomp-outbuffer'.
10958
10959 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10960 since the next two variables cover them automatically now.
10961 (elint-builtin-variables, elint-autoloaded-variables): New.
10962 (elint-unknown-builtin-args): Remove all members, since they can be
10963 parsed automatically now.
10964 (elint-extra-errors): New.
10965 (elint-env-add-env, elint-env-add-macro): Use cadr.
10966 (elint-current-buffer): Use or. Change final message.
10967 (elint-get-top-forms): Use line-end-position.
10968 (elint-init-env): Use cadr. Handle autoload, declare-function,
10969 and defalias.
10970 (elint-add-required-env): Doc fix. Use or. Standardize error.
10971 (regexp-assoc): Remove unused function.
10972 (elint-top-form): Set elint-current-pos, to record the start of the
10973 top-level form, for compilation-mode.
10974 (elint-form): Trap errors in macro expansion. Use dolist.
10975 (elint-unbound-variable): Use elint-builtin-variables and
10976 elint-autoloaded-variables.
10977 (elint-get-args): Use cadr, or.
10978 (elint-check-cond-form): Use dolist, cadr.
10979 (elint-check-condition-case-form): Doc fix. Use cadr.
10980 Use elint-extra-errors.
10981 (elint-log): New function.
10982 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10983 Distinguish errors and warnings.
10984 (elint-log-message): Use with-current-buffer. Inhibit read-only.
10985 Use a bytecomp-style format.
10986 (elint-clear-log): Preserve default-directory. Inhibit read-only.
10987 (elint-get-log-buffer): Use compilation mode. Disable undo.
10988 Don't truncate lines.
10989 (elint-initialize): Set builtin and autoloaded variable lists.
10990 Only process elint-unknown-builtin-args if non-nil.
10991 (elint-find-builtin-variables, elint-find-autoloaded-variables):
10992 New functions.
10993 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
10994
10995 2009-07-22 Kevin Ryde <user42@zip.com.au>
10996
10997 * net/newst-backend.el (newsticker--parse-atom-1.0)
10998 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10999 (newsticker--parse-rss-1.0):
11000 * progmodes/idlwave.el (idlwave-mode):
11001 * progmodes/idlw-shell.el (idlwave-shell-mode):
11002 * progmodes/vera-mode.el (vera-mode):
11003 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
11004 * progmodes/vhdl-mode.el (vhdl-mode):
11005 * textmodes/table.el (table-generate-source)
11006 (table--warn-incompatibility):
11007 Hyperlink urls in docstrings with URL `...'.
11008
11009 2009-07-22 Glenn Morris <rgm@gnu.org>
11010
11011 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
11012 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
11013 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
11014 Remove leading * from defcustom docs.
11015
11016 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
11017
11018 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
11019 defcustom doc.
11020 (list-load-path-shadows): Optionally, just return shadows as a string.
11021
11022 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
11023
11024 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
11025
11026 * mail/rmailedit.el (rmail-edit-mode): Use
11027 auto-save-include-big-deletions.
11028
11029 * mail/rmail.el (rmail-variables): Use
11030 auto-save-include-big-deletions.
11031
11032 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
11033 changes.
11034
11035 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
11036
11037 * calc/calc.el (calc-undo-length): New variable.
11038 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
11039
11040 2009-07-21 Richard Stallman <rms@gnu.org>
11041
11042 * files.el (auto-save-mode): Handle buffer-save-size = -2
11043 for toggling mode.
11044
11045 2009-07-21 Glenn Morris <rgm@gnu.org>
11046
11047 * textmodes/ispell.el (ispell-looking-back): Update declaration.
11048
11049 * calendar/todo-mode.el (calendar-current-date): Update declaration.
11050
11051 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
11052 silence compiler. Instead...
11053 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
11054 (ps-print-ensure-fontified): Update for above function name changes.
11055
11056 * printing.el (pr-mh-get-msg-num, pr-mh-show)
11057 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
11058 silence compiler. Instead...
11059 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
11060 (mh-show-buffer): Only define for compiler.
11061 (pr-mh-current-message): Update for above function name changes.
11062
11063 * files.el (abort-if-file-too-large): Explicitly pass `filename'
11064 as an argument.
11065 (find-file-noselect, insert-file-1): Update for above change.
11066
11067 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
11068
11069 * mail/mailclient.el (mailclient-send-it): Fix message.
11070
11071 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
11072 (edebug-eval): Check cl-debug-env is bound.
11073 (print-level, print-circle): Don't redefine built-in variables.
11074
11075 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
11076 (custom-print-vectors): Remove old comments from doc.
11077
11078 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
11079 (emerge-version): Make the variable an obsolete alias for the
11080 emacs-version variable. Make the function obsolete.
11081 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
11082 Emerge options, rather than merging in into the main Options menu.
11083 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
11084 and auto advance modes. Disable edit/fast items when not relevant.
11085
11086 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
11087
11088 * term/vt420.el (terminal-init-vt420): Fix typo.
11089
11090 2009-07-20 Sam Steingold <sds@gnu.org>
11091
11092 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
11093 variable (removed from compile.el on 2004-03-11).
11094
11095 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
11096
11097 * files.el (hack-local-variables-filter): Fix last change.
11098
11099 2009-07-19 Juri Linkov <juri@jurta.org>
11100
11101 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
11102 (dir-local-variables-alist): New buffer-local variable.
11103 (hack-local-variables-filter): If variable is not dir-local,
11104 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
11105 because file-local overrides dir-local.
11106 (c-postprocess-file-styles) <declare-function>:
11107 Remove obsolete declaration.
11108 (hack-dir-local-variables): Add dir-local variable/value pair to
11109 `dir-local-variables-alist' and remove duplicates. Doc fix.
11110
11111 * help-fns.el (describe-variable): Add information about
11112 file-local and dir-local variables.
11113
11114 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
11115
11116 * files.el (hack-local-variables-filter): Rewrite.
11117
11118 2009-07-19 Glenn Morris <rgm@gnu.org>
11119
11120 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
11121 Silence compiler by only defining on XEmacs.
11122
11123 * international/mule.el (auto-coding-regexp-alist): Only match
11124 BABYL... at the start of buffer, not of lines. (Bug#3790)
11125
11126 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
11127 non-calendar buffers (Bug#3862). Restore "not on a date" message.
11128 (cal-menu-context-mouse-menu): Doc fix.
11129
11130 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
11131
11132 * simple.el (mail-user-agent): Doc fix. Set :version tag.
11133
11134 2009-07-18 Juri Linkov <juri@jurta.org>
11135
11136 * info.el: Virtual Info keyword finder.
11137 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
11138 (Info-finder-file): New variable.
11139 (Info-finder-find-file): New function.
11140 (finder-known-keywords, finder-package-info)
11141 (find-library-name, lm-commentary): Use defvar and
11142 declare-function to silence compiler warnings.
11143 (Info-finder-find-node): New function.
11144 (info-finder): New command.
11145
11146 * subr.el (process-kill-buffer-query-function): New function.
11147 (add-hook)<kill-buffer-query-functions>: Add hook
11148 `process-kill-buffer-query-function'.
11149
11150 2009-07-18 Alan Mackenzie <acm@muc.de>
11151
11152 * progmodes/cc-mode.el (c-before-hack-hook)
11153 (c-postprocess-file-styles): Give invocation of `c-set-style'
11154 DONT-OVERRIDE parameter of t. Already set style variables will
11155 thus not be overridden by style settings given by `c-file-syle'.
11156
11157 * files.el (hack-local-variables-filter): Remove entries with
11158 duplicate keys from `file-local-variables-alist'.
11159
11160 2009-07-18 Eli Zaretskii <eliz@gnu.org>
11161
11162 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
11163 x-set-selection if display-selections-p returns nil for the
11164 current frame.
11165
11166 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
11167
11168 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
11169
11170 2009-07-18 Eli Zaretskii <eliz@gnu.org>
11171
11172 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
11173 Accept nil in addition to a regexp.
11174 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
11175 Accept nil in addition to a regexp.
11176 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
11177 buffers that have an associated file. Handle nil values of
11178 desktop-buffers-not-to-save and desktop-files-not-to-save.
11179 (Bug#3833)
11180
11181 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11182 (x-disown-selection-internal): New functions.
11183
11184 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
11185
11186 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
11187 warning.
11188 (gdb-breakpoints-header): Move forward to avoid compiler warning.
11189 (gdb-make-header-line-mouse-map): Remove duplicate definition.
11190
11191 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
11192
11193 * simple.el (set-mark): Revert last change.
11194
11195 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
11196
11197 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
11198 rendering of pngs is not possible instead of messaging a long
11199 description.
11200
11201 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
11202
11203 * w32-fns.el (x-selection-owner-p): New function.
11204
11205 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
11206 (mouse-yank-at-click, mouse-yank-primary): If
11207 select-active-regions is non-nil, deactivate the mark before
11208 insertion.
11209
11210 * simple.el (deactivate-mark, set-mark): Only save selection if we
11211 own it.
11212
11213 2009-07-17 Kenichi Handa <handa@m17n.org>
11214
11215 * case-table.el (describe-buffer-case-table): Fix for the case
11216 that KEY is a cons.
11217
11218 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
11219
11220 * vc-rcs.el (vc-rcs-find-file-hook):
11221 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
11222
11223 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
11224
11225 * net/tramp.el (tramp-wait-for-output): Handle the case when
11226 commands do not return a newline but a null byte before the shell
11227 prompt. (Bug#3858)
11228
11229 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11230
11231 * term/ns-win.el (ns-set-alpha): Don't declare.
11232 (ns-set-background-alpha): Remove function.
11233
11234 2009-07-16 Kevin Ryde <user42@zip.com.au>
11235
11236 * emacs-lisp/copyright.el (copyright-update): Save match-data across
11237 y-or-n-p, for safety.
11238
11239 2009-07-16 Richard Stallman <rms@gnu.org>
11240
11241 * files.el (auto-save-mode): If buffer-saved-size is -2,
11242 don't clobber it.
11243
11244 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
11245 (rmail-retry-ignored-headers): Add more uninteresting fields.
11246
11247 2009-07-15 Jari Aalto <jari.aalto@cante.net>
11248
11249 * net/rcirc.el (rcirc): Use history variables.
11250 (rcirc-server-name-history, rcirc-nick-name-history)
11251 (rcirc-server-port-history): New variables.
11252
11253 2009-07-15 Kenichi Handa <handa@m17n.org>
11254
11255 * international/mule-cmds.el (set-language-environment-charset):
11256 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
11257 ignore them.
11258
11259 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
11260 Delete unibyte-display.
11261
11262 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11263
11264 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
11265
11266 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11267
11268 * simple.el (deactivate-mark): Optional argument FORCE.
11269 (set-mark): Use deactivate-mark.
11270
11271 * info.el (Info-search): No need to check transient-mark-mode
11272 before calling deactivate-mark.
11273
11274 * select.el (x-set-selection): Doc fix.
11275 (x-valid-simple-selection-p): Allow buffer values.
11276 (xselect--selection-bounds): Handle buffer values. Suggested by
11277 David De La Harpe Golden.
11278
11279 * mouse.el (mouse-set-region, mouse-drag-track): Call
11280 copy-region-as-kill before setting the mark, to let
11281 select-active-regions work.
11282
11283 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
11284
11285 * simple.el (deactivate-mark): If select-active-regions is
11286 non-nil, copy the selection data into a string.
11287 (activate-mark): If select-active-regions is non-nil, set the
11288 selection to the current buffer.
11289 (set-mark): Update selection if select-active-regions is non-nil.
11290
11291 * select.el (x-valid-simple-selection-p): Allow buffer values.
11292
11293 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
11294
11295 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
11296 and more featureful message-mode.
11297
11298 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
11299
11300 * select.el (x-set-selection): Doc fix.
11301 (x-valid-simple-selection-p): Disallow selection data consisting
11302 of a list or cons of integers, since that is not used.
11303 (xselect--selection-bounds, xselect--int-to-cons): New functions.
11304 (xselect-convert-to-string, xselect-convert-to-length)
11305 (xselect-convert-to-filename, xselect-convert-to-charpos)
11306 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
11307
11308 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
11309
11310 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
11311 output in -break-info command (Emacs bug #3794).
11312
11313 2009-07-14 Glenn Morris <rgm@gnu.org>
11314
11315 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
11316 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
11317 (edebug-print-length, edebug-print-level, edebug-print-circle)
11318 (edebug-sit-for-seconds, edebug-view-outside)
11319 (edebug-bounce-point, edebug-set-global-break-condition)
11320 (edebug-Go-nonstop-mode, edebug-trace-mode)
11321 (edebug-Trace-fast-mode, edebug-continue-mode)
11322 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
11323 (edebug-visit-eval-list): Doc fixes.
11324
11325 * subr.el (def-edebug-spec): Doc fix.
11326
11327 2009-07-14 Kenichi Handa <handa@m17n.org>
11328
11329 * international/characters.el: Fix setting of category ?C.
11330
11331 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
11332
11333 * term/ns-win.el (x-select-font): defalias x-select-font to
11334 ns-popup-font-panel instead of generate-fontset-menu.
11335
11336 2009-07-12 Eli Zaretskii <eliz@gnu.org>
11337
11338 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
11339
11340 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
11341
11342 * arc-mode.el (archive-find-type): Allow for a PK00 string before
11343 the PK\003\004 header (Bug#3770).
11344
11345 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
11346
11347 * pcomplete.el (pcomplete-comint-setup): Check for
11348 shell-dynamic-complete-filename too.
11349
11350 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
11351
11352 * simple.el (temporary-goal-column): Change the value for
11353 line-move-visual to a cons cell.
11354 (line-move-visual): Record or set the window hscroll, if
11355 necessary (Bug#3494).
11356 (line-move-1): Handle cons value of temporary-goal-column.
11357
11358 2009-07-11 Kenichi Handa <handa@m17n.org>
11359
11360 * international/mule-diag.el (describe-character-set): Don't show
11361 width.
11362
11363 2009-07-10 Sam Steingold <sds@gnu.org>
11364
11365 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11366 Omake sometimes indents the errors it prints, so allow all
11367 regexps to start with spaces.
11368
11369 2009-07-10 Eli Zaretskii <eliz@gnu.org>
11370
11371 * cus-edit.el (customize-changed-options-previous-release):
11372 Bump value to 22.1. (Bug#3804)
11373
11374 2009-07-08 Sam Steingold <sds@gnu.org>
11375
11376 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
11377 to be a cons cell (test . ignored-directory) to selectively ignore
11378 some directories depending on the location of the search.
11379
11380 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
11381
11382 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
11383 remote user is root, on the local host.
11384 (tramp-local-host-p): Either the local user or the remote user
11385 must be root. (Bug#3771)
11386
11387 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
11388
11389 * progmodes/gdb-mi.el (gdb): Remove description of
11390 gdb-use-separate-io-buffer.
11391 (menu): Don't allow toggling of or enable
11392 gdb-use-separate-io-buffer from menubar.
11393
11394 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
11395
11396 * mail/unrmail.el (unrmail): Make sure the message ends with two
11397 newlines (Bug#3769).
11398
11399 2009-07-08 Glenn Morris <rgm@gnu.org>
11400
11401 * calendar/calendar.el (calendar-current-date): Rework previous change.
11402
11403 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
11404
11405 * calendar/calendar.el (calendar-current-date):
11406 Add an optional argument giving an offset from today.
11407
11408 2009-07-08 Glenn Morris <rgm@gnu.org>
11409
11410 * tutorial.el (tutorial--describe-nonstandard-key):
11411 Adjust the message for when a key has been unbound.
11412 (help-with-tutorial): Hide the arch-tag.
11413
11414 2009-07-08 Kenichi Handa <handa@m17n.org>
11415
11416 * international/fontset.el (setup-default-fontset): For each
11417 script, append (not set) font-specs.
11418
11419 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
11420 docstring.
11421
11422 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
11423
11424 * progmodes/gdb-mi.el (gdb-init-1): Move sending
11425 -data-list-register-names to ...
11426 (gdb-starting): ... here because GDB 7.0 requires execution to
11427 have started when using this MI command.
11428 (gdb-set-header): New function to distinguish select and
11429 unselected tabs in gdb buffers.
11430 (gdb-propertize-header): New macro that uses gdb-set-header.
11431 (gdb-breakpoints-header, gdb-locals-header): Use it.
11432 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
11433
11434 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
11435
11436 * Makefile.in (ELCFILES): Remove fadr.elc.
11437
11438 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
11439
11440 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
11441 may contain frame information, so `string-match' should be used.
11442 (gdb-update): Disassembly is invalidated through
11443 `gdb-get-selected-frame'.
11444 (gdb-pad-string): New function to pad string with spaces.
11445 (gdb-invalidate-disassembly): Invalidate only if the buffer
11446 exists.
11447 (gdb-disassembly-handler-custom): Column alignment.
11448 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
11449 placing new ones.
11450 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
11451 end of line, too.
11452 (gdb-frame-handler): Match convention to for disassembly buffer
11453 mode name.
11454 (gdb-stack-list-frames-handler): Rewritten without regexps.
11455 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
11456 not highlight breakpoints without line information.
11457 (gdb-input): Add trailing newline to command.
11458
11459 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
11460 buffer properly.
11461 (gdb-breakpoints-list-handler-custom): Replacement for
11462 `gdb-break-list-handler'. Using real parser instead of regexps
11463 now.
11464 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
11465 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
11466 to place breakpoints.
11467 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
11468 functions.
11469 (gdb-disassembly-handler-custom): Show overlay arrow.
11470 (gdb-disassembly-place-breakpoints): Show breakpoints in
11471 disassembly buffer.
11472 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
11473 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
11474 instead of parsing breakpoints buffer. Fixed old menu references
11475 in `gud-menu-map'.
11476
11477 * fadr.el: Remove.
11478
11479 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
11480 (gdb-memory-address): New variable which holds top address of
11481 memory page shown in memory buffer.
11482 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
11483 customization variables.
11484 New functions:
11485 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
11486 display the memory buffer.
11487 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
11488 buffer display parameters.
11489 (def-gdb-memory-format, gdb-memory-format-binary)
11490 (gdb-memory-format-octal, gdb-memory-format-unsigned)
11491 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
11492 Functions for setting memory buffer format.
11493 (gdb-memory-unit-word, gdb-memory-unit-halfword)
11494 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
11495 unit size used in memory buffer.
11496 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
11497 to next/previous page of memory buffer.
11498 Now using (bindat-get-field) instead of fadr functions.
11499
11500 2009-07-07 Sam Steingold <sds@gnu.org>
11501
11502 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
11503 non-top-level files.
11504
11505 2009-07-07 Kenichi Handa <handa@m17n.org>
11506
11507 * international/mule-cmds.el (reset-language-environment): Put
11508 the highset priority to the charset iso-8859-1.
11509
11510 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
11511
11512 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
11513 to the end of the line when locating the block (Bug#700).
11514
11515 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
11516
11517 * net/tramp.el (tramp-handle-write-region): Flush file properties
11518 in case of short track.
11519
11520 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
11521
11522 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
11523 Coded custom representation of verilog error regular expressions
11524 to work with Emacs-22's new format.
11525 (verilog-error-regexp-xemacs-alist): Coded custom representation
11526 of verilog error regular expressions to work with XEmacs format.
11527 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
11528 error recognition into XEmacs.
11529 (verilog-error-regexp-add-emacs): Hook routine to install verilog
11530 error recognition into Emacs-22.
11531
11532 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
11533
11534 * woman.el: Remove stand-alone closing parentheses.
11535 (woman-file-name, woman2-format-paragraphs)
11536 (woman-leave-blank-lines): Code cleanup.
11537 (woman-use-own-frame): Change default to nil.
11538 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
11539 defaults to inherit from default faces.
11540 (woman2-process-escapes): Consume the newline after a stand-alone
11541 filler character (Bug#3651).
11542
11543 2009-07-06 Glenn Morris <rgm@gnu.org>
11544
11545 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
11546 (top-level): Move provide to the end.
11547 (ffap): Remove defunct URL from custom group.
11548
11549 * subr.el (eval-after-load): Doc fix.
11550
11551 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
11552
11553 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
11554 `calc-embedded-word' is called twice.
11555
11556 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11557
11558 * files.el (find-alternate-file-other-window, find-alternate-file):
11559 Obey confirm-nonexistent-file-or-buffer.
11560
11561 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
11562
11563 * dired-aux.el (dired-show-file-type): Handle remote files.
11564
11565 2009-07-05 Jari Aalto <jari.aalto@cante.net>
11566
11567 * desktop.el (desktop-globals-to-save):
11568 Add file-name-history (Bug#2750).
11569
11570 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
11571
11572 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
11573
11574 2009-07-04 Johan Bockgård <bojohan@gnu.org>
11575
11576 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
11577 property on entire argument since this is what eshell-lisp-command
11578 expects.
11579
11580 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
11581
11582 * net/tramp-gvfs.el (tramp-gvfs-methods)
11583 (tramp-gvfs-zeroconf-domain)
11584 (tramp-bluez-discover-devices-timeout): Add version flag.
11585 (tramp-gvfs-handler-mounted-unmounted)
11586 (tramp-gvfs-connection-mounted-p): Polish handling of
11587 incompatibilities between GVFS 0.2 and 1.0.
11588
11589 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
11590
11591 * cus-start.el (all): Add make-pointer-invisible.
11592
11593 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
11594
11595 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
11596 formatted correctly.
11597
11598 2009-07-02 Juri Linkov <juri@jurta.org>
11599
11600 * info.el: Virtual Info files and nodes.
11601 (Info-virtual-files, Info-virtual-nodes): New variables.
11602 (Info-current-node-virtual): New variable.
11603 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
11604 New functions.
11605 (Info-file-supports-index-cookies): Use Info-virtual-file-p
11606 to check for a virtual file instead of checking a fixed list
11607 of node names.
11608 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
11609 instead of ad-hoc processing of "dir" and (apropos history toc).
11610 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
11611 instead of ad-hoc processing of "dir" and (apropos history toc).
11612 Reread a file when moving from a virtual node.
11613 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
11614 (Info-directory-toc-nodes, Info-directory-find-file)
11615 (Info-directory-find-node): New functions.
11616 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
11617 (Info-history): Move part of code to
11618 `Info-history-find-node'.
11619 (Info-history-toc-nodes, Info-history-find-file)
11620 (Info-history-find-node): New functions.
11621 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
11622 (Info-toc): Move part of code to `Info-toc-find-node'.
11623 (Info-toc-find-node): New function.
11624 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
11625 the current Info file name to references because now the node
11626 "*TOC*" belongs to the same Info manual.
11627 (Info-toc-build): Rename from `Info-build-toc'.
11628 (Info-toc-nodes): Rename input argument `file' to `filename'.
11629 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
11630 instead of ad-hoc processing of ("dir" apropos history toc).
11631 (Info-index-nodes): Use Info-virtual-file-p
11632 to check for a virtual file instead of checking a fixed list
11633 of node names.
11634 (Info-index-node): Add check for `Info-current-node-virtual'.
11635 Raise `save-match-data' higher up the tree to contain
11636 `search-forward' too (bug fix).
11637 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
11638 (Info-virtual-index-nodes): New variable.
11639 (Info-virtual-index-find-node, Info-virtual-index): New functions.
11640 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
11641 (Info-apropos-file, Info-apropos-nodes): New variables.
11642 (Info-apropos-toc-nodes, Info-apropos-find-file)
11643 (Info-apropos-find-node, Info-apropos-matches): New functions.
11644 (info-apropos): Move part of code to `Info-apropos-find-node' and
11645 `Info-apropos-matches'.
11646 (Info-mode-map): Bind "I" to `Info-virtual-index'.
11647 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
11648 for a virtual file instead of checking a fixed list of node names.
11649
11650 * simple.el (async-shell-command): New command.
11651
11652 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
11653
11654 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
11655 instead of `mount-info'.
11656
11657 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
11658
11659 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
11660 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
11661
11662 2009-07-02 Kenichi Handa <handa@m17n.org>
11663
11664 * international/mule.el (set-keyboard-coding-system): Force *-unix
11665 coding-system to avoid eol conversion.
11666
11667 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
11668
11669 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11670 Add handler for `process-file', `shell-command' and
11671 `start-file-process'.
11672 (tramp-gvfs-handle-shell-command)
11673 (tramp-gvfs-handle-start-file-process)
11674 (tramp-gvfs-handle-process-file): New defuns.
11675 (tramp-synce-list-devices): Simplify check for existence of property.
11676
11677 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
11678
11679 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
11680
11681 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
11682
11683 * language/korean.el (set-language-info-alist): Add korean-cp949,
11684 cp949 to spec.
11685
11686 2009-07-01 Kenichi Handa <handa@m17n.org>
11687
11688 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
11689
11690 * international/encoded-kb.el: Deleted.
11691
11692 * international/mule.el (set-keyboard-coding-system): Perform the
11693 necessary setup here instead of calling encoded-kbd-setup-display.
11694
11695 2009-07-01 Glenn Morris <rgm@gnu.org>
11696
11697 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
11698
11699 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
11700
11701 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
11702
11703 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
11704
11705 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
11706 Handle also the 'rename case, when setting file modes. (Bug#3712)
11707 (tramp-default-file-modes): Remove execute permissions.
11708
11709 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
11710 (top): Add a default for "synce" in `tramp-default-user-alist'.
11711 Add completion function for "synce" method.
11712 (tramp-hal-service, tramp-hal-path-manager)
11713 (tramp-hal-interface-manager, tramp-hal-interface-device):
11714 New defconst.
11715 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
11716 (tramp-synce-list-devices, tramp-synce-parse-device-names):
11717 New defuns.
11718
11719 * net/trampver.el: Update release number.
11720
11721 2009-06-30 Kenichi Handa <handa@m17n.org>
11722
11723 * international/fontset.el (setup-default-fontset): Add CJK fonts
11724 for symbols and the other miscellaneous characters.
11725
11726 * language/korea-util.el (setup-korean-environment-internal):
11727 Make char-width-table suitable for Korean environments.
11728 (exit-korean-environment): Cancel above.
11729
11730 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
11731 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
11732 setup-function to make char-width-table suitable for respective
11733 environments, and an exit-function to cancel that.
11734
11735 * language/japan-util.el (setup-japanese-environment-internal):
11736 Call use-cjk-char-width-table with arg `ja_JP'.
11737
11738 * international/characters.el (cjk-char-width-table): Delete it.
11739 (cjk-char-width-table-list): New variable.
11740 (use-cjk-char-width-table): New arg local-name.
11741 (use-default-char-width-table): Fix for the case that Emacs is
11742 already using the default char-width-table.
11743
11744 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
11745
11746 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
11747 modes mandatory. (Bug#3712)
11748
11749 2009-06-29 Alan Mackenzie <acm@muc.de>
11750
11751 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
11752 correction between the visible width of TABs and their number of bytes.
11753
11754 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
11755
11756 * server.el (server-buffer-done): Prevent kill-buffer from
11757 prompting by clearing the buffer modification flag (Bug#3696).
11758
11759 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
11760
11761 * progmodes/verilog-mode.el (verilog-beg-of-statement)
11762 (verilog-endcomment-reason-re): Support unique case and priority case.
11763 (verilog-basic-complete-re): Support localparam lineup.
11764 (verilog-beg-of-statement-1): Fix for robustness, unique case.
11765 (verilog-set-auto-endcomments): Fix for unique case, always_comb
11766 commenting.
11767 (verilog-leap-to-case-head): Now support *nested* unique &
11768 priority case statements.
11769 (verilog-auto-lineup): Make just declarations the default (as it
11770 had been).
11771 (verilog-leap-to-case-head): Support priority/unique case statements.
11772 (verilog-auto-lineup): Rework to give users radio buttons to
11773 select the various styles of automatic lineup.
11774 (verilog-error-regexp-alist): Rework to support the XEmacs style
11775 of error regular expressions from compilers, lint tools &
11776 simulators. Note that GNU Emacs has made it impossible for a mode
11777 to load such things.
11778 (electric-verilog-terminate-line, verilog-indent-declaration)
11779 (verilog-auto-wiure): Rework for radio button selection of
11780 auto-lineup selection of specification of auto lineup.
11781 (verilog-beg-of-statement-1): Redesign to support proper operation
11782 in additional code, based on testing with auto-lineup.
11783 (verilog-calculate-indent, assignments & declarations)
11784 (verilog-backward-token): Enhance to support auto-lineup of
11785 assignments & declarations.
11786 (verilog-in-directive-p, verilog-at-struct-p): New function for
11787 easy test of whether we are.
11788 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11789 to support safe execution at almost anyline.
11790 (verilog-calc-1): Properly support indenting deep inside generate
11791 blocks.
11792 (verilog-init-font): Remove definition & use of verilog-init-font,
11793 as it is redundant with font-lock-defaults.
11794 (verilog-mode): Alter the definition of verilog-font-lock-defaults
11795 to avoid circular calls if syntax-ppss is a function (as is the
11796 case now in 22.x GNU Emacs) as that function would sometimes call
11797 itself, leading to (nearly) infinite recursion.
11798 (verilog-ovm-begin-re, verilog-ovm-end-re)
11799 (verilog-ovm-statement-re, verilog-leap-to-head)
11800 (verilog-backward-token): Add support for OVM macros. Some are
11801 complete statements, and others open and close scopes like begin
11802 and end.
11803 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11804 (verilog-defun-level-generate-only-re): Really fix the defun-list
11805 compilation issue.
11806 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11807 coverpoint, constraint and cross statements.
11808 (verilog-defun-level-list, verilog-generate-defun-level-list)
11809 (verilog-all-defun-level-list): Redo these specifications - it is
11810 too hard to support eval-when compile aggregation of lists also
11811 built at when-compile time.
11812 (verilog-defun-level-list): Place defconsts of variables used in
11813 building regular expressions which are built in eval-when-compile
11814 bodies in the same eval-when-compile body to facilitate compile
11815 without load.
11816 (verilog-beg-block-re-ordered): Support indenting
11817 virtual/protected tasks and functions.
11818 (verilog-defun-level-list, verilog-in-generate-region-p)
11819 (verilog-backward-ws&directives, verilog-calc-1): Speed up
11820 indentation of some module items (generate items).
11821 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11822 across virtual/protected tasks and functions.
11823
11824 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
11825
11826 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11827 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
11828 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11829 in concatenations. Reported by Yishay Belkind.
11830 (verilog-auto-ascii-enum): Support one-hot state machines in
11831 AUTOASCIIENUM. Suggested by Lloyd Gomez.
11832 (verilog-auto-inst, verilog-auto-inst-port): Include interface
11833 modport in AUTOINST and add vl-modport for users. Reported by
11834 David Rogoff.
11835 (verilog-auto-inout-module, verilog-auto-inst)
11836 (verilog-decls-get-interfaces, verilog-insert-definition)
11837 (verilog-insert-one-definition, verilog-read-decls)
11838 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11839 (verilog-sig-modport, verilog-signals-combine-bus)
11840 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11841 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11842 Suggested by David Rogoff.
11843 (verilog-repair-open-comma): Fix non-insertion of comma when
11844 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
11845 (verilog-make-width-expression): Simplify [A-1:0] expression
11846 widths to just {A{1'b0}}.
11847 (verilog-mode): Cleanup checkdoc warnings.
11848 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11849 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11850 inputs/outputs or data type. Suggested by Vasu Kandadi.
11851 (next-error-last-buffer): Fix byte-compiler warning.
11852 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11853 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11854 or shell command text during AUTO expansion. Suggested by Tad Truex.
11855 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11856 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11857 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11858 in AUTOINOUT. Reported by Matthew Lovell.
11859 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11860 causing use of <= assignments. Reported by Alex Reed.
11861 (verilog-read-decls): Fix triand, trior, wand, wor to be
11862 recognized by AUTOWIRE. Reported by Spencer Isaacson.
11863 (verilog-extended-complete-re): Support import "DPI-C" functions.
11864 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11865 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
11866 (verilog-insert-date, verilog-insert-year)
11867 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11868 Windows systems. Reported by Michael Potts.
11869 (verilog-read-module-name): Fix AUTOINST when the child module
11870 declaration's name is a tick define. Reported by Elliot Mednick.
11871 (verilog-read-decls): Fix V2K parameter bit subscripts getting
11872 passed to next parameter's definition. Reported by Bruce T.
11873 (verilog-read-decls): Fix detecting "parameter int" when using
11874 AUTOINSTPARAM. Reported by Bruce T.
11875 (verilog-goto-defun): Fix goto not finding modules unless first
11876 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
11877 (verilog-mode): Expand -f flag arguments on entry to mode so
11878 verilog-goto-defun will work. Reported by Lawrence Butcher.
11879 (verilog-getopt): Expand environment variables in -f file
11880 arguments. Suggested by Lawrence Butcher.
11881 (verilog-set-define): Fix "Symbol's value as variable is void"
11882 when reading enumerations.
11883 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11884 Suggested by Stephen Peltan.
11885 (verilog-read-defines): Fix reading of enumerations in include
11886 files. Reported by Steve Peltan.
11887
11888 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11889
11890 * files.el (trash-directory): Fix defcustom type.
11891
11892 2009-06-28 Juri Linkov <juri@jurta.org>
11893
11894 * help-fns.el (describe-function-1): Correctly locate adviced
11895 functions in hyperlink (Bug#2438).
11896
11897 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
11898
11899 * files.el (trash-directory): Change default to nil.
11900 (move-file-to-trash): If trash-directory is nil and
11901 system-move-file-to-trash is unbound, perform freedesktop-style
11902 trashing.
11903
11904 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11905
11906 * files.el (move-file-to-trash): Add freedesktop trash
11907 support (Bug#973).
11908
11909 2009-06-28 Glenn Morris <rgm@gnu.org>
11910
11911 * autorevert.el (global-auto-revert-non-file-buffers)
11912 (global-auto-revert-mode): Doc fixes.
11913
11914 2009-06-27 Johan Bockgård <bojohan@gnu.org>
11915
11916 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11917
11918 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
11919
11920 * faces.el (x-handle-named-frame-geometry): Ensure that we have
11921 opened an X connection before calling x-get-resource (Bug#3194).
11922
11923 * play/doctor.el: Remove reference to obsolete website.
11924 (make-doctor-variables): Correct grammar mistake (Bug#2633).
11925
11926 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
11927
11928 Remove find-file-not-found-hook VC method. (Bug#2757)
11929 * vc-hooks.el (vc-file-not-found-hook)
11930 (vc-default-find-file-not-found-hook): Remove functions.
11931 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11932 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11933 * vc.el:
11934 * vc-hg.el:
11935 * vc-git.el: Do not mention find-file-not-found-hook VC method.
11936
11937 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
11938
11939 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11940 compatibility function for `looking-back'.
11941
11942 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11943 Use `ispell-looking-back'.
11944
11945 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
11946
11947 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11948 rather than `filename'.
11949
11950 2009-06-23 Miles Bader <miles@gnu.org>
11951
11952 * face-remap.el (text-scale-set): New function.
11953
11954 2009-06-23 Glenn Morris <rgm@gnu.org>
11955
11956 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11957
11958 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11959
11960 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11961
11962 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11963
11964 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11965 Simplify Persian conditionals.
11966
11967 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11968 variable `filename'.
11969
11970 * comint.el (comint-insert-input): Doc fix.
11971
11972 * Makefile.in (ELCFILES): Fix typo in previous change.
11973
11974 2009-06-23 Miles Bader <miles@gnu.org>
11975
11976 * cus-start.el: Add entry for `recenter-redisplay'.
11977
11978 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11979
11980 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11981 Add an optional argument for the backend, use it instead of
11982 calling vc-backend.
11983 (vc-mode-line): Add an optional argument for the backend.
11984 Pass the backend to vc-state and vc-working-revision. Move code for
11985 special handling for vc-state being a buffer to ...
11986
11987 * vc-rcs.el (vc-rcs-find-file-hook):
11988 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
11989
11990 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11991 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11992 vc-stay-local-p and vc-mode-line calls.
11993
11994 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11995 (vc-cvs-diff, vc-cvs-annotate-command)
11996 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11997 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11998 vc-mode-line calls.
11999
12000 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
12001 direct comparison.
12002 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
12003 backend when calling vc-mode-line.
12004 (vc-register): Do not create a closure for calling the vc register
12005 function, call it directly.
12006
12007 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
12008
12009 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
12010 to make it obvious item can be clicked.
12011
12012 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
12013
12014 2009-06-23 Kenichi Handa <handa@m17n.org>
12015
12016 * language/korea-util.el (korean-key-bindings): Change the binding
12017 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
12018 same command.
12019
12020 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
12021
12022 Sync with Tramp 2.1.16.
12023
12024 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
12025
12026 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
12027 when a loading of a package fails. Completion function for rsync
12028 is `tramp-completion-function-alist-ssh'.
12029 (all): Replace all calls of `split-string' and
12030 `tramp-split-string' by `tramp-compat-split-string'.
12031 (tramp-default-method): Use `tramp-compat-process-running-p'.
12032 (tramp-default-proxies-alist): Allow also Lisp forms.
12033 (tramp-remote-path): Add choice "Private Directories".
12034 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
12035 (tramp-domain-regexp): Allow also "-", "_" and ".".
12036 (tramp-end-of-output): Remove newlines, and add "$" at the end.
12037 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
12038 (tramp-debug-message): Insert header line in debug buffer.
12039 (tramp-handle-directory-files-and-attributes-with-stat):
12040 Care about filenames with spaces, or starting with "-".
12041 (tramp-handle-dired-uncache): New defun.
12042 (tramp-handle-insert-directory): Don't flush the directory from
12043 cache, this is handled by `dired-uncache' now.
12044 (tramp-handle-insert-file-contents): Improve error handling.
12045 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
12046 Quote `tramp-end-of-output'.
12047 (tramp-action-password): Improve trace message.
12048 (tramp-check-for-regexp): Both echoes must be present, before removing.
12049 (tramp-open-connection-setup-interactive-shell): Trace coding system.
12050 (tramp-compute-multi-hops): Eval cons cells of
12051 `tramp-default-proxies-alist'.
12052 (tramp-maybe-open-connection): Use the same command pattern for
12053 first hop and further hops.
12054 (tramp-wait-for-output): Remove handling of newlines.
12055 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
12056 (tramp-split-string): Remove function. It is handled in
12057 tramp-compat now.
12058
12059 * net/tramp-cmds.el (tramp-bug):
12060 Recommend `tramp-cleanup-all-connections' in the bug mail.
12061
12062 * net/tramp-compat.el (tramp-compat-split-string)
12063 (tramp-compat-process-running-p): New defuns.
12064
12065 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
12066 for `dired-uncache'.
12067
12068 * net/tramp-gvfs.el: New package.
12069
12070 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
12071 Add handler for `dired-uncache'.
12072 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
12073
12074 * net/trampver.el: Update release number. Make version check fit
12075 for SXEmacs 22.
12076
12077 2009-06-22 Jim Meyering <meyering@redhat.com>
12078
12079 Automatically handle .xz suffix (XZ-compressed files), too.
12080 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
12081 XZ is the successor to LZMA: <http://tukaani.org/xz/>
12082
12083 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
12084 Nick Roberts <nickrob@snap.net.nz>
12085
12086 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
12087 repository (http://sphinx.net.ru/hg/gdb-mi/).
12088
12089 2009-06-22 Glenn Morris <rgm@gnu.org>
12090
12091 * files.el (dir-locals-collect-mode-variables): Allow for any number of
12092 `mode' and `eval' entries. (Bug#3430)
12093
12094 * Makefile.in (ELCFILES): Add fadr.elc.
12095
12096 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
12097 differing behavior of \n and ^ in strings. (Bug#3385)
12098
12099 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
12100
12101 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
12102 property.
12103 (lisp-indent-function): Make it a defcustom.
12104
12105 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
12106
12107 * progmodes/gdb-ui.el: Replace with ...
12108 * progmodes/gdb-mi.el: ... this file.
12109 * progmodes/gud.el: Modify for gdb-mi.el.
12110
12111 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
12112
12113 * fadr.el: New file.
12114
12115 See ChangeLog.14 for earlier changes.
12116
12117 ;; Local Variables:
12118 ;; coding: utf-8
12119 ;; End:
12120
12121 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
12122
12123 This file is part of GNU Emacs.
12124
12125 GNU Emacs is free software: you can redistribute it and/or modify
12126 it under the terms of the GNU General Public License as published by
12127 the Free Software Foundation, either version 3 of the License, or
12128 (at your option) any later version.
12129
12130 GNU Emacs is distributed in the hope that it will be useful,
12131 but WITHOUT ANY WARRANTY; without even the implied warranty of
12132 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12133 GNU General Public License for more details.
12134
12135 You should have received a copy of the GNU General Public License
12136 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
12137
12138 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1