]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Merge changes made in Gnus trunk.
[gnu-emacs] / lisp / ChangeLog
1 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * net/netrc.el (netrc-credentials): New conveniency function.
4
5 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6
7 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
8 to replace texinfo-font-lock-syntactic-keywords.
9 (texinfo-mode): Use it.
10
11 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
12 Use syntax-propertize-function.
13
14 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
15 replace sgml-font-lock-syntactic-keywords.
16 (sgml-mode): Use it.
17
18 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
19 since we don't use it.
20
21 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
22
23 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
24 if available.
25 (vhdl-fontify-buffer): Adjust.
26
27 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
28 replace tcl-font-lock-syntactic-keywords.
29 (tcl-mode): Use it.
30
31 * progmodes/simula.el (simula-syntax-propertize-function): New var to
32 replace simula-font-lock-syntactic-keywords.
33 (simula-mode): Use it.
34
35 * progmodes/sh-script.el (sh-st-symbol): Remove.
36 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
37 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
38 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
39 (sh-font-lock-paren): Set syntax-multiline.
40 (sh-font-lock-syntactic-keywords): Remove.
41 (sh-syntax-propertize-function): New function to replace it.
42 (sh-mode): Use it.
43
44 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
45 Define while compiling.
46 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
47 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
48 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
49 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
50 (ruby-here-doc-end-syntax): Only define when
51 syntax-propertize is not available.
52 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
53 New functions.
54 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
55 (electric-indent-chars): Silence bytecompiler.
56 (ruby-mode): Use prog-mode, syntax-propertize-function, and
57 electric-indent-chars.
58
59 * progmodes/python.el (python-syntax-propertize-function): New var to
60 replace python-font-lock-syntactic-keywords.
61 (python-mode): Use it.
62 (python-quote-syntax): Simplify and adjust to new use.
63
64 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
65 replace perl-font-lock-syntactic-keywords.
66 (perl-syntax-propertize-special-constructs): New fun to replace
67 perl-font-lock-special-syntactic-constructs.
68 (perl-font-lock-syntactic-face-function): New fun.
69 (perl-mode): Use it.
70
71 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
72 to replace octave-font-lock-close-quotes.
73 (octave-syntax-propertize-function): New function to replace
74 octave-font-lock-syntactic-keywords.
75 (octave-mode): Use it.
76
77 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
78 replaces mixal-font-lock-syntactic-keywords.
79 (mixal-mode): Use it.
80
81 * progmodes/make-mode.el (makefile-syntax-propertize-function):
82 New var; replaces makefile-font-lock-syntactic-keywords.
83 (makefile-mode): Use it.
84 (makefile-imake-mode): Adjust.
85
86 * progmodes/js.el (js--regexp-literal): Define while compiling.
87 (js-syntax-propertize-function): New var; replaces
88 js-font-lock-syntactic-keywords.
89 (js-mode): Use it.
90
91 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
92 replaces gdb-script-font-lock-syntactic-keywords.
93 (gdb-script-mode): Use it.
94
95 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
96 (fortran--font-lock-syntactic-keywords): New var.
97 (fortran-line-length): Update syntax-propertize-function and
98 fortran--font-lock-syntactic-keywords.
99
100 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
101
102 * progmodes/cfengine.el (cfengine-mode):
103 Use syntax-propertize-function.
104 (cfengine-font-lock-syntactic-keywords): Remove.
105
106 * progmodes/autoconf.el (autoconf-mode):
107 Use syntax-propertize-function.
108 (autoconf-font-lock-syntactic-keywords): Remove.
109
110 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
111 (ada-after-change-function, ada-initialize-syntax-table-properties)
112 (ada-handle-syntax-table-properties): Only define when
113 syntax-propertize is not available.
114 (ada-mode): Use syntax-propertize-function.
115
116 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
117 (font-lock-fontify-syntactic-keywords-region): Move handling of
118 font-lock-syntactically-fontified to...
119 (font-lock-default-fontify-region): ...here.
120 Let syntax-propertize-function take precedence.
121 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
122
123 * emacs-lisp/syntax.el (syntax-propertize-function)
124 (syntax-propertize-chunk-size, syntax-propertize--done)
125 (syntax-propertize-extend-region-functions): New vars.
126 (syntax-propertize-wholelines, syntax-propertize-multiline)
127 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
128 (syntax-propertize): New functions.
129 (syntax-propertize-rules): New macro.
130 (syntax-ppss-flush-cache): Set syntax-propertize--done.
131 (syntax-ppss): Call syntax-propertize.
132
133 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
134
135 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
136
137 * textmodes/ispell.el (ispell-init-process): Improve comments.
138 XEmacs compatibility changes regarding (add-hook) 'local option
139 and (set-process-query-on-exit-flag).
140
141 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
142
143 * net/tramp-cache.el (tramp-parse-connection-properties):
144 Set tramp-autoload cookie.
145
146 2010-09-09 Glenn Morris <rgm@gnu.org>
147
148 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
149 (imagemagick-register-types): Doc fix.
150
151 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
152
153 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
154
155 * progmodes/js.el (require): Require is already "eval-and-compile".
156 (js--re-search-forward): Avoid `eval'. Preserve the error data.
157 (js--re-search-backward): Use js--re-search-forward.
158
159 * progmodes/fortran.el (fortran-line-length): Don't recompute
160 syntactic keywords redundantly a second time.
161
162 * progmodes/ada-mode.el: Replace "(set '" with setq.
163 (ada-mode): Simplify.
164 (ada-create-case-exception, ada-adjust-case-interactive)
165 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
166 (ada-search-ignore-string-comment, ada-move-to-start)
167 (ada-move-to-end): Use with-syntax-table.
168
169 * font-lock.el (save-buffer-state): Remove `varlist' arg.
170 (font-lock-unfontify-region, font-lock-default-fontify-region):
171 Update usage correspondingly.
172 (font-lock-fontify-syntactic-keywords-region):
173 Set parse-sexp-lookup-properties buffer-locally here.
174 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
175
176 * simple.el (blink-matching-open): Don't burp if we can't find a match.
177
178 2010-09-08 Glenn Morris <rgm@gnu.org>
179
180 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
181 Error if not compiled with -DBYTE_CODE_METER.
182
183 * emacs-lisp/bytecomp.el (byte-recompile-directory):
184 Ignore dir-locals-file.
185
186 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
187
188 * progmodes/compile.el (compilation-error-regexp-alist-alist):
189 Not a const.
190 (compilation-error-regexp-alist-alist): Rule out ": " in file names
191 for the `gnu' messages.
192 (compilation-set-skip-threshold): New command.
193 (compilation-start): Use \' rather than $.
194 (compilation-forget-errors): Use clrhash.
195
196 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
197
198 * textmodes/ispell.el (ispell-valid-dictionary-list):
199 Simplify logic.
200
201 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
202
203 Migrate to Tramp 2.2. Rearrange load dependencies.
204 (Bug#1529, Bug#5448, Bug#5705)
205
206 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
207 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
208 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
209
210 * net/tramp.el (top): Remove all other tramp-* loads except
211 tramp-compat.el. Remove all changes to tramp-unload-hook for
212 other tramp-* packages. Rearrange defun order. Change calls of
213 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
214 `tramp-compat-octal-to-decimal' to new function names.
215 (tramp-terminal-type, tramp-initial-end-of-output)
216 (tramp-methods, tramp-foreign-file-name-handler-alist)
217 (tramp-tramp-file-p, tramp-completion-mode-p)
218 (tramp-send-command-and-check, tramp-get-remote-path)
219 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
220 (tramp-shell-quote-argument): Set tramp-autoload cookie.
221 (with-file-property, with-connection-property): Move to
222 tramp-cache.el.
223 (tramp-local-call-process, tramp-decimal-to-octal)
224 (tramp-octal-to-decimal): Move to tramp-compat.el.
225 (tramp-handle-shell-command): Do not require 'shell.
226 (tramp-compute-multi-hops): No special handling for tramp-gw-*
227 symbols.
228 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
229
230 * net/tramp-cache.el (top): Require 'tramp. Add to
231 `tramp-unload-hook'.
232 (tramp-cache-data, tramp-get-file-property)
233 (tramp-set-file-property, tramp-flush-file-property)
234 (tramp-flush-directory-property, tramp-get-connection-property)
235 (tramp-set-connection-property, tramp-flush-connection-property)
236 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
237 cookie.
238 (with-file-property, with-connection-property): New defuns, moved
239 from tramp.el.
240 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
241 macro.
242
243 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
244 (tramp-version): Set tramp-autoload cookie.
245
246 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
247 changes to tramp-unload-hook for other tramp-* packages. Add to
248 `tramp-unload-hook'.
249 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
250 (tramp-compat-call-process): New defuns, moved from tramp.el.
251
252 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
253 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
254 to `tramp-unload-hook'. Change call of
255 `tramp-compat-decimal-to-octal' to new function name.
256 (tramp-fish-method): Make it a defconst.
257 (tramp-fish-file-name-p): Make it a defsubst.
258 (tramp-fish-method, tramp-fish-file-name-handler)
259 (tramp-fish-file-name-p): Set tramp-autoload cookie.
260
261 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
262 `tramp-foreign-file-name-handler-alist'. Add to
263 `tramp-unload-hook'.
264 (tramp-ftp-method): Make it a defconst.
265 (tramp-ftp-file-name-p): Make it a defsubst.
266 (tramp-ftp-method, tramp-ftp-file-name-handler)
267 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
268
269 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
270 `tramp-foreign-file-name-handler-alist'. Add to
271 `tramp-unload-hook'. Change checks, whether package can be
272 loaded.
273 (tramp-gvfs-file-name-p): Make it a defsubst.
274 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
275 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
276 (tramp-gvfs-handle-file-directory-p): New defun.
277 (tramp-gvfs-file-name-handler-alist): Use it.
278
279 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
280 `tramp-foreign-file-name-handler-alist'. Add to
281 `tramp-unload-hook'.
282 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
283 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
284 defconst.
285 (tramp-gw-tunnel-method, tramp-gw-socks-method)
286 (tramp-gw-open-connection): Set tramp-autoload cookie.
287
288 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
289 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
290 to `tramp-unload-hook'. Change checks, whether package can be
291 loaded.
292 (tramp-imap-file-name-p): Make it a defsubst.
293 (tramp-imap-method, tramp-imaps-method)
294 (tramp-imap-file-name-handler)
295 (tramp-imap-file-name-p): Set tramp-autoload cookie.
296
297 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
298 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
299 to `tramp-unload-hook'. Change checks, whether package can be
300 loaded. Change call of `tramp-compat-decimal-to-octal' to new
301 function name.
302 (tramp-smb-tunnel-method): Make it a defconst.
303 (tramp-smb-file-name-p): Make it a defsubst.
304 (tramp-smb-method, tramp-smb-file-name-handler)
305 (tramp-smb-file-name-p): Set tramp-autoload cookie.
306
307 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
308 (tramp-uuencode-region): Set tramp-autoload cookie.
309
310 * net/trampver.el (top) Add to `tramp-unload-hook'.
311 (tramp-version, tramp-bug-report-address): Set tramp-autoload
312 cookie. Update release number.
313
314 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
315
316 * textmodes/ispell.el (ispell-start-process): Make sure original
317 arg list is properly initialized (Bug#6993, Bug#6994).
318
319 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
320
321 * files.el (directory-abbrev-alist): Use \` as default regexp.
322
323 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
324 chars like - or ] (bug#6984).
325 (rx-any-condense-range): Explode 2-char ranges.
326
327 2010-09-06 Glenn Morris <rgm@gnu.org>
328
329 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
330
331 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
332
333 * textmodes/bibtex.el:
334 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
335
336 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
337
338 * net/imap.el (imap-message-map): Remove optional buffer parameter,
339 since no callers use it.
340 (imap-message-get): Ditto.
341 (imap-message-put): Ditto.
342 (imap-mailbox-map): Ditto.
343 (imap-mailbox-put): Ditto.
344 (imap-mailbox-get): Ditto.
345 (imap-mailbox-get): Revert last change for this function.
346
347 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
348
349 * net/imap.el (imap-fetch-safe): Remove function, and alter all
350 callers to use `imap-fetch' instead. According to the comments, this
351 should be safe, since all other IMAP clients use the 1:* syntax.
352 (imap-enable-exchange-bug-workaround): Remove.
353 (imap-debug): Remove -- doesn't seem very useful.
354
355 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
356
357 * net/imap.el (imap-log): New convenience function used throughout
358 instead of repeating the same code all over the place.
359
360 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
361
362 * mouse.el (mouse-save-then-kill): Save region to kill-ring
363 when mouse-drag-copy-region is non-nil (Bug#6956).
364
365 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
366
367 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
368 Improve regexps (Bug#6987).
369 (dired-sort-toggle): Search more robustly for -t flag.
370
371 * files.el (get-free-disk-space): Search more robustly for
372 "available" column. Suggested by Ehud Karni
373 <ehud@unix.mvs.co.il>.
374
375 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
376
377 * international/uni-bidi.el:
378 * international/uni-category.el:
379 * international/uni-combining.el:
380 * international/uni-decimal.el:
381 * international/uni-mirrored.el:
382 * international/uni-name.el: Regenerate.
383
384 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
385
386 * electric.el (electric-indent-post-self-insert-function):
387 Don't reindent with a sloppy indentation function.
388
389 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
390 border case in change-log-mode.
391
392 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
393
394 * progmodes/compile.el (compilation-error-regexp-alist-alist):
395 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
396 Recognize leading tab in gcc-include regexp. Ignore names with
397 leading "from" or "in" in gnu regexp (Bug#6937).
398
399 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
400
401 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
402 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
403 (ispell-start-process): Avoid setq and simplify logic.
404 (ispell-init-process): Setup kill-buffer-hook locally when needed.
405 (kill-buffer-hook): Don't use it globally with code that uses
406 expand-file-name since that may call kill-buffer via
407 code_conversion_restore.
408
409 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
410
411 * emacs-lisp/package.el (package-directory-list): Only call
412 file-name-nondirectory on a string.
413
414 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
415
416 * emacs-lisp/package.el (package--download-one-archive):
417 Ensure that archive-contents is valid before saving it.
418 (package-activate-1, package-mark-obsolete, define-package)
419 (package-compute-transaction, package-list-maybe-add): Use push.
420
421 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
422
423 Use SMIE's blink-paren for octave-mode.
424 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
425 Backslashes do not escape single-quotes, single-quotes do.
426 (octave-block-else-regexp, octave-block-end-regexp)
427 (octave-block-match-alist): Remove.
428 (octave-smie-bnf-table): New var, with old content.
429 (octave-smie-op-levels): Use it.
430 (octave-smie-closer-alist): New var.
431 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
432 (octave-blink-matching-block-open): Remove.
433 (octave-reindent-then-newline-and-indent, octave-electric-semi)
434 (octave-electric-space): Let self-insert-command run expand-abbrev and
435 blink parens.
436
437 * electric.el (electricity): New group.
438 (electric-indent-chars): New var.
439 (electric-indent-post-self-insert-function): New fun.
440 (electric-indent-mode): New minor mode.
441 (electric-pair-skip-self): New custom.
442 (electric-pair-post-self-insert-function): New function.
443 (electric-pair-mode): New minor mode.
444
445 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
446 calcAlg-blink-matching-open.
447 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
448 (calc-do-alg-entry): Only touch the part of the keymap that varies.
449 Use the new blink-matching-check-function.
450
451 Provide blink-matching support to SMIE.
452 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
453 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
454 (smie-blink-matching-check, smie-blink-matching-open): New functions.
455
456 * simple.el (newline): Fix last change to properly remove itself from
457 the hook.
458
459 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
460
461 * simple.el (newline): Eliminate optimization.
462 Use post-self-insert-hook to set hard-newline and things before
463 running post-self-insert-hook.
464 (blink-matching-check-mismatch): New function.
465 (blink-matching-check-function): New variable.
466 (blink-matching-open): Use them.
467 Skip back forward over prefix chars skipped by forward-sexp.
468 Don't check if the parens are backslash escaped.
469 (blink-paren-post-self-insert-function): Check backslash escaping here.
470
471 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
472
473 * emacs-lisp/package.el (package-menu-mode-map):
474 Change package-menu-revert bindings to revert-buffer.
475 (package-menu-mode): Set revert-buffer-function.
476 (package-menu-revert): Doc fix.
477
478 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
479
480 * textmodes/ispell.el (ispell-init-process): Use "~/" as
481 `default-directory' unless using Ispell per-directory personal
482 dictionaries and not in a mini-buffer under XEmacs.
483 (kill-buffer-hook): Do not kill ispell process on exit when
484 `ispell-process-directory' is "~/". (Bug#6143)
485
486 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
487
488 * simple.el (kill-new): Call interprogram-cut-function with only
489 one argument.
490
491 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
492 Remove cut buffer from error message.
493
494 * term/x-win.el (x-select-text):
495 * term/pc-win.el (x-selection-value):
496 * term/ns-win.el (x-selection-value):
497 * eshell/em-term.el:
498 * w32-fns.el (x-get-selection-value):
499 * mouse-sel.el (mouse-sel-set-selection-function):
500 * frame.el (display-selections-p): Remove cut-buffer in documentation.
501
502 * term/x-win.el: Update documentation for x-last-selected-text-*.
503 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
504 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
505 (x-select-text): Remove argument PUSH, update documentation. Remove
506 cut-buffer code.
507 (x-selection-value-internal): Was previously x-selection-value.
508 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
509 Update documentation, remove cut-buffer code. Call
510 x-selection-value-internal.
511 (x-clipboard-yank): Call x-selection-value-internal.
512 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
513
514 * term/pc-win.el (x-last-selected-text):
515 x-cut-buffer-or-selection-value renamed to x-selection-value
516 (x-select-text): Remove argument PUSH, update documentation.
517
518 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
519 x-cut-buffer-or-selection-value renamed to x-selection-value
520 (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
521 (x-select-text): Remove argument PUSH, update documentation.
522
523 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
524
525 * w32-fns.el (x-last-selected-text):
526 x-cut-buffer-or-selection-value renamed to x-selection-value.
527 (x-cut-buffer-max): Remove.
528 (x-select-text): Remove argument PUSH, update documentation.
529
530 * simple.el (interprogram-cut-function): Remove mention of PUSH.
531
532 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
533
534 * mouse-sel.el (mouse-sel-get-selection-function):
535 x-cut-buffer-or-selection-value renamed to x-selection-value.
536 (x-select-text): Remove optional push.
537
538 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
539
540 * simple.el (blink-paren-function): Move from C to here.
541 (blink-paren-post-self-insert-function): New function.
542 (post-self-insert-hook): Use it.
543
544 * emacs-lisp/pcase.el (pcase-split-memq):
545 Fix overenthusiastic optimisation.
546 (pcase-u1): Handle the case of a lambda pred.
547
548 2010-08-31 Kenichi Handa <handa@m17n.org>
549
550 * international/mule-cmds.el (standard-display-european-internal):
551 Setup standard-display-table for 8-bit characters by storing 8-bit
552 characters in the element vector.
553
554 * disp-table.el (standard-display-8bit): Setup
555 standard-display-table for 8-bit characters by storing 8-bit
556 characters in the element vector.
557 (standard-display-european): Likewise.
558
559 2010-08-31 Masatake YAMATO <yamato@redhat.com>
560
561 * textmodes/nroff-mode.el (nroff-view): New command.
562 (nroff-mode-map): Bind it to C-c C-c.
563
564 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
565
566 * emacs-lisp/smie.el (smie-down-list): New command.
567
568 Remove old indentation and navigation code on octave-mode.
569 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
570 smie-down-list rather than add a binding for octave-down-block.
571 (octave-mark-block, octave-blink-matching-block-open):
572 Rely on forward-sexp-function.
573 (octave-fill-paragraph): Don't narrow, so you can use
574 indent-according-to-mode.
575 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
576 (octave-in-block-p, octave-re-search-forward-kw)
577 (octave-re-search-backward-kw, octave-indent-calculate)
578 (octave-end-as-array-index-p, octave-block-end-offset)
579 (octave-scan-blocks, octave-forward-block, octave-backward-block)
580 (octave-down-block, octave-backward-up-block, octave-up-block)
581 (octave-before-magic-comment-p, octave-indent-line): Remove.
582
583 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
584
585 * emacs-lisp/package.el (package--read-archive-file): Just use
586 `read', to avoid copying an additional string.
587 (package-menu-mode): Set header-line-format here.
588 (package-menu-refresh, package-menu-revert): Signal an error if
589 not in the Package Menu.
590 (package-menu-package-list): New var.
591 (package--generate-package-list): Operate on the current buffer;
592 don't assume that it is *Packages*, since the user may rename it.
593 Allow persistent package listings and sort keys using
594 package-menu-package-list and package-menu-package-sort-key.
595 (package-menu--version-predicate): Fix version calculation.
596 (package-menu-sort-by-column): Don't select the window.
597 (package--list-packages): Create the *Packages* buffer.
598 Set package-menu-package-list-key.
599 (list-packages): Sorting by status is now the default.
600 (package-buffer-info): Use match-string-no-properties.
601 (define-package): Add a &rest argument for future proofing, but
602 don't use it yet.
603 (package-install-from-buffer, package-install-buffer-internal):
604 Merge into a single function, package-install-from-buffer.
605 (package-install-file): Change caller.
606
607 * finder.el: Load finder-inf using `require'.
608 (finder-list-matches): Sorting by status is now the default.
609 (finder-compile-keywords): Simpify printing.
610
611 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
612
613 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
614 (octave-mode-map): Remove special bindings for forward/backward-block
615 and octave-backward-up-block. Use smie-close-block.
616 (octave-continuation-marker-regexp): New var.
617 (octave-continuation-regexp): Use it.
618 (octave-operator-table, octave-smie-op-levels)
619 (octave-operator-regexp, octave-smie-indent-rules): New vars.
620 (octave-smie-backward-token, octave-smie-forward-token): New funs.
621 (octave-mode): Use SMIE.
622 (octave-close-block): Delete.
623
624 2010-08-30 Eli Zaretskii <eliz@gnu.org>
625
626 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
627 CLIPBOARD, not in PRIMARY. (Bug#6944)
628
629 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
630
631 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
632 a list of parents.
633 (smie-indent-column): Allow indirection through variables.
634
635 * composite.el (save-buffer-state): Delete, unused.
636 * font-lock.el (save-buffer-state): Use with-silent-modifications.
637 (font-lock-default-fontify-region): Use with-syntax-table.
638 * jit-lock.el (with-buffer-unmodified): Remove.
639 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
640
641 Use `declare' in defmacros.
642 * window.el (save-selected-window):
643 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
644 * progmodes/python.el (def-python-skeleton):
645 * net/dbus.el (dbus-ignore-errors):
646 * jka-cmpr-hook.el (with-auto-compression-mode):
647 * international/mule.el (with-category-table):
648 * emacs-lisp/timer.el (with-timeout):
649 * emacs-lisp/lisp-mnt.el (lm-with-file):
650 * emacs-lisp/eieio.el (with-slots):
651 * emacs-lisp/easymenu.el (easy-menu-define):
652 * emacs-lisp/debug.el (debugger-env-macro):
653 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
654 (Multiple-value-call, Multiple-value-prog1):
655 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
656 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
657 edebug rule to definition.
658 * emacs-lisp/lisp-mode.el (save-selected-window)
659 (with-current-buffer, combine-after-change-calls)
660 (with-output-to-string, with-temp-file, with-temp-buffer)
661 (with-temp-message, with-syntax-table, read-if, eval-after-load)
662 (dolist, dotimes, when, unless):
663 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
664
665 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
666
667 * finder.el: Require `package'.
668 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
669 (finder-package-info): Var deleted.
670 (finder-keywords-hash, finder--builtins-alist): New vars.
671 (finder-compile-keywords): Compute package--builtins and
672 finder-keywords-hash instead of finder-keywords-hash, respecting
673 the "Package" header.
674 (finder-unknown-keywords, finder-list-matches):
675 Use finder-keywords-hash and package--list-packages.
676 (finder-mode): Don't set font-lock-defaults.
677 (finder-exit): We don't use "*Finder-package*" and "*Finder
678 Category*" buffers anymore.
679
680 * emacs-lisp/package.el (package--builtins-base): Var deleted.
681 (package--builtins): Set default value to nil.
682 (package-initialize): Load precomputed value of package--builtins
683 from finder-inf.el.
684 (package-alist, package-compute-transaction)
685 (package-download-transaction): Improve docstring.
686 (package-read-all-archive-contents): Do not change
687 package--builtins here.
688 (list-packages): Make package-list-packages an alias for this.
689 Sort by status by default.
690 (package--list-packages): Add optional PACKAGES arg.
691 (describe-package-1): Use font-lock-face property. For built-in
692 packages, insert file commentary.
693 (package--generate-package-list): Rename from
694 package-list-packages-internal; all callers changed. Add optional
695 PACKAGES arg. Add alphabetical sort fallbacks.
696 (package-menu--version-predicate, package-menu--status-predicate)
697 (package-menu--description-predicate)
698 (package-menu--name-predicate): New functions.
699
700 * info.el (Info-finder-find-node): Search package-alist instead of
701 finder-package-info.
702
703 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
704
705 * subr.el (version-regexp-alist): Don't use "a" and "b" for
706 "alpha" and "beta".
707 (version-to-list): Handle versions like "10.3d".
708
709 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
710
711 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
712 (macroexp-accumulate): Use `declare'.
713
714 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
715
716 * whitespace.el (whitespace-style): Adjust type declaration.
717
718 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
719
720 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
721 empty argument to gvfs-copy.
722
723 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
724
725 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
726 handle new TRASH arg of `delete-file'.
727
728 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
729
730 * net/tramp.el (tramp-handle-insert-directory): Don't use
731 `forward-word', its default syntax could be changed.
732
733 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
734 Michael Albinus <michael.albinus@gmx.de>
735
736 Implement compression for inline methods.
737
738 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
739 (tramp-copy-size-limit): Allow also nil.
740 (tramp-inline-compress-commands): New defconst.
741 (tramp-find-inline-compress, tramp-get-inline-compress)
742 (tramp-get-inline-coding): New defuns.
743 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
744 replaced by `tramp-get-inline-coding'.
745 (tramp-handle-file-local-copy, tramp-handle-write-region)
746 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
747
748 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
749
750 Detect ssh 'ControlMaster' argument automatically in some cases.
751
752 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
753 (tramp-default-method): Use it.
754
755 2010-08-26 Karel Klíč <kklic@redhat.com>
756
757 * net/tramp.el (tramp-file-name-for-operation):
758 Add file-selinux-context.
759
760 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
761
762 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
763
764 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
765
766 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
767 (Bug#6907).
768
769 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
770
771 * progmodes/js.el: Make indentation more customizable (Bug#6914).
772 (js-paren-indent-offset, js-square-indent-offset)
773 (js-curly-indent-offset): New options.
774 (js--proper-indentation): Use them.
775
776 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
777
778 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
779 instead of inspecting font-lock properties (Bug#6916).
780
781 2010-08-26 David Reitter <david.reitter@gmail.com>
782
783 * server.el (server-visit-files): Run pre-command-hook and
784 post-command-hook for each buffer while it is current
785 (Bug#6910).
786 (server-execute): Do not run hooks here.
787
788 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
789
790 Sync with Tramp 2.1.19.
791
792 * net/tramp-cmds.el (tramp-cleanup-all-connections)
793 (tramp-reporter-dump-variable, tramp-load-report-modules)
794 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
795 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
796
797 * net/tramp-compat.el (top): Do not autoload
798 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
799 only when `start-file-process' is not bound.
800 (byte-compile-not-obsolete-vars): Define if not bound.
801 (tramp-compat-funcall): New defmacro.
802 (tramp-compat-line-beginning-position)
803 (tramp-compat-line-end-position)
804 (tramp-compat-temporary-file-directory)
805 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
806 (tramp-compat-copy-file, tramp-compat-copy-directory)
807 (tramp-compat-delete-file, tramp-compat-delete-directory)
808 (tramp-compat-number-sequence, tramp-compat-process-running-p):
809 Use it.
810 (tramp-advice-file-expand-wildcards): Do not use
811 `tramp-handle-file-remote-p'.
812 (tramp-compat-make-temp-file): Simplify fallback implementation.
813 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
814 (tramp-compat-copy-tree): Remove function.
815 (tramp-compat-delete-file): New defun.
816 (tramp-compat-delete-directory): Provide implementation for older
817 Emacsen.
818 (tramp-compat-file-attributes): Handle only
819 `wrong-number-of-arguments' error.
820
821 * net/tramp-fish.el (tramp-fish-handle-copy-file): Add
822 PRESERVE_SELINUX_CONTEXT.
823 (tramp-fish-handle-delete-file): Add TRASH arg.
824 (tramp-fish-handle-directory-files-and-attributes):
825 Do not use `tramp-fish-handle-file-attributes.
826 (tramp-fish-handle-file-local-copy)
827 (tramp-fish-handle-insert-file-contents)
828 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
829
830 * net/tramp-gvfs.el (top): Require url-util.
831 (tramp-gvfs-mount-point): Remove.
832 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
833 and `set-file-selinux-context'.
834 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
835 (tramp-gvfs-handle-file-selinux-context)
836 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
837 (with-tramp-dbus-call-method): Format trace message.
838 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
839 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
840 Implement backup call, when operation on local files fails. Use
841 progress reporter. Flush properties of changed files.
842 (tramp-gvfs-handle-delete-file): Add TRASH arg. Use
843 `tramp-compat-delete-file'.
844 (tramp-gvfs-handle-expand-file-name): Expand "~/".
845 (tramp-gvfs-handle-make-directory): Make more traces.
846 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
847 (tramp-gvfs-url-file-name): Hexify file name in url.
848 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
849 into account for the resulting file name.
850 (tramp-gvfs-handler-askquestion): Preserve current message, in
851 order to let progress reporter continue afterwards. (Bug#6257)
852 Return dummy mountpoint, when the answer is "no". See
853 `tramp-gvfs-maybe-open-connection'.
854 (tramp-gvfs-handler-mounted-unmounted)
855 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
856 attribute "default_location". Set "prefix" property. Handle
857 default-location.
858 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
859 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
860 exists. Raise an error, if not (due to a corresponding answer
861 "no" in interactive questions, for example). Use
862 `tramp-compat-funcall'.
863
864 * net/tramp-imap.el (top): Autoload `epg-make-context'.
865 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
866 (tramp-imap-do-copy-or-rename-file)
867 (tramp-imap-handle-insert-file-contents)
868 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
869 (tramp-imap-handle-delete-file): Add TRASH arg.
870
871 * net/tramp-smb.el (tramp-smb-handle-copy-file): Add
872 PRESERVE-SELINUX-CONTEXT.
873 (tramp-smb-handle-copy-file)
874 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
875 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
876 Use `with-progress-reporter'.
877 (tramp-smb-handle-delete-file): Add TRASH arg.
878
879 * net/tramp.el (tramp-methods): Move hostname to the end in all
880 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
881 appropriate.
882 (tramp-verbose): Describe verbose level 9.
883 (tramp-completion-function-alist)
884 (tramp-file-name-regexp, tramp-chunksize)
885 (tramp-local-coding-commands, tramp-remote-coding-commands)
886 (with-connection-property, tramp-completion-mode-p)
887 (tramp-action-process-alive, tramp-action-out-of-band)
888 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
889 (tramp-exists-file-name-handler): Fix docstring.
890 (tramp-remote-process-environment): Use `format' instead of
891 `concat'. Protect version string by apostroph.
892 (tramp-shell-prompt-pattern): Do not use a shy group in case of
893 XEmacs.
894 (tramp-file-name-regexp-unified)
895 (tramp-completion-file-name-regexp-unified): On W32 systems, do
896 not regard the volume letter as remote filename. (Bug#5447)
897 (tramp-perl-file-attributes)
898 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
899 (tramp-vc-registered-read-file-names): Read input as
900 here-document, otherwise the command could exceed maximum length
901 of command line.
902 (tramp-file-name-handler-alist): Add `file-selinux-context' and
903 `set-file-selinux-context'.
904 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
905 backtrace functions.
906 (tramp-error-with-buffer): Don't show the connection buffer when
907 we are in completion mode.
908 (tramp-progress-reporter-update, tramp-remote-selinux-p)
909 (tramp-handle-file-selinux-context)
910 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
911 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
912 New defuns.
913 (with-progress-reporter): New defmacro.
914 (tramp-debug-outline-regexp): New defconst.
915 (top, tramp-rfn-eshadow-setup-minibuffer)
916 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
917 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
918 (tramp-completion-mode-p, tramp-check-for-regexp)
919 (tramp-open-connection-setup-interactive-shell)
920 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
921 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
922 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
923 Use `tramp-compat-funcall'.
924 (tramp-handle-make-symbolic-link): Flush file properties.
925 (tramp-handle-load, tramp-handle-file-local-copy)
926 (tramp-handle-insert-file-contents, tramp-handle-write-region)
927 (tramp-handle-vc-registered, tramp-maybe-send-script)
928 (tramp-find-shell): Use `with-progress-reporter'.
929 (tramp-do-file-attributes-with-stat): Add space in format string,
930 in order to work around a bug in pdksh. Reported by Gilles Pion
931 <gpion@lfdj.com>.
932 (tramp-handle-verify-visited-file-modtime): Do not send a command
933 when the connection is not established.
934 (tramp-handle-set-file-times): Simplify the check for utc.
935 (tramp-handle-directory-files-and-attributes)
936 (tramp-get-remote-path): Use `copy-tree'.
937 (tramp-completion-handle-file-name-all-completions): Ensure, that
938 non remote files are still checked. Oops.
939 (tramp-handle-copy-file, tramp-do-copy-or-rename-file): Handle
940 PRESERVE-SELINUX-CONTEXT.
941 (tramp-do-copy-or-rename-file): Add progress reporter.
942 (tramp-do-copy-or-rename-file-directly): Do not use
943 `tramp-handle-file-remote-p'.
944 (tramp-do-copy-or-rename-file-out-of-band):
945 Use `tramp-compat-delete-directory'.
946 (tramp-do-copy-or-rename-file-out-of-band)
947 (tramp-compute-multi-hops, tramp-maybe-open-connection):
948 Use `format-spec-make'.
949 (tramp-handle-delete-file): Add TRASH arg.
950 (tramp-handle-dired-uncache): Flush directory cache, not only file
951 cache.
952 (tramp-handle-expand-file-name)
953 (tramp-completion-handle-file-name-all-completions)
954 (tramp-completion-handle-file-name-completion): Use
955 `tramp-connectable-p'.
956 (tramp-handle-start-file-process): Set connection property "vec".
957 Use it, in order to invalidate file caches. Check only for
958 `remote-tty' process property.
959 Implement tty setting. (Bug#4604, Bug#6360)
960 (tramp-file-name-for-operation): Add `call-process-region' and
961 `set-file-selinux-context'.
962 (tramp-find-foreign-file-name-handler)
963 (tramp-advice-make-auto-save-file-name)
964 (tramp-set-auto-save-file-modes): Remove superfluous check for
965 `stringp'. This is done inside `tramp-tramp-file-p'.
966 (tramp-file-name-handler): Trace 'quit. Catch the error for some
967 operations when we are in completion mode. This gives the user
968 the chance to correct the file name in the minibuffer.
969 (tramp-completion-mode-p): Use `non-essential'.
970 (tramp-handle-file-name-all-completions): Backward/ XEmacs
971 compatibility: Use `completion-ignore-case' if
972 `read-file-name-completion-ignore-case' does not exist.
973 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
974 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
975 `tramp-open-shell'.
976 (tramp-action-password): Hide password prompt before next run.
977 (tramp-process-actions): Widen connection buffer for the trace.
978 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
979 process property. Trace stty settings if `tramp-verbose' >= 9.
980 Apply workaround for IRIX64 bug. Move argument of last
981 `tramp-send-command' where it belongs to.
982 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
983 front of `login-args'.
984 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
985 on "/dev/null" instead of "/".
986 (tramp-get-ls-command-with-dired): Make test for "--dired"
987 stronger.
988 (tramp-set-auto-save-file-modes): Adapt version check.
989 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
990 (tramp-handle-process-file): Call the program in a subshell, in
991 order to preserve working directory.
992 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
993 `tramp-remote-sh' from `tramp-methods'.
994 (tramp-get-ls-command): Make test for "--color=never" stronger.
995 (tramp-check-for-regexp): Use (forward-line 1).
996
997 * net/trampver.el: Update release number.
998
999 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1000
1001 * help.el (help-map): Bind `C-h P' to describe-package.
1002
1003 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
1004
1005 * emacs-lisp/package.el (package-refresh-contents): Catch errors
1006 when downloading archives.
1007 (describe-package-1): Add package commentary.
1008 (package-install-button-action): New function.
1009 (package-menu-mode-map): Bind ? to package-menu-describe-package.
1010 (package-menu-view-commentary): Function removed.
1011 (package-list-packages-internal): Hide the `package' package too.
1012
1013 2010-08-25 Kenichi Handa <handa@m17n.org>
1014
1015 * language/misc-lang.el ("Arabic"): New language environment.
1016 Setup composition-function-table for Arabic characters.
1017
1018 * international/fontset.el (setup-default-fontset): Fix typo for
1019 arabic OTF spec (fini->fina).
1020
1021 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
1022
1023 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
1024 on all frames.
1025
1026 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1027
1028 * whitespace.el: Allow cleaning up blanks without blank
1029 visualization (Bug#6651). Adjust help window for
1030 whitespace-toggle-options (Bug#6479). Allow to use fill-column
1031 instead of whitespace-line-column (from EmacsWiki). New version
1032 13.1.
1033 (whitespace-style): Added new value 'face. Adjust docstring.
1034 (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
1035 foreground property face.
1036 (whitespace-line-column): Adjust docstring and type declaration.
1037 (whitespace-style-value-list, whitespace-toggle-option-alist)
1038 (whitespace-help-text): Adjust const initialization.
1039 (whitespace-toggle-options, global-whitespace-toggle-options):
1040 Adjust docstring.
1041 (whitespace-display-window, whitespace-interactive-char)
1042 (whitespace-style-face-p, whitespace-color-on): Adjust code.
1043 (whitespace-help-scroll): New fun.
1044
1045 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1046
1047 * emacs-lisp/package.el (list-packages): Alias for
1048 package-list-packages.
1049
1050 2010-08-24 Kevin Ryde <user42@zip.com.au>
1051
1052 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
1053 (Bug#5651).
1054
1055 * progmodes/ruby-mode.el (ruby): Add defgroup.
1056
1057 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1058
1059 * progmodes/python.el: Add Ipython support (Bug#5390).
1060 (python-shell-prompt-alist)
1061 (python-shell-continuation-prompt-alist): New options.
1062 (python--set-prompt-regexp): New function.
1063 (inferior-python-mode, run-python, python-shell): Require
1064 ansi-color. Use python--set-prompt-regexp to set the comint
1065 prompt based on the Python interpreter.
1066 (python--prompt-regexp): New var.
1067 (python-check-comint-prompt)
1068 (python-comint-output-filter-function): Use it.
1069 (run-python): Use a pipe (Bug#5694).
1070
1071 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
1072
1073 * progmodes/python.el (python-send-region): Send a different
1074 Python command if Ipython is in use.
1075 (python-check-version): Use a Python command to find the version.
1076
1077 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1078
1079 * mouse.el (mouse-yank-primary): Avoid setting primary when
1080 deactivating the mark (Bug#6872).
1081
1082 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
1083
1084 * progmodes/python.el (python-block-pairs): Allow use of "finally"
1085 with "else" (Bug#3991).
1086
1087 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
1088
1089 * net/dbus.el: Accept UNIX domain sockets as bus address.
1090 (top): Don't initialize `dbus-registered-objects-table' anymore,
1091 this is done in dbusbind,c.
1092 (dbus-check-event): Adapt test for bus.
1093 (dbus-return-values-table, dbus-unregister-service)
1094 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
1095 Adapt doc string.
1096
1097 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
1098
1099 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
1100
1101 2010-08-22 Juri Linkov <juri@jurta.org>
1102
1103 * simple.el (read-extended-command): New function with the logic
1104 for `completing-read' moved to Elisp from `execute-extended-command'.
1105 Use `function-called-at-point' in `minibuffer-default-add-function'
1106 to get a command name for M-n (bug#5364, bug#5214).
1107
1108 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1109
1110 * startup.el (command-line-1): Issue warning for ignored arguments
1111 --unibyte, etc (Bug#6886).
1112
1113 2010-08-22 Leo <sdl.web@gmail.com>
1114
1115 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
1116 (ignore, bright, dim, keyword): Split list of nicknames before
1117 passing to rcirc-add-or-remove (Bug#6894).
1118
1119 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1120
1121 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
1122
1123 2010-08-22 Leo <sdl.web@gmail.com>
1124
1125 Fix buffer-list rename&refresh after killing a buffer in ido.
1126 * lisp/ido.el: Revert Óscar's.
1127 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
1128 Remember the buffers at head, rather than their name.
1129 * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
1130
1131 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
1132 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
1135 extra backslash added to each line (bug#6890).
1136
1137 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
1138
1139 * subr.el (read-key): Don't echo keystrokes (bug#6883).
1140
1141 2010-08-22 Glenn Morris <rgm@gnu.org>
1142
1143 * menu-bar.el (menu-bar-games-menu): Add landmark.
1144
1145 2010-08-22 Glenn Morris <rgm@gnu.org>
1146
1147 * align.el (align-regexp): Make group and spacing arguments
1148 use the interactive defaults when non-interactive. (Bug#6698)
1149
1150 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1151 expansion, so as not to need sendmail.
1152 (mail-text-start): Remove declaration.
1153 (rmail-retry-failure): Require sendmail.
1154
1155 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1156
1157 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1158
1159 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
1160
1161 * progmodes/flymake.el (flymake-start-syntax-check-process):
1162 Use `start-file-process' in order to let it run also on remote hosts.
1163
1164 2010-08-22 Kenichi Handa <handa@m17n.org>
1165
1166 * files.el: Add `word-wrap' as safe local variable.
1167
1168 2010-08-22 Glenn Morris <rgm@gnu.org>
1169
1170 * woman.el (woman-translate): Case matters. (Bug#6849)
1171
1172 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1173
1174 * simple.el (kill-region): Doc fix (Bug#6787).
1175
1176 2010-08-22 Glenn Morris <rgm@gnu.org>
1177
1178 * calendar/diary-lib.el (diary-header-line-format):
1179 Fit it to the window, not the frame.
1180
1181 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
1182
1183 * subr.el (ignore-errors): Add debug declaration.
1184
1185 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
1186
1187 * whitespace.el (whitespace-color-off): Remove post-command-hook
1188 locally.
1189
1190 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1191
1192 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
1193
1194 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
1195
1196 * cus-edit.el (custom-group-value-create): Add extra newline
1197 before end line (Bug#6876).
1198
1199 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
1200
1201 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
1202 when extending it. Before killing on the second click, check if
1203 the buffer is the correct one. Doc fix.
1204 (mouse-secondary-save-then-kill): Allow usage without first
1205 calling mouse-start-secondary, by defaulting to point. Don't save
1206 an empty secondary selection. Doc fix.
1207
1208 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1209
1210 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
1211 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
1212 New version 13.0.
1213 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
1214 Adjust initialization.
1215 (whitespace-bob-marker, whitespace-eob-marker)
1216 (whitespace-buffer-changed): New vars.
1217 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
1218 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1219 (whitespace-post-command-hook, whitespace-display-char-on):
1220 Adjust code.
1221 (whitespace-looking-back, whitespace-buffer-changed): New funs.
1222 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
1223
1224 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1225
1226 * files.el (locate-file-completion-table): Only list the .el and .elc
1227 extensions if there's no other choice (bug#5955).
1228
1229 * facemenu.el (facemenu-self-insert-data): New var.
1230 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
1231 New functions.
1232 (facemenu-add-face): Use them.
1233
1234 * simple.el (blink-matching-open): Obey forward-sexp-function.
1235
1236 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
1237
1238 * simple.el (prog-mode-map): New var.
1239 (prog-indent-sexp): New command.
1240
1241 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
1242
1243 * progmodes/prolog.el (smie): Require.
1244
1245 * emacs-lisp/smie.el (smie-default-backward-token)
1246 (smie-default-forward-token): Strip properties.
1247 (smie-next-sexp): Be more careful with associative operators.
1248 (smie-forward-sexp-command): Generalize.
1249 (smie-backward-sexp-command): Simplify.
1250 (smie-closer-alist): New var.
1251 (smie-close-block): New command.
1252 (smie-indent-debug-log): New var.
1253 (smie-indent-offset-rule): Add a few more cases.
1254 (smie-indent-column): New function.
1255 (smie-indent-after-keyword): Use it.
1256 (smie-indent-keyword): Use it.
1257 Fix up the opener code's point position.
1258 (smie-indent-comment): Only applies at BOL.
1259 (smie-indent-debug): New command.
1260
1261 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
1262 declarations that are useful before running the macro.
1263
1264 2010-08-18 Joakim Verona <joakim@verona.se>
1265
1266 * image.el (imagemagick-types-inhibit): New variable.
1267 (imagemagick-register-types): New function.
1268 * image-mode.el (image-transform-properties): New function.
1269 (image-transform-set-scale, image-transform-fit-to-height)
1270 (image-transform-set-rotation, image-transform-set-resize)
1271 (image-transform-fit-to-width, image-transform-fit-to-height):
1272 New functions.
1273 (image-toggle-display-image): Support image transforms.
1274
1275 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
1276
1277 * image.el (create-animated-image): Don't add heuristic mask to image
1278 (Bug#6839).
1279
1280 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
1281
1282 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
1283 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
1284
1285 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
1286
1287 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
1288
1289 Font-lock '...' strings, plus various simplifications and fixes.
1290 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
1291 (octave-font-lock-close-quotes): New function.
1292 (octave-font-lock-syntactic-keywords): New var.
1293 (octave-mode): Use it. Set beginning-of-defun-function.
1294 (octave-mode-map): Don't override the <foo>-defun commands.
1295 (octave-mode-menu): Pass it directly to easy-menu-define;
1296 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
1297 (octave-block-match-alist): Fix up last change so that
1298 octave-close-block uses the more specific keyword.
1299 (info-lookup-mode): Silence byte-compiler.
1300 (octave-beginning-of-defun): Not interactive any more.
1301 Optimize slightly.
1302 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
1303 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
1304 (octave-completion-at-point-function): Make sure point is within
1305 beg..end.
1306 (octave-reindent-then-newline-and-indent):
1307 Use reindent-then-newline-and-indent.
1308 (octave-add-octave-menu): Remove.
1309
1310 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
1311
1312 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
1313 (report-emacs-bug-can-use-xdg-email): New functions.
1314 (report-emacs-bug): Set can-xdg-email to result of
1315 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
1316 \C-cm to report-emacs-bug-insert-to-mailer and add help text
1317 about it.
1318
1319 * net/browse-url.el (browse-url-default-browser): Add cond
1320 for browse-url-xdg-open.
1321 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
1322
1323 2010-08-17 Glenn Morris <rgm@gnu.org>
1324
1325 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
1326 (c-fontify-recorded-types-and-refs): Define for compiler.
1327 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
1328 before use.
1329
1330 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
1331 Fix format call.
1332
1333 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
1334
1335 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
1336 properties.
1337 (tramp-handle-process-file): Call the program in a subshell, in
1338 order to preserve working directory.
1339 (tramp-action-password): Hide password prompt before next run.
1340 (tramp-process-actions): Widen connection buffer for the trace.
1341
1342 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1343
1344 * net/rcirc.el (rcirc-log-process-buffers): New option.
1345 (rcirc-print): Use it.
1346 (rcirc-generate-log-filename): New function.
1347 (rcirc-log-filename-function): Change default to
1348 rcirc-generate-log-filename (Bug#6828).
1349
1350 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
1351
1352 * simple.el (deactivate-mark): If select-active-regions is `only',
1353 only set selection for temporarily active regions.
1354
1355 * cus-start.el: Change defcustom for select-active-regions.
1356
1357 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
1358
1359 * mouse.el (mouse--drag-set-mark-and-point): New function.
1360 (mouse-drag-track): Use LOCATION arg to push-mark.
1361 Use mouse--drag-set-mark-and-point to take click-count into
1362 consideration when updating point and mark (Bug#6840).
1363
1364 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
1365
1366 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1367 Give the Ruby rule a lower priority than Gnu (Bug#6778).
1368
1369 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
1370
1371 * font-lock.el (lisp-font-lock-keywords-2):
1372 Add combine-after-change-calls, condition-case-no-debug,
1373 with-demoted-errors, and with-silent-modifications (Bug#6025).
1374
1375 2010-08-14 Kevin Ryde <user42@zip.com.au>
1376
1377 * emacs-lisp/copyright.el (copyright-update-year)
1378 (copyright-update): Temporary switch-to-buffer to ensure the
1379 buffer change being queried is visible (Bug#5394).
1380
1381 2010-08-14 Tom Tromey <tromey@redhat.com>
1382
1383 * progmodes/etags.el (tags-file-name): Mark safe if stringp
1384 (Bug#6733).
1385
1386 2010-08-14 Eli Zaretskii <eliz@gnu.org>
1387
1388 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
1389 MS-DOS. (Bug#6689)
1390
1391 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
1392
1393 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
1394 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
1395 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
1396 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
1397 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
1398 Call menu-bar-set-tool-bar-position.
1399
1400 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
1401
1402 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
1403 comment style (bug#6834).
1404 * progmodes/scheme.el (scheme-mode-syntax-table):
1405 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
1406 "b" flag in "' 14b" syntax.
1407
1408 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
1409 for (un)commenting the region and performing completion.
1410 (octave-mode-menu): Use standard commands for help and completion.
1411 (octave-mode-syntax-table): Support %{..%} comments (sort of).
1412 (octave-mode): Use define-derived-mode.
1413 Set completion-at-point-functions and don't set columns.
1414 Don't disable adaptive-fill-regexp.
1415 (octave-describe-major-mode, octave-comment-region)
1416 (octave-uncomment-region, octave-comment-indent)
1417 (octave-indent-for-comment): Remove.
1418 (octave-indent-calculate): Rename from calculate-octave-indent.
1419 (octave-indent-line, octave-fill-paragraph): Update caller.
1420 (octave-initialize-completions): No need to make an alist.
1421 (octave-completion-at-point-function): New function.
1422 (octave-complete-symbol): Use it.
1423 (octave-insert-defun): Use define-skeleton.
1424
1425 * progmodes/octave-mod.el (octave-mode): Set comment-add.
1426 (octave-mode-map): Use comment-dwim (bug#6829).
1427
1428 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
1429
1430 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
1431 indentation of inserted comment.
1432
1433 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
1434
1435 * faces.el (region): Add type gtk that uses gtk colors.
1436
1437 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
1438 Handle theme-name change.
1439
1440 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
1441
1442 * progmodes/sql.el: Version 2.5
1443 (sql-product-alist): Add :prompt-cont-regexp property for several
1444 database products.
1445 (sql-prompt-cont-regexp): New variable.
1446 (sql-output-newline-count, sql-output-by-send):
1447 New variables. Record number of newlines in input text.
1448 (sql-send-string): Handle multiple filters and count newlines.
1449 (sql-send-magic-terminator): Count terminator newline.
1450 (sql-interactive-remove-continuation-prompt): Filters output to
1451 remove continuation prompts; one for each newline.
1452 (sql-interactive-mode): Set up new variables, prompt regexp and
1453 output filter.
1454 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
1455 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
1456
1457 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
1458
1459 * emacs-lisp/pcase.el: New file.
1460
1461 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
1462
1463 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
1464 as here-document, otherwise the command could exceed maximum
1465 length of command line.
1466 (tramp-handle-vc-registered): Call script accordingly.
1467 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
1468
1469 2010-08-10 Kenichi Handa <handa@m17n.org>
1470
1471 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
1472 composable pattern.
1473
1474 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
1475
1476 * emacs-lisp/package.el (package-version-split)
1477 (package--version-first-nonzero, package-version-compare):
1478 Functions removed.
1479 (package-directory-list, package-load-all-descriptors)
1480 (package--built-in, package-activate, define-package)
1481 (package-installed-p, package-compute-transaction)
1482 (package-read-all-archive-contents)
1483 (package--add-to-archive-contents, package-buffer-info)
1484 (package-tar-file-info, package-list-packages-internal):
1485 Use version-to-list and version-list-*.
1486
1487 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1488 Use version-to-list.
1489 (package-upload-buffer-internal): Use version-list-<=.
1490
1491 2010-08-09 Kenichi Handa <handa@m17n.org>
1492
1493 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
1494 composable pattern.
1495
1496 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
1497
1498 * tutorial.el (tutorial--default-keys): C-d is now bound to
1499 delete-forward-char (Bug#6826).
1500
1501 * mouse.el (mouse-drag-track): Remove accidentally-removed check
1502 for `double' value of mouse-1-click-follows-link (Bug#6807).
1503
1504 2010-08-08 Johan Bockgård <bojohan@gnu.org>
1505
1506 * replace.el (replace-highlight): Bind isearch-forward and
1507 isearch-error, ensuring that highlighting is updated if the user
1508 switches the search direction (Bug#6808).
1509
1510 * isearch.el (isearch-lazy-highlight-forward): New var.
1511 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1512 (isearch-lazy-highlight-update): Use it.
1513
1514 2010-08-08 Kenichi Handa <handa@m17n.org>
1515
1516 * international/mule.el (define-charset): Store NAME as :base property.
1517 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
1518 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
1519 current priority. Force using the designation of the specific
1520 charset by adding `charset' text property. Improve the whole algorithm.
1521
1522 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1523
1524 * emulation/pc-select.el (pc-selection-mode-hook)
1525 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
1526 (pc-selection-mode): Fix typos in docstrings.
1527
1528 2010-08-08 Kenichi Handa <handa@m17n.org>
1529
1530 * language/cyrillic.el: Don't add "microsoft-cp1251" to
1531 ctext-non-standard-encodings-alist here.
1532
1533 * international/mule.el (ctext-non-standard-encodings-alist):
1534 Add "koi8-r" and "microsoft-cp1251".
1535 (ctext-standard-encodings): New variable.
1536 (ctext-non-standard-encodings-table): List only elements for
1537 non-standard encodings.
1538 (ctext-pre-write-conversion): Adjust for the above change.
1539 Check ctext-standard-encodings.
1540
1541 * international/mule-conf.el (compound-text): Doc fix.
1542 (ctext-no-compositions): Doc fix.
1543 (compound-text-with-extensions): Doc fix.
1544
1545 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1546
1547 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
1548
1549 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1550
1551 * progmodes/which-func.el (which-func-format): Split help-echo text
1552 into lines, like other mode-line tooltips.
1553
1554 * server.el (server-start): When using TCP sockets, force IPv4
1555 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
1556
1557 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1558
1559 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
1560
1561 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1562
1563 * term.el (term-delimiter-argument-list): Reflow docstring.
1564 (term-read-input-ring, term-write-input-ring, term-send-input)
1565 (term-bol, term-erase-in-display, serial-supported-or-barf):
1566 Fix typos in docstrings.
1567
1568 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1569
1570 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
1571
1572 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1573
1574 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
1575
1576 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
1577
1578 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
1579 Fix typo in docstring (bug#6747).
1580
1581 2010-08-08 Leo <sdl.web@gmail.com>
1582
1583 * eshell/esh-io.el (eshell-get-target): Better detection of
1584 read-only file (Bug#6762).
1585
1586 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1587
1588 * align.el (align-default-spacing): Doc fix.
1589 (align-region-heuristic, align-regexp): Fix typos in docstrings.
1590
1591 2010-08-08 Stephen Peters <speters@itasoftware.com>
1592
1593 * calendar/icalendar.el
1594 (icalendar--split-value): Fixed splitting regexp. (Bug#6766)
1595 (icalendar--get-weekday-numbers): New
1596 (icalendar--convert-recurring-to-diary): Handle multiple byday
1597 values in weekly rules. (Bug#6766)
1598
1599 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
1600
1601 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
1602 (icalendar--create-uid, icalendar-export-region)
1603 (icalendar--parse-summary-and-rest): Code formatting.
1604
1605 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
1606
1607 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
1608 to italicize headers.
1609 (calc-highlight-selections-with-faces): New variable.
1610 (calc-selected-face, calc-nonselected-face): New faces.
1611
1612 * calc/calccomp.el (math-comp-highlight-string): Use
1613 `calc-highlight-selections-with-faces' to determine how to highlight
1614 sub-formulas.
1615
1616 * calc/calc-sel.el (calc-show-selections): Change message to when
1617 using faces to highlight selections.
1618
1619 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
1620
1621 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
1622 Add SQLite 3 keywords, functions and datatypes.
1623 (sql-interactive-mode): Remove `comint-process-echoes' set to t
1624 (Bug#6686).
1625
1626 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
1627
1628 * simple.el (select-active-regions): Move to keyboard.c.
1629 (deactivate-mark): Used saved-region-selection.
1630 (select-active-region): Function removed.
1631 (activate-mark, set-mark, push-mark-command)
1632 (handle-shift-selection): Don't call it.
1633 (keyboard-quit): Avoid adding the region to the window selection.
1634
1635 * mouse.el (mouse-drag-track): Remove hacks to deal with old
1636 select-active-regions implementation.
1637 (mouse-yank-at-click): Doc fix.
1638
1639 * cus-start.el: Add custom declaration for select-active-regions.
1640
1641 2010-08-07 Eli Zaretskii <eliz@gnu.org>
1642
1643 * simple.el (delete-forward-char): Doc fix.
1644
1645 * tutorial.el (help-with-tutorial): Hack safe file-local variables
1646 after reading the tutorial.
1647
1648 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
1649
1650 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
1651 for the case that a C style comment has its delimiters alone on
1652 their respective lines.
1653
1654 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
1655
1656 * net/tramp.el (tramp-handle-start-file-process): Set connection
1657 property "vec".
1658 (tramp-process-sentinel): Use it for flushing the cache. We
1659 cannot do it via the process buffer, the buffer could be deleted
1660 already when running the sentinel.
1661
1662 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
1663
1664 * comint.el (comint-mode): Make directory tracking functions
1665 functional on remote files. (Bug#6764)
1666
1667 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
1668
1669 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
1670
1671 2010-08-05 Eli Zaretskii <eliz@gnu.org>
1672
1673 * emacs-lisp/find-gc.el (find-gc-source-files): Rename
1674 unexec.c => unexcoff.c.
1675
1676 * emacs-lisp/authors.el (authors-fixed-entries): Rename
1677 unexec.c => unexcoff.c.
1678
1679 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
1680
1681 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
1682 cache, not only file cache.
1683 (tramp-process-sentinel): New defun.
1684 (tramp-handle-start-file-process): Use it, in order to invalidate
1685 file caches.
1686
1687 2010-08-03 Leo <sdl.web@gmail.com>
1688
1689 * server.el (server-start): Simplify loop.
1690
1691 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1692
1693 * frame.el (screen-height, screen-width, set-screen-width)
1694 (set-screen-height): Remove ancient compatibility aliases.
1695
1696 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
1697 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
1698
1699 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
1700 that change current buffer.
1701
1702 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1703
1704 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
1705 beginning of the string. Use `string-match-p'. (Bug#6765)
1706
1707 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
1708
1709 * cus-start.el (x-gtk-use-system-tooltips): New variable.
1710
1711 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
1712
1713 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
1714 (package--builtins): Tweak descriptions.
1715 (package-print-package): Upcase descriptions if necessary.
1716 Show all built-in packages in font-lock-builtin-face.
1717 (package-list-packages-internal): Omit "emacs" package.
1718 Show status of built-in packages as "built-in".
1719
1720 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
1721
1722 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
1723 before killing to preserve the primary selection (Bug#6701).
1724
1725 * term/x-win.el (x-select-text): Doc fix.
1726
1727 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
1728
1729 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
1730 The following functions were modified or created:
1731
1732 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
1733 (objc-font-lock-extra-types):
1734 * progmodes/cc-mode.el (c-basic-common-init):
1735 * progmodes/cc-langs.el (c-make-mode-syntax-table)
1736 (c++-make-template-syntax-table)
1737 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
1738 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
1739 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
1740 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
1741 * progmodes/cc-fonts.el (c-make-inverse-face)
1742 (c-basic-matchers-after):
1743 * progmodes/cc-engine.el (c-forward-keyword-clause)
1744 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
1745 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
1746 (c-guess-continued-construct, c-guess-basic-syntax):
1747
1748 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
1749
1750 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
1751
1752 2010-07-31 Eli Zaretskii <eliz@gnu.org>
1753
1754 * files.el (bidi-paragraph-direction): Define safe local values.
1755
1756 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
1757 language-info-alist. Remove outdated FIXME in a comment.
1758
1759 2010-07-31 Alan Mackenzie <acm@muc.de>
1760
1761 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
1762 Auto-fill broken in C/C++ modes.
1763
1764 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
1765
1766 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
1767 (menu-bar-showhide-tool-bar-menu-customize-disable)
1768 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
1769 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
1770 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
1771 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
1772 make a menu for Options => toolbar that can move it.
1773
1774 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
1775
1776 * emacs-lisp/package-x.el (package--make-rss-entry):
1777 (package-maint-add-news-item, package--update-news)
1778 (package-upload-buffer-internal): New arg ARCHIVE-URL.
1779
1780 * emacs-lisp/package.el (package-archive-url): Rename from
1781 package-archive-id.
1782 (package-install): Doc fix.
1783 (package-download-single, package-download-tar, package-install)
1784 (package-menu-view-commentary): Callers changed.
1785
1786 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
1787
1788 * net/tramp.el (tramp-handle-start-file-process): Check only for
1789 `remote-tty' process property.
1790 (tramp-open-shell): Don't check for tty.
1791 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
1792 process property.
1793
1794 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
1795 host.
1796
1797 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
1798
1799 * emacs-lisp/package.el (package-load-list, package-archives)
1800 (package-archive-contents, package-user-dir)
1801 (package-directory-list, package--builtins, package-alist)
1802 (package-activated-list, package-obsolete-alist): Mark as risky.
1803
1804 2010-07-28 Phil Hagelberg <phil@evri.com>
1805
1806 Add support for non-default package repositories.
1807 * emacs-lisp/package.el (package-archive-base): Var deleted.
1808 (package-archives): New variable.
1809 (package-archive-contents): Doc fix.
1810 (package-load-descriptor): Do nothing if descriptor file is missing.
1811 (package--write-file-no-coding): New function.
1812 (package-unpack-single): Use it.
1813 (package-archive-id): New function.
1814 (package-download-single, package-download-tar)
1815 (package-menu-view-commentary): Use it.
1816 (package-installed-p): Make second argument optional.
1817 (package-read-all-archive-contents): New function.
1818 (package-initialize): Use it.
1819 (package-read-archive-contents): Add ARCHIVE argument.
1820 (package--add-to-archive-contents): New function.
1821 (package-install): Don't call package-read-archive-contents.
1822 (package--download-one-archive): Store archive file in a
1823 subdirectory of package-user-dir.
1824 (package-menu-execute): Remove spurious line movement.
1825
1826 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
1827
1828 * cus-start.el (tool-bar-style): Add text-image-horiz.
1829
1830 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
1831
1832 * progmodes/gud.el (gud-common-init): Check for remoteness of
1833 `file', and not of `default-directory'.
1834
1835 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
1836
1837 * net/tramp.el (tramp-methods): Move hostname to the end in all
1838 ssh `tramp-login-args'.
1839 (tramp-verbose): Describe verbose level 9.
1840 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
1841 (tramp-open-connection-setup-interactive-shell): Trace stty
1842 settings if `tramp-verbose' >= 9.
1843 (tramp-handle-start-file-process): Implement tty setting.
1844 (Bug#4604, Bug#6360)
1845
1846 * net/tramp-cmds.el (tramp-bug): Recommend setting of
1847 `tramp-verbose' to 9.
1848
1849 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
1850
1851 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
1852 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
1853 Remove references to package `lisp-re' (bug#4369).
1854
1855 2010-07-27 Tom Tromey <tromey@redhat.com>
1856
1857 * progmodes/js.el (js-mode):
1858 * progmodes/make-mode.el (makefile-mode):
1859 * progmodes/simula.el (simula-mode):
1860 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
1861
1862 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
1863
1864 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
1865
1866 * cedet/semantic/db-file.el (object-write): Fix typo in docstring.
1867
1868 * time.el (display-time-day-and-date): Remove spurious * in docstring.
1869 (display-time-world-buffer-name, display-time-world-mode-map):
1870 Fix typos in docstrings.
1871
1872 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
1873
1874 * image-mode.el (image-display-size): New function.
1875 (image-forward-hscroll, image-next-line, image-eol, image-eob)
1876 (image-mode-fit-frame): Use it (Bug#6639).
1877
1878 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
1879
1880 * dired.el (dired-buffers-for-dir): Handle list values of
1881 dired-directory (Bug#6636).
1882
1883 2010-07-26 Sam Steingold <sds@gnu.org>
1884
1885 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
1886 Do not call `x-get-selection' the second time, reuse the value.
1887
1888 2010-07-26 Daiki Ueno <ueno@unixuser.org>
1889
1890 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
1891 which consist of control chars only. Suggested by Richard Stallman.
1892
1893 2010-07-25 Daiki Ueno <ueno@unixuser.org>
1894
1895 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
1896 exists before passing an error to find-file-not-found-functions
1897 (bug#6723).
1898
1899 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
1900
1901 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
1902 Remove leading nil element, adjust values.
1903 (tetris-shapes, tetris-shape-scores):
1904 Change representation of shapes and remove some redundancy.
1905 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
1906 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
1907 Adjust for working with new representation of shapes.
1908 (tetris-shape-rotations): New function.
1909 (tetris-move-bottom, tetris-move-left, tetris-move-right)
1910 (tetris-rotate-prev, tetris-rotate-next):
1911 Adjust for working with the new version of tetris-test-shape.
1912
1913 2010-07-23 Markus Triska <markus.triska@gmx.at>
1914
1915 * progmodes/ps-mode.el: Use comint (bug#5954).
1916 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
1917 (ps-mode-other-newline): Simplify.
1918 (ps-run-mode): Derive from comint-mode instead of
1919 fundamental-mode, yielding input history etc.
1920 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
1921 (ps-run-send-string): Adapt for comint-mode.
1922 (ps-run-newline): Remove now unneeded function.
1923
1924 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
1925
1926 * net/tramp.el (tramp-methods): Move hostname to the end in all
1927 plink `tramp-login-args'.
1928
1929 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
1930
1931 * net/tramp.el (tramp-open-shell): New defun.
1932 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1933 Use it.
1934
1935 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
1936
1937 * net/tramp.el (tramp-file-name-regexp-unified)
1938 (tramp-completion-file-name-regexp-unified): On W32 systems, do
1939 not regard the volume letter as remote filename. (Bug#5447)
1940
1941 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
1942
1943 * custom.el (custom-declare-variable): Give a clearer error message
1944 when the docstring is missing (bug#6476).
1945
1946 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
1947
1948 * progmodes/sql.el: Version 2.4. Improved Login prompting.
1949 (sql-login-params): New widget definition.
1950 (sql-oracle-login-params, sql-mysql-login-params)
1951 (sql-solid-login-params, sql-sybase-login-params)
1952 (sql-informix-login-params, sql-ingres-login-params)
1953 (sql-ms-login-params, sql-postgres-login-params)
1954 (sql-interbase-login-params, sql-db2-login-params)
1955 (sql-linter-login-params): Use it.
1956 (sql-sqlite-login-params): Use it; Define "database" parameter as
1957 a file name.
1958 (sql-sqlite-program): Change to "sqlite3".
1959 (sql-comint-sqlite): Make sure database name is complete.
1960 (sql-for-each-login): New function.
1961 (sql-connect, sql-save-connection): Use it.
1962 (sql-get-login-ext): New function.
1963 (sql-get-login): Use it.
1964 (sql-make-alternate-buffer-name): Handle :file parameters.
1965
1966 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
1967
1968 * dired.el (dired-no-confirm): Document value t and fix defcustom to
1969 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
1970
1971 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
1972
1973 * dired.el (dired-mode-map): Use command remapping (bug#6632).
1974
1975 2010-07-22 Lawrence Mitchell <wence@gmx.li>
1976
1977 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
1978
1979 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
1980
1981 * net/tramp.el (tramp-get-ls-command)
1982 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
1983 instead of "/".
1984
1985 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
1986
1987 * progmodes/sql.el: Version 2.3.
1988 (sql-connection-alist): Changed keys from symbols to strings;
1989 enhanced the widget definition.
1990 (sql-mode-menu): Added submenu to select connections.
1991 (sql-interactive-mode-menu): Added "Save Connection" item.
1992 (sql-add-product): Fixed menu item.
1993 (sql-get-product-feature): Improved error handling.
1994 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
1995 (sql-make-alternate-buffer-name): Simplified.
1996 (sql-product-interactive): Handle missing product.
1997 (sql-connect): Support string keys, minor improvements.
1998 (sql-save-connection): New function.
1999 (sql-connection-menu-filter): New function.
2000
2001 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
2002
2003 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
2004 (tramp-open-connection-setup-interactive-shell): Apply
2005 workaround for IRIX64 bug. Move argument of last
2006 `tramp-send-command' where it belongs to.
2007
2008 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
2009
2010 * net/tramp.el (tramp-perl-file-attributes)
2011 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2012 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
2013 front of `login-args'.
2014
2015 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
2016
2017 * time.el (display-time-world-mode): Define with `define-derived-mode'.
2018 Set `show-trailing-whitespace' to nil.
2019 (display-time-world-display): Simplify.
2020
2021 2010-07-18 Alan Mackenzie <acm@muc.de>
2022
2023 Enhance `c-file-style' in file/directory local variables.
2024 * progmodes/cc-mode.el (c-count-cfss): New function.
2025 (c-before-hack-hook): Call `c-set-style' differently according to
2026 whether c-file-style was set in file or directory local
2027 variables.
2028
2029 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
2030
2031 * progmodes/sql.el: Version 2.2.
2032 (sql-product, sql-user, sql-database, sql-server, sql-port): Use
2033 defcustom :safe keyword rather than putting safe-local-variable
2034 property.
2035 (sql-password): Use defcustom :risky keyword rather than putting
2036 risky-local-variable property.
2037 (sql-oracle-login-params, sql-sqlite-login-params)
2038 (sql-solid-login-params, sql-sybase-login-params)
2039 (sql-informix-login-params, sql-ingres-login-params)
2040 (sql-ms-login-params, sql-postgres-login-params)
2041 (sql-interbase-login-params, sql-db2-login-params)
2042 (sql-linter-login-params): Add `port' option.
2043 (sql-get-product-feature): Added NO-INDIRECT parameter.
2044 (sql-comint-oracle, sql-comint-sybase)
2045 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
2046 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
2047 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
2048 (sql-comint-linter): Renamed sql-connect-* functions to
2049 sql-comint-*.
2050 (sql-product-alist, sql-mode-menu): Renamed as above and
2051 :sqli-connect-func to :sqli-comint-func.
2052 (sql-connection): New variable.
2053 (sql-interactive-mode): Set it.
2054 (sql-connection-alist): New variable.
2055 (sql-connect): New function.
2056 (sql--alt-buffer-part, sql--alt-if-not-empty)
2057 (sql-make-alternate-buffer-name): Improved alternative buffer name.
2058
2059 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2060
2061 * image-mode.el (image-bookmark-make-record): Do not set context
2062 in an image (Bug#6650).
2063
2064 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
2065
2066 * simple.el (select-active-region): New function.
2067 (push-mark-command, set-mark, activate-mark)
2068 (handle-shift-selection): Use it.
2069 (deactivate-mark): Don't check for size of region.
2070
2071 * mouse.el (mouse-drag-track): Use select-active-region.
2072
2073 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
2074
2075 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
2076 "--dired" stronger.
2077
2078 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
2079
2080 * term/x-win.el (x-select-enable-primary): Change default to nil.
2081 (x-select-enable-clipboard): Add :version keyword.
2082
2083 * mouse.el (mouse-drag-copy-region):
2084 * simple.el (select-active-regions): Likewise.
2085
2086 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
2087
2088 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
2089 (vc-coding-system-for-diff): Use it to decide whether to inherit
2090 from the file the EOL format for reading the diffs of that file.
2091 (Bug#4451)
2092
2093 2010-07-16 Eli Zaretskii <eliz@gnu.org>
2094
2095 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
2096 unibyte, so compressed attachments are not compressed again.
2097
2098 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
2099
2100 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
2101 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
2102 (tramp-find-shell): Simplify setting connection property.
2103 (tramp-get-ls-command): Make test for "--color=never" stronger.
2104
2105 2010-07-15 Simon South <ssouth@member.fsf.org>
2106
2107 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
2108 blocks within record declarations (i.e. variant parts) correctly.
2109
2110 2010-07-15 Simon South <ssouth@member.fsf.org>
2111
2112 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
2113 over literal tokens when parsing so newlines aren't "absorbed" by
2114 single-line comments. Corrects the indentation of case blocks
2115 that have a comment on the first line.
2116
2117 2010-07-14 Karl Fogel <kfogel@red-bean.com>
2118
2119 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
2120 by Drew Adams (Bug#5504).
2121
2122 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
2123
2124 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
2125 now that Unicode is used (Bug#6594).
2126
2127 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
2128
2129 * term/x-win.el (x-select-enable-clipboard): Default to t.
2130 (x-initialize-window-system): Don't overwrite Paste menu item.
2131
2132 * simple.el (select-active-regions): Default to t.
2133 (push-mark-command): Don't overwrite primary with empty string.
2134
2135 * mouse.el: Bind mouse-2 to mouse-yank-primary.
2136 (mouse-drag-copy-region): Default to nil.
2137
2138 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
2139 Cut/Copy/Paste menu bar items.
2140
2141 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2142
2143 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
2144 Patch applied by Karl Fogel.
2145
2146 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
2147 and `bookmark-current-buffer' if they have been already set in
2148 another buffer (e.g gnus-art).
2149
2150 2010-07-13 Karl Fogel <kfogel@red-bean.com>
2151 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2152
2153 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
2154
2155 * bookmark.el (bookmark-make-record-default): Allow unneeded
2156 information to be omitted from the record.
2157
2158 Adjust declarations and calls:
2159
2160 * info.el (bookmark-make-record-default): Adjust declaration.
2161 (Info-bookmark-make-record): Adjust call.
2162
2163 * woman.el (bookmark-make-record-default): Adjust declaration.
2164 (woman-bookmark-make-record): Adjust call.
2165
2166 * man.el (bookmark-make-record-default): Adjust declaration.
2167 (Man-bookmark-make-record): Adjust call.
2168
2169 * image-mode.el (bookmark-make-record-default): Adjust declaration.
2170
2171 * doc-view.el (bookmark-make-record-default): Adjust declaration.
2172
2173 2010-07-13 Karl Fogel <kfogel@red-bean.com>
2174
2175 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
2176 This is also from Thierry Volpiatto's patch in bug #6444. However,
2177 because it was extraneous to the functional change in that patch,
2178 and causes a re-indendation, I am committing it separately.
2179
2180 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2181
2182 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
2183 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
2184 Patch applied by Karl Fogel (Bug#6444).
2185
2186 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
2187
2188 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
2189
2190 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
2191
2192 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
2193 Dempsky; bug#5084). Remove incorrect binding for S-tab.
2194 (ns-alternatives-map): Change S-tab binding to backtab
2195 (bug#6616).
2196
2197 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
2198 under ns.
2199
2200 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
2201
2202 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
2203 (Bug#5806)
2204
2205 * language/tv-util.el (tai-viet-re): Remove format.
2206
2207 2010-07-12 Kenichi Handa <handa@m17n.org>
2208
2209 * language/hebrew.el: Remove no-byte-compile declaration.
2210 Change coding: tag to utf-8. Register hebrew-shape-gstring in
2211 composition-function-table for 3-character looking back.
2212 (hebrew-font-get-precomposed): New function.
2213 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
2214
2215 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
2216
2217 * mouse.el (mouse-drag-track): Handle select-active-regions
2218 (Bug#6612).
2219
2220 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
2221
2222 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2223 empty argument to gvfs-copy.
2224
2225 2010-07-10 Glenn Morris <rgm@gnu.org>
2226
2227 * calendar/calendar.el (calendar-week-end-day): New function.
2228 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
2229 Respect calendar-week-start-day. (Bug#6606)
2230 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
2231 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
2232 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
2233 respect calendar-week-start-day.
2234
2235 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
2236
2237 * simple.el (use-region-p): Doc fix (Bug#6607).
2238
2239 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
2240
2241 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
2242 regexps for cucumber and ruby.
2243
2244 2010-07-08 Daiki Ueno <ueno@unixuser.org>
2245
2246 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
2247 (epa-file-insert-file-contents): Hack to prevent
2248 find-file from opening empty buffer when decryption failed
2249 (bug#6568).
2250
2251 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
2252
2253 * textmodes/ispell.el (ispell-alternate-dictionary):
2254 Use file-readable-p.
2255 Return nil if no word-list is found at default locations.
2256 (ispell-complete-word-dict): Default to nil.
2257 (ispell-command-loop): Use 'word-list' when using lookup-words.
2258 (lookup-words): Use ispell-complete-word-dict or
2259 ispell-alternate-dictionary. Check for word-list availability
2260 and handle errors if needed with better messages (Bug#6539).
2261 (ispell-complete-word): Use ispell-complete-word-dict or
2262 ispell-alternate-dictionary.
2263
2264 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
2265
2266 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
2267 builtins (BufferError, BytesWarning, WindowsError; callables
2268 bin, bytearray, bytes, format, memoryview, next, print; __package__).
2269
2270 2010-07-07 Glenn Morris <rgm@gnu.org>
2271
2272 * play/zone.el (top-level): Do not require timer, tabify, or cl.
2273 (zone-shift-left): Ignore intangibility, and any errors from
2274 forward-char.
2275 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
2276 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
2277 deleting, and copying text properties.
2278 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
2279 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
2280 to point-max is hard.
2281 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
2282 (zone-fill-out-screen): Ignore intangibility.
2283
2284 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
2285
2286 * menu-bar.el (menu-bar-mode):
2287 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
2288 if it has been set.
2289
2290 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
2291 word/line selection (Bug#6565).
2292
2293 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
2294
2295 * net/dbus.el (dbus-send-signal): Declare function.
2296
2297 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
2298
2299 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
2300 (dbus-register-property): New optional argument EMITS-SIGNAL.
2301 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
2302
2303 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
2304
2305 * mouse.el (mouse-drag-overlay): Variable deleted.
2306 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
2307 (mouse--remap-link-click-p): New function.
2308 (mouse-drag-track): Handle dragging by using temporary Transient
2309 Mark mode, instead of a special overlay.
2310 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
2311 mouse-show-mark.
2312
2313 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
2314 deleted.
2315
2316 2010-07-02 Juri Linkov <juri@jurta.org>
2317
2318 * autoinsert.el (auto-insert-alist): Fix readability
2319 by using dotted pair notation for lambda.
2320
2321 2010-07-02 Juri Linkov <juri@jurta.org>
2322
2323 * faces.el (read-face-name): Rename arg `string-describing-default'
2324 to `default'. Doc fix. Display the default value in quotes
2325 in the prompt. With empty input, return the `default' arg,
2326 unless the default value is a string (in which case return nil).
2327 (describe-face): Replace the string `default' arg of `read-face-name'
2328 with the symbol `default'.
2329
2330 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
2331
2332 * emulation/viper-cmd.el (viper-delete-backward-char)
2333 (viper-del-backward-char-in-insert)
2334 (viper-del-backward-char-in-replace, viper-change)
2335 (viper-backward-indent): Replace delete-backward-char with
2336 delete-char (Bug#6552).
2337
2338 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
2339
2340 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
2341
2342 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
2343
2344 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
2345 argument passed to frame-creation-function (Bug#5378).
2346
2347 * faces.el (x-handle-named-frame-geometry)
2348 (x-handle-reverse-video, x-create-frame-with-faces)
2349 (face-set-after-frame-default, tty-create-frame-with-faces): Don't
2350 separately consult default-frame-alist. It is now passed as the
2351 PARAMETER argument.
2352
2353 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
2354
2355 * startup.el (command-line): Don't call tool-bar-setup in a
2356 tty-only build.
2357
2358 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
2359
2360 * ruler-mode.el (ruler--save-header-line-format): New fun.
2361 (ruler-mode): Use it as a setter function, so as not to overwrite
2362 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
2363
2364 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
2365
2366 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
2367 (vc-root-diff, vc-print-root-log, vc-log-incoming)
2368 (vc-log-outgoing): Use it.
2369 (vc-diff-internal): Set diff-vc-backend.
2370
2371 * vc/diff-mode.el (diff-vc-backend): New var.
2372
2373 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
2374
2375 * dynamic-setting.el (font-setting-change-default-font): Remove
2376 call to message.
2377
2378 2010-06-28 Kenichi Handa <handa@m17n.org>
2379
2380 * international/quail.el (quail-insert-kbd-layout): Fix the
2381 showing of untranslated characters.
2382
2383 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
2384
2385 * simple.el (delete-active-region): New option.
2386 (delete-backward-char): Implement in Lisp.
2387 (delete-forward-char): New command.
2388
2389 * mouse.el (mouse-region-delete-keys): Deleted.
2390 (mouse-show-mark): Simplify.
2391
2392 * bindings.el (global-map): Bind delete and DEL, the former to
2393 delete-forward-char.
2394
2395 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
2396
2397 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
2398 (ruby-mode): Bind indent-line-function (Bug#5119).
2399
2400 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
2401
2402 * startup.el (command-line): Recognize "0" X resource value.
2403
2404 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
2405
2406 * startup.el (command-line): Use X resources to set the value of
2407 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
2408
2409 * menu-bar.el (menu-bar-mode):
2410 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
2411 Set init-value to t.
2412
2413 * frame.el (frame-notice-user-settings): Don't change
2414 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
2415 vice versa (Bug#2249).
2416
2417 2010-06-26 Eli Zaretskii <eliz@gnu.org>
2418
2419 * w32-fns.el (w32-convert-standard-filename): Doc fix.
2420
2421 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
2422
2423 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
2424 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
2425
2426 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
2427 default directories are expanded (Bug#6143).
2428
2429 2010-06-24 Juri Linkov <juri@jurta.org>
2430
2431 * minibuffer.el (completions-format): Change default from nil to
2432 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
2433
2434 2010-06-24 Juri Linkov <juri@jurta.org>
2435
2436 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
2437 buffer-locally to lambda that re-runs the vc diff command.
2438 (Bug#6447)
2439
2440 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
2441
2442 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
2443 echo area is in use (Bug#3412).
2444
2445 2010-06-22 Glenn Morris <rgm@gnu.org>
2446
2447 * textmodes/texinfmt.el (texinfo-format-region)
2448 (texinfo-raise-lower-sections, texinfo-format-separate-node)
2449 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
2450 (texinfo-format-option, texinfo-noindent):
2451 Use line-beginning-position and line-end-position.
2452
2453 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
2454 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
2455 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
2456 utf-8 characters.
2457
2458 2010-06-21 Karl Fogel <kfogel@red-bean.com>
2459
2460 * play/zone.el (zone-fall-through-ws): Fix next-line ->
2461 forward-line fallout.
2462
2463 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
2464
2465 * mouse.el (mouse-appearance-menu): Add docstring.
2466
2467 * help.el (describe-key): Print up-event using key-description.
2468
2469 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
2470
2471 * net/zeroconf.el (zeroconf-resolve-service)
2472 (zeroconf-service-resolver-handler): Use
2473 `dbus-byte-array-to-string'.
2474 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
2475
2476 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
2477
2478 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
2479
2480 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
2481
2482 Avoid displaying files with a nil state in vc-dir.
2483 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
2484 cases that cause insertion.
2485 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
2486 with a nil state.
2487
2488 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
2489
2490 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
2491
2492 2010-06-29 Leo <sdl.web@gmail.com>
2493
2494 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
2495
2496 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
2497
2498 * generic-x.el (bat-generic-mode): Fix regexp for command line
2499 switches (Bug#5719).
2500
2501 2010-06-27 Masatake YAMATO <yamato@redhat.com>
2502
2503 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
2504 of nconc to avoid pure storage error (Bug#6239).
2505
2506 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
2507
2508 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
2509 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
2510 bindings of bookmark-automatically-show-annotations (Bug#6515).
2511
2512 2010-06-25 Eli Zaretskii <eliz@gnu.org>
2513
2514 * arc-mode.el (archive-zip-extract): Don't quote the file name on
2515 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
2516
2517 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
2518
2519 * comint.el (make-comint, make-comint-in-buffer): Mention return
2520 value in the docstrings. (Bug#6498)
2521
2522 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
2523
2524 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
2525 since it is not present when using some non-default switches.
2526
2527 2010-06-23 Karl Fogel <kfogel@red-bean.com>
2528
2529 * simple.el (compose-mail): Fix doc string to refer to
2530 `compose-mail-user-agent-warnings', instead of to the
2531 nonexistent `compose-mail-check-user-agent'.
2532
2533 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
2534
2535 Fix an indentation bug:
2536
2537 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
2538 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
2539 of existing values.
2540
2541 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
2542 (c-clear->-pair-props-if-match-before): now return t when they've
2543 cleared properties, nil otherwise.
2544 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
2545 by taking account of the existing value.
2546
2547 * progmodes/cc-defs.el
2548 (c-clear-char-property-with-value-function): Fix this to clear the
2549 property rather than overwriting it with nil.
2550
2551 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
2552
2553 * emacs-lisp/package.el (package-print-package): Add link to
2554 package description via describe-package.
2555 (describe-package-1): List package requirements. Add button to
2556 perform installation.
2557 (package-menu-describe-package): New command.
2558
2559 * help-mode.el (help-package): New button type.
2560
2561 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
2562
2563 * emacs-lisp/package.el: Move package-list-packages binding to
2564 menu-bar.el.
2565 (describe-package, describe-package-1, package--dir): New funs.
2566 (package-activate-1): Use package--dir.
2567
2568 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
2569
2570 * help-mode.el (help-package-def): New button type.
2571
2572 * menu-bar.el: Move package-list-packages binding here from
2573 package.el.
2574
2575 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
2576
2577 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
2578
2579 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
2580
2581 * emacs-lisp/edebug.el (edebug-read-list):
2582 Phase out old-style backquotes.
2583
2584 2010-06-17 Juri Linkov <juri@jurta.org>
2585
2586 * help-mode.el (help-mode): Set buffer-local variable
2587 revert-buffer-function to help-mode-revert-buffer.
2588 (help-mode-revert-buffer): New function.
2589
2590 * info.el (Info-revert-find-node): Check for major-mode Info-mode
2591 before popping to "*info*" (like in other Info functions).
2592 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
2593 old-history-forward. Pop to old-buffer-name or "*info*" to
2594 recreate the killed buffer. Set Info-history-forward from
2595 old-history-forward.
2596 (Info-breadcrumbs-depth): Add :group and :version.
2597
2598 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
2599
2600 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
2601
2602 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
2603
2604 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
2605 for languages like Portuguese with pt_{BR,PT} and no plain pt.
2606
2607 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
2608
2609 * emacs-lisp/package.el (package-menu-mode-map):
2610 Move initialization into declaration.
2611
2612 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
2613
2614 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
2615
2616 * emacs-lisp/package.el (package-archive-base): Point to
2617 elpa.gnu.org.
2618 (package-enable, package-load-list): New defcustoms.
2619 (package-user-dir, package-directory-list): Turn into defcustoms.
2620 Don't include package-user-dir in package-directory-list.
2621 (package--builtins-base): Don't include Emacs as a "package".
2622 (package-subdirectory-regexp): New var.
2623 (package-load-all-descriptors, package-compute-transaction)
2624 (package-download-transaction): Obey package-load-list.
2625 (package-activate-1): Rename from package-do-activate.
2626 (package-list-packages-internal): Check package-load-list.
2627 (package-load-descriptor, package-generate-autoloads)
2628 (package-unpack, package-unpack-single)
2629 (package--read-archive-file, package-delete): Use
2630 expand-file-name.
2631
2632 * emacs-lisp/package-x.el: New file. Package uploading
2633 functionality split out from package.el.
2634
2635 * startup.el (command-line): Load packages after reading init
2636 file.
2637
2638 2010-06-17 Tom Tromey <tromey@redhat.com>
2639
2640 * emacs-lisp/package.el: New file.
2641
2642 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
2643
2644 Fix vc-annotate for renamed files when using Git.
2645 * vc-git.el (vc-git-find-revision): Deal with empty results from
2646 ls-files. Doe not pass the object as a file name to cat-file, it
2647 is not a file name.
2648 (vc-git-annotate-command): Pass the file name using -- to avoid
2649 ambiguity with the revision.
2650 (vc-git-previous-revision): Pass a relative file name.
2651
2652 2010-06-22 Glenn Morris <rgm@gnu.org>
2653
2654 * progmodes/js.el (js-mode-map): Use standard capitalization and
2655 ellipses for menu entries.
2656
2657 * wid-edit.el (widget-complete): Doc fix.
2658
2659 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
2660
2661 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
2662
2663 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
2664
2665 Fix annotating other revisions for renamed files in vc-annotate.
2666 * vc-annotate.el (vc-annotate): Add an optional argument for the
2667 VC backend. Use it when non-nil.
2668 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
2669 (Bug#6487)
2670
2671 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
2672 * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
2673 Do not pass the file name to the 'previous-revision call when we
2674 don't want a file diff. (Bug#6489)
2675
2676 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
2677
2678 Fix finding revisions for renamed files in vc-annotate.
2679 * vc.el (vc-find-revision): Add an optional argument for
2680 the VC backend. Use it when non-nil.
2681 * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
2682 backend to vc-find-revision. (Bug#6487)
2683
2684 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
2685
2686 Fix reading file names in Git annotate buffers.
2687 * vc-git.el (vc-git-annotate-extract-revision-at-line): Remove
2688 trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
2689
2690 2010-06-20 Alan Mackenzie <acm@muc.de>
2691
2692 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
2693 in file local variables, set it first.
2694
2695 2010-06-19 Glenn Morris <rgm@gnu.org>
2696
2697 * descr-text.el (describe-char-unicode-data): Insert separating
2698 space when needed. (Bug#6422)
2699
2700 * progmodes/idlwave.el (idlwave-action-and-binding):
2701 Fix typo in 2009-12-03 change. (Bug#6450)
2702
2703 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
2704
2705 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
2706 handling for `lambda' (misunderstanding).
2707
2708 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
2709
2710 * calc/calc-poly.el (math-accum-factors): Make sure that
2711 constants aren't distributed after they are factored out.
2712
2713 2010-06-16 Juri Linkov <juri@jurta.org>
2714
2715 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
2716 `list-colors-print'. (Bug#6332)
2717
2718 * subr.el (read-quoted-char): Fix up last change (bug#6290).
2719
2720 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
2721
2722 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
2723 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
2724
2725 * font-lock.el (font-lock-major-mode): Rename from
2726 font-lock-mode-major-mode to distinguish it from
2727 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
2728 (font-lock-set-defaults):
2729 * font-core.el (font-lock-default-function): Adjust users.
2730 (font-lock-mode): Don't set it at all.
2731
2732 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
2733
2734 * vc-annotate.el (vc-annotate): Use vc-read-revision.
2735
2736 2010-06-16 Glenn Morris <rgm@gnu.org>
2737
2738 * calendar/appt.el (appt-time-msg-list): Doc fix.
2739 (appt-check): Let-bind appt-warn-time.
2740 (appt-add): Make the 3rd argument optional.
2741 Simplify argument names. Doc fix. Check for integer WARNTIME.
2742 Only add WARNTIME to the output list if non-nil.
2743
2744 2010-06-16 Ivan Kanis <apple@kanis.eu>
2745
2746 * calendar/appt.el (appt-check): Let the 3rd element of
2747 appt-time-msg-list specify the warning time.
2748 (appt-add): Add new argument with the warning time. (Bug#5176)
2749
2750 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
2751
2752 * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
2753 older than version 1.6. (Bug#6361)
2754
2755 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
2756
2757 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
2758 used by cl-do-arglist. (Bug#6408)
2759
2760 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
2761
2762 * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
2763 portuguese casechars/not-casechars for missing 'çÇ'.
2764 Suggested by Rolando Pereira (bug#6434).
2765
2766 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
2767
2768 * facemenu.el (list-colors-sort): Doc fix.
2769
2770 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
2771
2772 * progmodes/sql.el (sql-connect-mysql): Fix typo.
2773
2774 2010-06-14 Juri Linkov <juri@jurta.org>
2775
2776 Add sort option `list-colors-sort'. (Bug#6332)
2777 * facemenu.el (color-rgb-to-hsv): New function.
2778 (list-colors-sort): New defcustom.
2779 (list-colors-sort-key): New function.
2780 (list-colors-display): Doc fix. Sort list according to the option
2781 `list-colors-sort'.
2782 (list-colors-print): Add HSV values to `help-echo' property of
2783 RGB strings.
2784
2785 2010-06-14 Juri Linkov <juri@jurta.org>
2786
2787 * compare-w.el: Move to the "vc" subdirectory.
2788
2789 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
2790
2791 * image-mode.el (image-mode-map): Remap left-char and right-char.
2792
2793 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
2794
2795 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
2796
2797 * term/common-win.el (x-colors): Add all the color names defined
2798 in rgb.txt (Bug#6332).
2799
2800 * facemenu.el (list-colors-print): Don't print extra names if it
2801 will overflow the window width.
2802
2803 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
2804 change (Bug#6343).
2805
2806 2010-06-12 Eli Zaretskii <eliz@gnu.org>
2807
2808 * files.el (make-directory): Doc fix (bug#6396).
2809
2810 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
2811
2812 * net/tramp.el (tramp-remote-process-environment): Protect version
2813 string by apostroph.
2814 (tramp-shell-prompt-pattern): Do not use a shy group in case of
2815 XEmacs.
2816 (tramp-file-name-for-operation): Add `call-process-region'.
2817 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
2818
2819 * net/tramp-compat.el (top): Do not autoload
2820 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
2821 only when `start-file-process' is not bound.
2822 (tramp-advice-file-expand-wildcards): Do not use
2823 `tramp-handle-file-remote-p'.
2824 (tramp-compat-make-temp-file): Handle the case, that
2825 `make-temp-file' has no third argument EXTENSION.
2826
2827 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
2828
2829 * makefile.w32-in (WINS_BASIC): Include new directory vc.
2830
2831 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
2832
2833 2010-06-11 Juri Linkov <juri@jurta.org>
2834
2835 * finder.el (finder-known-keywords): Add keyword "vc"
2836 for version control.
2837
2838 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
2839 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
2840 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
2841 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
2842
2843 2010-06-11 Juri Linkov <juri@jurta.org>
2844
2845 Move version control related files to the "vc" subdirectory.
2846 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
2847 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
2848 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
2849 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
2850 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
2851 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
2852 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
2853 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
2854 Move files to the "vc" subdirectory.
2855
2856 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
2857
2858 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
2859 (Bug#6367).
2860
2861 2010-06-11 Stephen Eglen <stephen@gnu.org>
2862
2863 * shell.el: Bind `shell-resync-dirs' to M-RET.
2864
2865 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
2866
2867 * notifications.el: Move file from lisp/net, because it is
2868 supposed to talk locally to the user.
2869
2870 2010-06-10 Julien Danjou <julien@danjou.info>
2871
2872 * net/notifications.el (notifications-on-action-signal)
2873 (notifications-on-closed-signal): Pass notification id as first
2874 argument to the callback functions. Add docstrings.
2875 (notifications-notify): Fix docstring.
2876
2877 2010-06-10 Glenn Morris <rgm@gnu.org>
2878
2879 * emacs-lisp/authors.el (authors-ignored-files)
2880 (authors-valid-file-names): Add some files.
2881
2882 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
2883
2884 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
2885 merge conflict, giving preference to the emacs-23 version of the code.
2886
2887 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
2888
2889 * emacs-lisp/advice.el (ad-compile-function):
2890 Define warning-suppress-types before we let-bind it (bug#6275).
2891
2892 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
2893 declare it, make it buffer-local and permanent-local (bug#6324).
2894 (vc-resynch-window): Adjust name.
2895 * vc-hooks.el (vc-find-file-hook): Adjust name.
2896
2897 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
2898
2899 * net/notifications.el (notifications-notify): Fix docstring.
2900
2901 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
2902
2903 Update to Unicode 6.0.0 beta.
2904 * international/charprop.el: Update copyright.
2905 * international/mule-cmds.el (ucs-names): Update character ranges.
2906 * international/uni-bidi.el:
2907 * international/uni-category.el:
2908 * international/uni-combining.el:
2909 * international/uni-comment.el:
2910 * international/uni-decimal.el:
2911 * international/uni-decomposition.el:
2912 * international/uni-digit.el:
2913 * international/uni-lowercase.el:
2914 * international/uni-mirrored.el:
2915 * international/uni-name.el:
2916 * international/uni-numeric.el:
2917 * international/uni-old-name.el:
2918 * international/uni-titlecase.el:
2919 * international/uni-uppercase.el: Regenerate.
2920
2921 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
2922
2923 * emacs-lisp/smie.el (comment-string-strip): Declare function.
2924 (smie-precs-precedence-table): Fix typo in docstring.
2925
2926 * vc-mtn.el (log-edit-extract-headers): Declare function.
2927
2928 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
2929
2930 * net/notifications.el (dbus-register-signal): Declare function.
2931 (notifications-notify): Fix typos and reflow docstring.
2932
2933 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
2934
2935 Improve VC create/retrieve tag/branch.
2936 * vc.el (vc-create-tag): Do not read the directory name for VCs
2937 with repository revision granularity. Adjust the tag/branch
2938 prompt. Reset VC properties.
2939 (vc-retrieve-tag): Do not read the directory name for VCs
2940 with repository revision granularity. Reset VC properties.
2941
2942 2010-06-09 Julien Danjou <julien@danjou.info>
2943
2944 * net/notifications.el: New file.
2945
2946 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
2947
2948 Add optional support for resetting VC properties.
2949 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
2950 call vc-file-clearprops when true.
2951 (vc-resynch-buffer): Add new optional argument, pass it down.
2952 (vc-resynch-buffers-in-directory): Likewise.
2953
2954 Improve support for special markup in the VC commit message.
2955 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
2956 * vc-hg.el (vc-hg-checkin): Add support for Date:.
2957 * vc-git.el (vc-git-checkin):
2958 * vc-bzr.el (vc-bzr-checkin): Likewise.
2959
2960 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
2961
2962 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
2963 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
2964
2965 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
2966
2967 * iimage.el: Remove images as soon as the underlying text is modified.
2968 (iimage-modification-hook): New function.
2969 (iimage-mode-buffer): Use it.
2970
2971 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2972
2973 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
2974 smie-indent-offset-after. Add :prev case. Make a bit more generic.
2975 (smie-indent-virtual): Remove `virtual' arg. Update callers.
2976 (smie-indent-keyword): Add handling of open-paren keywords.
2977 (smie-indent-comment-continue): Don't assume comment-continue.
2978
2979 2010-06-07 Martin Rudalics <rudalics@gmx.at>
2980
2981 * window.el (pop-to-buffer): Remove the conditional that
2982 compares new-window and old-window, so it will reselect
2983 the selected window unconditionally.
2984 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
2985
2986 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2987
2988 * emacs-lisp/smie.el (smie-indent-offset-after)
2989 (smie-indent-forward-token, smie-indent-backward-token): New functions.
2990 (smie-indent-after-keyword): Use them.
2991 (smie-indent-fixindent): Only applies to the indentation of the BOL.
2992 (smie-indent-keyword): Tweak the black magic.
2993 (smie-indent-comment-continue): Strip comment-continue before use.
2994 (smie-indent-functions): Indent comments before keywords.
2995
2996 2010-06-06 Juri Linkov <juri@jurta.org>
2997
2998 * isearch.el (isearch-lazy-highlight-search): Fix looping
2999 by checking for empty match. This syncs this loop with the
3000 similar loop in `isearch-search'. (Bug#6362)
3001
3002 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
3003
3004 * net/dbus.el (dbus-register-method): Declare function.
3005 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
3006 (dbus-introspect): Doc fix.
3007 (dbus-event-bus-name, dbus-introspect-get-interface)
3008 (dbus-introspect-get-argument): Reflow docstrings.
3009
3010 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
3011
3012 vc-log-incoming/vc-log-outgoing fixes for Git.
3013 * vc-git.el (vc-git-log-view-mode): Fix font lock for
3014 incoming/outgoing logs.
3015 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
3016 instead of vc-git-compute-remote.
3017 (vc-git-compute-remote): Remove.
3018
3019 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
3020
3021 * term/common-win.el (x-colors): Add "dark green" and "dark
3022 turquoise" (Bug#6332).
3023
3024 2010-06-04 Juri Linkov <juri@jurta.org>
3025
3026 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
3027 Instead of setting `replace' to t and replacing the same string
3028 with itself, don't do certain actions when
3029 kill-do-not-save-duplicates is non-nil and string is equal to car
3030 of kill-ring: don't call menu-bar-update-yank-menu, don't push
3031 interprogram-paste strings to kill-ring, and don't push the input
3032 argument `string' to kill-ring.
3033 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
3034
3035 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
3036
3037 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
3038
3039 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
3040
3041 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
3042 (tramp-gvfs-handler-mounted-unmounted)
3043 (tramp-gvfs-connection-mounted-p): Handle default-location.
3044
3045 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
3046 move files to trash.
3047
3048 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
3049
3050 * international/mule-cmds.el (nonascii-insert-offset)
3051 (nonascii-translation-table): Add obsolescence information.
3052
3053 * international/mule.el (make-translation-table-from-vector): Doc fix.
3054
3055 2010-06-03 Eric Ludlam <zappo@gnu.org>
3056
3057 * cedet/semantic/lex-spp.el
3058 (semantic-lex-spp-table-write-slot-value): Instead of erroring on
3059 invalid values during save, just save a nil (Bug#6324).
3060
3061 2010-06-03 Glenn Morris <rgm@gnu.org>
3062
3063 * desktop.el (desktop-clear-preserve-buffers):
3064 Add "*Warnings*" buffer. (Bug#6336)
3065
3066 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
3067
3068 vc-log-incoming/vc-log-outgoing improvements for Git.
3069 * vc-git.el (vc-git-log-outgoing): Use the same format as the
3070 short log.
3071 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
3072
3073 Add bindings for vc-log-incoming and vc-log-outgoing.
3074 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
3075 and vc-log-outgoing.
3076 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
3077 and vc-log-outgoing.
3078
3079 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
3080
3081 * net/rcirc.el (rcirc-sort-nicknames): Remove.
3082 (rcirc-handler-366): Always sort nicknames.
3083
3084 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
3085
3086 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
3087
3088 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
3089
3090 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
3091
3092 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
3093
3094 * net/rcirc.el (rcirc-sort-nicknames): Change default.
3095 (rcirc-sort-nicknames-join): Avoid setq.
3096
3097 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3098
3099 * net/rcirc.el (rcirc-sort-nicknames): New custom.
3100 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
3101 (rcirc-handler-366): Use them.
3102
3103 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
3104
3105 Split smie-indent-calculate into more manageable chunks.
3106 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
3107 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
3108 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
3109 (smie-indent-exps): Extract from smie-indent-calculate.
3110 (smie-indent-functions): New var.
3111 (smie-indent-functions): Use them.
3112
3113 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
3114
3115 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
3116 (smie-indent-calculate): Simplify and cleanup.
3117
3118 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
3119
3120 * net/tramp-gvfs.el (top): Require url-util.
3121 (tramp-gvfs-mount-point): Remove.
3122 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
3123 New defuns.
3124 (with-tramp-dbus-call-method): Format trace message.
3125 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3126 Implement backup call, when operation on local files fails.
3127 Use progress reporter. Flush properties of changed files.
3128 (tramp-gvfs-handle-make-directory): Make more traces.
3129 (tramp-gvfs-url-file-name): Hexify file name in url.
3130 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3131 into account for the resulting file name.
3132 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
3133 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
3134 (tramp-gvfs-handler-mounted-unmounted)
3135 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3136 attribute "default_location". Set "prefix" property.
3137 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3138 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3139 exists. Raise an error, if not (due to a corresponding answer
3140 "no" in interactive questions, for example).
3141
3142 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
3143
3144 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
3145
3146 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
3147
3148 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
3149 right-*. (Bug#6265)
3150
3151 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
3152
3153 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
3154 * vc-git.el (vc-git-compute-remote): New function.
3155 (vc-git-log-outgoing): Use it instead of hard coding a value.
3156 (vc-git-log-incoming): New function.
3157
3158 Improve state updating for VC tag commands.
3159 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
3160 to update the state of all buffers in the directory.
3161
3162 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
3163
3164 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3165
3166 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
3167 `file-directory-p' to the filename part rather than to the whole text.
3168
3169 2010-05-31 Jonathan Marchand <jonathlela@gmail.com> (tiny change)
3170
3171 * cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name
3172 (bug#6231).
3173
3174 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3175
3176 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
3177
3178 2010-05-31 Drew Adams <drew.adams@oracle.com>
3179
3180 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
3181
3182 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
3183
3184 * subr.el (momentary-string-display): Just use read-event to read
3185 the exit event (Bug#6238).
3186
3187 2010-05-30 Eli Zaretskii <eliz@gnu.org>
3188
3189 * international/mule.el (define-coding-system): Doc fix (bug#6313).
3190
3191 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
3192
3193 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
3194 Suggested by Eli Zaretskii <eliz@gnu.org>.
3195
3196 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3197
3198 * minibuffer.el (completion-file-name-table): Don't return a boundary
3199 past the end of `string' (bug#6299).
3200 (completion--file-name-table): Delegate to completion-file-name-table
3201 for the `boundaries' case.
3202
3203 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
3204
3205 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
3206 movement commands.
3207
3208 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
3209 `path-separator', but maintain compatibility with Emacs 20.2.
3210
3211 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
3212
3213 * server.el (server-process-filter): Receive parent-id argument
3214 from emacsclient.
3215 (server-create-window-system-frame): New arg. Pass parent-id as
3216 frame parameter.
3217
3218 2010-05-29 Eli Zaretskii <eliz@gnu.org>
3219
3220 Bidi-sensitive word movement with arrow keys.
3221 * subr.el (right-arrow-command, left-arrow-command): Move to
3222 bindings.el.
3223
3224 * bindings.el (right-char, left-char): Move from subr.el and
3225 rename from right-arrow-command and left-arrow-command.
3226 (right-word, left-word): New functions.
3227 (global-map) <right>: Bind to right-char.
3228 (global-map) <left>: Bind to left-char.
3229 (global-map) <C-right>: Bind to right-word.
3230 (global-map) <C-left>: Bind to left-word.
3231
3232 * ls-lisp.el (ls-lisp-classify-file): New function.
3233 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
3234 (ls-lisp-classify): Call ls-lisp-classify-file.
3235 (insert-directory): Remove blanks from switches.
3236
3237 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
3238
3239 * ansi-color.el: Delete unused escape sequences (Bug#6085).
3240 (ansi-color-drop-regexp): New constant.
3241 (ansi-color-apply, ansi-color-filter-region)
3242 (ansi-color-apply-on-region): Delete unrecognized control sequences.
3243 (ansi-color-apply): Build string list before calling concat.
3244
3245 2010-05-28 Juri Linkov <juri@jurta.org>
3246
3247 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
3248 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
3249 (Bug#5270)
3250
3251 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
3252
3253 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
3254 to ignored backtrace functions.
3255 (with-progress-reporter): Expand docstring.
3256 (tramp-handle-delete-file): Implement TRASH argument.
3257 (tramp-get-remote-trash): New defun.
3258
3259 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
3260
3261 * net/tramp-compat.el (tramp-compat-delete-file): Use
3262 `symbol-value' for backward compatibility.
3263
3264 * net/tramp.el (tramp-handle-make-symbolic-link)
3265 (tramp-handle-load)
3266 (tramp-do-copy-or-rename-file-via-buffer)
3267 (tramp-do-copy-or-rename-file-directly)
3268 (tramp-do-copy-or-rename-file-out-of-band)
3269 (tramp-handle-process-file, tramp-handle-call-process-region)
3270 (tramp-handle-shell-command, tramp-handle-file-local-copy)
3271 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3272 (tramp-delete-temp-file-function): Use `delete-file' instead
3273 of `tramp-compat-delete-file'.
3274
3275 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3276 (tramp-fish-handle-make-symbolic-link)
3277 (tramp-fish-handle-process-file): Use `delete-file' instead
3278 of `tramp-compat-delete-file'.
3279
3280 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
3281 `delete-file' instead of `tramp-compat-delete-file'.
3282
3283 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3284 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
3285 `tramp-compat-delete-file'.
3286
3287 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
3288 `delete-file' instead of `tramp-compat-delete-file'.
3289
3290 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3291 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3292 (tramp-smb-handle-write-region): Use `delete-file' instead of
3293 `tramp-compat-delete-file'.
3294 (tramp-smb-handle-delete-directory): Use 'trash as arg.
3295
3296 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
3297
3298 * dired.el (dired-delete-file): New arg TRASH.
3299 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
3300 (dired-do-flagged-delete, dired-do-delete): Use trash.
3301
3302 * speedbar.el (speedbar-item-delete): Allow trashing.
3303
3304 * files.el (delete-directory): New arg TRASH.
3305
3306 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
3307 (ange-ftp-rename-remote-to-remote)
3308 (ange-ftp-rename-local-to-remote)
3309 (ange-ftp-rename-remote-to-local, ange-ftp-load)
3310 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
3311 `delete-file'.
3312 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
3313 allow trashing.
3314
3315 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
3316 handle new TRASH arg of `delete-file'.
3317
3318 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
3319 (tramp-handle-make-symbolic-link, tramp-handle-load)
3320 (tramp-do-copy-or-rename-file-via-buffer)
3321 (tramp-do-copy-or-rename-file-directly)
3322 (tramp-do-copy-or-rename-file-out-of-band)
3323 (tramp-handle-process-file, tramp-handle-call-process-region)
3324 (tramp-handle-shell-command, tramp-handle-file-local-copy)
3325 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3326 (tramp-delete-temp-file-function): Use null TRASH arg in
3327 tramp-compat-delete-file call.
3328
3329 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3330 (tramp-fish-handle-delete-file)
3331 (tramp-fish-handle-make-symbolic-link)
3332 (tramp-fish-handle-process-file): Use null TRASH arg in
3333 `tramp-compat-delete-file' call.
3334
3335 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
3336 arg in `tramp-compat-delete-file' call.
3337
3338 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3339 (tramp-gvfs-handle-write-region): Use null TRASH arg in
3340 `tramp-compat-delete-file' call.
3341
3342 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
3343 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
3344 `tramp-compat-delete-file' call.
3345
3346 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3347 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3348 (tramp-smb-handle-write-region): Use null TRASH arg in
3349 tramp-compat-delete-file call.
3350 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
3351 (tramp-smb-handle-delete-file): Rename arg.
3352
3353 * diff.el (diff-sentinel):
3354 * epg.el (epg--make-temp-file, epg-decrypt-string)
3355 (epg-verify-string, epg-sign-string, epg-encrypt-string):
3356 * jka-compr.el (jka-compr-partial-uncompress)
3357 (jka-compr-call-process, jka-compr-write-region):
3358 * server.el (server-sentinel): Remove optional arg from
3359 delete-file, reverting 2010-05-03 change.
3360
3361 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
3362
3363 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
3364 font-lock-constant-face, not obsolete font-lock-reference-face.
3365
3366 2010-05-27 Kenichi Handa <handa@m17n.org>
3367
3368 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
3369 element of GSTRING is nil.
3370
3371 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
3372
3373 * emacs-lisp/smie.el (smie-forward-token-function)
3374 (smie-backward-token-function): New vars.
3375 (smie-backward-sexp, smie-forward-sexp)
3376 (smie-indent-hanging-p, smie-indent-calculate): Use them.
3377 (smie-default-backward-token): Rename from smie-backward-token and
3378 skip comments.
3379 (smie-default-forward-token): Rename from smie-forward-token and
3380 skip comments.
3381 (smie-next-sexp): Handle nil results from next-token.
3382 (smie-indent-calculate): Add a new case for special `fixindent' comments.
3383
3384 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
3385
3386 * progmodes/verilog-mode.el (verilog-type-font-keywords):
3387 Use font-lock-constant-face, not obsolete font-lock-reference-face.
3388
3389 2010-05-27 Masatake YAMATO <yamato@redhat.com>
3390
3391 * htmlfontify.el (hfy-face-resolve-face): New function.
3392 (hfy-face-to-style): Use it (Bug#6279).
3393
3394 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
3395
3396 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
3397 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
3398
3399 2010-05-26 Glenn Morris <rgm@gnu.org>
3400
3401 * emulation/edt.el (edt-load-keys): Use locate-library.
3402
3403 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
3404
3405 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
3406 (log-edit-changelog-entries): Doc fix.
3407 (log-edit-changelog-insert-entries): Args changed.
3408 Rename relative filenames in ChangeLog entries. Delete tabs.
3409 (log-edit-insert-changelog-entries): Reorganize return value of
3410 `log-edit-changelog-entries' to pass filenames to
3411 log-edit-changelog-insert-entries.
3412
3413 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3414
3415 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
3416 `image-dired-dired-insert-marked-thumbs' to
3417 `image-dired-dired-toggle-marked-thumbs'.
3418
3419 * image-dired.el: Require cl when compiling.
3420 (image-dired-dired-toggle-marked-thumbs): Rename from
3421 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
3422 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
3423 to 'no-dir. Skip files whose names don't match
3424 `image-file-name-regexp'. When file has a thumbnail overlay,
3425 delete it. (Bug#5270)
3426
3427 2010-05-25 Juri Linkov <juri@jurta.org>
3428
3429 * image-mode.el (image-mode): Add image-after-revert-hook to
3430 after-revert-hook.
3431 (image-after-revert-hook): New function. (Bug#5669)
3432
3433 2010-05-25 Juri Linkov <juri@jurta.org>
3434
3435 * image.el (image-animated-p): When delay between animated images
3436 is 0, set it to 10 (0.1 sec). (Bug#6258)
3437
3438 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
3439
3440 * net/tramp.el (tramp-handle-insert-directory): Don't use
3441 `forward-word', its default syntax could be changed.
3442
3443 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
3444
3445 * net/tramp.el (tramp-progress-reporter-update): New defun.
3446 (with-progress-reporter): Use it.
3447 (tramp-process-actions):
3448 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
3449 current message, in order to let progress reporter continue
3450 afterwards. (Bug#6257)
3451
3452 2010-05-25 Glenn Morris <rgm@gnu.org>
3453
3454 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
3455 Add :version.
3456
3457 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
3458
3459 * net/rcirc.el (rcirc-default-user-name): Change to "user".
3460 (rcirc-default-full-name): Change to "unknown".
3461 (rcirc-user-name-history): Add variable.
3462
3463 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
3464 Jonathan Rockway <jon@jrock.us>
3465
3466 * net/rcirc.el (rcirc-server-alist): Add :pass.
3467 (rcirc): When prompting for connection parameters, also prompt for
3468 username and password.
3469 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
3470 value to server when connecting.
3471
3472 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
3473
3474 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
3475 (smie-merge-prec2s): Pass the tables as separate args.
3476 (smie-bnf-precedence-table): Adjust call accordingly.
3477 (smie-prec2-levels): Set levels at the end.
3478
3479 Replace Lisp calls to delete-backward-char by delete-char.
3480 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
3481 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
3482 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
3483 * calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
3484 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
3485 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
3486 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
3487 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
3488 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
3489 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
3490 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
3491 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
3492 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
3493 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
3494 delete-backward-char by calls to delete-char.
3495
3496 2010-05-25 Kenichi Handa <handa@m17n.org>
3497
3498 * language/hebrew.el (hebrew-shape-gstring): New function.
3499 Register it in composition-function-table for all Hebrew combining
3500 characters.
3501
3502 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
3503
3504 * epa.el (epa--select-keys): Don't explicitly delete the window since
3505 that can fail (e.g. sole window in frame). Use dedication instead.
3506
3507 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
3508
3509 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
3510
3511 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
3512
3513 * image.el (image-refresh): Define as an alias for image-flush.
3514
3515 * image-mode.el (image-toggle-display-image): Caller changed.
3516
3517 2010-05-21 Juri Linkov <juri@jurta.org>
3518
3519 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
3520 Remove "all" from grep-files-aliases. Split grep-files-aliases by
3521 whitespace, call wildcard-to-regexp on substrings and concat them
3522 with "\\|". (Bug#6114)
3523
3524 2010-05-21 Alan Mackenzie <acm@muc.de>
3525
3526 * progmodes/cc-engine.el (c-parse-state-get-strategy):
3527 Replace parameter `here' with `here-' and `here-plus', which sandwich
3528 any pertinent CPP construct.
3529 (c-remove-stale-state-cache-backwards): Fix a bug which happens
3530 when doing (c-parse-state) in a CPP construct: Exclude any "new"
3531 CPP construct from taking part in the scanning.
3532
3533 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
3534
3535 * net/tramp.el (tramp-do-copy-or-rename-file)
3536 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
3537 Tune `with-progress-reporter' messages.
3538 (tramp-handle-vc-registered):
3539 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
3540 (tramp-fish-handle-insert-file-contents)
3541 (tramp-fish-maybe-open-connection):
3542 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
3543 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
3544 (tramp-imap-handle-insert-file-contents)
3545 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
3546
3547 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
3548
3549 * add-log.el (change-log-font-lock-keywords):
3550 Highlight all authors in multi-author entries.
3551
3552 * smerge-mode.el (smerge-refine-ignore-whitespace)
3553 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
3554 Fix typos in docstrings.
3555 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
3556
3557 2010-05-21 Glenn Morris <rgm@gnu.org>
3558
3559 * progmodes/fortran.el (fortran-mode):
3560 * progmodes/f90.el (f90-mode): Derive from prog-mode.
3561
3562 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
3563 having a relative path in src/Makefile.in.
3564
3565 2010-05-20 Kevin Ryde <user42@zip.com.au>
3566
3567 * help-mode.el (help-make-xrefs): For Info node links turn
3568 newlines into spaces. Link node names with newlines are matched
3569 by help-xref-info-regexp and buttonized, this change ensures they
3570 can be followed successfully with RET. (Bug#6206)
3571
3572 2010-05-20 Juri Linkov <juri@jurta.org>
3573
3574 * locate.el (locate): Use pop-to-buffer instead of
3575 switch-to-buffer-other-window. (Bug#6204)
3576
3577 2010-05-20 Juri Linkov <juri@jurta.org>
3578
3579 * replace.el (replace-highlight): Fix lazy-highlighting
3580 for `M-s w str M-% str RET'.
3581
3582 2009-12-15 Masatake YAMATO <yamato@redhat.com>
3583
3584 * isearch.el (isearch-yank-word-or-char): Pull next subword
3585 when `subword-mode' is activated. (Bug#6220)
3586
3587 2010-05-20 Mark A. Hershberger <mah@everybody.org>
3588
3589 * isearch.el (isearch-update-post-hook): New hook.
3590 (isearch-update): Use the new hook. (Bug#6225)
3591
3592 2010-05-20 Juri Linkov <juri@jurta.org>
3593
3594 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
3595 [f1], [help], and (char-to-string help-char) instead of "\C-h".
3596 (Bug#6222)
3597
3598 2010-05-20 Juri Linkov <juri@jurta.org>
3599
3600 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
3601 (Bug#6223)
3602
3603 2010-05-20 Juri Linkov <juri@jurta.org>
3604
3605 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
3606 FILE-NAME to read from the minibuffer when called interactively
3607 with prefix argument instead of using buffer-file-name.
3608 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
3609
3610 * dired.el: Update autoloads.
3611
3612 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
3613
3614 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
3615 nxml-finish-element, for consistency with SGML mode.
3616
3617 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
3618 octave-close-block.
3619
3620 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
3621
3622 * composite.el: Require cl when compiling.
3623 (reference-point-alist, compose-gstring-for-graphic)
3624 (compose-gstring-for-terminal): Fix typos in docstrings.
3625
3626 2010-05-19 Juri Linkov <juri@jurta.org>
3627
3628 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
3629 set-window-parameter.
3630
3631 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
3632
3633 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
3634 where appropriate.
3635 (tramp-maybe-open-connection): Use it.
3636
3637 2010-05-19 Eli Zaretskii <eliz@gnu.org>
3638
3639 * simple.el (move-end-of-line): Make sure we are at line beginning
3640 before backing up to end of previous line.
3641
3642 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
3643
3644 * password-cache.el (password-cache-remove): Fix docstring.
3645
3646 * net/secrets.el: Autoload the widget functions.
3647 (secrets-search-items, secrets-create-item)
3648 (secrets-get-attributes, secrets-expand-item): Attributes will be
3649 stored on the password database without leading ":", as all other
3650 clients do as well.
3651 (secrets-mode): Fix docstring.
3652 (secrets-show-secrets): Provide it as autoloaded command only when
3653 D-Bus support is available. Check existence of Secret Service API.
3654
3655 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
3656
3657 * indent.el (indent-region): Deactivate region (bug#6200).
3658
3659 2010-05-19 Glenn Morris <rgm@gnu.org>
3660
3661 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
3662
3663 2010-05-19 Kenichi Handa <handa@m17n.org>
3664
3665 * composite.el: Register compose-gstring-for-graphic in
3666 composition-function-table only for combining characters (Mn, Mc, Me).
3667
3668 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
3669
3670 * calc/calc-trail.el (calc-trail-isearch-forward)
3671 (calc-trail-isearch-backward): Ensure that the new window
3672 point is set correctly.
3673
3674 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
3675
3676 * subr.el (read-quoted-char): Resolve modifiers after key
3677 remapping (bug#6212).
3678
3679 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
3680
3681 Add visualization code for secrets.
3682 * net/secrets.el (secrets-mode): New major mode.
3683 (secrets-show-secrets, secrets-show-collections)
3684 (secrets-expand-collection, secrets-expand-item)
3685 (secrets-tree-widget-after-toggle-function)
3686 (secrets-tree-widget-show-password): New defuns.
3687
3688 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
3689
3690 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
3691 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
3692 handled in smie-next-sexp.
3693 (smie-indent-calculate): Provide a starting indentation (so the
3694 recursion is well-founded ;-).
3695
3696 Fix handling of non-associative equal levels.
3697 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
3698 when it's not needed.
3699 (smie-op-left, smie-op-right): New functions.
3700 (smie-next-sexp): New function, extracted from smie-backward-sexp.
3701 Better handle equal levels to distinguish the associative case from
3702 the "multi-keyword construct" case.
3703 (smie-backward-sexp, smie-forward-sexp): Use it.
3704
3705 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
3706
3707 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
3708
3709 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
3710 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
3711
3712 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3713
3714 Provide a simple generic indentation engine and use it for Prolog.
3715 * emacs-lisp/smie.el: New file.
3716 * progmodes/prolog.el (prolog-smie-op-levels)
3717 (prolog-smie-indent-rules): New var.
3718 (prolog-mode-variables): Use them to configure SMIE.
3719 (prolog-indent-line, prolog-indent-level): Remove.
3720
3721 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
3722
3723 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
3724 order before computing the averages.
3725
3726 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
3727
3728 * calc/calc-vec.el (calc-histogram):
3729 (calcFunc-histogram): Allow vectors as inputs.
3730 (math-vector-avg): New function.
3731
3732 * calc/calc-ext.el (math-group-float): Have the number of digits
3733 being grouped depend on the radix (Bug#6189).
3734
3735 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
3736
3737 * version.el (emacs-copyright, emacs-version): Don't define here,
3738 now that emacs.c defines it.
3739
3740 2010-05-15 Eli Zaretskii <eliz@gnu.org>
3741
3742 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
3743 "Describe Language Environment" menu item.
3744
3745 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
3746
3747 Bidi-sensitive movement with arrow keys.
3748 * subr.el (right-arrow-command, left-arrow-command): New functions.
3749
3750 * bindings.el (global-map): Bind them to right and left arrow keys.
3751
3752 Don't override standard definition of convert-standard-filename.
3753 * files.el (convert-standard-filename): Call
3754 w32-convert-standard-filename and dos-convert-standard-filename on
3755 the corresponding systems.
3756
3757 * w32-fns.el (w32-convert-standard-filename): Rename from
3758 convert-standard-filename. Doc fix.
3759
3760 * dos-fns.el (dos-convert-standard-filename): Doc fix.
3761 (convert-standard-filename): Don't defalias.
3762 (register-name-alist, make-register, register-value)
3763 (set-register-value, intdos): Obsolete aliases for the
3764 corresponding dos-* functions and variables.
3765 (dos-intdos): Add a doc string.
3766
3767 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
3768
3769 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
3770 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
3771 (math-compose-tex-func):
3772 * calc/calccomp.el (math-compose-expr):
3773 * calc/calc-ext.el (math-format-flat-expr-fancy):
3774 * calc/calc-store.el (calc-read-var-name):
3775 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
3776
3777 * calc/calc.el (var-π, var-φ, var-γ): New variables.
3778 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
3779 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
3780 (math-standard-units): Add units.
3781
3782 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3783
3784 * progmodes/asm-mode.el (asm-mode):
3785 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
3786
3787 * pcomplete.el (pcomplete-completions-at-point): New function,
3788 extracted from pcomplete-std-complete.
3789 (pcomplete-std-complete): Use it.
3790
3791 2010-05-15 Glenn Morris <rgm@gnu.org>
3792
3793 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
3794 Remove references to CVS, RCS and Old directories.
3795
3796 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
3797
3798 * calc/calc-bin.el (math-format-twos-complement): Group digits when
3799 appropriate.
3800
3801 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
3802
3803 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
3804 (sh-mode-syntax-table): Give it a default value instead.
3805 (sh-header-marker): Make buffer-local.
3806 (sh-mode): Move make-local-variable to the corresponding setq.
3807 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
3808 Use complete-with-action.
3809
3810 * simple.el (prog-mode): New (abstract) major mode.
3811 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
3812 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
3813
3814 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
3815
3816 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
3817 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
3818 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
3819 (sql-make-alternate-buffer-name, sql-placeholders-filter)
3820 (sql-escape-newlines-filter, sql-input-sender)
3821 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
3822
3823 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
3824
3825 Add TeX open-block and close-block keybindings to SGML, and vice versa.
3826
3827 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
3828 latex-open-block and C-c / to latex-close-block.
3829
3830 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
3831 and C-c C-e to sgml-close-tag.
3832
3833 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
3834
3835 * net/tramp.el (with-progress-reporter): Create reporter object
3836 only when the message would be displayed. Handle nested calls.
3837 (tramp-handle-load, tramp-handle-file-local-copy)
3838 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3839 (tramp-maybe-send-script, tramp-find-shell):
3840 Use `with-progress-reporter'.
3841 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
3842 Fix message text.
3843
3844 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3845 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3846 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
3847 Use `with-progress-reporter'.
3848
3849 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
3850
3851 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
3852 process everytime when spellchecking from the minibuffer (bug#6143).
3853
3854 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
3855
3856 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
3857
3858 * dos-fns.el: Add "dos-" prefix for namespace control.
3859 (convert-standard-filename): Define as alias for
3860 dos-convert-standard-filename but only if applicable.
3861
3862 2010-05-12 Alan Mackenzie <acm@muc.de>
3863
3864 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
3865 Push the mark at the start of these functions when appropriate.
3866
3867 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3868
3869 * minibuffer.el (completion-cycle-threshold): New custom var.
3870 (completion--do-completion): Use it.
3871 (minibuffer-complete): Use cycling if appropriate.
3872
3873 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
3874
3875 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
3876 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
3877
3878 2010-05-11 Juri Linkov <juri@jurta.org>
3879
3880 * scroll-all.el (scroll-all-check-to-scroll):
3881 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
3882
3883 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
3884
3885 * iimage.el (iimage-mode-map): Move initialization into declaration.
3886 (iimage-mode-buffer): Use with-silent-modifications.
3887 Simplify calling convention. Adjust callers.
3888 (iimage-mode): Don't run hook redundantly.
3889
3890 * minibuffer.el (completion-pcm--pattern->regex):
3891 Fix last change (bug#6160).
3892
3893 2010-05-10 Juri Linkov <juri@jurta.org>
3894
3895 Remove nodes visited during Isearch from the Info history.
3896 * info.el (Info-isearch-initial-history)
3897 (Info-isearch-initial-history-list): New variables.
3898 (Info-isearch-start): Record initial values of
3899 Info-isearch-initial-history and Info-isearch-initial-history-list.
3900 Add Info-isearch-end to isearch-mode-end-hook.
3901 (Info-isearch-end): New function.
3902
3903 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
3904
3905 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
3906 format string, in order to work around a bug in pdksh.
3907 Reported by Gilles Pion <gpion@lfdj.com>.
3908 (tramp-handle-verify-visited-file-modtime): Do not send a command
3909 when the connection is not established.
3910 (tramp-handle-set-file-times): Simplify the check for utc.
3911
3912 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
3913
3914 Fix use of `filter-buffer-substring' (rework previous change).
3915 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
3916 (cua-repeat-replace-region):
3917 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
3918 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
3919 (cua-cut-region-to-global-mark): Use it.
3920
3921 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
3922
3923 * progmodes/sql.el: Version 2.1.
3924 (sql-product-alist): Redesign structure of product info.
3925 (sql-product, sql-user, sql-server, sql-database): Safe variables.
3926 (sql-port, sql-port-history): New variables.
3927 (sql-interactive-product): New variable.
3928 (sql-send-terminator): New variable.
3929 (sql-imenu-generic-expression): Add "Types" imenu entry.
3930 (sql-oracle-login-params, sql-sqlite-login-params)
3931 (sql-mysql-login-params, sql-solid-login-params)
3932 (sql-sybase-login-params, sql-informix-login-params)
3933 (sql-ingres-login-params, sql-ms-login-params)
3934 (sql-postgres-login-params, sql-interbase-login-params)
3935 (sql-db2-login-params, sql-linter-login-params)
3936 (sql-oracle-scan-on): New variables.
3937 (sql-mode-map): Add C-c C-i to start interactive mode.
3938 (sql-mode-menu): Update existing menu entries.
3939 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
3940 (sql-mode-oracle-font-lock-keywords)
3941 (sql-mode-postgres-font-lock-keywords)
3942 (sql-mode-ms-font-lock-keywords)
3943 (sql-mode-sybase-font-lock-keywords)
3944 (sql-mode-informix-font-lock-keywords)
3945 (sql-mode-interbase-font-lock-keywords)
3946 (sql-mode-ingres-font-lock-keywords)
3947 (sql-mode-solid-font-lock-keywords)
3948 (sql-mode-mysql-font-lock-keywords)
3949 (sql-mode-sqlite-font-lock-keywords)
3950 (sql-mode-db2-font-lock-keywords)
3951 (sql-mode-linter-font-lock-keywords): Update initialization to
3952 reduce run-time complexity.
3953 (sql-add-product, sql-del-product): New functions.
3954 (sql-set-product-feature, sql-get-product-feature): New functions.
3955 (sql-product-font-lock): Update product API.
3956 (sql-add-product-keywords): New function.
3957 (sql-highlight-product): Update product API.
3958 (sql-help-list-products): New function.
3959 (sql-help): Dynamically lists free and non-free products.
3960 (sql-get-login): Correct bug in handling history and added
3961 prompt for port.
3962 (sql-copy-column): Copy without properties.
3963 (sqli-input-sender): Apply filters to SQLi input.
3964 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
3965 Implement as a filter.
3966 (sql-escape-newlines-filter): Implement as a filter.
3967 (sql-remove-tabs-filter): New function.
3968 (sql-send-magic-terminator): New function.
3969 (sql-send-string): Implement magic terminator.
3970 (sql-send-region): Use `sql-send-string'.
3971 (sql-interactive-mode): Use product API.
3972 (sql-product-interactive): Use product API.
3973 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
3974 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
3975 (sql-db2, sql-linter): Use `sql-product-interactive'.
3976 (sql-connect): New function.
3977 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
3978 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
3979 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
3980 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
3981 Use `sql-connect'.
3982
3983 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3984
3985 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
3986 New custom variable.
3987 (completion-pcm--string->pattern): Use it.
3988 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
3989 Make it handle any symbol as `any'.
3990 (completion-pcm--merge-completions): Extract common suffix for the new
3991 `prefix' symbol as well.
3992 (completion-substring--all-completions): Use the new `prefix' symbol.
3993
3994 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
3995
3996 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
3997 not bound.
3998 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3999 (tramp-compat-funcall): New defmacro.
4000 (tramp-compat-line-beginning-position)
4001 (tramp-compat-line-end-position)
4002 (tramp-compat-temporary-file-directory)
4003 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
4004 (tramp-compat-copy-file, tramp-compat-copy-directory)
4005 (tramp-compat-delete-file, tramp-compat-delete-directory)
4006 (tramp-compat-number-sequence, tramp-compat-process-running-p)
4007 * net/tramp.el (top, with-progress-reporter)
4008 (tramp-rfn-eshadow-setup-minibuffer)
4009 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
4010 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
4011 (tramp-completion-mode-p, tramp-check-for-regexp)
4012 (tramp-open-connection-setup-interactive-shell)
4013 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
4014 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
4015 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
4016 * net/tramp-cmds.el (tramp-cleanup-all-connections)
4017 (tramp-reporter-dump-variable, tramp-load-report-modules)
4018 (tramp-append-tramp-buffers)
4019 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
4020
4021 * net/tramp-imap.el (top): Autoload `epg-make-context'.
4022
4023 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4024
4025 * progmodes/compile.el (compilation-buffer-modtime): Rename from
4026 buffer-modtime. Adjust users.
4027
4028 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4029
4030 * international/mule.el (auto-coding-alist): Only purecopy
4031 car of each item, not the whole list (Bug#6083).
4032
4033 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4034
4035 * progmodes/js.el (js-mode): Make paragraph variables local before
4036 calling c-setup-paragraph-variables (Bug#6071).
4037
4038 2010-05-08 Eli Zaretskii <eliz@gnu.org>
4039
4040 * composite.el (compose-region, reference-point-alist): Fix typos
4041 in the doc strings.
4042
4043 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
4044
4045 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
4046 gnuplot's "set" command.
4047
4048 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4049
4050 * abbrev.el (last-abbrev-text): Doc fix.
4051 (abbrev-prefix-mark): Don't escape parenthesis.
4052
4053 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
4054
4055 * composite.el (find-composition): Doc fix.
4056
4057 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4058
4059 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
4060 (sql-oracle-program, sql-sqlite-options)
4061 (sql-query-placeholders-and-send): Doc fixes.
4062 (sql-set-product, sql-interactive-mode): Reflow docstrings.
4063 (sql-imenu-generic-expression, sql-buffer)
4064 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
4065 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
4066 (sql-mode-sybase-font-lock-keywords)
4067 (sql-mode-informix-font-lock-keywords)
4068 (sql-mode-interbase-font-lock-keywords)
4069 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
4070 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
4071 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
4072 (sql-product-feature, sql-highlight-product)
4073 (comint-line-beginning-position, sql-rename-buffer)
4074 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
4075 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
4076 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
4077 Fix typos in docstrings.
4078
4079 2010-05-08 Juri Linkov <juri@jurta.org>
4080
4081 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
4082 property instead of `invisible' and `after-string' (bug#5998).
4083
4084 2010-05-08 Juri Linkov <juri@jurta.org>
4085
4086 * image-mode.el (image-mode-as-text): Fix typo in docstring.
4087
4088 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4089
4090 * filecache.el (file-cache-add-directory-list)
4091 (file-cache-add-directory-recursively): Fix typos in docstrings.
4092
4093 2010-05-08 Kenichi Handa <handa@m17n.org>
4094
4095 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
4096 (gujarati-composable-pattern): Fix typo.
4097
4098 2010-05-08 Kenichi Handa <handa@m17n.org>
4099
4100 * language/indian.el (oriya-composable-pattern)
4101 (tamil-composable-pattern, malayalam-composable-pattern):
4102 Add two-part vowels to "v" (vowel sign).
4103
4104 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4105
4106 * files.el (copy-directory): Handle symlinks (Bug#5982).
4107
4108 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
4109
4110 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
4111 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
4112 (Bug#5846).
4113
4114 2010-05-08 Glenn Morris <rgm@gnu.org>
4115
4116 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
4117
4118 * minibuffer.el (completion-at-point): Doc fix.
4119
4120 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4121
4122 * electric.el (Electric-command-loop): Minor tweak.
4123
4124 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
4125 better with dedicated windows.
4126
4127 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
4128
4129 * Version 23.2 released.
4130
4131 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4132 Stefan Monnier <monnier@iro.umontreal.ca>
4133
4134 Highlight vendor specific properties.
4135 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
4136 (css-proprietary-property): New face.
4137 (css-font-lock-keywords): Use them.
4138
4139 2010-05-07 Eli Zaretskii <eliz@gnu.org>
4140
4141 * cus-start.el (all): Add native condition for tool-bar-* symbols.
4142
4143 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4144
4145 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
4146 * files.el (auto-mode-alist): Remove redundant entries.
4147
4148 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
4149 * simple.el (auto-save-mode): Move from files.el.
4150 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
4151
4152 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
4153
4154 * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
4155
4156 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
4157
4158 * mail/binhex.el (binhex-decode-region-internal)
4159 * mail/uudecode.el (uudecode-decode-region-internal)
4160 * net/dns.el (dns-read-string-name, dns-write, dns-read)
4161 (dns-read-type, dns-query)
4162 * pgg-parse.el (pgg-parse-armor)
4163 * pgg.el (pgg-verify-region)
4164 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
4165 XEmacs.
4166
4167 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
4168
4169 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
4170
4171 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
4172
4173 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
4174 * emulation/cua-base.el (cua-repeat-replace-region):
4175 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4176 (cua-cut-region-to-global-mark):
4177 Remove text properties with `set-text-properties'.
4178
4179 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
4180
4181 * net/tramp.el (top, with-progress-reporter):
4182 Use `symbol-function' inside `funcall'.
4183
4184 * net/tramp-compat.el (tramp-compat-file-attributes)
4185 (tramp-compat-delete-file, tramp-compat-delete-directory):
4186 Handle only `wrong-number-of-arguments' error.
4187
4188 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
4189 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
4190 inside `funcall'.
4191
4192 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4193
4194 * minibuffer.el (completion--sreverse, completion--common-suffix):
4195 New functions.
4196 (completion-pcm--merge-completions): Extract common suffix when safe.
4197
4198 * emacs-lisp/easy-mmode.el (define-minor-mode):
4199 Make :variable more flexible.
4200 * files.el (auto-save-mode): Use it to define using define-minor-mode.
4201
4202 2010-05-05 Juri Linkov <juri@jurta.org>
4203
4204 Add `slow' and `history' tags to the desktop data.
4205
4206 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
4207 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
4208 (Info-finder-find-node): Require `finder.el' to be able
4209 to restore node from the desktop.
4210 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
4211 data `Info-history' and `slow' tag in the assoc list.
4212 (Info-restore-desktop-buffer): Don't restore nodes with the
4213 `slow' tag. Restore `Info-history'.
4214
4215 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
4216
4217 Add FORCE argument to `delete-file'.
4218
4219 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
4220 forcing to delete the temporary file.
4221 (ange-ftp-delete-file): Add FORCE arg.
4222 (ange-ftp-rename-remote-to-remote)
4223 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
4224 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
4225 Force file deletion.
4226
4227 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
4228
4229 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
4230 (tramp-handle-make-symbolic-link, tramp-handle-load)
4231 (tramp-do-copy-or-rename-file-via-buffer)
4232 (tramp-do-copy-or-rename-file-directly)
4233 (tramp-do-copy-or-rename-file-out-of-band)
4234 (tramp-handle-process-file, tramp-handle-call-process-region)
4235 (tramp-handle-shell-command, tramp-handle-file-local-copy)
4236 (tramp-handle-insert-file-contents, tramp-handle-write-region)
4237 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
4238
4239 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
4240 (tramp-fish-handle-make-symbolic-link)
4241 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
4242
4243 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
4244 Use `tramp-compat-delete-file'.
4245
4246 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
4247 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
4248
4249 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
4250 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
4251
4252 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
4253 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
4254 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
4255 `tramp-compat-delete-file'.
4256
4257 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4258
4259 Minor cleanups.
4260 * subr.el (add-minor-mode): Use push.
4261 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
4262 * emulation/edt.el (edt-select-mode): Simplify.
4263
4264 Use define-minor-mode in more cases.
4265 * term/tvi970.el (tvi970-set-keypad-mode):
4266 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
4267 (normal-erase-is-backspace-mode):
4268 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
4269 (set-scroll-bar-mode-1): (Re)move to its sole caller.
4270 (get-scroll-bar-mode): New function.
4271 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
4272
4273 Use define-minor-mode for less obvious cases.
4274 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
4275 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
4276 * international/iso-ascii.el (iso-ascii-mode):
4277 * frame.el (auto-raise-mode, auto-lower-mode):
4278 * composite.el (global-auto-composition-mode): Use define-minor-mode.
4279
4280 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
4281
4282 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
4283 in order to see error messages for failed logins.
4284
4285 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
4286
4287 * diff.el (diff-sentinel):
4288
4289 * epg.el (epg--make-temp-file, epg-decrypt-string)
4290 (epg-verify-string, epg-sign-string, epg-encrypt-string):
4291
4292 * jka-compr.el (jka-compr-partial-uncompress)
4293 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
4294
4295 * server.el (server-sentinel): Use delete-file's new FORCE arg
4296 (Bug#6070).
4297
4298 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4299
4300 Use define-minor-mode where applicable.
4301 * view.el (view-mode):
4302 * type-break.el (type-break-query-mode)
4303 (type-break-mode-line-message-mode):
4304 * textmodes/reftex.el (reftex-mode):
4305 * term/vt100.el (vt100-wide-mode):
4306 * tar-mode.el (tar-subfile-mode):
4307 * savehist.el (savehist-mode):
4308 * ibuf-ext.el (ibuffer-auto-mode):
4309 * composite.el (auto-composition-mode):
4310 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
4311 Use define-minor-mode.
4312 (vhdl-mode): Use static mode-line format.
4313 (vhdl-mode-line-update): Delete.
4314 (vhdl-create-mode-menu, vhdl-activate-customizations)
4315 (vhdl-hs-minor-mode): Don't bother calling it.
4316
4317 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
4318
4319 * simple.el (with-wrapper-hook): Move.
4320 (buffer-substring-filters): Mark obsolete.
4321 (filter-buffer-substring-functions): New variable.
4322 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
4323
4324 Use a mode-line spec rather than a static string in Semantic.
4325 * cedet/semantic/util-modes.el:
4326 (semantic-minor-modes-format): New var to replace...
4327 (semantic-minor-modes-status): Remove.
4328 (semantic-mode-line-update): Construct a mode-line spec rather than
4329 a static string so that mouse buttons can be used on individual minor
4330 modes and so that semantic-mode-line-update only needs to be called
4331 when global settings are changed.
4332 (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
4333 Call semantic-mode-line-update.
4334 (semantic-toggle-minor-mode-globally): Don't assume mode is on
4335 minor-mode-alist, check semantic-minor-mode-alist as well.
4336 (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
4337 (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
4338 (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
4339 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
4340 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
4341 (define-semantic-idle-service, semantic-idle-summary-mode):
4342 * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
4343 Don't call semantic-mode-line-update any more.
4344
4345 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
4346
4347 Use define-minor-mode in CEDET where applicable.
4348
4349 * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
4350 Use define-minor-mode.
4351
4352 * cedet/semantic/util-modes.el (semantic-add-minor-mode):
4353 Remove unused arg `keymap' and code redundant with define-minor-mode.
4354 (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
4355 (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
4356 (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
4357 (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
4358 (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
4359 (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
4360 Use define-minor-mode.
4361 (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
4362 (semantic-show-unmatched-syntax-mode-setup)
4363 (semantic-show-parser-state-mode-setup)
4364 (semantic-highlight-func-mode-setup): Inline into sole caller.
4365
4366 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
4367 (semantic-mru-bookmark-mode): Use define-minor-mode.
4368 (semantic-mru-bookmark-mode-setup): Inline into sole caller.
4369
4370 * cedet/semantic/idle.el (define-semantic-idle-service):
4371 Use define-minor-mode and inline setup function into its sole caller.
4372 (semantic-idle-scheduler-mode-setup)
4373 (semantic-idle-summary-mode-setup): Inline into sole caller.
4374 (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
4375 Use define-minor-mode.
4376
4377 * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
4378 (semantic-decoration-mode): Use define-minor-mode.
4379 (semantic-decoration-mode-setup): Inline into sole caller.
4380
4381 * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
4382 (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
4383 (ede-dired-add-to-target): Use dolist.
4384
4385 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
4386 Michael Albinus <michael.albinus@gmx.de>
4387
4388 Implement compression for inline methods.
4389
4390 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
4391 (tramp-copy-size-limit): Allow also nil.
4392 (tramp-inline-compress-commands): New defconst.
4393 (tramp-find-inline-compress, tramp-get-inline-compress)
4394 (tramp-get-inline-coding): New defuns.
4395 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
4396 replaced by `tramp-get-inline-coding'.
4397 (tramp-handle-file-local-copy, tramp-handle-write-region)
4398 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
4399
4400 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4401
4402 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
4403 Remove unused functions.
4404
4405 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
4406 Set find-tag-default-function as a variable rather than a property.
4407
4408 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
4409 * progmodes/etags.el (tags-completion-at-point-function):
4410 Remove left over interactive spec. Add autoloading stub.
4411 (complete-tag): Use tags-completion-at-point-function.
4412
4413 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
4414
4415 * minibuffer.el (tags-completion-at-point-function): Fix return value.
4416
4417 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
4418
4419 * ido.el (ido-init-completion-maps): Remove C-v binding.
4420 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
4421
4422 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
4423
4424 * minibuffer.el (tags-completion-at-point-function): New function.
4425 (completion-at-point-functions): Use it.
4426
4427 * cedet/semantic.el (semantic-completion-at-point-function):
4428 New function.
4429 (semantic-mode): Use semantic-completion-at-point-function for
4430 completion-at-point-functions instead.
4431
4432 * progmodes/etags.el (complete-tag): Revert last change.
4433
4434 2010-04-29 Alan Mackenzie <acm@muc.de>
4435
4436 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
4437 off-by-one error (in end of macro position).
4438
4439 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4440
4441 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
4442 firefox is absent. Don't autoload.
4443 (browse-url-galeon-program): Don't autoload.
4444
4445 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
4446
4447 * bindings.el (complete-symbol): Move into minibuffer.el.
4448
4449 * minibuffer.el (complete-tag): Move from etags.el. If tags
4450 completion cannot be performed, return nil instead of signalling
4451 an error.
4452 (completion-at-point): Make it an alias for complete-symbol.
4453 (complete-symbol): Move from bindings.el, and replace with the
4454 body of completion-at-point.
4455
4456 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
4457
4458 * cedet/semantic.el (semantic-mode): When enabled, add
4459 semantic-ia-complete-symbol to completion-at-point-functions.
4460
4461 * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
4462 if Semantic is not active.
4463
4464 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
4465
4466 * net/tramp.el (tramp-remote-selinux-p): New defun.
4467 (tramp-handle-file-selinux-context)
4468 (tramp-handle-set-file-selinux-context): Use it.
4469
4470 2010-04-28 Sam Steingold <sds@gnu.org>
4471
4472 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
4473 `safe-local-variable' if the value is a string or a symbol with
4474 the property `bug-reference-url-format'.
4475
4476 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
4477
4478 * progmodes/bug-reference.el (bug-reference-url-format):
4479 Revert 2010-04-27 change due to security risk.
4480
4481 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
4482
4483 Make it possible to locally disable a globally enabled mode.
4484 * simple.el (fundamental-mode): Run fundamental-mode-hook.
4485 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
4486 rather than kill-all-local-variables so it runs fundamental-mode-hook.
4487 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4488 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
4489 that subsequent hooks get a chance to disable it.
4490
4491 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
4492
4493 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4494 Avoid re-enabling a minor mode after the user turned the minor mode
4495 off if MODE-enable-in-buffers is run twice (typically once from
4496 fundamental-mode's after-change-major-mode-hook and a second time from
4497 run-mode-hook's own after-change-major-mode-hook).
4498
4499 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
4500
4501 2010-04-27 Sam Steingold <sds@gnu.org>
4502
4503 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
4504 `safe-local-variable' if the value is a string or a function, as
4505 documented and implemented on 2010-04-02.
4506
4507 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
4508
4509 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
4510 when method is 'kill.
4511
4512 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
4513
4514 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
4515 condition in default directory check.
4516 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
4517 Kill ispell process when killing its associated buffer.
4518
4519 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
4520
4521 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
4522 but we aren't using it.
4523
4524 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
4525
4526 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
4527 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
4528
4529 2010-04-24 Glenn Morris <rgm@gnu.org>
4530
4531 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
4532 Ignore VCS-ignore files, and deleted nextstep preferences files.
4533 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
4534 (authors-ambiguous-files): New list.
4535 (authors-valid-file-names): Add some deleted files.
4536 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
4537 (authors-disambiguate-file-name): New function. (Bug#5501)
4538 (authors-canonical-file-name): Doc fix.
4539 Don't warn about obsolete files.
4540 (authors-canonical-file-name, authors-scan-el):
4541 Use authors-disambiguate-file-name.
4542
4543 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
4544 Add autoload cookies.
4545 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
4546 (generated-autoload-file): Set file-local value to "htmlfontify.el".
4547 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
4548 They have definitions / compiler macros in cl.el.
4549 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
4550 Replace manual autoloads with generated ones.
4551 (htmlfontify-unload-rgb-file): Remove autoload.
4552 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
4553
4554 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
4555
4556 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
4557 (byte-compile-setq-default): Optimize for the
4558 single-var case and don't call byte-compile-form in this case to avoid
4559 inf-loop with byte-compile-set-default.
4560
4561 * progmodes/compile.el (compilation-start): Abbreviate default directory.
4562
4563 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
4564
4565 Implement SELINUX backends.
4566
4567 * net/tramp.el (tramp-file-name-handler-alist):
4568 Add `file-selinux-context' and `set-file-selinux-context'.
4569 (tramp-handle-file-selinux-context)
4570 (tramp-handle-set-file-selinux-context): New defuns.
4571 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
4572 Handle PRESERVE-SELINUX-CONTEXT.
4573
4574 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4575 Add `file-selinux-context' and `set-file-selinux-context'.
4576 (tramp-gvfs-handle-file-selinux-context)
4577 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
4578 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
4579
4580 * net/ange-ftp.el (ange-ftp-copy-file):
4581 * net/tramp-fish.el (tramp-fish-handle-copy-file):
4582 * net/tramp-imap.el (tramp-imap-handle-copy-file):
4583 * net/tramp-smb.el (tramp-smb-handle-copy-file):
4584 Add PRESERVE-SELINUX-CONTEXT.
4585
4586 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
4587
4588 Synchronize with Tramp repository.
4589
4590 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
4591 (tramp-action-process-alive, tramp-action-out-of-band)
4592 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
4593 (tramp-exists-file-name-handler): Fix docstring.
4594 (with-progress-reporter): New defmacro.
4595 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
4596 (tramp-maybe-open-connection): Use it.
4597
4598 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
4599
4600 Detect ssh 'ControlMaster' argument automatically in some cases.
4601
4602 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
4603 (tramp-default-method): Use it.
4604
4605 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
4606
4607 * net/tramp.el (tramp-handle-copy-file): Add new optional
4608 parameter `preserve-selinux-context'.
4609 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
4610
4611 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
4612
4613 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
4614 Ensure, that non remote files are still checked. Oops.
4615
4616 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
4617
4618 Fix Bug#5840.
4619
4620 * icomplete.el (icomplete-completions): Use `non-essential'.
4621
4622 * net/tramp.el (tramp-connectable-p): New defun.
4623 (tramp-handle-expand-file-name)
4624 (tramp-completion-handle-file-name-all-completions)
4625 (tramp-completion-handle-file-name-completion): Use it.
4626
4627 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
4628
4629 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
4630
4631 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
4632
4633 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
4634
4635 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
4636
4637 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
4638 is present.
4639
4640 * info.el (info-tool-bar-map): Add labels.
4641
4642 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
4643
4644 * cus-edit.el (custom-commands): Add labels for tool bar.
4645 (custom-buffer-create-internal, Custom-mode): Adjust for
4646 labels in custom-commands.
4647
4648 * dynamic-setting.el: Renamed from font-setting.el.
4649
4650 2010-04-21 John Wiegley <jwiegley@gmail.com>
4651
4652 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
4653 toggles the use of virtual buffers.
4654 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
4655 (ido-toggle-virtual-buffers): New function.
4656
4657 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
4658
4659 Use `define-derived-mode'; fix window selection; doc fixes.
4660 * play/tetris.el (tetris, tetris-update-speed-function)
4661 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
4662 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
4663 (tetris-rotate-next, tetris-end-game, tetris-start-game)
4664 (tetris-pause-game): Fix typos in docstrings.
4665 (tetris-mode-map, tetris-null-map):
4666 Move initialization into declaration.
4667 (tetris-mode): Define with `define-derived-mode';
4668 set show-trailing-whitespace to nil.
4669 (tetris): Prefer window already displaying the "*Tetris*" buffer.
4670
4671 2010-04-21 Karel Klíč <kklic@redhat.com>
4672
4673 * files.el (backup-buffer): Handle SELinux context, and return it
4674 if a backup was made by renaming.
4675 (backup-buffer-copy): Set SELinux context to the target file.
4676 (basic-save-buffer): Set SELinux context of the newly written file.
4677 (basic-save-buffer-1): Now it also returns any SELinux context.
4678 (basic-save-buffer-2): Set SELinux context of the newly created file,
4679 and return it.
4680 * net/tramp.el (tramp-file-name-for-operation):
4681 Add file-selinux-context.
4682
4683 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
4684
4685 Make the log-edit comments use RFC822 format throughout.
4686
4687 * vc.el (vc-checkin, vc-modify-change-comment):
4688 Adjust to new vc-start/finish-logentry.
4689 (vc-find-conflicted-file): New command.
4690 (vc-transfer-file): Adjust to new vc-checkin.
4691 (vc-next-action): Improve scoping.
4692
4693 * vc-hg.el (vc-hg-log-edit-mode): Remove.
4694 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
4695
4696 * vc-git.el (vc-git-log-edit-mode): Remove.
4697 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
4698 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
4699
4700 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
4701 (vc-start-logentry): Remove argument `extra'.
4702 (vc-finish-logentry): Remove extra args.
4703
4704 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
4705 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
4706 (vc-bzr-conflicted-files): New function.
4707
4708 * log-edit.el (log-edit-extra-flags)
4709 (log-edit-before-checkin-process): Remove.
4710 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
4711 (log-edit-headers-alist): New var.
4712 (log-edit-header-contents-regexp): New const.
4713 (log-edit-match-to-eoh): New function.
4714 (log-edit-font-lock-keywords): Use them.
4715 (log-edit): Insert a "Summary:" header as default.
4716 (log-edit-mode): Mark font-lock rules as case-insensitive.
4717 (log-edit-done): Cleanup headers.
4718 (log-view-process-buffer): Remove.
4719 (log-edit-extract-headers): New function to replace it.
4720
4721 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
4722
4723 * subr.el (default-direction-reversed): Remove obsolescence info.
4724
4725 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
4726
4727 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
4728 windows/frames.
4729
4730 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
4731 I.e. include text after point in the completion region.
4732 Also, return nil when we're not after/in a symbol.
4733
4734 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
4735 default enable-multibyte-characters.
4736
4737 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4738
4739 * international/mule.el: Help the user choose a valid coding-system.
4740 (read-buffer-file-coding-system): New function.
4741 (set-buffer-file-coding-system): Use it. Prompt the user if the
4742 coding-system cannot encode all the chars.
4743
4744 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
4745 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
4746 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
4747 Don't use *vc-bzr-shelve*.
4748
4749 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
4750
4751 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
4752 Don't destroy list before using it.
4753
4754 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
4755
4756 Fix the version number for added files.
4757 * vc-hg.el (vc-hg-working-revision): Check if the file is
4758 registered after hg parent fails (Bug#5961).
4759
4760 2010-04-19 Glenn Morris <rgm@gnu.org>
4761
4762 * htmlfontify.el (htmlfontify-buffer)
4763 (htmlfontify-copy-and-link-dir): Autoload entry points.
4764
4765 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
4766
4767 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
4768 name relative to the project root (Bug#5960).
4769
4770 2010-04-19 Glenn Morris <rgm@gnu.org>
4771
4772 * vc-git.el (vc-git-print-log): Doc fix.
4773
4774 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
4775
4776 * ido.el (ido-file-internal): Fix 2009-12-02 change.
4777
4778 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
4779
4780 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
4781 default settings (Bug#5928).
4782
4783 2010-04-19 Glenn Morris <rgm@gnu.org>
4784
4785 * progmodes/fortran.el (fortran-match-and-skip-declaration):
4786 New function.
4787 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
4788
4789 2010-04-19 Kenichi Handa <handa@m17n.org>
4790
4791 * language/indian.el (malayalam-composable-pattern): Fix previous
4792 change (add U+0D4D "SIGN VIRAMA").
4793 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
4794 (tamil-composable-pattern): Fix typo in the regexp.
4795 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
4796 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
4797 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
4798
4799 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
4800
4801 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
4802 paragraph-separate (Bug#5821).
4803
4804 2010-04-19 Juri Linkov <juri@jurta.org>
4805
4806 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
4807
4808 * info.el (Info-find-node-2): Comment out code that skips
4809 breadcrumbs line.
4810 (Info-mouse-follow-link): New command.
4811 (Info-link-keymap): New keymap.
4812 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
4813 Return a string with links instead of inserting breadcrumbs
4814 to the Info buffer.
4815 (Info-fontify-node): Comment out code that inserts breadcrumbs.
4816 Instead of putting the `invisible' text property over the Info
4817 header, make an overlay over the Info header with the `invisible'
4818 property and `after-string' set to the string returned by
4819 `Info-breadcrumbs'.
4820
4821 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
4822
4823 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
4824 Reported by monkey@sandpframing.com.
4825
4826 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4827
4828 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
4829 (tmm-get-keymap): Add key-binding shortcuts now that they're not
4830 available in the "keyseq cache" any more.
4831
4832 * custom.el (defcustom): Add edebug spec.
4833
4834 2010-04-18 Juri Linkov <juri@jurta.org>
4835
4836 Test for special mode-class in view-buffer instead of view-file (bug#5513).
4837
4838 * view.el (view-file, view-buffer): Move test for special mode-class
4839 from view-file to view-buffer.
4840
4841 * tar-mode.el (tar-extract): Turn if's into one cond
4842 like in arc-mode.el.
4843
4844 2010-04-18 Juri Linkov <juri@jurta.org>
4845
4846 Add 7z archive format support (bug#5475).
4847
4848 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
4849 (archive-7z-extract): New defcustom.
4850 (archive-find-type): Add magic string for 7z.
4851 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
4852 If `stderr-file' is non-nil, use `(t stderr-file)' for the
4853 `buffer' arg of `call-process'.
4854 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
4855 call the function `archive-7z-extract' with the variable
4856 `archive-7z-extract' let-bound to `archive-zip-extract'.
4857 (archive-7z-summarize, archive-7z-extract): New functions.
4858
4859 * international/mule.el (auto-coding-alist):
4860 * files.el (auto-mode-alist): Add 7z file extension.
4861
4862 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4863
4864 * loadup.el: Setup hash-cons for pure data.
4865
4866 Fix duplicate entries in cedet's loaddefs.el files.
4867 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
4868 Should make most file-local generated-autoload-file unnecessary.
4869 (print-readably): Silence warnings.
4870 (autoload-find-destination): Take load-name as an arg to make sure
4871 it's the same as the one that will be in the file.
4872 (autoload-generate-file-autoloads): Adjust to above changes.
4873 Try to make the dataflow a bit simpler.
4874
4875 * cvs-status.el (cvs-refontify): Remove unused.
4876
4877 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
4878
4879 * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
4880
4881 * calc-bin.el (calc-radix): Have the "O" option turn on
4882 twos-complement mode.
4883
4884 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
4885
4886 * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
4887 Add `calc-option-prefix-help' to calc-help autoloads.
4888 (calc-inverse): Add "Option" to message, as appropriate.
4889 (calc-hyperbolic): Add "Option" to message, as appropriate.
4890 (calc-option, calc-is-option): New functions.
4891
4892 * calc-help.el (calc-full-help): Add `calc-option-help'.
4893 (calc-option-prefix-help): New function.
4894
4895 * calc-misc.el (calc-help): Add "Option" entry.
4896
4897 * calc.el (calc-local-var-list): Add `calc-option-flag'.
4898 (calc-option-flag): New variable.
4899 (calc-do): Set `calc-option-flag to nil.
4900 (calc-set-mode-line): Add "Opt " as appropriate.
4901
4902 2010-04-16 Juri Linkov <juri@jurta.org>
4903
4904 Move scrolling commands from simple.el to window.el
4905 because their primitives are implemented in window.c.
4906
4907 * simple.el (scroll-error-top-bottom)
4908 (scroll-up-command, scroll-down-command, scroll-up-line)
4909 (scroll-down-line, scroll-other-window-down)
4910 (beginning-of-buffer-other-window, end-of-buffer-other-window):
4911 * window.el (scroll-error-top-bottom)
4912 (scroll-up-command, scroll-down-command, scroll-up-line)
4913 (scroll-down-line, scroll-other-window-down)
4914 (beginning-of-buffer-other-window, end-of-buffer-other-window):
4915 Move from simple.el to window.el because their primitives are
4916 implemented in window.c.
4917
4918 2010-04-16 Juri Linkov <juri@jurta.org>
4919
4920 * isearch.el (isearch-lookup-scroll-key): Check both
4921 `isearch-scroll' and `scroll-command' properties.
4922 (scroll-up, scroll-down): Remove `isearch-scroll' property.
4923
4924 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
4925
4926 * simple.el (scroll-up-command, scroll-down-command)
4927 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
4928
4929 2010-04-15 Juri Linkov <juri@jurta.org>
4930
4931 * simple.el (scroll-up-command, scroll-down-command)
4932 (scroll-up-line, scroll-down-line): Put `scroll-command'
4933 property on the these symbols. Remove them from
4934 `scroll-preserve-screen-position-commands'.
4935
4936 * mwheel.el (mwheel-scroll): Put `scroll-command' and
4937 `isearch-scroll' properties on the `mwheel-scroll' symbol.
4938 Remove it from `scroll-preserve-screen-position-commands'.
4939
4940 * isearch.el (isearch-allow-scroll): Doc fix.
4941
4942 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
4943
4944 * net/tramp.el (tramp-error-with-buffer): Don't show the
4945 connection buffer when we are in completion mode.
4946 (tramp-file-name-handler): Catch the error for some operations
4947 when we are in completion mode. This gives the user the chance to
4948 correct the file name in the minibuffer.
4949
4950 2010-04-15 Glenn Morris <rgm@gnu.org>
4951
4952 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
4953
4954 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
4955
4956 Simplify by using `define-derived-mode'.
4957 * info.el (Info-mode):
4958 * calendar/todo-mode.el (todo-mode):
4959 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
4960 (gomoku-mode-map): Move initialization into declaration.
4961
4962 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
4963
4964 Fix Bug#5840.
4965 * ido.el (ido-file-name-all-completions-1):
4966 * minibuffer.el (minibuffer-completion-help):
4967 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
4968
4969 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4970
4971 * simple.el (non-essential): New var.
4972
4973 Add a new field `location' to bookmarks for non-file bookmarks.
4974 * bookmark.el (bookmark-location): Use the new field, if present.
4975 (bookmark-insert-location): Undo last change, not needed any more.
4976 * man.el (Man-bookmark-make-record):
4977 * woman.el (woman-bookmark-make-record): Add `location' field.
4978
4979 2010-04-14 Juri Linkov <juri@jurta.org>
4980
4981 * simple.el (scroll-error-top-bottom): New defcustom.
4982 (scroll-up-command, scroll-down-command): Use it. Doc fix.
4983
4984 * emulation/pc-select.el (pc-select-override-scroll-error):
4985 Obsolete in favor of `scroll-error-top-bottom'.
4986
4987 2010-04-14 Juri Linkov <juri@jurta.org>
4988
4989 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
4990 `scroll-up-command' and `M-v' to `scroll-down-command'.
4991
4992 * emulation/cua-rect.el (cua--init-rectangles):
4993 * forms.el (forms--change-commands):
4994 * image-mode.el (image-mode-map):
4995 Remap scroll-down-command and scroll-up-command
4996 in addition to scroll-down and scroll-up.
4997
4998 2010-04-14 Juri Linkov <juri@jurta.org>
4999
5000 * mwheel.el (scroll-preserve-screen-position-commands):
5001 Add mwheel-scroll to this list of commands.
5002
5003 * simple.el (scroll-preserve-screen-position-commands):
5004 Add scroll-up-command, scroll-down-command, scroll-up-line,
5005 scroll-down-line to this list of commands.
5006
5007 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5008
5009 * obsolete/complete.el: Move from lisp/complete.el.
5010
5011 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
5012
5013 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
5014 to the minor mode function now turns the mode ON unconditionally.
5015
5016 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5017
5018 * vc-dir.el (vc-dir-kill-line): New command.
5019 (vc-dir-mode-map): Bind it to C-k.
5020
5021 * bookmark.el (bookmark-insert-location): Handle a nil filename.
5022
5023 * woman.el: Add bookmark declarations to silence the compiler.
5024 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
5025 step to compatibility between man and woman bookmarks.
5026 Adjust for Man-default-bookmark-title renaming.
5027 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
5028
5029 * man.el: Add bookmark declarations to silence the compiler.
5030 (Man-name-local-regexp): Make it match NAME as well.
5031 (Man-getpage-in-background): Return the buffer.
5032 (Man-notify-when-ready): Use `case'.
5033 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
5034 Don't hardcode "NAME". Simplify.
5035 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
5036 Rename from Man-bookmark-make-record.
5037 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
5038 we have the actual man-args. Use Man-getpage-in-background rather
5039 than `man' since the arg is already processed. Let bookmark.el do the
5040 window handling. Only wait for the relevant process.
5041 Don't forget to autoload.
5042
5043 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
5044
5045 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5046
5047 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
5048 New functions.
5049 (woman-mode): Setup bookmark support.
5050
5051 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
5052 (man-bookmark-jump): New functions.
5053 (Man-mode): Setup bookmark support.
5054
5055 2010-04-10 Jari Aalto <jari.aalto@cante.net>
5056
5057 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
5058 recognize ssh-keygen prompt (Bug#2817).
5059
5060 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
5061
5062 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
5063
5064 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
5065
5066 Synchronize with Tramp repository.
5067
5068 * net/tramp.el (tramp-completion-function-alist)
5069 (tramp-file-name-regexp, tramp-chunksize)
5070 (tramp-local-coding-commands, tramp-remote-coding-commands):
5071 Fix docstring.
5072 (tramp-remote-process-environment): Use `format' instead of `concat'.
5073 (tramp-handle-directory-files-and-attributes)
5074 (tramp-get-remote-path): Use `copy-tree'.
5075 (tramp-handle-file-name-all-completions): Backward/ XEmacs
5076 compatibility: Use `completion-ignore-case' if
5077 `read-file-name-completion-ignore-case' does not exist.
5078 (tramp-do-copy-or-rename-file-directly): Do not use
5079 `tramp-handle-file-remote-p'.
5080 (tramp-do-copy-or-rename-file-out-of-band):
5081 Use `tramp-compat-delete-directory'.
5082 (tramp-do-copy-or-rename-file-out-of-band)
5083 (tramp-compute-multi-hops, tramp-maybe-open-connection):
5084 Use `format-spec-make'.
5085 (tramp-find-foreign-file-name-handler)
5086 (tramp-advice-make-auto-save-file-name)
5087 (tramp-set-auto-save-file-modes): Remove superfluous check for
5088 `stringp'. This is done inside `tramp-tramp-file-p'.
5089 (tramp-debug-outline-regexp): New defconst.
5090 (tramp-get-debug-buffer): Use it.
5091 (tramp-check-for-regexp): Use (forward-line 1).
5092 (tramp-set-auto-save-file-modes): Adapt version check.
5093
5094 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
5095 Wrap call of `featurep' for 2nd argument.
5096 (tramp-compat-make-temp-file): Simplify fallback implementation.
5097 (tramp-compat-copy-tree): Remove function.
5098 (tramp-compat-delete-directory): Provide implementation for older
5099 Emacsen.
5100
5101 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
5102 Do not use `tramp-fish-handle-file-attributes.
5103
5104 * net/trampver.el: Update release number.
5105
5106 2010-04-10 Glenn Morris <rgm@gnu.org>
5107
5108 * progmodes/compile.el (compilation-save-buffers-predicate):
5109 Add missing :version tag.
5110
5111 2010-04-09 Sam Steingold <sds@gnu.org>
5112
5113 * progmodes/compile.el (compilation-save-buffers-predicate):
5114 Remove the "autoload" cookie.
5115
5116 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
5117 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
5118 and `bug-reference-prog-mode' can be used in hooks directly.
5119
5120 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
5121
5122 Add --author support to git commit.
5123 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
5124 (vc-git-log-edit-mode): New minor mode.
5125 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
5126 New declarations.
5127
5128 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
5129
5130 * vc-hooks.el, vc-git.el: Improve documentation comments.
5131
5132 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
5133
5134 Fix some of the problems in defsubst* (bug#5728).
5135 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
5136 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
5137
5138 2010-04-07 Sam Steingold <sds@gnu.org>
5139
5140 * progmodes/compile.el (compilation-save-buffers-predicate):
5141 New custom variable.
5142 (compile, recompile): Pass it to `save-some-buffers'.
5143
5144 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
5145
5146 * wid-edit.el (widget-choose): Move cursor to the second line of
5147 the buffer (Bug#5695).
5148
5149 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
5150
5151 Add new VC methods: vc-log-incoming and vc-log-outgoing.
5152 * vc.el (vc-print-log-setup-buttons): New function split out from
5153 vc-print-log-internal.
5154 (vc-log-internal-common): New function, a parametrized version of
5155 vc-print-log-internal.
5156 (vc-print-log-internal): Just call vc-log-internal-common with the
5157 right arguments.
5158 (vc-incoming-outgoing-internal):
5159 (vc-log-incoming, vc-log-outgoing): New functions.
5160 (vc-log-view-type): New permanent local variable.
5161
5162 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
5163
5164 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
5165 of the dynamic bound vc-short-log.
5166 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
5167
5168 * vc-git.el (vc-git-log-outgoing): New function.
5169 (vc-git-log-view-mode): Use vc-log-view-type instead
5170 of the dynamic bound vc-short-log.
5171
5172 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
5173 of the dynamic bound vc-short-log. Highlight the tag.
5174 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
5175 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
5176 (vc-hg-incoming-mode): Remove.
5177 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
5178
5179 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
5180
5181 Fix default-directory for vc-root-diff.
5182 * vc.el (vc-root-diff): Bind default-directory to the root
5183 directory for the diff command.
5184
5185 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
5186
5187 * progmodes/verilog-mode.el (verilog-forward-sexp):
5188 (verilog-calc-1): Support "disable fork" and "fork wait" multi
5189 word keywords, suggested by Steve Pearlmutter.
5190 (verilog-pretty-declarations): Support lineup of declarations in
5191 port lists.
5192 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
5193 fix bug for /* / comments.
5194 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
5195 Speed up and simplfy as this is never called with a bound.
5196 (verilog-pretty-declarations): Enhance to line up declarations
5197 inside a parameter list, suggested by Alan Morgan.
5198 (verilog-pretty-expr): Tune assignment regular expression match
5199 string for corner cases; also use markers instead of character
5200 number as indent changes the later.
5201
5202 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
5203
5204 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
5205 as missing keyword.
5206 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
5207 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
5208 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
5209 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
5210 Tennant.
5211 (verilog-keywords):
5212 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
5213 1800-2009 keywords, including "global.".
5214
5215 2010-04-06 John Wiegley <jwiegley@gmail.com>
5216
5217 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
5218 appearing in buffer list (if a live buffer name matched a recentf
5219 file basename). Should use uniquify to offer a real solution.
5220
5221 2010-04-06 John Wiegley <jwiegley@gmail.com>
5222
5223 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
5224 comment to code, and add a :version tag.
5225 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
5226
5227 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
5228
5229 Enable recentf-mode if using virtual buffers.
5230 * ido.el (recentf-list): Declare for byte-compiler.
5231 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
5232 (ido-make-buffer-list): Simplify.
5233 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
5234
5235 2010-04-05 Juri Linkov <juri@jurta.org>
5236
5237 Scrolling commands which scroll a line instead of full screen.
5238 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5239
5240 * simple.el (scroll-up-line, scroll-down-line): New commands.
5241 Put property isearch-scroll=t on them.
5242
5243 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
5244 Remove commands.
5245
5246 2010-04-05 Juri Linkov <juri@jurta.org>
5247
5248 Scrolling commands which do not signal errors at top/bottom.
5249 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5250
5251 * simple.el (scroll-up-command, scroll-down-command): New commands.
5252 Put property isearch-scroll=t on them.
5253
5254 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
5255 `scroll-down-command' and [next] from `scroll-up' to
5256 `scroll-up-command'.
5257
5258 * emulation/cua-base.el: Put property CUA=move on
5259 `scroll-up-command' and `scroll-down-command'.
5260 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
5261 and `scroll-down-command' to `cua-scroll-down'.
5262
5263 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
5264
5265 * help.el (describe-mode): Return nil.
5266
5267 2010-04-04 John Wiegley <jwiegley@gmail.com>
5268
5269 * ido.el (ido-use-virtual-buffers): New variable to indicate
5270 whether "virtual buffer" support is enabled for IDO.
5271 (ido-virtual): Face used to indicate virtual buffers in the list.
5272 (ido-buffer-internal): If a buffer is chosen, and no such buffer
5273 exists, but a virtual buffer of that name does (which would be why
5274 it was in the list), recreate the buffer by reopening the file.
5275 (ido-make-buffer-list): If virtual buffers are being used, call
5276 `ido-add-virtual-buffers-to-list' before the make list hook.
5277 (ido-virtual-buffers): New variable which contains a copy of the
5278 current contents of the `recentf-list', albeit pared down for the
5279 sake of speed, and with proper faces applied.
5280 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
5281 create a list of "virtual buffers" to present to the user in
5282 addition to the currently open set. Note that this logic could
5283 get rather slow if that list is too large. With the default
5284 `recentf-max-saved-items' of 200, there is little speed penalty.
5285
5286 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5287
5288 * font-lock.el: Require CL when compiling.
5289 (font-lock-turn-on-thing-lock): Use `case'.
5290
5291 2010-04-03 Eli Zaretskii <eliz@gnu.org>
5292
5293 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
5294 Zaretskii.
5295
5296 2010-04-02 Juanma Barranquero <lekktu@gmail.com>
5297
5298 * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
5299 (semantic-create-imenu-directory-index): Fix typos in docstrings.
5300 (semantic-imenu-goto-function): Reflow docstring.
5301
5302 2010-04-02 Juri Linkov <juri@jurta.org>
5303
5304 * ehelp.el (electric-help-orig-major-mode):
5305 New buffer-local variable.
5306 (electric-help-mode): Set it to original major-mode. Doc fix.
5307 (with-electric-help): Use `electric-help-orig-major-mode' instead
5308 of (default-value 'major-mode). Doc fix.
5309 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
5310
5311 2010-04-02 Sam Steingold <sds@gnu.org>
5312
5313 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
5314 `vc-hg-command' with a list of flags.
5315
5316 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5317 Also accept "patch" and "RFE".
5318 (bug-reference-fontify): `bug-reference-url-format' can also be a
5319 function to be able to handle the bug kind.
5320 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
5321
5322 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
5323
5324 * tmm.el (tmm-get-keymap): Check with symbolp before passing
5325 value to fboundp, it may not be a symbol.
5326
5327 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5328
5329 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
5330
5331 2010-03-31 Juri Linkov <juri@jurta.org>
5332
5333 * simple.el (next-line, previous-line): Re-throw a signal
5334 with `signal' instead of using `ding'.
5335 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
5336
5337 2010-03-31 Juri Linkov <juri@jurta.org>
5338
5339 * simple.el (keyboard-escape-quit): Raise deselecting the active
5340 region higher than exiting the minibuffer.
5341 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
5342
5343 2010-03-31 Juri Linkov <juri@jurta.org>
5344
5345 * image.el (image-animated-p): Use `image-metadata' instead of
5346 `image-extension-data'. Get GIF extenstion data from metadata
5347 property `extension-data'.
5348
5349 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5350
5351 * simple.el (append-to-buffer): Simplify.
5352
5353 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
5354
5355 * textmodes/artist.el (artist-mode): Fix typo in docstring.
5356 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
5357
5358 2010-03-31 Kenichi Handa <handa@m17n.org>
5359
5360 * language/sinhala.el (composition-function-table): Fix regexp for
5361 the new Unicode specification.
5362
5363 * language/indian.el (devanagari-composable-pattern)
5364 (tamil-composable-pattern, kannada-composable-pattern)
5365 (malayalam-composable-pattern): Adjust for the new Unicode
5366 specification.
5367 (bengali-composable-pattern, gurmukhi-composable-pattern)
5368 (gujarati-composable-pattern, oriya-composable-pattern)
5369 (telugu-composable-pattern): New variables to cope with the new
5370 Unicode specification. Use them in composition-function-table.
5371
5372 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5373
5374 Make tmm-menubar work for the Buffers menu again (bug#5726).
5375 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
5376 vectors rather than cons cells, as used in menu-bar-update-buffers.
5377
5378 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5379
5380 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
5381 (js-insert-and-indent): Revert 2009-08-15 change, restoring
5382 electric punctuation for "{}();,:" (Bug#5586).
5383
5384 * mail/sendmail.el (mail-default-directory): Doc fix.
5385
5386 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5387
5388 * mail/sendmail.el (mail-default-directory): Doc fix.
5389
5390 2010-03-31 Eli Zaretskii <eliz@gnu.org>
5391
5392 * subr.el (version-regexp-alist, version-to-list)
5393 (version-list-<, version-list-=, version-list-<=)
5394 (version-list-not-zero, version<, version<=, version=): Doc fix.
5395 (Bug#5744).
5396
5397 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
5398
5399 * vc.el (vc-root-diff): Doc fix.
5400
5401 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5402
5403 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
5404
5405 * simple.el (append-to-buffer): Fix last change.
5406
5407 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5408
5409 * simple.el (append-to-buffer): Ensure that point is preserved if
5410 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
5411 (Bug#5749)
5412
5413 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5414
5415 * files.el (auto-mode-case-fold): Change default to t.
5416
5417 2010-03-30 Juri Linkov <juri@jurta.org>
5418
5419 * dired-x.el (dired-omit-mode): Doc fix.
5420
5421 2010-03-30 Juri Linkov <juri@jurta.org>
5422
5423 * replace.el (occur-accumulate-lines): Move occur-engine related
5424 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
5425 to be located after `occur-engine'.
5426
5427 2010-03-30 Juri Linkov <juri@jurta.org>
5428
5429 Make occur handle multi-line matches cleanly with context.
5430 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
5431
5432 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
5433 (occur-engine): Add local variables `ret', `prev-after-lines',
5434 `prev-lines'. Use more arguments for `occur-context-lines'.
5435 Set first elem of its returned list to `data', and the second elem
5436 to `prev-after-lines'. Don't print the separator line.
5437 In the end, print remaining context after-lines.
5438 (occur-context-lines): Add new arguments `begpt', `endpt',
5439 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
5440 after-lines of the previous match with before-lines of the
5441 current match and not overlap them. Return a list with two
5442 values: the output line and the list of context after-lines.
5443
5444 2010-03-30 Juri Linkov <juri@jurta.org>
5445
5446 * replace.el (occur-accumulate-lines): Fix a bug where the first
5447 context line at the beginning of the buffer was missing.
5448
5449 2010-03-30 Eli Zaretskii <eliz@gnu.org>
5450
5451 * files.el: Make bidi-display-reordering safe variable for boolean
5452 values.
5453
5454 2010-03-29 Phil Hagelberg <phil@evri.com>
5455 Chong Yidong <cyd@stupidchicken.com>
5456
5457 * subr.el: Extend progress reporters to perform "spinning".
5458 (progress-reporter-update, progress-reporter-do-update):
5459 Handle non-numeric value arguments.
5460 (progress-reporter--pulse-characters): New var.
5461
5462 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
5463
5464 * progmodes/compile.el (compilation-start): Fix regexp detection
5465 of initial cd command (Bug#5771).
5466
5467 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
5468
5469 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
5470
5471 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
5472
5473 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
5474 * lisp/progmodes/gdb-mi.el: Restore.
5475 * lisp/progmodes/gdb-ui.el: Remove.
5476 * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
5477
5478 2010-03-25 Glenn Morris <rgm@gnu.org>
5479
5480 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
5481 all dired buffers, even tramp ones. (Bug#5755)
5482
5483 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
5484
5485 Add "union tags" in mpc.el.
5486 * mpc.el: Remove backward compatibility code.
5487 (mpc-browser-tags): Change default.
5488 (mpc--find-memoize-union-tags): New var.
5489 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
5490 (mpc-cmd-find): Handle the case where the playlist does not exist.
5491 Handle union-tags.
5492 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
5493 (mpc-cmd-add): Use mpc-cmd-flush.
5494 (mpc-tagbrowser-tag-name): New fun.
5495 (mpc-tagbrowser-buf): Use it.
5496 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
5497
5498 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
5499
5500 Misc cleanup.
5501 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
5502 Use replace-regexp-in-string.
5503 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
5504 (makefile-imake-mode-syntax-table): Move init into defvar.
5505 (makefile-mode): Use define-derived-mode.
5506
5507 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
5508 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
5509 not be present any more.
5510
5511 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
5512
5513 * faces.el (set-face-attribute): Fix typo in docstring.
5514 (face-valid-attribute-values): Reflow docstring.
5515
5516 * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
5517
5518 2010-03-24 Glenn Morris <rgm@gnu.org>
5519
5520 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
5521
5522 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
5523
5524 * indent.el (indent-for-tab-command): Doc fix.
5525
5526 2010-03-24 Alan Mackenzie <acm@muc.de>
5527
5528 * progmodes/cc-engine.el (c-remove-stale-state-cache):
5529 Fix off-by-one error. Fixes bug #5747.
5530
5531 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
5532
5533 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
5534 (image-dired-read-comment): Doc fix.
5535
5536 * json.el (json-object-type, json-array-type, json-key-type)
5537 (json-false, json-null, json-read-number):
5538 * minibuffer.el (completion-in-region-functions):
5539 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
5540 (cal-tex-cursor-week):
5541 * emacs-lisp/trace.el (trace-function):
5542 * eshell/em-basic.el (eshell/printnl):
5543 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
5544 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
5545 * obsolete/levents.el (allocate-event, event-key, event-object)
5546 (event-point, event-process, event-timestamp, event-to-character)
5547 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
5548 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
5549 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
5550 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
5551 (reftex-highlight-selection): Fix typos in docstrings.
5552
5553 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
5554
5555 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
5556
5557 2010-03-24 Glenn Morris <rgm@gnu.org>
5558
5559 * mail/rmail.el (rmail-highlight-face): Restore option deleted
5560 2008-02-13 without comment; mark it obsolete.
5561 (rmail-highlight-headers): Use rmail-highlight-face once more.
5562
5563 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
5564
5565 * woman.el (woman2-process-escapes): Only consume the newline if
5566 the filler character is on a line by itself (Bug#5729).
5567
5568 2010-03-24 Kenichi Handa <handa@m17n.org>
5569
5570 * language/indian.el (devanagari-composable-pattern): Add more
5571 consonants.
5572
5573 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
5574
5575 * net/trampver.el: Update release number.
5576
5577 2010-03-24 Glenn Morris <rgm@gnu.org>
5578
5579 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
5580
5581 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
5582
5583 * net/tramp.el (tramp-find-executable):
5584 Use `tramp-get-connection-buffer'. Make the regexp for checking
5585 output of "wc -l" more robust.
5586 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
5587 (tramp-open-connection-setup-interactive-shell): Remove workaround
5588 for OpenSolaris bug, it is not needed anymore.
5589
5590 2010-03-24 Eric M. Ludlam <zappo@gnu.org>
5591
5592 * cedet/semantic/imenu.el: New file, from the CEDET repository
5593 (Bug#5412).
5594
5595 2010-03-24 Glenn Morris <rgm@gnu.org>
5596
5597 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
5598
5599 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
5600
5601 * files.el (auto-mode-alist): Accept more verilog file patterns.
5602
5603 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
5604
5605 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
5606
5607 2010-03-24 Glenn Morris <rgm@gnu.org>
5608
5609 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
5610 log-edit-before-checkin-process.
5611
5612 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
5613
5614 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
5615
5616 * vc-dispatcher.el (vc-start-logentry): Doc fix.
5617 (log-view-process-buffer, log-edit-extra-flags): Declare.
5618
5619 * log-edit.el (log-edit-before-checkin-process): Doc fix.
5620
5621 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
5622 Consistently check ede-object is bound throughout.
5623
5624 * cedet/ede/project-am.el (ede-shell-run-something): Declare.
5625
5626 2010-03-23 Sam Steingold <sds@gnu.org>
5627
5628 Fix bug#5620: recalculate all markers on compilation buffer
5629 modifications, not on file modifications.
5630 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
5631 the buffer modification time, for buffers not associated with files.
5632 (compilation-mode): Create it.
5633 (compilation-filter): Update it.
5634 (compilation-next-error-function): Use it instead of
5635 `visited-file-modtime' for timestamp.
5636
5637 2010-03-23 Juri Linkov <juri@jurta.org>
5638
5639 Implement Occur multi-line matches.
5640 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
5641
5642 * replace.el (occur): Doc fix.
5643 (occur-engine): Set `begpt' to the beginning of the first line.
5644 Set `endpt' to the end of the last match line. At first, count
5645 line numbers between `origpt' and `begpt'. Split out code from
5646 `out-line' variable to new let-bindings `match-prefix' and
5647 `match-str'. In `out-line' add non-numeric prefix to all
5648 non-first lines of multi-line matches. Finally, count lines
5649 between `begpt' and `endpt' and add to `lines'.
5650
5651 2010-03-23 Juri Linkov <juri@jurta.org>
5652
5653 * replace.el (occur-accumulate-lines, occur-engine):
5654 Use `occur-engine-line' instead of duplicate code.
5655 (occur-engine-line): New function created from duplicate code
5656 in `occur-accumulate-lines' and `occur-engine'.
5657
5658 * replace.el (occur-engine-line): Add optional arg `keep-props'.
5659 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
5660
5661 2010-03-23 Juri Linkov <juri@jurta.org>
5662
5663 * finder.el: Remove TODO tasks.
5664
5665 * info.el (Info-finder-find-node): Add node "all"
5666 with all package info. Handle a list of multiple keywords
5667 separated by comma.
5668 (info-finder): In interactive use with a prefix argument,
5669 use `completing-read-multiple' to read a list of keywords
5670 separated by comma.
5671
5672 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
5673
5674 Add a new completion style `substring'.
5675 * minibuffer.el (completion-basic--pattern): New function.
5676 (completion-basic-try-completion, completion-basic-all-completions):
5677 Use it.
5678 (completion-substring--all-completions)
5679 (completion-substring-try-completion)
5680 (completion-substring-all-completions): New functions.
5681 (completion-styles-alist): New style `substring'.
5682
5683 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
5684
5685 Get rid of .elc files after removal of the corresponding .el.
5686 * Makefile.in (compile-clean): New target.
5687 (compile-main): Use it.
5688
5689 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
5690
5691 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
5692 don't do make there. When compiling with separate object dir, there
5693 is no Makefile there.
5694
5695 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
5696
5697 Get rid of the ELCFILES abomination, again.
5698 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
5699 (all, compile): Don't call compile-last.
5700 (compile-main): Build the "elcfiles" list dynamically.
5701 (compile-targets): New (internal) target.
5702
5703 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
5704
5705 * Makefile.in (top_srcdir): Define.
5706 (abs_top_builddir): Define.
5707 (srcdir): Don't append `/..'.
5708 (EMACS): Use ${abs_top_builddir}.
5709 (all, compile, compile-always, compile-last): Don't set emacswd.
5710 (update-subdirs, update-authors): Use $(top_srcdir) instead of
5711 $(srcdir).
5712 (lisp): Use $(srcdir) instead of @srcdir@.
5713
5714 2010-03-21 Juri Linkov <juri@jurta.org>
5715
5716 Fix message of multi-line occur regexps and multi-buffer header lines.
5717 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
5718
5719 * replace.el (occur-1): Don't display regexp if it is longer
5720 than window-width. Use `query-replace-descr' to display regexp.
5721 (occur-engine): Don't display regexp in the buffer header for
5722 multi-buffer occur. Display a separate header line with total
5723 match count and regexp for multi-buffer occur.
5724 Use `query-replace-descr' to display regexp.
5725
5726 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
5727
5728 * net/secrets.el: Fix parenthesis.
5729 (secrets-enabled): Fix parenthesis.
5730
5731 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
5732
5733 Use more relative file and directory names.
5734 * Makefile.in (EMACS): Arrange for it to work when we chdir.
5735 (setwins, setwins_almost, setwins_for_subdirs):
5736 Don't `cd'; output relative names.
5737 (all, compile, compile-always, compile-last): Set emacswd.
5738 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
5739 Just cd to the lisp source dir so we can use relative file names.
5740
5741 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
5742
5743 2010-03-20 Glenn Morris <rgm@gnu.org>
5744
5745 * textmodes/rst.el: Use faces for font-lock customization, and make the
5746 old -face variables obsolete.
5747 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
5748 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
5749 (rst-block-face, rst-external-face, rst-definition-face)
5750 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
5751 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
5752 Make obsolete.
5753 (rst-font-lock-keywords-function): Update for above changes.
5754
5755 2010-03-20 Juri Linkov <juri@jurta.org>
5756
5757 * s-region.el:
5758 * obsolete/s-region.el: Move to obsolete.
5759
5760 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
5761
5762 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
5763
5764 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
5765
5766 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
5767
5768 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
5769
5770 Add special markup processing for commit logs.
5771 * log-edit.el (log-edit-extra-flags): New variable.
5772 (log-edit): Add new argument MODE. Use that mode when non-nil
5773 instead of the log-view-mode.
5774 (log-view-process-buffer): New function.
5775
5776 * vc.el: Document that the checkin method takes optional
5777 arguments. Document new backend specific method: log-view-mode.
5778 (vc-default-log-edit-mode): New function.
5779 (vc-checkin): Use a backend specific log-view-mode.
5780 Pass extra arguments to the checkin method.
5781 (vc-modify-change-comment): Pass a dummy extra argument.
5782
5783 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
5784 log-edit.
5785 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
5786 (vc-finish-logentry): Process the log buffer before passing it
5787 down. Pass log-edit-extra-flags.
5788
5789 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
5790 command.
5791 (log-edit-extra-flags, log-edit-before-checkin-process):
5792 New declarations.
5793
5794 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
5795 command.
5796 (log-edit-extra-flags, log-edit-before-checkin-process):
5797 New declarations.
5798 (vc-hg-log-edit-mode): New derived mode.
5799
5800 * vc-arch.el (vc-arch-checkin):
5801 * vc-cvs.el (vc-cvs-checkin):
5802 * vc-git.el (vc-git-checkin):
5803 * vc-mtn.el (vc-mtn-checkin):
5804 * vc-rcs.el (vc-rcs-checkin):
5805 * vc-sccs.el (vc-sccs-checkin):
5806 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
5807
5808 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
5809
5810 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
5811 parent typo).
5812
5813 2010-03-19 Glenn Morris <rgm@gnu.org>
5814
5815 * password-cache.el (password-cache, password-cache-expiry): Autoload.
5816
5817 2010-03-18 Glenn Morris <rgm@gnu.org>
5818
5819 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
5820
5821 * replace.el (query-replace-history): Give it a doc string.
5822 (map-query-replace-regexp): Use query-replace-from-history-variable
5823 and query-replace-to-history-variable.
5824
5825 * mail/hashcash.el (declare-function): Remove duplicate definition.
5826
5827 * mail/emacsbug.el (report-emacs-bug-pretest-address):
5828 Make it an obsolete alias for report-emacs-bug-address.
5829 (message-strip-special-text-properties): Declare.
5830 (report-emacs-bug): Remove test for a pretest bug address.
5831 Combine message-mode-specific code.
5832
5833 * mail/supercite.el: Don't require sendmail.
5834 (mh-in-header-p): Declare rather than using with-no-warnings.
5835 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
5836 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
5837
5838 * calendar/cal-french.el: Convert to utf-8.
5839
5840 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
5841 Emacs scripts.
5842
5843 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
5844
5845 * net/secrets.el (secrets-enabled): New variable. Use it instead
5846 of a subfeature.
5847
5848 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
5849
5850 * net/secrets.el (top): Register the D-Bus signals only when the
5851 service "org.freedesktop.secrets" can be pinged.
5852 Provide subfeature `enabled'.
5853
5854 2010-03-14 Juri Linkov <juri@jurta.org>
5855
5856 Add finder unknown keywords.
5857
5858 * finder.el (finder-unknown-keywords): New function.
5859
5860 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
5861 to create a Finder node with unknown keywords.
5862
5863 2010-03-14 Juri Linkov <juri@jurta.org>
5864
5865 * finder.el (finder-compile-keywords): Replace `princ' with
5866 `prin1' on a list of symbols interned from keyword strings.
5867
5868 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
5869 a comma, then split keywords using a comma and optional whitespace.
5870 Otherwise, split by whitespace.
5871
5872 * complete.el:
5873 * face-remap.el:
5874 * log-view.el:
5875 * net/hmac-def.el:
5876 * net/hmac-md5.el:
5877 * net/netrc.el:
5878 * progmodes/mixal-mode.el: Fix keywords.
5879
5880 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
5881
5882 * Makefile.in (ELCFILES): Add net/secrets.elc.
5883
5884 * net/secrets.el: New file.
5885
5886 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
5887
5888 * facemenu.el (list-colors-display, list-colors-print): New arg
5889 callback. Use it to allow selecting colors.
5890
5891 * wid-edit.el (widget-image-insert): Insert image prop even if the
5892 current display is non-graphic.
5893 (widget-field-value-set): New fun.
5894 (editable-field): Use it.
5895 (widget-field-value-get): Clean up unused var.
5896 (widget-color-value-create, widget-color--choose-action):
5897 New funs. Allow using list-colors-display to choose color.
5898
5899 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
5900
5901 * cus-edit.el: Resort topmost custom groups.
5902 (custom-buffer-sort-alphabetically): Default to t.
5903 (customize-apropos): Use apropos-parse-pattern.
5904 (custom-search-field): New var.
5905 (custom-buffer-create-internal): Add custom-apropos search field.
5906 (custom-add-parent-links): Don't display parent doc.
5907 (custom-group-value-create): Don't sort top-level custom group.
5908 (custom-magic-value-create): Show visibility button before option name.
5909
5910 (custom-variable-state): New fun, from custom-variable-state-set.
5911 (custom-variable-state-set): Use it.
5912 (custom-group-value-create): Hide options with standard values
5913 using the :hidden-states property. Use progress reporter.
5914
5915 (custom-show): Simplify.
5916 (custom-visibility): Disable images by default.
5917 (custom-variable): New property :hidden-states.
5918 (custom-variable-value-create): Enable images for
5919 custom-visibility widgets. Use :hidden-states property to
5920 determine initial visibility.
5921
5922 * wid-edit.el (widget-image-find): Give images center ascent.
5923 (visibility): Add :on-image and :off-image properties.
5924 (widget-visibility-value-create): Use them.
5925
5926 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
5927
5928 * cus-edit.el (processes): Remove from development group.
5929 (oop, hypermedia): Delete group.
5930 (comm): Promote to top-level group.
5931
5932 * net/browse-url.el (browse-url):
5933 * net/xesam.el (xesam):
5934 * net/tramp.el (tramp):
5935 * net/goto-addr.el (goto-address):
5936 * net/ange-ftp.el (ange-ftp): Put in comm group.
5937
5938 * view.el (view): Remove from editing group.
5939
5940 * uniquify.el (uniquify): Put in files group.
5941
5942 * net/browse-url.el (browse-url):
5943 * ps-print.el (postscript): Put in external group.
5944
5945 * cus-edit.el (outlines):
5946 * textmodes/text-mode.el (text-mode-hook):
5947 * textmodes/table.el (table):
5948 * textmodes/picture.el (picture):
5949 * outline.el (outlines): Put in wp group.
5950
5951 * nxml/nxml-mode.el (nxml): Remove from wp group.
5952
5953 * net/tramp-imap.el (tramp-imap): Put in tramp group.
5954
5955 * mail/metamail.el (metamail): Remove from hypermedia group.
5956
5957 * cus-edit.el (abbrev):
5958 * whitespace.el (whitespace):
5959 * vcursor.el (vcursor):
5960 * reveal.el (reveal):
5961 * hl-line.el (hl-line): Put in convenience group.
5962
5963 * epg-config.el (epg): Put in data group.
5964
5965 * emulation/pc-select.el (pc-select): Put in emulations group.
5966
5967 * calculator.el (calculator): Put in applications group.
5968
5969 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
5970
5971 Add .dir-locals.el support for file-less buffers.
5972 * files.el (hack-local-variables): Split out code to apply local
5973 variable settings ...
5974 (hack-local-variables-apply): ... here. New function.
5975 (hack-dir-local-variables): Use the default directory for when the
5976 buffer does not have an associated file.
5977 (hack-dir-local-variables-non-file-buffer): New function.
5978 * diff-mode.el (diff-mode):
5979 * vc-annotate.el (vc-annotate-mode):
5980 * vc-dir.el (vc-dir-mode):
5981 * log-edit.el (log-edit-mode):
5982 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
5983
5984 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
5985
5986 Add support for shelving snapshots and for showing shelves.
5987 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
5988 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
5989 New functions.
5990 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
5991 (vc-bzr-extra-menu-map): Map them.
5992
5993 2010-03-11 Glenn Morris <rgm@gnu.org>
5994
5995 * cus-edit.el (customize-changed-options-previous-release):
5996 Bump to 23.1.
5997
5998 * image.el (image-animate-max-time): Fix :version tag.
5999
6000 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
6001
6002 * Branch for 23.2.
6003
6004 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6005
6006 * vc-git.el (vc-git-revision-table): Include remote branches.
6007
6008 2010-03-10 Kim F. Storm <storm@cua.dk>
6009
6010 Animated image API.
6011 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
6012
6013 * image.el (image-animate-max-time): New defcustom.
6014 (image-animated-types): New defconst.
6015 (create-animated-image, image-animate-timer)
6016 (image-animate-start, image-animate-stop, image-animate-timeout)
6017 (image-animated-p): New functions.
6018
6019 * image-mode.el (image-toggle-display-image):
6020 Replace `create-image' with `create-animated-image'.
6021
6022 2010-03-09 Miles Bader <miles@gnu.org>
6023
6024 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
6025 instead of "format:"; this ensures that the output is
6026 newline-terminated.
6027
6028 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
6029
6030 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
6031 that all errors are caught, and that the return value is always a
6032 list (Bug#5692).
6033
6034 2010-03-08 Kenichi Handa <handa@m17n.org>
6035
6036 * language/misc-lang.el (windows-1256): New coding system.
6037 (cp1256): New alias of windows-1256 (bug#5690).
6038
6039 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
6040
6041 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
6042 call to rfc822-bad-address. (Bug#5692)
6043
6044 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
6045
6046 * vc-git.el (vc-git-annotate-extract-revision-at-line):
6047 Use vc-git-root as default directory for revision path (Bug#5657).
6048
6049 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
6050
6051 * calculator.el (calculator): Don't bind split-window-keep-point
6052 (Bug#5674).
6053
6054 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
6055
6056 * vc-git.el: Re-flow to fit into 80 columns.
6057 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
6058 Remove spurious `quote' element in each case alternative.
6059 (vc-git-show-log-entry): Use prog1.
6060 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
6061
6062 2010-03-06 Glenn Morris <rgm@gnu.org>
6063
6064 * cedet/semantic/grammar.el (semantic-grammar-header-template):
6065 Update template copyright to GPLv3+.
6066
6067 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
6068
6069 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
6070
6071 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
6072
6073 * macros.el (insert-kbd-macro): Look up keyboard macro using the
6074 definition, not the name (Bug#5481).
6075
6076 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
6077
6078 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
6079 argument with a local variable. (Bug#5670)
6080
6081 2010-03-02 Juri Linkov <juri@jurta.org>
6082
6083 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
6084
6085 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
6086
6087 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
6088 error when FILENAME and NEWNAME are existing remote directories.
6089
6090 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
6091 parameter DIR-FLAG.
6092
6093 2010-03-02 Glenn Morris <rgm@gnu.org>
6094
6095 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
6096 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
6097
6098 2010-03-01 Kenichi Handa <handa@m17n.org>
6099
6100 * language/burmese.el (burmese-composable-pattern): Rename from
6101 myanmar-composable-pattern.
6102
6103 * international/characters.el (script-list):
6104 * international/fontset.el (script-representative-chars):
6105 Change myanmar to burmese.
6106 (otf-script-alist): Likewise.
6107 (setup-default-fontset): Likewise. Re-fix :otf spec.
6108
6109 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
6110
6111 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
6112
6113 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
6114
6115 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
6116
6117 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
6118
6119 * net/tramp.el (tramp-handle-write-region): START can be a string.
6120 Take care in the checks. Reported by Dan Davison
6121 <davison@stats.ox.ac.uk>.
6122
6123 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
6124
6125 * net/dbus.el (dbus-introspect, dbus-get-property)
6126 (dbus-set-property, dbus-get-all-properties):
6127 Use `dbus-call-method' when noninteractive. (Bug#5645)
6128
6129 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
6130
6131 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
6132 * emacs-lisp/elint.el (elint-add-required-env):
6133 * cedet/semantic/db-find.el
6134 (semanticdb-find-translate-path-brutish-default):
6135 * cedet/ede/make.el (ede-make-check-version):
6136 * calendar/icalendar.el (icalendar--add-diary-entry):
6137 * calc/calcalg2.el (math-tracing-integral):
6138 * files.el (recover-session-finish): Use with-current-buffer
6139 instead of save-excursion.
6140
6141 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
6142
6143 Fix in-buffer completion when after-change-functions modify the buffer.
6144 * minibuffer.el (completion--replace): New function.
6145 (completion--do-completion): Use it and use relative movement.
6146
6147 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
6148
6149 * international/fontset.el (setup-default-fontset): Fix :otf spec.
6150
6151 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
6152
6153 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
6154 Allow the characters _<> in the stack entry (Bug#5653).
6155
6156 2010-02-26 Kenichi Handa <handa@m17n.org>
6157
6158 * language/burmese.el: Fix entries in composition-function-table.
6159 (myanmar-composable-pattern): New variable.
6160
6161 * international/fontset.el (setup-default-fontset): Add an entry
6162 for myanmar.
6163
6164 * international/characters.el (script-list): Add Myanmar
6165 Extended-A.
6166
6167 2010-02-26 Glenn Morris <rgm@gnu.org>
6168
6169 * custom.el (custom-initialize-delay): Doc fix.
6170
6171 * mail/sendmail.el (send-mail-function): Autoload the call
6172 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
6173
6174 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
6175
6176 * files.el (hack-local-variables-filter): For eval forms, also
6177 check safe-local-variable-p (Bug#5636).
6178
6179 2010-02-24 Eduard Wiebe <usenet@pusto.de>
6180
6181 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
6182 and use c(ad)r of cddr (Bug#5640).
6183
6184 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
6185
6186 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
6187 setting the modes by `ignore-errors'. It might fail, for example
6188 if the file is not owned by the user but the group.
6189 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
6190
6191 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
6192
6193 * files.el (directory-listing-before-filename-regexp): Use
6194 stricter matching for iso-style dates, to avoid false matches with
6195 date-like filenames (Bug#5597).
6196
6197 * htmlfontify.el (htmlfontify): Doc fix.
6198
6199 * eshell/eshell.el (eshell): Doc fix.
6200
6201 * startup.el (fancy-about-screen): In mode-line, apply
6202 mode-line-buffer-id face only to the buffer name (Bug#5613).
6203
6204 2010-02-20 Kevin Ryde <user42@zip.com.au>
6205
6206 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6207 In `watcom' anchor regexp to start of line, to avoid slowness
6208 (Bug#5599).
6209
6210 2010-02-20 Eli Zaretskii <eliz@gnu.org>
6211
6212 * subr.el (remove-yank-excluded-properties): Explain in a comment
6213 why `category' property is removed.
6214
6215 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
6216
6217 * isearch.el (isearch-update-post-hook, isearch-update): Revert
6218 2010-02-17 change.
6219
6220 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
6221
6222 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
6223 (icalendar--convert-weekly-to-ical)
6224 (icalendar--convert-yearly-to-ical)
6225 (icalendar--convert-block-to-ical)
6226 (icalendar--convert-cyclic-to-ical)
6227 (icalendar--convert-anniversary-to-ical): Take care of time
6228 specifications where hour has 1-digit only (Bug#5549).
6229
6230 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
6231
6232 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
6233 of disassemble output in GDB 7.1.
6234
6235 2010-02-19 Glenn Morris <rgm@gnu.org>
6236
6237 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
6238 property. (Bug#5593)
6239
6240 2010-02-18 Sam Steingold <sds@gnu.org>
6241
6242 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
6243
6244 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
6245
6246 Use abbreviated file names in bookmarks (bug#5591).
6247 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
6248 calls to expand-file-name.
6249 (bookmark-relocate): Use abbreviated file names in bookmarks.
6250 (bookmark-load): Use abbreviated file names in messages.
6251
6252 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
6253
6254 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
6255 expand "." and "..". Reported by Thierry Volpiatto
6256 <thierry.volpiatto@gmail.com>.
6257
6258 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
6259
6260 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
6261 permissions of the temporary file to "0600". In case the remote
6262 file has no read permissions for the owner, there might be
6263 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
6264
6265 22010-02-18 Glenn Morris <rgm@gnu.org>
6266
6267 * emacs-lisp/authors.el (authors-renamed-files-alist):
6268 Add entries for INSTALL.CVS.
6269
6270 2010-02-17 Mark A. Hershberger <mah@everybody.org>
6271
6272 * vc-bzr.el: Fix typo in Known Bugs section.
6273
6274 * isearch.el (isearch-update-post-hook): New hook.
6275 (isearch-update): Use the new hook.
6276
6277 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
6278
6279 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
6280 Fix errors in copying directories.
6281 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
6282 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
6283 (tramp-handle-delete-file)
6284 (tramp-handle-dired-recursive-delete-directory)
6285 (tramp-handle-write-region): Flush also the cache for the upper
6286 directory.
6287
6288 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
6289
6290 * simple.el (save-interprogram-paste-before-kill): Doc fix.
6291
6292 * cus-edit.el (hardware): Doc fix.
6293
6294 * man.el (man): Add to external custom group.
6295
6296 * delim-col.el (columns): Move to wp custom group.
6297
6298 * doc-view.el (doc-view): Add to data custom group.
6299
6300 * cedet/data-debug.el (data-debug): Move to extensions group.
6301
6302 * cedet/ede.el (ede):
6303 * cedet/srecode.el (srecode):
6304 * cedet/semantic.el (semantic): Put in tools and extensions group.
6305
6306 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
6307
6308 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
6309 by ispell-parse-output (Bug#5575).
6310
6311 2010-02-16 Kenichi Handa <handa@m17n.org>
6312
6313 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
6314 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
6315 (skkdic-convert): Use `euc-japan' coding system for writing.
6316
6317 2010-02-16 Glenn Morris <rgm@gnu.org>
6318
6319 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
6320 tex-main-file before using it. (Bug#5562)
6321
6322 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
6323
6324 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
6325 warnings, since it is annoying for the user to see them each time he
6326 runs the code.
6327
6328 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
6329
6330 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
6331 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
6332 instead of PROC for caching "first-password-request". Otherwise,
6333 new processes would not profit from passwords already entered.
6334
6335 * net/tramp-cache.el (tramp-dump-connection-properties):
6336 Don't save "first-password-request" property.
6337
6338 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
6339
6340 * outline.el (outline-head-from-level):
6341 * simple.el (with-wrapper-hook):
6342 * cedet/ede.el (ede-run-target, project-delete-target)
6343 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
6344 (ede-adebug-project, ede-adebug-project-parent)
6345 (ede-adebug-project-root):
6346 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
6347 (elint-defun, elint-buffer-env, elint-top-form-logged)
6348 (elint-unbound-variable):
6349 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
6350 Fix typos in docstrings.
6351
6352 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
6353
6354 * files.el (insert-directory): When WILDCARD-REGEXP and
6355 FULL-DIRECTORY-P are nil, insert the file entry instead of the
6356 whole directory. (Bug#5551)
6357
6358 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
6359 dired's alignment sanity. (Bug#5516)
6360
6361 2010-02-14 Juri Linkov <juri@jurta.org>
6362
6363 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
6364 Remove remaining ^H with their preceding chars. (Bug#5566)
6365
6366 2010-02-13 Glenn Morris <rgm@gnu.org>
6367
6368 * simple.el (transpose-subr): Give it a doc-string.
6369
6370 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
6371 Doc fixes.
6372
6373 2010-02-12 Juri Linkov <juri@jurta.org>
6374
6375 * arc-mode.el (archive-unique-fname): Make directories for nested
6376 archives. (Bug#5540)
6377
6378 2010-02-12 Juri Linkov <juri@jurta.org>
6379
6380 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
6381
6382 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6383
6384 * subr.el (copy-overlay): Handle deleted overlays.
6385
6386 * man.el (Man-completion-table): Don't signal an error if we can't run
6387 manual-program (bug#4056).
6388
6389 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
6390
6391 * textmodes/artist.el (artist-mt): Fix typos in docstring.
6392
6393 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6394
6395 * info.el (Info-bookmark-jump): Simplify.
6396
6397 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
6398 (bookmark-default-handler): Accept new bookmark field `buffer'.
6399
6400 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
6401
6402 * iswitchb.el (iswitchb-completions): Revert last change.
6403
6404 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
6405
6406 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
6407 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
6408 This prevents file names like "~/" being listed literally.
6409
6410 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
6411
6412 * term/xterm.el (xterm-maybe-set-dark-background-mode):
6413 Remove dead code. (Bug#5546)
6414
6415 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
6416
6417 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
6418 correctly (Bug#5548).
6419
6420 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
6421
6422 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
6423 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
6424
6425 2010-02-08 Kenichi Handa <handa@m17n.org>
6426
6427 * international/mule-util.el (with-coding-priority): Add autoload
6428 cookie for putting `lisp-indent-function'.
6429
6430 2010-02-07 Glenn Morris <rgm@gnu.org>
6431
6432 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
6433 Move F2003 named interfaces from keywords-2 to keywords-1, and
6434 use function-name-face rather than constant-face.
6435 Simplify "abstract interface" regexp.
6436
6437 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
6438
6439 * eshell/esh-util.el (eshell-file-attributes): New optional arg
6440 ID-FORMAT. Pass it to `file-attributes'.
6441
6442 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
6443
6444 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
6445
6446 * faces.el (set-face-attribute): Allow calling
6447 internal-set-lisp-face-attribute with 'unspecified family and
6448 foundry argument (Bug#5536).
6449
6450 2010-02-07 Glenn Morris <rgm@gnu.org>
6451
6452 * progmodes/f90.el (f90-font-lock-keywords-2)
6453 (f90-looking-at-type-like, f90-looking-at-program-block-end):
6454 Handle F2003 named interfaces.
6455
6456 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
6457
6458 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
6459 beg and end before calling c-get-state-before-change-functions.
6460
6461 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
6462
6463 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
6464
6465 2010-02-05 Juri Linkov <juri@jurta.org>
6466
6467 * doc-view.el (doc-view-mode):
6468 * image-mode.el (image-mode): Put property mode-class=special.
6469 (Bug#4896)
6470
6471 2010-02-05 Mark A. Hershberger <mah@everybody.org>
6472
6473 * vc-svn.el (vc-svn-revision-table): New function.
6474
6475 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
6476
6477 * net/ange-ftp.el (ange-ftp-insert-directory):
6478 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
6479 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
6480 Handle also directories. (Bug#5478)
6481
6482 2010-02-05 Glenn Morris <rgm@gnu.org>
6483
6484 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
6485
6486 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
6487
6488 * startup.el (command-line-1): Convert options beginning with a
6489 single dash as well (Bug#5519).
6490
6491 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
6492
6493 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
6494 * minibuffer.el (completion-initials-expand): Only check the presence
6495 of delims *within* the boundaries, since otherwise the / delim is
6496 always found for files.
6497
6498 Fix up various corner case problems.
6499 * doc-view.el (doc-view-last-page-number): New function.
6500 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
6501 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
6502 (doc-view-kill-proc): Avoid inf-loop in freak cases.
6503 (doc-view-reconvert-doc): Use the new recursive delete-directory.
6504 (doc-view-convert-current-doc): Don't create the resolution.el file
6505 here any more.
6506 (doc-view-pdf/ps->png): Do it here instead.
6507 (doc-view-already-converted-p): Check that resolution.el is present.
6508 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
6509 windows that are not yet showing images.
6510
6511 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
6512
6513 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
6514 `dired-uncache' for every elemnt which is an absolute file name.
6515
6516 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
6517 directory, handle its directory component.
6518 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
6519 function is called permanently and creates noise, otherwise.
6520
6521 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
6522 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
6523 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
6524
6525 2010-02-04 David Burger <dburger@google.com> (tiny change)
6526
6527 * macros.el (apply-macro-to-region-lines):
6528 Minor simplification. (Bug#5485)
6529
6530 2010-02-04 Glenn Morris <rgm@gnu.org>
6531
6532 * mail/rmail.el (rmail-show-message-1): Handle malformed
6533 quoted-printable text. (Bug#5441)
6534
6535 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
6536
6537 * simple.el (visual-line-mode): Capitalize lighter.
6538
6539 2010-02-03 John Wiegley <jwiegley@gmail.com>
6540
6541 * iswitchb.el (iswitchb-completions): Add bookmark files to the
6542 list of files considered for "virtual buffer" completions.
6543
6544 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
6545
6546 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
6547 also in case of (and (not full) (not wildcard)). This is needed
6548 when dired is called with a list of files, which are not in
6549 `default-directory'. (Bug#5478)
6550
6551 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
6552
6553 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
6554
6555 2010-02-02 Juri Linkov <juri@jurta.org>
6556
6557 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
6558 from unidiff to allow function-line after @@.
6559
6560 2010-02-02 Juri Linkov <juri@jurta.org>
6561
6562 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
6563 '(RCS SCCS) with inverted condition.
6564
6565 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
6566
6567 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
6568 messages.
6569
6570 2010-02-01 Juri Linkov <juri@jurta.org>
6571
6572 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
6573 compare with "pkunzip" and "pkzip" instead of only "pkzip".
6574 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
6575 only when (car archive-zip-extract) is "unzip". (Bug#5475)
6576
6577 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
6578
6579 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
6580 (doc-view-revert-buffer): New command.
6581 (doc-view-mode-map): Use it.
6582
6583 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
6584
6585 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
6586 pending merge is detected.
6587
6588 2010-01-31 Juri Linkov <juri@jurta.org>
6589
6590 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
6591 beginning of interactive spec like all other grep commands do.
6592 Put "all" in front of "gz". (Bug#5260)
6593
6594 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
6595
6596 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
6597
6598 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
6599
6600 * dirtrack.el (dirtrack): Warn instead of signalling error if the
6601 regexp is incorrect (Bug#5476).
6602
6603 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
6604
6605 * net/tramp.el (tramp-handle-insert-directory): Handle also
6606 symlinks, when FILENAME is not in `default-directory'.
6607
6608 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
6609
6610 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
6611 FILE is not in `default-directory'. (Bug#5478)
6612
6613 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
6614 of SWITCHES. Handle the case, FILENAME is not in
6615 `default-directory'. (Bug#5478)
6616 (tramp-register-file-name-handlers): Add safe-magic property.
6617
6618 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
6619
6620 * arc-mode.el (archive-zip-extract): Quote the argument passed to
6621 unzip (Bug#5475).
6622
6623 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
6624
6625 * progmodes/flymake.el (flymake-allowed-file-name-masks)
6626 (flymake-master-make-header-init): Add other C++ filename masks.
6627 (flymake-find-possible-master-files)
6628 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
6629
6630 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
6631
6632 Fix some busybox annoyances.
6633
6634 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
6635 not responding." string.
6636 (tramp-open-connection-setup-interactive-shell): Dump stty
6637 settings. Enable "neveropen" arg for all `tramp-send-command'
6638 calls. Handle "=" in variable values properly.
6639 (tramp-find-inline-encoding): Raise an error, when no encoding is
6640 found.
6641 (tramp-wait-for-output): Check, whether PROC buffer is available.
6642 Remove spurious " ^H" sequences, sent by busybox.
6643 (tramp-get-ls-command): Suppress coloring, if possible.
6644
6645 2010-01-28 Glenn Morris <rgm@gnu.org>
6646
6647 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
6648
6649 * log-edit.el (log-edit-strip-single-file-name): Add missing
6650 :safe, :group, and :version tags.
6651
6652 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
6653
6654 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
6655 buffers. (Bug#5477)
6656
6657 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
6658
6659 * files.el (delete-directory): Handle moving to trash without
6660 first doing recursion (Bug#5436).
6661
6662 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
6663
6664 * vc-hooks.el (vc-path): Mark as obsolete.
6665
6666 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
6667
6668 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
6669 names too.
6670
6671 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
6672 for the short log.
6673 (vc-bzr-log-view-mode): Adjust regexp for the above change.
6674
6675 2010-01-25 Mark A. Hershberger <mah@everybody.org>
6676
6677 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
6678
6679 * vc-bzr.el (vc-bzr-revision-table): New function.
6680
6681 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
6682
6683 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
6684 diff-index command. This requires at least git-1.5.5. (Bug#1589).
6685
6686 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
6687
6688 Remove support for adding --signoff on commit.
6689 Future support will use an incompatible generic mechanism.
6690 * vc-git.el (vc-git-add-signoff): Remove variable.
6691 (vc-git-toggle-signoff): Remove function.
6692 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
6693
6694 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
6695 from xterm-set-background-mode. Return t if the background mode
6696 was set.
6697 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
6698 earlier, call it again in case the background mode has changed.
6699
6700 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
6701
6702 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
6703 (Bug#3541).
6704
6705 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
6706
6707 * emacs-lisp/assoc.el (aelement): Doc fix.
6708 (aput, adelete, amake): Use lexical-let (Bug#5450).
6709
6710 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
6711
6712 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
6713 is the same as subprogram call, not declaration. (Bug#5435).
6714
6715 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
6716
6717 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
6718 (tramp-smb-maybe-open-connection): Use it.
6719
6720 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
6721
6722 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
6723
6724 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
6725
6726 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
6727 just because we see "encoding: 8bit".
6728 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
6729
6730 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
6731
6732 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
6733
6734 2010-01-22 Eli Zaretskii <eliz@gnu.org>
6735
6736 * jka-compr.el (jka-compr-load): If load-file is not in
6737 load-history, try its file-truename version. (bug#5447)
6738
6739 2010-01-21 Alan Mackenzie <acm@muc.de>
6740
6741 Fix a situation where deletion of a cpp construct throws an error.
6742 * progmodes/cc-engine.el (c-invalidate-state-cache):
6743 Before invoking c-with-all-but-one-cpps-commented-out, check that the
6744 special cpp construct is still in the buffer.
6745 (c-parse-state): Record the special cpp with markers, not numbers.
6746
6747 2010-01-21 Kenichi Handa <handa@m17n.org>
6748
6749 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
6750 process last-command-event, as it is now decoded first (Bug#5380).
6751
6752 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
6753
6754 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
6755
6756 2010-01-20 Glenn Morris <rgm@gnu.org>
6757
6758 * indent.el (tab-always-indent): Fix custom-type.
6759
6760 2010-01-19 Alan Mackenzie <acm@muc.de>
6761
6762 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
6763 buffer throws "args out of range".
6764 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
6765 playing the role of delimiter.
6766
6767 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
6768
6769 * progmodes/ada-mode.el: Fix bug#5400.
6770 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
6771 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
6772 changed. Delete RECURSIVE parameter; never used. Improve doc string.
6773 Improve comments in "is" portion. Handle null procedure declaration.
6774 (ada-move-to-end): Improve doc string.
6775
6776 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
6777
6778 * ido.el (ido-cur-list): Initialize to nil.
6779 Remove obsolete information from commentary.
6780 (ido-choice-list): Initialize to nil.
6781 (ido-get-bufname): Reject minibuffers.
6782 (ido-make-buffer-list): If "default" is a nonexistent
6783 buffer, ignore it, as per the function's comment.
6784 (ido-kill-buffer-internal): New function.
6785 (ido-kill-buffer-at-head): Use it.
6786 (ido-visit-buffer): Likewise.
6787
6788 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
6789
6790 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
6791
6792 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
6793
6794 * cedet/ede/locate.el (ede-locate-file-in-project)
6795 (ede-locate-file-in-project-impl): Fix typos in docstrings.
6796 (ede-enable-locate-on-project): Fix typos in error messages.
6797
6798 * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
6799 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
6800 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
6801 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
6802 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
6803 Fix typos in menu help.
6804
6805 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
6806 Fix typos in chart titles.
6807
6808 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
6809 * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
6810 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
6811 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
6812 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
6813 (semantic-parse-stream, semantic-parse-region)
6814 (semantic-parse-region-default, semantic--set-buffer-cache)
6815 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
6816 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
6817 (semantic-default-submodes):
6818 * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
6819 (semanticdb-create-ebrowse-database)
6820 (semanticdb-find-tags-for-completion-method)
6821 (semanticdb-find-tags-by-class-method)
6822 (semanticdb-deep-find-tags-by-name-method)
6823 (semanticdb-deep-find-tags-for-completion-method):
6824 * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
6825 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
6826 (semanticdb-find-tags-for-completion-method)
6827 (semanticdb-find-tags-by-class-method)
6828 (semanticdb-deep-find-tags-for-completion-method):
6829 * cedet/semantic/db-find.el (semanticdb-find-translate-path)
6830 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
6831 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
6832 (semanticdb-find-tags-by-name-method)
6833 (semanticdb-find-tags-by-name-regexp-method)
6834 (semanticdb-find-tags-for-completion-method)
6835 (semanticdb-find-tags-by-class-method)
6836 (semanticdb-find-tags-external-children-of-type-method)
6837 (semanticdb-find-tags-subclasses-of-type-method)
6838 (semanticdb-deep-find-tags-by-name-method)
6839 (semanticdb-deep-find-tags-by-name-regexp-method)
6840 (semanticdb-deep-find-tags-for-completion-method):
6841 * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
6842 (semanticdb-enable-gnu-global-in-buffer)
6843 (semanticdb-find-tags-for-completion-method)
6844 (semanticdb-deep-find-tags-by-name-method)
6845 (semanticdb-deep-find-tags-for-completion-method):
6846 * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
6847 (javascript-mode, semanticdb-find-translate-path)
6848 (semanticdb-find-tags-for-completion-method)
6849 (semanticdb-find-tags-by-class-method)
6850 (semanticdb-deep-find-tags-by-name-method)
6851 (semanticdb-deep-find-tags-for-completion-method)
6852 (semanticdb-find-tags-external-children-of-type-method):
6853 * cedet/semantic/idle.el (semantic-idle-work-core-handler)
6854 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
6855 (global-semantic-idle-scheduler-mode):
6856 * cedet/srecode/dictionary.el (srecode-field-value)
6857 (srecode-dictionary-add-section-dictionary):
6858 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
6859 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
6860 (describe-class, eieio-describe-generic, describe-generic):
6861 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
6862 (eieio-speedbar-expand):
6863 * emulation/viper-cmd.el (viper-exec-form-in-vi)
6864 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
6865 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
6866 (viper-del-backward-char-in-replace, viper-backward-indent)
6867 (viper-brac-function, viper-register-to-point, viper-submit-report):
6868 * net/tramp.el (tramp-remote-coding-commands):
6869 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
6870 Fix typos in docstrings.
6871
6872 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
6873
6874 * mail/sendmail.el (mail-yank-original): Set the mark if the
6875 specified function for yanking does not do it.
6876
6877 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
6878
6879 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
6880
6881 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
6882 resyncing a directory.
6883
6884 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
6885
6886 * progmodes/ada-mode.el: Fix bug#1920.
6887 (ada-ident-re): Delete ., allow multibyte characters.
6888 (ada-goto-label-re): New; matches goto labels.
6889 (ada-block-label-re): New; matches block labels.
6890 (ada-label-re): New; matches both.
6891 (ada-named-block-re): Deleted; callers changed to use
6892 `ada-block-label-re' instead.
6893 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
6894 Use `ada-block-label-re'.
6895 (ada-indent-on-previous-lines): Improve handling of goto labels.
6896 (ada-get-indent-block-start): Special-case block label.
6897 (ada-get-indent-label): Split into `ada-indent-block-label' and
6898 `ada-indent-goto-label'.
6899 (ada-goto-stmt-start, ada-goto-next-non-ws):
6900 Optionally ignore goto labels.
6901 (ada-goto-next-word): Simplify.
6902 (ada-indent-newline-indent-conditional): Insert newline before
6903 trying to fix indentation; doc fix.
6904
6905 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
6906
6907 * calc/calc.el (calc-command-flags): Give it an initial value.
6908
6909 2010-01-17 Glenn Morris <rgm@gnu.org>
6910
6911 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
6912
6913 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
6914
6915 * cedet/semantic.el (semantic-mode):
6916 * files.el (minibuffer-with-setup-hook):
6917 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
6918 (artist-key-draw-continously, artist-key-do-continously-continously)
6919 (artist-key-set-point-continously, artist-mouse-draw-continously):
6920 Fix typos in docstrings.
6921
6922 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
6923
6924 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
6925 return t (Bug#3898).
6926
6927 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
6928
6929 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
6930 can parse the output of the external commands (Bug#5279).
6931
6932 2010-01-16 Jari Aalto <jari.aalto@cante.net>
6933
6934 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
6935
6936 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
6937
6938 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
6939
6940 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
6941
6942 * startup.el (command-line): Remove unused --icon-type arg.
6943 Handle --display arg, passing it to command-line-1 (Bug#5392).
6944
6945 2010-01-16 Mario Lang <mlang@delysid.org>
6946
6947 * cedet/ede/cpp-root.el (ede-cpp-root-project):
6948 * cedet/ede/files.el (ede-expand-filename):
6949 * cedet/ede/simple.el (ede-simple-project):
6950 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
6951 (semantic-complete-inline-tag-engine):
6952 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
6953 * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
6954 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
6955 * cedet/semantic/db.el (semanticdb-equivalent-mode):
6956 * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
6957 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
6958 * emacs-lisp/chart.el (chart-translate-namezone):
6959 * textmodes/artist.el (artist-compute-popup-menu-table):
6960 Remove duplicated words in doc-strings.
6961
6962 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
6963
6964 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
6965 to mairix-search to suppress threading (Bug#5342).
6966
6967 2010-01-15 Kenichi Handa <handa@m17n.org>
6968
6969 * international/mule-cmds.el (canonicalize-coding-system-name):
6970 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
6971
6972 2010-01-15 Glenn Morris <rgm@gnu.org>
6973
6974 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
6975
6976 * wid-edit.el (widget-keymap): Doc fix.
6977
6978 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
6979 former seems to be more widely accepted by various svn versions.
6980
6981 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
6982
6983 * find-cmd.el (find-constituents):
6984 * vc-arch.el (vc-arch-root):
6985 * window.el (window-body-height, pop-up-frames):
6986 * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
6987 (semantic-no-reparse-needed-change-hook):
6988 * cedet/srecode/insert.el (srecode-resolve-argument-list)
6989 (srecode-template-inserter-blank, srecode-template-inserter-variable)
6990 (srecode-template-inserter-ask, srecode-template-inserter-width)
6991 (srecode-template-inserter-section-start)
6992 (srecode-template-inserter-section-end, srecode-insert-method):
6993 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
6994 * progmodes/ada-stmt.el (ada-if):
6995 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
6996 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
6997 (ispell-encoding8-command, ispell-aspell-supports-utf8)
6998 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
6999
7000 * progmodes/flymake.el (flymake-post-syntax-check):
7001 Fix typo in error message.
7002
7003 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7004
7005 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
7006 which is always a string. (Bug#5313)
7007
7008 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7009
7010 * progmodes/ada-xref.el (ada-default-prj-properties):
7011 Simplify previous change.
7012
7013 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7014
7015 * progmodes/ada-xref.el (ada-default-prj-properties):
7016 Default ada_project_path to $ADA_PROJECT_PATH.
7017
7018 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7019
7020 * progmodes/ada-mode.el (ada-create-keymap):
7021 Override `narrow-to-defun' with `ada-narrow-to-defun'.
7022
7023 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7024
7025 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
7026 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
7027 (ada-get-current-indent, ada-imenu-generic-expression)
7028 (ada-which-function): Check for it.
7029
7030 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7031
7032 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
7033 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
7034
7035 2010-01-14 Glenn Morris <rgm@gnu.org>
7036
7037 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
7038
7039 2010-01-14 Kenichi Handa <handa@m17n.org>
7040
7041 * composite.el (auto-composition-mode): Make it a buffer local
7042 variable (permanent-local).
7043 (auto-composition-function): Set the default value to
7044 auto-compose-chars.
7045 (auto-composition-mode): Make it a simple function, not a minor mode.
7046 (global-auto-composition-mode): Likewise.
7047 (turn-on-auto-composition-if-enabled): Delete it.
7048
7049 2010-01-13 Karl Fogel <kfogel@red-bean.com>
7050
7051 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
7052
7053 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
7054
7055 * files.el (copy-directory): Compute target for recursive
7056 directories with identical names. (Bug#5343)
7057
7058 2010-01-12 Glenn Morris <rgm@gnu.org>
7059
7060 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
7061 it to bug-gnu-emacs rather than emacs-pretest-bug.
7062
7063 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
7064
7065 * cedet/data-debug.el (data-debug): Fix customization group reference.
7066
7067 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
7068
7069 * cedet/semantic/analyze.el (semantic-analyze-push-error)
7070 (semantic-analyze-context, semantic-analyze-context-assignment)
7071 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
7072 * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
7073 (semantic-java-doc-keywords-map):
7074 * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
7075 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
7076 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
7077 (semantic-c-classname, semantic-format-tag-uml-prototype)
7078 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
7079 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
7080 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
7081 (semantic-get-local-variables, semantic-end-of-command)
7082 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
7083 (lisp-mode):
7084 * cedet/semantic/bovine/make.el (makefile-mode):
7085 * cedet/semantic/wisent/python.el (wisent-python-string-re)
7086 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
7087 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
7088 (semantic-lex, semantic-get-local-variables, python-mode):
7089 * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
7090 * cedet/srecode/extract.el (srecode-extract-state-set)
7091 (srecode-extract-method): Fix typos in docstrings.
7092
7093 2010-01-11 Sam Steingold <sds@gnu.org>
7094
7095 * imenu.el (imenu-default-create-index-function): Detect infinite
7096 loops caused by imenu-prev-index-position-function.
7097
7098 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
7099
7100 * htmlfontify.el (htmlfontify-load-rgb-file)
7101 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
7102 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
7103 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
7104 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
7105 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
7106 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
7107 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
7108 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
7109 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
7110 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
7111 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
7112 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
7113 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
7114 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
7115 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
7116 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
7117 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
7118 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
7119 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
7120 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
7121 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
7122 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
7123 backslash-quoting from parentheses, etc.
7124
7125 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
7126
7127 * progmodes/js.el: Autoload javascript-mode alias.
7128
7129 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
7130
7131 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
7132 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
7133 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
7134 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
7135 Fix typos in docstrings.
7136 (ffap-url-regexp): Doc fix.
7137 (ffap-at-mouse): Fix typo in message.
7138
7139 2010-01-11 Glenn Morris <rgm@gnu.org>
7140
7141 * version.el (emacs-copyright): Set copyright year to 2010.
7142
7143 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
7144
7145 * format.el (format-annotate-function): Only set
7146 write-region-post-annotation-function after running to-fn so as not to
7147 affect nested write-region calls (bug#5273).
7148
7149 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
7150
7151 * cedet/semantic.el (semantic-new-buffer-setup-functions):
7152 Add python parser.
7153
7154 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
7155 wisent/python.el.
7156
7157 2010-01-10 Richard Kim <emacs18@gmail.com>
7158
7159 * cedet/semantic/wisent/python-wy.el:
7160 * cedet/semantic/wisent/python.el: New files.
7161
7162 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
7163
7164 * man.el (Man-goto-section): Signal error if the section is not
7165 found (Bug#5317).
7166
7167 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
7168
7169 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
7170 URLs with a leading triple slash in the file: scheme. (Bug#5345)
7171
7172 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
7173
7174 * progmodes/compile.el: Don't treat compile-command as safe if
7175 compilation-read-command might be nil (Bug#4218).
7176
7177 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
7178
7179 * startup.el (command-line-1): Use orig-argi to check for ignored X and
7180 NS options.
7181
7182 2010-01-08 Kenichi Handa <handa@m17n.org>
7183
7184 * international/fontset.el (build-default-fontset-data):
7185 Exclude characters in scripts kana, hangul, han, or cjk-misc.
7186
7187 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
7188
7189 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
7190 to `create-file-buffer' as it expects, not just a buffer name.
7191 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
7192 to help uniquify. (Bug#3224)
7193
7194 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
7195
7196 * font-setting.el (font-setting-change-default-font): Use user-spec
7197 instead of name.
7198
7199 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
7200
7201 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
7202
7203 2010-01-05 Tom Tromey <tromey@redhat.com>
7204
7205 * progmodes/python.el (python-font-lock-keywords):
7206 Handle qualified decorators (Bug#881).
7207
7208 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
7209
7210 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
7211 in a lightweight checkout.
7212
7213 2010-01-05 Kenichi Handa <handa@m17n.org>
7214
7215 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
7216
7217 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
7218
7219 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
7220
7221 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
7222
7223 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
7224 checkouts. (Bug#618)
7225 (vc-bzr-log-view-mode): Also highlight the author.
7226 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
7227 (vc-bzr-shelve-menu-map):
7228 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
7229 (vc-bzr-shelve-apply): Make prompt more explicit.
7230
7231 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
7232
7233 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
7234 They are valid characters in URL paths (rfc3986), and at least
7235 Firefox does not understand the encoded version (Bug#3166).
7236
7237 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
7238
7239 * progmodes/octave-mod.el (octave-end-keywords)
7240 (octave-block-begin-or-end-regexp, octave-block-match-alist):
7241 Add "end" keyword (Bug#3061).
7242 (octave-end-as-array-index-p): New function.
7243 (calculate-octave-indent): Use it.
7244
7245 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7246
7247 * bookmark.el: Consistently put the text property on the bookmark name.
7248 (bookmark-bmenu-marks-width): Bump back to 2, to include
7249 annotation marks.
7250 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
7251 property on the bookmark name, instead of not putting it at all.
7252 (bookmark-bmenu-list): Fix where we put the text property.
7253
7254 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7255
7256 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
7257 for showing buffer modified state (as added in the previous change).
7258
7259 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7260
7261 * bookmark.el: Show modified state of bookmark buffer more accurately.
7262 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
7263 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
7264 (with-buffer-modified-unmodified): New macro.
7265 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7266 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
7267 Use new macro to preserve the buffer modified state.
7268
7269 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7270
7271 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
7272 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
7273 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
7274 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
7275 (bookmark-bmenu-rename, bookmark-bmenu-locate)
7276 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
7277 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
7278
7279 2010-01-02 Eli Zaretskii <eliz@gnu.org>
7280
7281 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7282 Make the lines in the generated doc string shorter. (Bug#4668)
7283
7284 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
7285
7286 * net/rcirc.el: Add follow-link binding (Bug#4738).
7287
7288 2010-01-02 Eli Zaretskii <eliz@gnu.org>
7289
7290 * Makefile.in (bzr-update): Rename from cvs-update.
7291 (cvs-update): New target for backward compatibility.
7292
7293 * makefile.w32-in (bzr-update): Rename from cvs-update.
7294 (cvs-update): New target for backward compatibility.
7295
7296 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7297
7298 * bookmark.el: Remove gratuitous gratitude.
7299
7300 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7301
7302 * bookmark.el (bookmark-bmenu-any-marks): New function.
7303 (bookmark-bmenu-save): Clear buffer modification if no marks.
7304
7305 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7306
7307 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
7308 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
7309 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
7310 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
7311
7312 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
7313 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
7314 To: emacs-devel {_AT_} gnu.org
7315 Subject: bookmark.el bug report
7316 Date: Mon, 28 Dec 2009 14:19:16 +0800
7317 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
7318
7319 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7320
7321 * bookmark.el: Improvements suggested by Drew Adams:
7322 (bookmark-bmenu-ensure-position): New name for
7323 `bookmark-bmenu-check-position'. Just ensure the position,
7324 don't return any meaningful value.
7325 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
7326 New constants.
7327
7328 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
7329
7330 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
7331 (bookmark-yank-point, bookmark-bmenu-check-position):
7332 Fix typos in docstrings.
7333 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
7334 (bookmark-name-from-full-record, bookmark-get-position)
7335 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
7336 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
7337 Remove useless quoting of parenthesis, etc. in docstrings.
7338
7339 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
7340 (ediff-append-custom-diff): Fix typo in error message.
7341 (ediff-meta-mark-equal-files): Fix typos in messages.
7342
7343 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
7344
7345 * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
7346 Fix typo in docstring.
7347
7348 * net/imap-hash.el (imap-hash-make): Doc fix.
7349 (imap-hash-test): Fix typo in error message; reflow docstring.
7350 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
7351 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
7352 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
7353 Fix typos in docstrings.
7354 (imap-hash-open-connection): Fix typo in error message.
7355
7356 * play/gomoku.el (gomoku): Fix typos in docstring.
7357
7358 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
7359 (gdb-jsonify-buffer): Fix typos in docstring.
7360 (gdb-goto-breakpoint): Fix typo in error message.
7361 ("Display Other Windows"): Fix typo in help message.
7362 (gdb-speedbar-expand-node): Fix typo in question.
7363
7364 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
7365 (idlwave-html-system-help-location, idlwave-html-help-location)
7366 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
7367 (idlwave-help-browser-generic-args, idlwave-help-directory)
7368 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
7369 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
7370 (idlwave-online-help, idlwave-help-html-link)
7371 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
7372 Fix typos in docstrings.
7373 (idlwave-help-with-source, idlwave-help-find-routine-definition):
7374 Reflow docstrings.
7375 (idlwave-help-assistant-start): Fix typo in error message.
7376
7377 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
7378 (octave-electric-space): Fix typos in docstrings.
7379
7380 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
7381
7382 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
7383
7384 2010-01-01 Juri Linkov <juri@jurta.org>
7385
7386 * comint.el (comint-input-ring-size): Make it a defcustom and
7387 increase the default to 500 (Bug#5148).
7388
7389 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
7390
7391 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
7392 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
7393 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
7394
7395 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
7396
7397 Show working revision correctly for mercurial.
7398 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
7399 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
7400
7401 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
7402
7403 Declare some functions for the byte-compiler.
7404 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
7405 (speedbar-timer-fn, speedbar-change-expand-button-char)
7406 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
7407
7408 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
7409
7410 This changeset reverts GDB Graphical Interface to use annotations.
7411 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
7412
7413 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7414
7415 Make vc-dir work on subdirectories of the bzr root.
7416 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
7417 file names relative to it.
7418 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
7419 relative directory to vc-bzr-after-dir-status.
7420
7421 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
7422
7423 * font-lock.el (font-lock-refresh-defaults): New function, which
7424 can be used to let font-lock react to external changes in
7425 variables like font-lock-defaults and keywords.
7426 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
7427
7428 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
7429
7430 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
7431
7432 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
7433
7434 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
7435
7436 Supersede color.diff settings in git log (bug#5211).
7437
7438 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
7439 escape chars in its output when the user has color.diff set to `always'.
7440 This fix works on git 1.4.2 and newer (released on 2006-08-13).
7441
7442 2009-12-26 Kevin Ryde <user42@zip.com.au>
7443
7444 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
7445 node. Keep previous "Index" name to work with past coreutils too.
7446
7447 * man.el (man): Revise docstring a bit to show -a and -l as
7448 examples. Add -k description since support for it has otherwise
7449 been a secret. (Further to bug#3717.)
7450 (Man-bgproc-sentinel): When "-k foo" produces no output show error
7451 "no matches" rather than "Can't find manpage", as the latter reads
7452 like -k was interpreted as a page name, which is not so. (Bug#5431)
7453
7454 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
7455
7456 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
7457 switches. Check also for //SUBDIRED// line.
7458
7459 2009-12-25 Kenichi Handa <handa@m17n.org>
7460
7461 * language/indian.el (devanagari-composable-pattern): Fixed to
7462 handle ZWNJ and ZWJ. Use it in composition-function-table for
7463 Devanagari.
7464 (malayalam-composable-pattern): Fix previous change.
7465
7466 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7467
7468 * ps-print.el (ps-face-attributes): It was not returning the
7469 attribute face for faces specified as string. Reported by harven
7470 <harven@free.fr>. (Bug#5254)
7471 (ps-print-version): New version 7.3.5.
7472
7473 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
7474
7475 * calendar/icalendar.el (icalendar--convert-tz-offset):
7476 Fix timezone names.
7477 (icalendar--convert-tz-offset): Fix the "last-day-problem".
7478 (icalendar--add-diary-entry): Remove the trailing blank that
7479 diary-make-entry inserts.
7480
7481 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
7482
7483 Make `file-expand-wildcards' work for remote files.
7484
7485 * files.el (file-expand-wildcards): In case of remote files, check
7486 only local file name part for wildcards. Provide feature 'files
7487 and subfeature 'remote-wildcards. (Bug#5198)
7488
7489 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
7490 if there is already an established connection.
7491 (tramp-advice-file-expand-wildcards): Remove it.
7492
7493 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
7494 (tramp-advice-file-expand-wildcards): Move from tramp.el.
7495 Activate advice for older GNU Emacs versions. (Bug#5237)
7496
7497 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
7498
7499 Some doc fixes (more needed).
7500
7501 * find-cmd.el (find-constituents): Reflow docstring.
7502 (find-cmd, find-prune, find-command): Fix typos in docstrings.
7503 (find-generic): Doc fix.
7504
7505 2009-12-17 Juri Linkov <juri@jurta.org>
7506
7507 Fix regression from 23.1 to allow multiple modes in Local Variables.
7508
7509 * files.el (hack-local-variables-filter): While ignoring duplicates,
7510 don't take `mode' into account.
7511 (hack-local-variables-filter, hack-dir-local-variables):
7512 Don't remove duplicate `mode' from local-variables-alist (like `eval').
7513
7514 2009-12-17 Juri Linkov <juri@jurta.org>
7515
7516 Make `dired-diff' safer. (Bug#5225)
7517
7518 * dired-aux.el (dired-diff): Signal an error when `file' equals to
7519 `current' or when `file' is a directory of the `current' file.
7520
7521 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
7522
7523 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
7524 unconditionally preloaded files.
7525
7526 2009-12-16 Juri Linkov <juri@jurta.org>
7527
7528 Revert to old 23.1 logic of using the file at the mark as default.
7529 * dired-aux.el (dired-diff): Use the file at the mark as default
7530 if it's not the same as the current file, and the target dir is
7531 the current dir or the mark is active. Add the current file
7532 as the arg of `dired-dwim-target-defaults'. Use the default file
7533 in the prompt. (Bug#5225)
7534
7535 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
7536
7537 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
7538 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
7539 (tramp-check-for-regexp): Check also, when an echoing shell stops
7540 to echo sent commands.
7541
7542 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
7543
7544 * Makefile.in: Revert last change (Bug#5191).
7545
7546 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
7547
7548 * vc-hg.el (vc-hg-print-log): Fix argument order.
7549 (vc-hg-working-revision): Make sure the command is executed in a
7550 known environment so that we can parse the output. (Bug#4417)
7551
7552 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
7553
7554 * progmodes/python.el (python-symbol-completions): Remove text
7555 properties from symbol string before calling python-send-receive.
7556
7557 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
7558
7559 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
7560 when there are values for both file and line. (Bug#5060)
7561
7562 2009-12-14 Juri Linkov <juri@jurta.org>
7563
7564 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
7565 whitespace after the file name of the first line of unified format,
7566 because git-diff doesn't output whitespace and file modification time
7567 after the file name.
7568
7569 2009-12-14 David Kastrup <dak@gnu.org>
7570
7571 * info.el (Info-hide-cookies-node): Before hiding a cookie,
7572 check if it already has the `display' property added by
7573 `Info-display-images-node', and not put the `invisible' property
7574 in this case.
7575
7576 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
7577
7578 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
7579 (semantic-mru-bookmark-mode): Doc fixes.
7580
7581 * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
7582 of assert.
7583
7584 2009-12-13 Glenn Morris <rgm@gnu.org>
7585
7586 * mail/emacsbug.el (message-sort-headers): Define for compiler.
7587 (report-emacs-bug): In message-mode, sort manually before storing
7588 original report text. (Bug#5178)
7589 Remove superfluous save-excursion.
7590
7591 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
7592
7593 * net/dbus.el (dbus-property-handler): Filter lambda forms out
7594 when responding to "GetAll" properties.
7595
7596 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
7597
7598 * simple.el (compose-mail): Remove mail-setup-with-from from
7599 customization checks.
7600
7601 2009-12-12 Eli Zaretskii <eliz@gnu.org>
7602
7603 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
7604 RAR archives created on Unix systems.
7605
7606 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
7607
7608 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
7609 the varalias that was accidentally removed by the 2009-11-19 change
7610 (bug#5186).
7611
7612 2009-12-12 Kenichi Handa <handa@m17n.org>
7613
7614 * language/indian.el (indian-compose-regexp): New function.
7615 (malayalam-composable-pattern): Fix the pattern.
7616 (composition-function-table): Set malayalam-composable-pattern for
7617 Malayalam characters.
7618
7619 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
7620
7621 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
7622 rather than down-mouse-1, based on follow-link conventions.
7623
7624 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
7625 are compiled.
7626
7627 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
7628
7629 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
7630 (verilog-vmm-statement-re, verilog-ovm-statement-re)
7631 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
7632 (verilog-leap-to-head, verilog-backward-token):
7633 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
7634
7635 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
7636
7637 * progmodes/verilog-mode.el (verilog-auto-lineup)
7638 (verilog-nameable-item-re): Cleanup user-visible spelling and
7639 documentation errors. One reported by Gary Delp.
7640 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
7641 (verilog-read-decls): Fix AUTOWIRE with types declared in a
7642 package, bug195. Reported by Pierre-David Pfister.
7643
7644 2009-12-11 Glenn Morris <rgm@gnu.org>
7645
7646 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
7647
7648 * mail/emacsbug.el: No longer require sendmail.
7649 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
7650 (report-emacs-bug-orig-text): Doc fix.
7651 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
7652 New local variables, to adapt to different mail-user-agents.
7653 (report-emacs-bug): Fix test for a gnu.org address.
7654 Use overlays for emphasis, since font-lock defeats 'face property.
7655 Pretest bugs also end up at the newsgroup these days.
7656 Stop message-mode stripping text properties.
7657 Set and use the new buffer-local variables.
7658 (report-emacs-bug-hook): Add doc-string.
7659 Remove some unnecessary save-excursions and simplify.
7660 Use the appropriate hook and send-command.
7661
7662 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
7663 capitalization of some menu entries.
7664
7665 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7666
7667 * whitespace.el (whitespace-display-char-on):
7668 Ensure `buffer-display-table' is unique when two or more windows are
7669 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
7670 New version 12.1.
7671
7672 2009-12-10 Eli Zaretskii <eliz@gnu.org>
7673
7674 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
7675 characters in the Attribute field.
7676
7677 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
7678
7679 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
7680
7681 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
7682
7683 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
7684 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7685 Disregard autoload-excludes.
7686 (update-directory-autoloads): Obey autoload-excludes here instead.
7687 But don't store its contents in no-autoloads and remove entries that
7688 refer to excludes files.
7689
7690 2009-12-10 Glenn Morris <rgm@gnu.org>
7691
7692 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
7693 (expand-mail-aliases): Define for compiler.
7694
7695 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
7696 Define for compiler.
7697
7698 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
7699 appropriate for the mail-user-agent in use.
7700
7701 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
7702
7703 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
7704
7705 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
7706
7707 Fix short log parsing and fontification.
7708 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
7709 Fix fontification for the [merge] label.
7710
7711 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
7712
7713 Drop some properties to avoid surprises (bug#5002).
7714 * htmlfontify.el (hfy-ignored-properties): New defcustom.
7715 (hfy-fontify-buffer): Use it.
7716
7717 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
7718
7719 Minor cleanup.
7720 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
7721 Adjust all callers.
7722 (ffap-locate-file): Remove unused arg `dir-ok' and make other
7723 args compulsory. Adjust callers.
7724 (ffap-gopher-at-point): Remove unused var `name'.
7725
7726 Get rid of the ELCFILES abomination.
7727 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
7728 (compile-elcfiles): New phony target.
7729 (compile-main): Compute ELCFILES dynamically.
7730 (compile-clean): New target to remove left-over elc files.
7731 (compile, all): Use it.
7732
7733 2009-12-09 Kenichi Handa <handa@etlken>
7734
7735 * international/mule-diag.el: Require help-mode instead of help-fns.
7736
7737 2009-12-09 Kenichi Handa <handa@m17n.org>
7738
7739 * international/mule-cmds.el (ucs-names): Supply sufficiently
7740 fine ranges instead of pre-calculating accurate ranges.
7741 Iterate with bigger gc-cons-threshold.
7742
7743 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
7744
7745 Add support for stashing a snapshot of the current tree.
7746 * vc-git.el (vc-git-stash-snapshot): New function.
7747 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
7748
7749 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
7750
7751 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
7752 instead of `(beginning|end)-of-line'.
7753
7754 2009-12-08 Glenn Morris <rgm@gnu.org>
7755
7756 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
7757
7758 * Makefile.in (ELCFILES): Regenerate.
7759
7760 2009-12-07 Juri Linkov <juri@jurta.org>
7761
7762 Don't lazy-highlight the comint output in history Isearch mode.
7763
7764 * comint.el (comint-history-isearch-search): Instead of
7765 `comint-line-beginning-position', use `comint-after-pmark-p'
7766 to check if point if before the process mark, and go to
7767 `process-mark' in this case.
7768
7769 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
7770
7771 * textmodes/tex-mode.el (latex-complete)
7772 (latex-indent-or-complete): Remove.
7773 (latex-mode): Set completion-at-point-functions instead.
7774
7775 Provide a standard completion command and hook it into TAB.
7776 * minibuffer.el (completion-at-point-functions): New var.
7777 (completion-at-point): New command.
7778 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
7779 * progmodes/python.el (python-mode-map): Use completion-at-point.
7780 (python-completion-at-point): Rename from python-partial-symbol and
7781 adjust for use in completion-at-point-functions.
7782 (python-mode): Setup completion-at-point for Python completion.
7783 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
7784 extracted from lisp-complete-symbol.
7785 (lisp-complete-symbol): Use it.
7786 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
7787 setup completion-at-point for Elisp completion.
7788 (emacs-lisp-mode-map, lisp-interaction-mode-map):
7789 Use completion-at-point.
7790 * ielm.el (ielm-map): Use completion-at-point.
7791 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
7792 * progmodes/sym-comp.el: Move to...
7793 * obsolete/sym-comp.el: Move from progmodes.
7794
7795 2009-12-07 Eli Zaretskii <eliz@gnu.org>
7796
7797 Prevent save-buffer in Rmail buffers from using the coding-system
7798 of the current message, and from clobbering the encoding mnemonics
7799 in the mode line (Bug#4623).
7800
7801 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
7802 flag, too.
7803 (rmail-message-encoding): New variable.
7804 (rmail-write-region-annotate): Record the encoding of the current
7805 message in rmail-message-encoding.
7806 (rmail-after-save-hook): New function, restores the encoding of
7807 the current message after the message collection is saved.
7808
7809 2009-12-07 Juri Linkov <juri@jurta.org>
7810
7811 * progmodes/grep.el (grep-read-files): Use `completing-read'
7812 instead of `read-string'. Set its `collection' arg to
7813 `read-file-name-internal'. (Bug#4301)
7814
7815 2009-12-07 Juri Linkov <juri@jurta.org>
7816
7817 Correctly restore original Isearch point. (Bug#4994)
7818
7819 * isearch.el (isearch-mode): Move `isearch-push-state' after
7820 `(run-hooks 'isearch-mode-hook)'.
7821 (isearch-cancel): When `isearch-push-state-function' is defined,
7822 let-bind `isearch-cmds' to the first state (the last element of
7823 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
7824 function and restores the original point). Otherwise, move point
7825 to `isearch-opoint'.
7826
7827 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
7828
7829 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
7830 chars that don't have names, so the table can be built much faster at
7831 run-time.
7832
7833 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
7834
7835 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
7836 change. Suggested by David Kastrup.
7837
7838 * simple.el (compose-mail): Check for incompatibilities and warn.
7839 (compose-mail-user-agent-warnings): New option.
7840
7841 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
7842
7843 Support showing a single log entry from vc-annotate.
7844 * vc.el (print-log): Add a new argument: START-REVISION.
7845 (vc-print-log-internal): Add a new optional argument and
7846 pass it to the backend.
7847 (vc-print-log, vc-print-root-log): Adjust callers.
7848 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
7849 buffer already displays the requested log entry, use it.
7850 Otherwise display only the log entry in question.
7851 * vc-svn.el (vc-svn-print-log):
7852 * vc-mtn.el (vc-mtn-print-log):
7853 * vc-hg.el (vc-hg-state):
7854 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
7855 (vc-git-show-log-entry): Return t on success.
7856 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
7857 (vc-bzr-show-log-entry): Return t on success.
7858 * vc-rcs.el (vc-rcs-print-log):
7859 * vc-sccs.el (vc-sccs-print-log):
7860 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
7861
7862 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
7863
7864 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
7865 Add menus to the meta mode. (Bug#5043)
7866
7867 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
7868
7869 * ediff-init.el (ediff-event-key): Use event-to-character instead of
7870 event-key.
7871
7872 * ediff.el (ediff-buffers-internal): Add unwind-protect.
7873
7874 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
7875
7876 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
7877 Berbain <raphael.berbain@gmail.com>.
7878
7879 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
7880 characters.
7881 (tramp-initial-end-of-output): New defconst.
7882 (tramp-methods, tramp-find-shell)
7883 (tramp-open-connection-setup-interactive-shell)
7884 (tramp-maybe-open-connection): Use it.
7885 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
7886 existence of `#' and `$'.
7887
7888 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
7889 `tramp-initial-end-of-output'.
7890
7891 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
7892
7893 Get the background mode from the terminal for xterm, and set
7894 faces accordingly.
7895 * term/xterm.el (xterm-set-background-mode): New function.
7896 (terminal-init-xterm): Use it in case xterm supports background
7897 color queries. Recompute faces after getting the background
7898 color.
7899
7900 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
7901
7902 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
7903 number comment back on its own line, for easier parsing.
7904
7905 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
7906
7907 Make it work for non-file buffers (bug#5102).
7908 * doc-view.el (doc-view-current-cache-dir):
7909 Use doc-view-buffer-file-name rather than buffer-file-name.
7910 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
7911
7912 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
7913
7914 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
7915 author field is too short.
7916
7917 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
7918
7919 * vc-git.el (vc-git-print-log): Handle a limit argument.
7920 Display the short log in graph form and with labels.
7921 (vc-git-log-view-mode): Handle labels.
7922
7923 Make vc-revert change VC state from 'added to 'unregistered.
7924 * vc-git.el (vc-git-revert): Call git reset first.
7925
7926 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
7927
7928 * net/newst-backend.el, net/newst-plainview.el:
7929 * net/newst-reader.el, net/newst-ticker.el:
7930 * net/newst-treeview.el, net/newsticker.el:
7931 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
7932
7933 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
7934
7935 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
7936
7937 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
7938 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
7939 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
7940 Update annotation regexp.
7941
7942 * simple.el (beginning-of-visual-line): Constrain to field
7943 boundaries (Bug#5106).
7944
7945 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
7946
7947 * xml.el (xml-substitute-numeric-entities): Move
7948 newsticker--decode-numeric-entities in newst-backend.el to
7949 xml-substitute-numeric-entities in xml.el. (Bug#5008)
7950 * net/newst-backend.el (newsticker--parse-generic-feed)
7951 (newsticker--parse-generic-items)
7952 (newsticker--decode-numeric-entities): Move
7953 newsticker--decode-numeric-entities in newst-backend.el to
7954 xml-substitute-numeric-entities in xml.el. (Bug#5008)
7955
7956 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
7957
7958 * progmodes/js.el (js--js-not): Add null to the list of values.
7959
7960 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
7961
7962 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
7963
7964 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7965
7966 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
7967 delimiter if it is at the end of the current line.
7968 (bibtex-generate-url-list): Fix docstring.
7969
7970 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
7971
7972 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
7973 minibuffer's content with itself.
7974 Fold the confirm-after-completion case into the `confirm' case.
7975 (completion-pcm-word-delimiters): Add : and / to the delimiters.
7976
7977 2009-12-06 Kevin Ryde <user42@zip.com.au>
7978
7979 * ffap.el (ffap-rfc-path): Make this a defcustom since
7980 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
7981
7982 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
7983 manuals, similar to existing setup for help-mode. (Bug#3913.)
7984
7985 2009-12-05 Juri Linkov <juri@jurta.org>
7986
7987 Save and restore dired buffer's point positions too. (Bug#4880)
7988
7989 * dired.el (dired-save-positions): Return in the first element
7990 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
7991 Doc fix.
7992 (dired-restore-positions): First restore buffer's position.
7993 While restoring window's positions, check if window still displays
7994 the original buffer.
7995
7996 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
7997
7998 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
7999 if possible.
8000
8001 * cedet/semantic/ia.el (semantic-ia-complete-symbol):
8002 Make argument optional.
8003
8004 * shell.el (shell): Require ansi-color (Bug#5113).
8005
8006 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
8007
8008 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
8009
8010 2009-12-05 Alan Mackenzie <acm@muc.de>
8011
8012 * progmodes/cc-mode.el (c-before-hack-hook)
8013 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
8014 `c-file-style' to work again. This reversion restores the current
8015 software to its state in Emacs 23.1. (Bug#4146)
8016
8017 2009-12-05 Kevin Ryde <user42@zip.com.au>
8018
8019 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
8020 comment-start-skip to comment-end-skip as comment (Bug#4781).
8021
8022 2009-12-05 Juri Linkov <juri@jurta.org>
8023
8024 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
8025 for virtual nodes. (Bug#4147)
8026 (Info-find-node-2): Set `Info-current-node-virtual' to nil
8027 when moving from a virtual node.
8028 (Info-mode-menu): Add `Info-virtual-index' to the menu.
8029 (Info-mode): Add `Info-virtual-index' to the docstring.
8030
8031 2009-12-05 Eric Ludlam <zappo@gnu.org>
8032
8033 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
8034 Describe project macro symbols.
8035
8036 * cedet/semantic/complete.el (semantic-complete-do-completion):
8037 Don't call semantic-collector-current-exact-match.
8038
8039 * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
8040 ede-objects as targets.
8041
8042 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
8043 a target's object list even if compiler vars are already in the
8044 Makefile.
8045
8046 * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
8047 list of headers producing necessary macros.
8048
8049 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8050
8051 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
8052 track of the buffer position of the end of a BibTeX entry as this
8053 position may change during reformatting.
8054 (bibtex-format-entry): Remove whitespace before processing
8055 numerical fields so that we recognize the latter properly.
8056 (bibtex-reformat): Do not use push which changes the global value
8057 of bibtex-entry-format.
8058 (bibtex-field-braces-alist, bibtex-field-strings-alist)
8059 (bibtex-field-re-init): Replace only space characters by regexp
8060 for whitespace.
8061 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
8062 (bibtex-initialize): Also update bibtex-strings.
8063 (bibtex-kill-field): Preserve white space at end of entry.
8064 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
8065 Update bibtex-reference-keys.
8066
8067 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
8068
8069 * minibuffer.el (completion-pcm--merge-try): Also consider placing
8070 point after a star, if that's the only place where modifications can
8071 make progress.
8072
8073 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
8074
8075 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
8076 in docstrings.
8077
8078 2009-12-04 Juri Linkov <juri@jurta.org>
8079
8080 * proced.el (proced): Call `(proced-update t)' to update process
8081 information instead of only running proced-post-display-hook.
8082 (proced-send-signal): Add a leading space to the buffer name
8083 " *Marked Processes*" to make this buffer ephemeral.
8084
8085 2009-12-04 Juri Linkov <juri@jurta.org>
8086
8087 * dired.el (dired-auto-revert-buffer): New defcustom.
8088 (dired-internal-noselect): Use it.
8089
8090 2009-12-04 Juri Linkov <juri@jurta.org>
8091
8092 Change roles of modes and functions in image-mode.el (Bug#5062).
8093
8094 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
8095 in `auto-mode-alist'.
8096 (image-mode-previous-major-mode): New variable.
8097 (image-minor-mode-map): Rename from `image-mode-text-map'.
8098 (image-mode): Move graceful error-handling code from
8099 `image-minor-mode' to here. On errors call `image-mode-as-text'.
8100 (image-minor-mode): Remove all image-handling code.
8101 Replace `image-mode-text-map' with `image-minor-mode-map'.
8102 Check for `image-type' in mode-line format string.
8103 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
8104 (image-mode-as-text): New function with most code from
8105 `image-mode-maybe'.
8106 (image-toggle-display-text): Move code that removes image
8107 properties from `image-toggle-display' to here.
8108 (image-toggle-display-image): New function with code that adds
8109 image properties copied from `image-toggle-display'.
8110 (image-toggle-display): Remove most code with leaving only code
8111 that toggles between `image-mode-as-text' and `image-mode'.
8112
8113 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
8114
8115 * net/newst-treeview.el
8116 (newsticker--treeview-list-highlight-start): Restored call to
8117 save-excursion: Selected item was stuck.
8118 (newsticker--treeview-list-select): New.
8119 (newsticker--treeview-item-show-text)
8120 (newsticker--treeview-item-show)
8121 (newsticker--treeview-item-update): Use new
8122 newsticker-treeview-item-mode.
8123 (newsticker-treeview-update): Keep current item.
8124 (newsticker-treeview-next-new-or-immortal-item): Doc change.
8125 (newsticker--treeview-first-feed): Doc change.
8126 (newsticker-treeview-list-menu)
8127 (newsticker-treeview-item-menu): Added menu entries.
8128 (newsticker-treeview-item-mode): New.
8129
8130 * net/newst-backend.el (newsticker-customize): Delete other
8131 windows.
8132
8133 2009-12-04 Sam Steingold <sds@gnu.org>
8134
8135 * log-view.el (log-view-mode-map): "q" calls quit-window,
8136 like in all the other non-self-insert buffers.
8137
8138 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
8139
8140 Minor cleanup.
8141 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
8142 key decoding rather than do it manually via last-input-event +
8143 ascii-character.
8144 (term-exec): Use delete-and-extract-region.
8145 (term-handle-ansi-terminal-messages): Remove unused var `end'.
8146 (term-process-pager): Remove unused var `i'.
8147 (term-dynamic-simple-complete): Make obsolete.
8148 (serial-update-config-menu): Remove unused vars `y' and `str'.
8149 (term-update-mode-line): Remove unused var `temp'.
8150
8151 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8152
8153 Limit the number of log entries displayed by default.
8154 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
8155 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
8156 using a prefix argument.
8157
8158 2009-12-03 Glenn Morris <rgm@gnu.org>
8159
8160 * progmodes/idlwave.el (class): Restore still useful declaration.
8161
8162 2009-12-03 Alan Mackenzie <acm@muc.de>
8163
8164 Enhance `c-parse-state' to run efficiently in "brace deserts".
8165
8166 * progmodes/cc-mode.el (c-basic-common-init):
8167 Call c-state-cache-init.
8168 (c-neutralize-syntax-in-and-mark-CPP): Rename from
8169 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
8170 placing `category' properties value 'c-cpp-delimiter at its boundaries.
8171
8172 * progmodes/cc-langs.el (c-before-font-lock-function):
8173 c-extend-and-neutralize-syntax-in-CPP has been renamed
8174 c-neutralize-syntax-in-and-mark-CPP.
8175
8176 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
8177 with `category' properties now, not `syntax-table' ones.
8178
8179 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
8180 enhanced (but slower) version of c-end-of-macro that won't land
8181 inside a literal or on another awkward character.
8182 (c-state-cache-too-far, c-state-cache-start)
8183 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
8184 (c-state-nonlit-pos-cache-limit, c-state-point-min)
8185 (c-state-point-min-lit-type, c-state-point-min-lit-start)
8186 (c-state-min-scan-pos, c-state-brace-pair-desert)
8187 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
8188 buffer local variables.
8189 (c-state-literal-at, c-state-lit-beg)
8190 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
8191 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
8192 (c-state-cache-top-paren, c-state-cache-after-top-paren)
8193 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
8194 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
8195 (c-renarrow-state-cache)
8196 (c-append-lower-brace-pair-to-state-cache)
8197 (c-state-push-any-brace-pair, c-append-to-state-cache)
8198 (c-remove-stale-state-cache)
8199 (c-remove-stale-state-cache-backwards, c-state-cache-init)
8200 (c-invalidate-state-cache-1, c-parse-state-1)
8201 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
8202 (c-parse-state): Enhance and refactor.
8203 (c-debug-parse-state): Amend to deal with all the new variables.
8204
8205 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
8206 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
8207 modify to use category text properties rather than syntax-table ones.
8208 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
8209 to switch off/on the syntactic paren property of C++ template
8210 delimiters using the category property.
8211 (c-with-<->-as-parens-suppressed): Macro to invoke code with
8212 template delims suppressed.
8213 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
8214 New constant/macros which apply category properties to the start
8215 and end of preprocessor constructs.
8216 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
8217 "comment out" the syntactic value of characters in preprocessor
8218 constructs.
8219 (c-with-cpps-commented-out)
8220 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
8221 with characters in all or all but one preprocessor constructs
8222 "commented out".
8223
8224 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8225
8226 * proced.el (proced-filter-alist): Use regexp-quote.
8227
8228 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
8229
8230 Cleanup.
8231 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
8232 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
8233 arguments. Expand `default-directory'.
8234
8235 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
8236 the benefit of returning an expanded localname.
8237 (tramp-tramp-file-p): Handle the case NAME is not a string.
8238
8239 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8240
8241 Add support for bzr shelve/unshelve.
8242 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8243 (vc-bzr-extra-menu-map): New variables.
8244 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
8245 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
8246 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
8247 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
8248 (vc-bzr-dir-extra-headers): Display shelves.
8249
8250 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
8251
8252 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8253
8254 * textmodes/bibtex.el (bibtex-complete-internal):
8255 Use completion-in-region.
8256 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
8257
8258 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8259
8260 Support applying stashes. Improve UI.
8261 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
8262 (vc-git-stash-apply, vc-git-stash-pop)
8263 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
8264 (vc-git-stash-menu): New functions.
8265 (vc-git-stash-menu-map): New variable.
8266 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
8267
8268 2009-12-03 Glenn Morris <rgm@gnu.org>
8269
8270 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
8271 (vc-print-log-internal): Fix previous change.
8272 (vc-revert): Correct pluralization.
8273
8274 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8275
8276 * progmodes/make-mode.el (makefile-special-targets-list): No need for
8277 it to be an alist any more.
8278 (makefile-complete): Use completion-in-region.
8279
8280 * progmodes/octave-mod.el (octave-complete-symbol):
8281 Use completion-in-region.
8282
8283 Misc cleanup.
8284 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
8285 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
8286 (idlwave-complete-class): Don't quote lambda.
8287 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
8288 (idlwave-mode-map): Move initialization into declaration.
8289 (idlwave-action-and-binding): Use backquotes.
8290 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
8291 Simplify.
8292 (idlwave-is-pointer-dereference): Remove unused var `pos'.
8293 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
8294 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
8295 `parts', and `all-parts'.
8296 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
8297 (idlwave-convert-xml-system-routine-info): Remove unused string
8298 `version-string'.
8299 (idlwave-display-user-catalog-widget): Use dolist.
8300 (idlwave-scanning-lib): Declare dynamically-scoped var.
8301 (idlwave-scan-library-catalogs): Remove unused var `flags'.
8302 (completion-highlight-first-word-only): Declare to silence bytecomp.
8303 (idlwave-popup-select): Tighten scope of `resp'.
8304 (idlwave-find-struct-tag): Remove unused var `beg'.
8305 (idlwave-after-load-rinfo-hook): Declare.
8306 (idlwave-sintern-class-info): Remove unused var `taglist'.
8307 (idlwave-find-class-definition): Remove unused var `list'.
8308 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
8309 (idlwave-what-module-find-class): Remove unused var `classes'.
8310
8311 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
8312
8313 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
8314
8315 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8316
8317 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
8318 buffers visited. Remove redundant current-buffer-saving.
8319
8320 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8321
8322 Use completion-in-buffer and remove uses of dynamic scoping.
8323 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
8324 (pascal-buffer-to-use, pascal-flag): Don't declare.
8325 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
8326 (pascal-get-completion-decl, pascal-keyword-completion):
8327 Add `pascal-str' argument, save-excursion,
8328 return the found completions, and don't filter with pascal-pred.
8329 (pascal-completion-cache): New var.
8330 (pascal-completion): Don't switch buffer any more (it was never
8331 necessary). Don't save-excursion any more (it's done by the called
8332 subroutines). Use a cache to avoid redundant computations.
8333 Use complete-with-action rather than pascal-completion-response and
8334 let it apply the predicate as well.
8335 (pascal-complete-word): Use completion-in-buffer when
8336 pascal-toggle-completions is nil.
8337 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
8338 not used any more.
8339 (pascal-comp-defun): Don't change buffer any more.
8340 Use complete-with-action rather than pascal-completion-response and
8341 let it apply the predicate as well.
8342 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
8343 when neded.
8344
8345 2009-12-02 Kenichi Handa <handa@m17n.org>
8346
8347 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
8348 shape for all Indic scripts.
8349
8350 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8351
8352 Use completion-in-buffer.
8353 * wid-edit.el (widget-field-text-end): New function.
8354 (widget-field-value-get): Use it.
8355 (widget-string-complete, widget-file-complete)
8356 (widget-color-complete): Use it and completion-in-region.
8357 (widget-complete): Don't narrow the buffer.
8358
8359 2009-12-02 Glenn Morris <rgm@gnu.org>
8360
8361 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
8362 (rmail-select-summary): Use rmail-pop-to-buffer.
8363 * mail/rmailsum.el: Replace all pop-to-buffer calls with
8364 rmail-pop-to-buffer, to prevent horizontal splits.
8365
8366 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
8367 save-excursion with save-current-buffer.
8368 Widen before searching. (Bug#5093)
8369 (diary-list-sexp-entries): Remove superfluous save-excursion.
8370
8371 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
8372
8373 * woman.el (woman-make-bufname): Handle man-pages with "." in the
8374 name. (Bug#5038)
8375
8376 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
8377
8378 * ido.el (ido-file-internal): Handle filenames at point that do
8379 not have a directory part. (Bug#5049)
8380
8381 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
8382
8383 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
8384 (mpc-songs-jump-to, mpc-resume): Doc fixes.
8385
8386 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
8387
8388 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
8389 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
8390 any more.
8391
8392 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8393
8394 * comint.el (comint-insert-input): Ignore clicks to the right of
8395 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
8396
8397 * vc.el (vc-print-log-internal): Don't wait for the process to
8398 terminate before setting up the major mode.
8399
8400 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
8401 in case.
8402
8403 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
8404 the last element.
8405
8406 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
8407
8408 2009-12-01 Glenn Morris <rgm@gnu.org>
8409
8410 * window.el (window--display-buffer-2): Fix previous changes.
8411
8412 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
8413
8414 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
8415
8416 2009-12-01 Glenn Morris <rgm@gnu.org>
8417
8418 * Makefile.in (ELCFILES): Add mpc.elc.
8419
8420 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8421
8422 * mpc.el: New file.
8423
8424 2009-12-01 Glenn Morris <rgm@gnu.org>
8425
8426 * window.el (window-to-use): Define for compiler.
8427
8428 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
8429 consistent with others (no final period).
8430
8431 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
8432 (rmail-mime-show): Downcase the encoding. (Bug#5070)
8433
8434 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
8435
8436 Make vc-print-log buttons work.
8437 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
8438
8439 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
8440
8441 * savehist.el (savehist-autosave-interval): Allow setting to nil
8442 through customize. (Bug#5056)
8443
8444 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
8445
8446 Fix references to jit-lock properties.
8447 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
8448 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
8449 (perl-font-lock-special-syntactic-constructs):
8450 Quote jit-lock-defer-multiline property.
8451
8452 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
8453
8454 * vc-git.el (vc-git-registered): Call vc-git-root only once.
8455
8456 2009-11-30 Juri Linkov <juri@jurta.org>
8457
8458 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
8459 value `buffer' of `multi-isearch-next-buffer-current-function'.
8460 Use `(current-buffer)' when `buffer' is nil.
8461 (multi-isearch-next-buffer-from-list): Don't fallback to
8462 `(current-buffer)' when `buffer' is nil. (Bug#4947)
8463
8464 2009-11-30 Juri Linkov <juri@jurta.org>
8465
8466 * misearch.el (multi-isearch-read-buffers): Move canonicalization
8467 of buffers with `get-buffer' to `multi-isearch-buffers'.
8468 (multi-isearch-buffers, multi-isearch-buffers-regexp):
8469 Canonicalize BUFFERS with `get-buffer'. Doc fix.
8470 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
8471 FILES with `expand-file-name' converting relative file names
8472 to absolute. Doc fix. (Bug#4727)
8473
8474 2009-11-30 Juri Linkov <juri@jurta.org>
8475
8476 * misearch.el (multi-isearch-read-buffers)
8477 (multi-isearch-read-matching-buffers): New functions.
8478 (multi-isearch-buffers, multi-isearch-buffers-regexp):
8479 Use them in the `interactive' spec. Doc fix.
8480 (multi-isearch-read-files, multi-isearch-read-matching-files):
8481 New functions.
8482 (multi-isearch-files, multi-isearch-files-regexp):
8483 Use them in the `interactive' spec. Doc fix. (Bug#4725)
8484
8485 2009-11-30 Juri Linkov <juri@jurta.org>
8486
8487 * doc-view.el (doc-view-continuous):
8488 Rename from `doc-view-continuous-mode'.
8489 (doc-view-menu): Move "Toggle display" to the top.
8490 Add submenu "Continuous" with radio buttons "Off"/"On"
8491 and "Save as Default".
8492 (doc-view-scroll-up-or-next-page)
8493 (doc-view-scroll-down-or-previous-page)
8494 (doc-view-next-line-or-next-page)
8495 (doc-view-previous-line-or-previous-page): Rename
8496 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
8497
8498 2009-11-30 Juri Linkov <juri@jurta.org>
8499
8500 * comint.el (comint-mode-map): Rebind `M-r' from
8501 `comint-previous-matching-input' to
8502 `comint-history-isearch-backward-regexp'.
8503 Unbind `M-s' to allow global key binding `M-s'.
8504 Add menu items for `comint-history-isearch-backward' and
8505 `comint-history-isearch-backward-regexp'. (Bug#3746)
8506
8507 2009-11-30 Juri Linkov <juri@jurta.org>
8508
8509 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
8510 For def=recenter, replace `recenter' with `recenter-top-bottom'
8511 that is called with `this-command' and `last-command' let-bound
8512 to `recenter-top-bottom'. When the last `def' was not `recenter',
8513 set `recenter-last-op' to nil. (Bug#4981)
8514
8515 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
8516
8517 Minor cleanup and simplification.
8518 * filecache.el (file-cache-add-directory)
8519 (file-cache-add-directory-recursively)
8520 (file-cache-add-from-file-cache-buffer)
8521 (file-cache-delete-file-regexp, file-cache-delete-directory)
8522 (file-cache-files-matching-internal, file-cache-display): Use dolist.
8523 (file-cache-temp-minibuffer-message): Delete function.
8524 (file-cache-minibuffer-complete): Use minibuffer-message instead.
8525
8526 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
8527 Don't signal an error when bumping into EOB in tr, s, or y.
8528
8529 2009-11-29 Juri Linkov <juri@jurta.org>
8530
8531 * startup.el (fancy-about-text): Fix wording of Guided Tour.
8532 (Bug#4960)
8533
8534 * descr-text.el (describe-char-unidata-list): Use lowercase name
8535 for "Unicode name" like in other tags.
8536
8537 2009-11-29 Juri Linkov <juri@jurta.org>
8538
8539 * ediff-util.el (ediff-minibuffer-with-setup-hook):
8540 New compatibility macro.
8541 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
8542
8543 2009-11-29 Juri Linkov <juri@jurta.org>
8544
8545 Add defcustom to define the cycling order of `recenter-top-bottom'.
8546 (Bug#4981)
8547
8548 * window.el (recenter-last-op): Doc fix.
8549 (recenter-positions): New defcustom.
8550 (recenter-top-bottom): Rewrite to use `recenter-positions'.
8551 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
8552
8553 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
8554
8555 Improve integration of Tramp and ange-ftp in eshell.
8556
8557 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
8558 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
8559 (eshell/sudo): Flatten args. Let-bind `default-directory'.
8560
8561 * eshell/esh-util.el (top): Require also Tramp when compiling.
8562 (eshell-directory-files-and-attributes): Check for FTP remote
8563 connection.
8564 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
8565 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
8566 (eshell-file-attributes): Handle ".". Return `entry'.
8567
8568 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
8569 (ange-ftp-directory-files-and-attributes)
8570 (ange-ftp-real-directory-files-and-attributes): New defuns.
8571
8572 * net/tramp.el (tramp-maybe-open-connection): Open the remote
8573 shell with "exec" when possible. This prevents trailing prompts
8574 in `start-file-process'.
8575
8576 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
8577
8578 Try and remove assumptions about point-min==1.
8579 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
8580 (rng-compute-mode-line-string): Show the validation percentage in
8581 terms of the narrowed text, not the widened text.
8582 (rng-do-some-validation): Don't catch internal errors when debugging.
8583 (rng-first-error): Simplify.
8584 (rng-after-change-function): Remove work around. AFAIK the bug has
8585 been fixed a while ago.
8586
8587 * image-mode.el (image-minor-mode): Exit more gracefully when the image
8588 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
8589
8590 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
8591
8592 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
8593 `cd' doesn't always do it for us (bug#5067).
8594
8595 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
8596 on 2009-10-25 as part of some other change (bug#5067).
8597
8598 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
8599
8600 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
8601 `suspicious'.
8602 (byte-compile-warnings): Use byte-compile-warning-types.
8603 (byte-compile-save-excursion): Warn about use of set-buffer right
8604 after save-excursion.
8605
8606 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
8607 the excursion as well.
8608
8609 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
8610
8611 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
8612 providing a Tramp related implementation of "su" and "sudo".
8613 (eshell-unix-initialize): Add "su" and "sudo".
8614
8615 2009-11-27 Daiki Ueno <ueno@unixuser.org>
8616
8617 * net/socks.el (socks-send-command): Convert binary request to
8618 unibyte before sending. This fixes mishandling of some port
8619 numbers such as 129.
8620
8621 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
8622
8623 * help.el (describe-bindings-internal): Remove `interactive'.
8624
8625 * man.el (Man-completion-table): Trim a terminating "(".
8626 Remove the space between name page a section.
8627 Add the command's description on the `help-echo' property.
8628 Remove `process-connection-type' binding since it's unused by
8629 call-process.
8630 Provide completion for the "<section> <name>" format as well.
8631 (Man-default-man-entry): Remove spurious var shadowing the argument.
8632
8633 2009-11-26 Kevin Ryde <user42@zip.com.au>
8634
8635 * log-view.el: Add "Keywords: tools", since its other keywords
8636 aren't in finder-known-keywords, and following vc.el.
8637
8638 * sha1.el (sha1-string-external): default-directory "/" in case
8639 otherwise non-existent. process-connection-type pipe for touch of
8640 efficiency recommended by elisp manual. (An aside in Bug#3911.)
8641
8642 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
8643
8644 Misc coding convention cleanups.
8645 * htmlfontify.el (hfy-init-kludge-hook): Rename from
8646 hfy-init-kludge-hooks.
8647 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
8648 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
8649 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
8650 and push.
8651 (hfy-slant, hfy-weight): Use tables rather than code.
8652 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
8653 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
8654 (hfy-face-attr-for-class): Initialize `face-spec' directly.
8655 (hfy-face-to-css): Remove `nconc' with single arg.
8656 (hfy-p-to-face-lennart): Use `or'.
8657 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
8658 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
8659 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
8660 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
8661 (hfy-force-fontification): Use run-hooks.
8662
8663 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
8664
8665 Various minor fixes.
8666 * htmlfontify.el (hfy-default-header): Add toggle_invis since
8667 Javascript belongs in the header, not the body.
8668 (hfy-javascript): Remove.
8669 (hfy-fontify-buffer): Don't insert it any more.
8670 (hfy-face-at): Handle (face0 face1 face2) style face properties.
8671 Fix bug in invis handling when there were no invis props in a chunk.
8672
8673 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
8674
8675 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
8676
8677 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
8678
8679 * finder.el (finder-mode-map): Add a menu.
8680
8681 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
8682
8683 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
8684 "unsigned" structs.
8685
8686 (verilog-leap-to-head, verilog-backward-token): Handle "disable
8687 fork" statement better.
8688
8689 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
8690
8691 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
8692 (verilog-delete-auto, verilog-delete-empty-auto-pair)
8693 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
8694 Reported by Clay Douglass.
8695
8696 (verilog-auto-inst, verilog-auto-star-safe)
8697 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
8698 Fix removing "// Interfaces" when saving .* expansions. Reported by
8699 Pierre-David Pfister.
8700
8701 2009-11-26 Glenn Morris <rgm@gnu.org>
8702
8703 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
8704 the scope.
8705
8706 2009-11-25 Johan Bockgård <bojohan@gnu.org>
8707
8708 * vc-annotate.el (vc-annotate-revision-previous-to-line):
8709 Really use previous revision.
8710
8711 2009-11-25 Kevin Ryde <user42@zip.com.au>
8712
8713 * man.el (Man-completion-table): default-directory "/" in case
8714 doesn't otherwise exist. process-environment COLUMNS=999 so as
8715 not to truncate long names. process-connection-type pipe to avoid
8716 any chance of hitting the pseudo-tty TIOCGWINSZ.
8717 (man): completion-ignore-case t for friendliness and since man
8718 itself is case-insensitive on the command line.
8719 Further to Bug#3717.
8720
8721 * arc-mode.el: Add "Keywords: files", so the details in its
8722 commentary can be reached from finder-by-keyword.
8723 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
8724 editing mode, but it's comms related and sgml-mode.el has "comm"
8725 on that basis too.
8726 * textmodes/bibtex-style.el: Add "Keywords: tex".
8727 * international/isearch-x.el, international/ja-dic-cnv.el:
8728 * international/ja-dic-utl.el, international/kkc.el:
8729 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
8730
8731 2009-11-25 Juri Linkov <juri@jurta.org>
8732
8733 * man.el (Man-completion-table): Modify regexp to include
8734 section names to completion strings. (Bug#3717)
8735
8736 2009-11-25 Juri Linkov <juri@jurta.org>
8737
8738 Search recursively in gzipped files. (Bug#4982)
8739
8740 * progmodes/grep.el (grep-highlight-matches): Add new options
8741 `always' and `auto'. Doc fix.
8742 (grep-process-setup): Check `grep-highlight-matches' for
8743 `auto-detect' to determine the need to compute grep defaults.
8744 Move Windows/DOS specific --colors settings handling
8745 to `grep-compute-defaults'. Check `grep-highlight-matches'
8746 to get the value of "--color=".
8747 (grep-compute-defaults): Compute `grep-highlight-matches' when it
8748 has the value `auto-detect'. Move Windows/DOS specific settings
8749 from `grep-process-setup'.
8750 (zrgrep): New command with alias `rzgrep'.
8751
8752 2009-11-25 Juri Linkov <juri@jurta.org>
8753
8754 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
8755 to nil instead of switching off view-mode. (Bug#4896)
8756
8757 2009-11-25 Juri Linkov <juri@jurta.org>
8758
8759 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
8760
8761 * mwheel.el (mwheel-scroll-up-function)
8762 (mwheel-scroll-down-function): New defvars.
8763 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
8764 `scroll-up', and `mwheel-scroll-down-function' instead of
8765 `scroll-down'.
8766
8767 * doc-view.el (doc-view-scroll-up-or-next-page)
8768 (doc-view-scroll-down-or-previous-page): Add optional ARG.
8769 Use this ARG in the call to image-scroll-up/image-scroll-down.
8770 Change `interactive' spec to "P". Goto next/previous page only
8771 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
8772 SPC/DEL case). Doc fix.
8773 (doc-view-next-line-or-next-page)
8774 (doc-view-previous-line-or-previous-page): Rename arg to ARG
8775 for consistency.
8776 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
8777 `doc-view-scroll-up-or-next-page', and buffer-local
8778 `mwheel-scroll-down-function' to
8779 `doc-view-scroll-down-or-previous-page'.
8780
8781 2009-11-25 Juri Linkov <juri@jurta.org>
8782
8783 Provide additional default values (directories at other Dired
8784 windows) via M-n in the minibuffer of some Dired commands.
8785
8786 * dired-aux.el (dired-diff, dired-compare-directories)
8787 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
8788 `minibuffer-default' in `minibuffer-with-setup-hook'.
8789 (dired-dwim-target-directory): Find a window that displays Dired
8790 buffer instead of failing when the next window is not Dired.
8791 Use `get-window-with-predicate' to find for the next Dired window.
8792 (dired-dwim-target-defaults): New function.
8793
8794 * ediff-util.el (ediff-read-file-name):
8795 Use `dired-dwim-target-defaults' to set `minibuffer-default'
8796 in `minibuffer-with-setup-hook'.
8797
8798 2009-11-25 Juri Linkov <juri@jurta.org>
8799
8800 Provide additional default values (file name at point or at the
8801 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
8802
8803 * minibuffer.el (read-file-name-defaults): New function.
8804 (read-file-name): Reset `minibuffer-default' to nil when
8805 it duplicates initial input `insdef'.
8806 Bind `minibuffer-default-add-function' to lambda that
8807 calls `read-file-name-defaults' in `minibuffer-selected-window'.
8808 (minibuffer-insert-file-name-at-point): New command.
8809
8810 * files.el (file-name-at-point-functions): New defcustom.
8811 (find-file-default): Remove defvar.
8812 (find-file-read-args): Don't use `find-file-default'.
8813 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
8814 to `read-file-name'.
8815 (find-file-literally): Use `read-file-name' with
8816 `confirm-nonexistent-file-or-buffer'.
8817
8818 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
8819
8820 * dired.el (dired-read-dir-and-switches):
8821 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
8822 to `read-file-name'.
8823 (dired-file-name-at-point): New function.
8824 (dired-mode): Add hook `dired-file-name-at-point' to
8825 `file-name-at-point-functions'.
8826
8827 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
8828
8829 Really make the *Completions* window soft-dedicated (bug#5030).
8830 * window.el (window--display-buffer-2): Add `dedicated' argument.
8831 (display-buffer): Pass it when needed so the dedicated flag is set
8832 after calling set-window-buffer, which would otherwise reset it.
8833
8834 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
8835
8836 * progmodes/meta-mode.el (meta-complete-symbol):
8837 * progmodes/etags.el (complete-tag):
8838 * mail/mailabbrev.el (mail-abbrev-complete-alias):
8839 Use completion-in-region.
8840
8841 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
8842 (dabbrev-completion): Use completion-in-region.
8843 (dabbrev--abbrev-at-point): Simplify regexp.
8844
8845 * abbrev.el (abbrev--before-point): Use word-motion functions
8846 if :regexp is not specified (bug#5031).
8847
8848 * subr.el (string-prefix-p): New function.
8849
8850 * man.el (Man-completion-cache): New var.
8851 (Man-completion-table): Use it.
8852
8853 * vc.el (vc-print-log-internal): Make `limit' optional for better
8854 compatibility (e.g. with vc-annotate.el).
8855
8856 2009-11-24 Kevin Ryde <user42@zip.com.au>
8857
8858 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
8859 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
8860
8861 * emacs-lisp/elint.el (elint-add-required-env): Better error message
8862 when .el source file not found or other error.
8863
8864 2009-11-24 Markus Triska <markus.triska@gmx.at>
8865
8866 * linum.el (linum-update-window): Ignore intangible (bug#4996).
8867
8868 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
8869
8870 Handle the [back] button properly (bug#4979).
8871 * descr-text.el (describe-text-properties): Add a `buffer' argument.
8872 Use help-setup-xref, help-buffer, and with-help-window.
8873 (describe-char): Add `buffer' argument.
8874 Pass proper command to help-setup-xref. Don't meddle with
8875 help-xref-stack-item directly.
8876 (describe-text-category): Use with-help-window and help-buffer.
8877
8878 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
8879 for the displayed buffer (bug#4887).
8880
8881 * man.el (Man-completion-table): New function.
8882 (man): Use it.
8883
8884 2009-11-24 David Reitter <david.reitter@gmail.com>
8885
8886 * vc-git.el (vc-git-registered): Use checkout directory (where
8887 .git is) rather than the file's directory and a relative path spec
8888 to work around a bug in git.
8889
8890 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
8891
8892 Improve handling of processes on remote hosts.
8893
8894 * eshell/esh-util.el (eshell-path-env): New defvar.
8895 (eshell-parse-colon-path): New defun.
8896 (eshell-file-attributes): Use `eshell-parse-colon-path'.
8897
8898 * eshell/esh-ext.el (eshell-search-path):
8899 Use `eshell-parse-colon-path'.
8900 (eshell-remote-command): Remove argument HANDLER.
8901 (eshell-external-command): Check for FTP remote connection.
8902
8903 * eshell/esh-proc.el (eshell-gather-process-output):
8904 Use `file-truename', in order to start also symlinked files.
8905 Apply `start-file-process' instead of `start-process'.
8906 Shorten `command' to the local file name part.
8907
8908 * eshell/em-cmpl.el (eshell-complete-commands-list):
8909 Use `eshell-parse-colon-path'.
8910
8911 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
8912
8913 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
8914 to `eshell-directory-change-hook'.
8915
8916 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
8917
8918 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
8919 because it could be enabled automatically if view-read-only is non-nil.
8920
8921 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
8922
8923 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
8924 made on 2009-11-22.
8925
8926 2009-11-24 Glenn Morris <rgm@gnu.org>
8927
8928 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
8929 deleted variable bookmark-bmenu-bookmark-column.
8930
8931 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
8932 Move after definition of global-semantic-idle-tag-highlight-mode.
8933
8934 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
8935
8936 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
8937
8938 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
8939
8940 * net/browse-url.el (browse-url-filename-alist): On Windows, add
8941 two slashes to the "file:" prefix.
8942 (browse-url-file-url): De-munge Cygwin filenames before passing
8943 them to Windows browser.
8944 (browse-url-default-windows-browser): Use call-process.
8945
8946 2009-11-23 Juri Linkov <juri@jurta.org>
8947
8948 Implement DocView Continuous mode. (Bug#4896)
8949 * doc-view.el (doc-view-continuous-mode): New defcustom.
8950 (doc-view-mode-map): Bind C-n/<down> to
8951 `doc-view-next-line-or-next-page', C-p/<up> to
8952 `doc-view-previous-line-or-previous-page'.
8953 (doc-view-next-line-or-next-page)
8954 (doc-view-previous-line-or-previous-page): New commands.
8955
8956 2009-11-23 Juri Linkov <juri@jurta.org>
8957
8958 Implement Isearch in comint input history. (Bug#3746)
8959 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
8960 `isearch-mode-hook'.
8961 (comint-history-isearch): New defcustom.
8962 (comint-history-isearch-backward)
8963 (comint-history-isearch-backward-regexp): New commands.
8964 (comint-history-isearch-message-overlay): New buffer-local variable.
8965 (comint-history-isearch-setup, comint-history-isearch-end)
8966 (comint-goto-input, comint-history-isearch-search)
8967 (comint-history-isearch-message, comint-history-isearch-wrap)
8968 (comint-history-isearch-push-state)
8969 (comint-history-isearch-pop-state): New functions.
8970
8971 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
8972
8973 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
8974 return.
8975 (tramp-handle-make-symbolic-link)
8976 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
8977 Quote file names.
8978 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
8979 (tramp-handle-process-file): Use it.
8980
8981 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
8982
8983 * window.el (move-to-window-line-last-op): Remove.
8984 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
8985
8986 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
8987
8988 Make M-r mirror the new cycling behavior of C-l.
8989 * window.el (move-to-window-line-last-op): New var.
8990 (move-to-window-line-top-bottom): New command.
8991 (global-map): Bind M-r move-to-window-line-top-bottom.
8992
8993 2009-11-23 Sven Joachim <svenjoac@gmx.de>
8994
8995 * dired-x.el (dired-guess-shell-alist-default):
8996 Support xz format. (Bug#4953)
8997
8998 2009-11-22 Chong Yidong <cyd@stupidchicken.com>
8999
9000 * cedet/srecode/map.el (srecode-get-maps):
9001 * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
9002 * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
9003 * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
9004 (semantic-toggle-decoration-style):
9005 * cedet/semantic/decorate/include.el
9006 (semantic-decoration-include-describe)
9007 (semantic-decoration-unknown-include-describe)
9008 (semantic-decoration-unparsed-include-describe)
9009 (semantic-decoration-all-include-summary):
9010 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
9011 * cedet/semantic/analyze/complete.el
9012 (semantic-analyze-possible-completions):
9013 * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
9014 (semantic-show-unmatched-syntax-mode)
9015 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
9016 (semantic-highlight-func-mode):
9017 * cedet/semantic/util.el (semantic-describe-buffer):
9018 * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
9019 (semantic-symref-find-tags-by-name)
9020 (semantic-symref-find-tags-by-regexp)
9021 (semantic-symref-find-tags-by-completion)
9022 (semantic-symref-find-file-references-by-name)
9023 (semantic-symref-find-text):
9024 * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
9025 (senator-yank-tag):
9026 * cedet/semantic/scope.el (semantic-calculate-scope):
9027 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
9028 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
9029 (define-semantic-idle-service):
9030 * cedet/semantic/complete.el (semantic-complete-analyze-inline)
9031 (semantic-complete-analyze-inline-idle):
9032 * cedet/semantic/analyze.el (semantic-analyze-current-context):
9033 * cedet/mode-local.el (describe-mode-local-bindings)
9034 (describe-mode-local-bindings-in-mode):
9035 * cedet/ede/make.el (ede-make-check-version):
9036 * cedet/ede/locate.el (ede-enable-locate-on-project):
9037 * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
9038 (cedet-idutils-version-check):
9039 * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
9040 (cedet-gnu-global-version-check):
9041 * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
9042 (cedet-cscope-version-check): Use called-interactively-p instead
9043 of interactive-p.
9044
9045 * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
9046 Use semantic-format-tag-prototype.
9047
9048 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
9049
9050 * emulation/viper-cmd.el: Use viper-last-command-char instead of
9051 last-command-char/last-command-event.
9052 (viper-prefix-arg-value): Do correct conversion of event-char for
9053 XEmacs.
9054
9055 * emulation/viper-util.el, emulation/viper.el:
9056 Use viper-last-command-char instead of
9057 last-command-char/last-command-event.
9058
9059 * ediff-init.el, ediff-mult.el, ediff-util.el:
9060 Replace last-command-char and last-command-event
9061 with (ediff-last-command-char) everywhere.
9062
9063 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
9064 created in fundamental mode.
9065
9066 * ediff.el (ediff-version): Revert the change of interactive-p to
9067 called-interactively-p.
9068
9069 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
9070
9071 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
9072 generation from word-movement command names.
9073
9074 2009-11-21 Chong Yidong <cyd@stupidchicken.com>
9075
9076 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
9077 (semantic-complete-jump-local, semantic-complete-jump):
9078 Improve prompt string.
9079
9080 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
9081
9082 * cus-start.el (all): Add native condition for font-use-system-font.
9083
9084 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
9085
9086 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9087 Correct the patch from 2009-11-18. (Bug#3910)
9088
9089 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
9090
9091 * progmodes/subword.el: Rename from lisp/subword.el.
9092
9093 * subword.el: Rename to progmodes/subword.el.
9094
9095 * Makefile.in (ELCFILES): Adapt to subword.el move.
9096
9097 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9098 Stefan Monnier <monnier@iro.umontreal.ca>
9099
9100 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
9101 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
9102 (bookmark-bmenu-show-filenames): Use push.
9103 (bookmark-bmenu-hide-filenames): Use local var instead of
9104 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
9105 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
9106 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
9107 filenames now that the bookmark names are always available.
9108
9109 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
9110
9111 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
9112 (bookmark-search-pattern): Move and leave unbound.
9113 (bookmark-bmenu-mode-map): Change binding.
9114 (bookmark-read-search-input): Simplify.
9115 Don't use text-char-description. Don't error on non-char events.
9116 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
9117 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
9118 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
9119 Use a local var for the timer.
9120 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
9121 (i.e. bookmark-bmenu-search).
9122
9123 2009-11-21 Glenn Morris <rgm@gnu.org>
9124
9125 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
9126
9127 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
9128
9129 * net/browse-url.el (browse-url-default-windows-browser):
9130 Use cygstart for cygwin.
9131
9132 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
9133
9134 * bookmark.el: Formatting and doc fixes only:
9135 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
9136 (bookmark-bmenu-search): Wrap to fit within 80 columns.
9137 Minor grammar and punctuation fixes in doc string.
9138 (bookmark-read-search-input): Adjust to fit within 80 columns.
9139
9140 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
9141
9142 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
9143 (c-backward-into-nomenclature): Adapt to subword renaming.
9144
9145 * subword.el (subword-forward, subword-backward, subword-mark)
9146 (subword-kill, subword-backward-kill, subword-transpose)
9147 (subword-downcase, subword-upcase, subword-capitalize)
9148 (subword-forward-internal, subword-backward-internal):
9149 Rename from forward-subword, backward-subword, mark-subword,
9150 kill-subword, backward-kill-subword, transpose-subwords,
9151 downcase-subword, upcase-subword, capitalize-subword,
9152 forward-subword-internal, backward-subword-internal.
9153
9154 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9155
9156 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
9157 New options.
9158 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
9159 New vars.
9160 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
9161 (bookmark-bmenu-filter-alist-by-regexp)
9162 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
9163 (bookmark-bmenu-search): New command.
9164 (bookmark-bmenu-mode-map): Bind it.
9165
9166 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
9167
9168 * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
9169
9170 * cedet/semantic/idle.el (define-semantic-idle-service)
9171 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
9172
9173 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
9174
9175 * progmodes/cc-cmds.el: declare-functioned forward-subword and
9176 backward-subword to quit the byte-compiler.
9177
9178 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
9179
9180 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
9181
9182 * progmodes/cc-cmds.el (c-update-modeline)
9183 (c-forward-into-nomenclature, c-backward-into-nomenclature):
9184 Refer to subword.el functions instead of cc-subword.el.
9185
9186 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
9187 subword.el functions instead of cc-subword.el.
9188
9189 * progmodes/cc-subword.el: Rename to subword.el.
9190 * subword.el: Rename from progmodes/cc-subword.el.
9191 (subword-mode-map): Rename from c-subword-mode-map.
9192 (subword-mode): Rename from c-subword-mode.
9193 (global-subword-mode): New global minor mode.
9194 (forward-subword): Rename from c-forward-subword.
9195 (backward-subword): Rename from c-backward-subword.
9196 (mark-subword): Rename from c-mark-subword.
9197 (kill-subword): Rename from c-kill-subword.
9198 (backward-kill-subword): Rename from c-backward-kill-subword.
9199 (transpose-subwords): Rename from c-tranpose-subword.
9200 (downcase-subword): Rename from c-downcase-subword.
9201 (capitalize-subword): Rename from c-capitalize-subword.
9202 (forward-subword-internal): Rename from c-forward-subword-internal.
9203 (backward-subword-internal): Rename from c-backward-subword-internal.
9204
9205 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
9206
9207 * vc.el (vc-deduce-fileset): Allow non-state changing operations
9208 from a dired buffer.
9209 (vc-dired-deduce-fileset): New function.
9210 (vc-root-diff, vc-print-root-log): Use it.
9211
9212 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
9213 nil LIMIT argument to vc-print-log-internal.
9214
9215 2009-11-20 Glenn Morris <rgm@gnu.org>
9216
9217 * Makefile.in (ELCFILES): Regenerate.
9218
9219 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
9220
9221 * cedet/cedet.el (cedet-menu-map): Re-order menu items.
9222
9223 * cedet/semantic.el: Enable idle-mode menu items only if
9224 global-semantic-idle-scheduler-mode is enabled.
9225 (semantic-default-submodes): Doc fix.
9226
9227 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
9228 When turning off, disable other idle modes.
9229
9230 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
9231
9232 * calc/calc.el (calc-set-mode-line):
9233 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9234 (math-format-number): Rename `math-format-complement-signed' to
9235 `math-format-twos-complement'.
9236
9237 * calc/calc-bin.el (math-format-twos-complement): Rename from
9238 math-format-complement-signed.
9239 (calc-radix): Rename `calc-complement-signed-mode' to
9240 `calc-twos-complement-mode'.
9241 (calc-octal-radix, calc-hex-radix): Add an argument for
9242 two's complement.
9243
9244 * calc/calc-embed.el (calc-embedded-mode-vars):
9245 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9246
9247 * calc/calc-ext.el (calc-init-extensions):
9248 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9249 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
9250
9251 * calc/calc-units.el (math-build-units-table-buffer):
9252 Let `calc-twos-complement-mode' be nil.
9253
9254 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
9255 entries.
9256
9257 * calc/calc-vec.el (calcFunc-vunpack):
9258 * calc/calc-aent.el (calc-do-calc-eval):
9259 * calc/calc-forms.el (math-format-date):
9260 * calc/calc-graph.el (calc-graph-plot):
9261 * calc/calc-math.el (math-use-emacs-fn):
9262 * calc/calccomp.el (math-compose-expr):
9263 Let `calc-twos-complement-mode' be nil.
9264
9265 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9266
9267 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
9268 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
9269 * minibuffer.el (completion-in-region-functions): New hook.
9270 (completion-in-region): New function.
9271 * emacs-lisp/lisp.el (lisp-complete-symbol):
9272 * pcomplete.el (pcomplete-std-complete): Use it.
9273
9274 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9275
9276 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
9277 (latex-complete-alist): New vars.
9278 (latex-string-prefix-p, latex-complete-bibtex-keys)
9279 (latex-complete-envnames, latex-complete-refkeys)
9280 (latex-complete-data): New functions.
9281 (latex-complete, latex-indent-or-complete): New commands.
9282
9283 * window.el (display-buffer-mark-dedicated): New var.
9284 (display-buffer): Obey it.
9285 * minibuffer.el (minibuffer-completion-help): Use it.
9286
9287 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
9288
9289 * filecache.el (file-cache-add-file): Use push and cons.
9290 (file-cache-delete-file-regexp): Use push.
9291 (file-cache-complete): Use completion-in-region.
9292
9293 * simple.el (with-wrapper-hook): Fix thinko.
9294
9295 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
9296 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
9297 Use with-current-buffer and string-to-number.
9298 (hfy-fallback-colour-values): Use assoc-string.
9299 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
9300 (hfy-face-at): Remove unused var `found-face'.
9301 (hfy-compile-stylesheet): Remove unused var `css'.
9302 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
9303 and `orig-buffer'.
9304 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
9305 Use with-current-buffer.
9306 (hfy-text-p): Use expand-file-name and fewer setq.
9307
9308 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
9309
9310 * htmlfontify.el, hfy-cmap.el: New files.
9311
9312 2009-11-19 Juri Linkov <juri@jurta.org>
9313
9314 * minibuffer.el (completions-format): New defcustom.
9315 (completion--insert-strings): Implement vertical format.
9316
9317 * simple.el (switch-to-completions): Move point to the first
9318 completion when point was at the beginning of the buffer.
9319
9320 2009-11-19 Juri Linkov <juri@jurta.org>
9321
9322 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
9323
9324 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
9325
9326 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
9327
9328 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
9329 (mail-signature): Change default to t.
9330 (mail-from-style): Deprecate `system-default' value.
9331 (mail-insert-from-field): For default value of mail-from-style,
9332 default to `angles' unless `angles' needs quoting and `parens'
9333 does not.
9334 (mail-citation-prefix-regexp): Use citation regexp from
9335 message-mode.
9336
9337 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
9338
9339 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
9340 Set variables for computing the prompt for reading password.
9341
9342 2009-11-19 Glenn Morris <rgm@gnu.org>
9343
9344 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
9345
9346 * textmodes/flyspell.el (sgml-lexical-context): Declare.
9347
9348 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
9349 (newsticker-treeview-listwindow-height): Fix custom type.
9350
9351 2009-11-19 Kenichi Handa <handa@m17n.org>
9352
9353 * descr-text.el (describe-char-padded-string): Compose with TAB
9354 only if there's a font for CH.
9355 (describe-char): Fix the condition for detecting a trivial composition.
9356
9357 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
9358
9359 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
9360 more accurate version of the regexp. (Bug#3910)
9361
9362 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
9363
9364 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
9365
9366 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
9367
9368 * font-setting.el (font-use-system-font): Declare for byte-compiler.
9369 (font-setting-change-default-font): Fix typo in docstring.
9370
9371 2009-11-18 Alan Mackenzie <acm@muc.de>
9372
9373 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
9374
9375 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9376
9377 * font-setting.el (font-use-system-font): Move ...
9378
9379 * cus-start.el (all): ... to here.
9380
9381 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
9382
9383 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
9384 Don't set `ad-return-value' if `ad-do-it' doesn't.
9385
9386 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
9387 modification time.
9388
9389 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9390
9391 * menu-bar.el: Put "Use system font" in Option-menu.
9392 (menu-bar-options-save): Add font-use-system-font.
9393
9394 * loadup.el: If feature system-font-setting or font-render-setting is
9395 there, load font-setting.
9396
9397 * Makefile.in (ELCFILES): Add font-settings.el.
9398 * font-setting.el: New file.
9399
9400 2009-11-17 Glenn Morris <rgm@gnu.org>
9401
9402 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
9403
9404 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
9405 Preserve point in the list buffer. (Bug#4939)
9406 Use point-at-eol.
9407 (newsticker--treeview-list-update-highlight)
9408 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
9409
9410 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
9411
9412 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
9413 Remove.
9414
9415 * calc/calc-ext.el (calc-init-extensions): Remove references to
9416 symclip.
9417
9418 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
9419
9420 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
9421 * calc/calc-help.el (calc-b-prefix-help): Remove references to
9422 `calc-symclip'.
9423
9424 2009-11-16 Kevin Ryde <user42@zip.com.au>
9425
9426 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
9427 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
9428
9429 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
9430 (lm-keywords-list): Allow comma-only separator like "foo,bar".
9431 Ignore trailing spaces by omit-nulls to split-string (fixing
9432 regression from Emacs 21 due to the incompatible split-string
9433 change). (Bug #4928.)
9434
9435 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
9436
9437 * vc.el (vc-log-show-limit): Default to 2000.
9438 (vc-print-log-internal): Insert buttons to request more entries
9439 when limiting the output.
9440
9441 * vc-sccs.el (vc-sccs-print-log):
9442 * vc-rcs.el (vc-rcs-print-log):
9443 * vc-cvs.el (vc-cvs-print-log):
9444 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
9445 LIMIT is non-nil.
9446
9447 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
9448
9449 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
9450 error when `tramp-gvfs-dbus-event-vector' is set.
9451 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
9452
9453 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
9454
9455 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
9456
9457 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
9458
9459 * net/dbus.el (dbus-unregister-service): New defun.
9460 (dbus-register-property): Register the handlers of
9461 "org.freedesktop.DBus.Properties" for SERVICE.
9462 (dbus-property-handler): Fix docstring.
9463
9464 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9465
9466 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
9467 Quote doc string reference in defvaralias as it is not in special form.
9468 (byte-compile-output-docform): Doc fix.
9469
9470 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
9471
9472 * calc/calc.el (math-2-word-size, math-half-2-word-size)
9473 (calc-complement-signed-mode): New variables.
9474 (calc-set-mode-line): Add indicator for twos-complements.
9475 (math-format-number): Format twos-complement notation.
9476
9477 * calc/calc-bin.el (calc-word-size): Reset the variables
9478 `math-2-word-size' and `math-half-2-word-size'.
9479 (math-format-complement-signed, math-symclip, calcFunc-symclip)
9480 (calc-symclip): New functions.
9481
9482 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
9483
9484 * calc/calc-embed.el (calc-embedded-mode-vars):
9485 Add `calc-complement-signed-mode' to the list of modes.
9486
9487 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
9488 (calc-b-oper-keys): Add `calc-symclip' to list.
9489
9490 * calc/calc-ext.el (math-read-number-fancy): Read complement
9491 signed numbers.
9492 (calc-init-extensions): Add binding for `calc-symclip'.
9493 Add autoload for `calcFunc-symclip' and `calc-symclip'.
9494
9495 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
9496 `calc-symclip'.
9497 (calc-modes-menu): Add item for twos complement mode.
9498
9499 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
9500
9501 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
9502
9503 * register.el (jump-to-register, insert-register): Handle Semantic
9504 tags. From commented-out advice in semantic/senator.el.
9505
9506 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
9507
9508 * vc.el (vc-log-show-limit): New variable.
9509 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
9510 when using a prefix argument.
9511 (vc-print-log-internal): Add new argument LIMIT.
9512
9513 * vc-svn.el (vc-svn-print-log):
9514 * vc-mtn.el (vc-mtn-print-log):
9515 * vc-hg.el (vc-hg-print-log):
9516 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
9517 pass it to the log command when set. Make the BUFFER argument
9518 non-optional.
9519
9520 * vc-sccs.el (vc-sccs-print-log):
9521 * vc-rcs.el (vc-rcs-print-log):
9522 * vc-git.el (vc-git-print-log):
9523 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
9524 ignore it. Make the BUFFER argument non-optional
9525
9526 * bindings.el (mode-line-buffer-identification): Do not purecopy.
9527
9528 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
9529
9530 * dired.el (dired-mode-map): Move encryption items to "Operate"
9531 menu (Bug#4703).
9532
9533 * strokes.el (strokes-update-window-configuration): Make strokes
9534 buffer current before erasing (Bug#4906).
9535
9536 * cedet/semantic/idle.el (semantic-idle-summary-mode)
9537 (semantic-idle-summary-mode): Define using define-minor-mode
9538 instead of define-semantic-idle-service.
9539 (semantic-idle-summary-mode): New function.
9540 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
9541 that mouse motion does not reset the echo area.
9542
9543 2009-11-15 Juri Linkov <juri@jurta.org>
9544
9545 * simple.el (set-mark-default-inactive): Add :type, :group
9546 and :version. (Bug#4876)
9547
9548 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
9549
9550 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
9551 (archive-unique-fname): ... here. (Bug#4929)
9552
9553 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
9554
9555 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
9556 with a real fix.
9557
9558 * novice.el (disabled-command-function): Add useful args.
9559 Setup the help buffer so that [back] works.
9560 Remove redundant call to help-mode.
9561 (disabled-command-function): Use `case'.
9562 (en/disable-command): New function extracted from enable-command.
9563 (enable-command, disable-command): Use it.
9564
9565 2009-11-14 Glenn Morris <rgm@gnu.org>
9566
9567 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
9568 constants. (Bug#4913)
9569
9570 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
9571
9572 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
9573
9574 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
9575 defined in C that have no doc-strings. (Bug#1063)
9576
9577 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
9578
9579 * cus-edit.el (data, files):
9580 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
9581
9582 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
9583
9584 * simple.el (shell-command): Doc fix (Bug#4891).
9585
9586 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
9587
9588 2009-11-14 Glenn Morris <rgm@gnu.org>
9589
9590 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
9591 statements for vc-diff, emerge-quit, and rmail-cease-edit.
9592 If they are already loaded, eval-after-load will do the right thing.
9593
9594 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
9595 compiling.
9596
9597 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
9598
9599 * simple.el (x-selection-owner-p): Declare.
9600 (read-mail-command): Use custom radio type rather than choice.
9601 (completion-no-auto-exit): Doc fix.
9602
9603 * custom.el (defgroup):
9604 * epg-config.el (epg): Doc fixes.
9605
9606 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
9607
9608 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
9609 * international/ccl.el (define-ccl-program): Do not purecopy the
9610 docstring, defconst does it anyway.
9611
9612 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
9613
9614 * add-log.el (add-change-log-entry): Avoid displaying the changelog
9615 a second time.
9616
9617 * x-dnd.el (x-dnd-maybe-call-test-function):
9618 * window.el (split-window-vertically):
9619 * whitespace.el (whitespace-help-on):
9620 * vc-rcs.el (vc-rcs-consult-headers):
9621 * userlock.el (ask-user-about-lock-help)
9622 (ask-user-about-supersession-help):
9623 * type-break.el (type-break-force-mode-line-update):
9624 * time-stamp.el (time-stamp-conv-warn):
9625 * terminal.el (te-set-output-log, te-more-break, te-filter)
9626 (te-sentinel, terminal-emulator):
9627 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
9628 (term-write-input-ring, term-check-source, term-start-output-log):
9629 (term-display-buffer-line, term-dynamic-list-completions):
9630 (term-ansi-make-term, serial-term):
9631 * subr.el (selective-display):
9632 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
9633 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
9634 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
9635 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
9636 (speedbar-remove-localized-speedbar-support)
9637 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
9638 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
9639 (speedbar-buffers-line-directory):
9640 * simple.el (shell-command-on-region, append-to-buffer)
9641 (prepend-to-buffer):
9642 * shadowfile.el (shadow-save-todo-file):
9643 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
9644 (scroll-bar-maybe-set-window-start):
9645 * sb-image.el (speedbar-image-dump):
9646 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
9647 (load-save-place-alist-from-file):
9648 * ps-samp.el (ps-print-message-from-summary):
9649 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
9650 (ps-background-image, ps-begin-job, ps-do-despool):
9651 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
9652 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
9653 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
9654 (pr-call-process, pr-file-list, pr-interface-save):
9655 * novice.el (disabled-command-function)
9656 (enable-command, disable-command):
9657 * mouse.el (mouse-buffer-menu-alist):
9658 * mouse-copy.el (mouse-kill-preserving-secondary):
9659 * macros.el (kbd-macro-query):
9660 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
9661 * informat.el (batch-info-validate):
9662 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
9663 * hippie-exp.el (try-expand-dabbrev-visible):
9664 * help-mode.el (help-make-xrefs):
9665 * help-fns.el (describe-variable):
9666 * generic-x.el (bat-generic-mode-run-as-comint):
9667 * finder.el (finder-mouse-select):
9668 * find-dired.el (find-dired-sentinel):
9669 * filesets.el (filesets-file-close):
9670 * files.el (list-directory):
9671 * faces.el (list-faces-display, describe-face):
9672 * facemenu.el (list-colors-display):
9673 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
9674 * epg.el (epg--process-filter, epg-cancel):
9675 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
9676 (epa--read-signature-type):
9677 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
9678 (emerge-file-names):
9679 * ehelp.el (electric-helpify):
9680 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
9681 * ediff-vers.el (rcs-ediff-view-revision):
9682 * ediff-util.el (ediff-setup):
9683 * ediff-mult.el (ediff-append-custom-diff):
9684 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
9685 (ediff-wordify):
9686 * echistory.el (Electric-command-history-redo-expression):
9687 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
9688 * disp-table.el (describe-display-table):
9689 * dired.el (dired-find-buffer-nocreate):
9690 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
9691 * dabbrev.el (dabbrev--same-major-mode-p):
9692 * chistory.el (list-command-history):
9693 * apropos.el (apropos-documentation):
9694 * allout.el (allout-obtain-passphrase):
9695 (allout-copy-exposed-to-buffer):
9696 (allout-verify-passphrase): Use with-current-buffer.
9697
9698 2009-11-13 Glenn Morris <rgm@gnu.org>
9699
9700 * Makefile.in (ELCFILES): Regenerate.
9701
9702 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
9703
9704 * net/dbus.el (dbus-registered-objects-table): Rename from
9705 `dbus-registered-functions-table', because it contains also properties.
9706 (dbus-unregister-object): Unregister also properties.
9707 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
9708 Use a timeout of 500 msec, in order to not block.
9709 (dbus-register-property, dbus-property-handler): New defuns.
9710
9711 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
9712
9713 * simple.el (minibuffer-default-add-completions): Drop deprecated
9714 4th arg.
9715
9716 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
9717
9718 * textmodes/artist.el (artist-mouse-choose-operation):
9719 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
9720 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
9721 (artist-compute-up-event-key): New function.
9722 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
9723
9724 2009-11-13 Kenichi Handa <handa@m17n.org>
9725
9726 * language/japan-util.el: Make sure that the value of jisx0208
9727 property is jisx0208 character.
9728
9729 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
9730
9731 * international/mule.el (auto-coding-regexp-alist): Only purecopy
9732 car or each item, not the whole list.
9733
9734 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
9735
9736 * minibuffer.el (minibuffer-completion-help):
9737 Use minibuffer-hide-completions.
9738
9739 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
9740
9741 * dired.el (dired-save-positions, dired-restore-positions): New funs.
9742 (dired-revert): Use them (bug#4880).
9743
9744 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
9745
9746 * tooltip.el (tooltip-frame-parameters): Undo previous change.
9747
9748 2009-11-12 Juri Linkov <juri@jurta.org>
9749
9750 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
9751 New functions.
9752 (find-file-literally-at-point): Alias of `ffap-literally'.
9753
9754 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
9755
9756 * textmodes/ispell.el (ispell-skip-region-alist):
9757 * textmodes/css-mode.el (auto-mode-alist):
9758 * progmodes/compile.el (auto-mode-alist):
9759 * international/mule.el (ctext-non-standard-encodings-alist)
9760 (ctext-non-standard-encodings-regexp):
9761 * simple.el (shell-command-switch, text-read-only):
9762 * replace.el (occur-mode-map):
9763 * paths.el (rmail-file-name):
9764 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
9765 * find-file.el (ff-special-constructs):
9766 * files.el (file-name-handler-alist):
9767 * composite.el: Purecopy strings.
9768
9769 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
9770
9771 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
9772
9773 * widget.el (define-widget): Purecopy the docstring.
9774 * international/mule-cmds.el (charset): Do not purecopy the
9775 docstring here, define-widget does it.
9776
9777 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
9778 * textmodes/bibtex-style.el (auto-mode-alist):
9779 * progmodes/inf-lisp.el (inferior-lisp-prompt):
9780 * progmodes/compile.el (compile-command):
9781 * language/korea-util.el (default-korean-keyboard):
9782 * international/mule-conf.el (file-coding-system-alist):
9783 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
9784 * tooltip.el (tooltip-frame-parameters):
9785 * newcomment.el (comment-end, comment-padding):
9786 * dired.el (dired-trivial-filenames):
9787 * comint.el (comint-file-name-prefix): Purecopy initial values.
9788
9789 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
9790
9791 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
9792 (tramp-advice-minibuffer-electric-tilde): Unload advices via
9793 `tramp-unload'.
9794 (tramp-advice-make-auto-save-file-name)
9795 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
9796 after removing the advice.
9797
9798 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
9799
9800 * progmodes/grep.el (grep-regexp-alist):
9801 * international/mule-cmds.el (iso-2022-control-alist):
9802 * emacs-lisp/timer.el (timer-duration-words):
9803 * subr.el (version-separator, version-regexp-alist):
9804 * minibuffer.el (completion-styles-alist):
9805 * faces.el (face-attribute-name-alist, list-faces-sample-text):
9806 Change defvars to defconsts.
9807
9808 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
9809 * loadup.el ("international/mule-conf"): Load the byte compiled version.
9810 * international/mule-conf.el: Allow to be byte compiled.
9811
9812 * international/mule.el (define-charset): Purecopy props.
9813 (load-with-code-conversion): Purecopy doc string and file name.
9814 (put-charset-property): Purecopy strings.
9815 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
9816
9817 * international/mule-cmds.el (register-input-method): Purecopy arguments.
9818 (define-char-code-property): Correctly purecopy the table.
9819
9820 * international/ccl.el (define-ccl-program): Purecopy the docstring.
9821
9822 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
9823
9824 * subr.el (add-hook): Purecopy strings.
9825 (eval-after-load): Purecopy load-history-regexp and the form.
9826
9827 * custom.el (custom-declare-group): Purecopy load-file-name.
9828
9829 * subr.el (menu-bar-separator): New defconst.
9830 * net/eudc.el (eudc-tools-menu):
9831 * international/mule-cmds.el (set-coding-system-map)
9832 (mule-menu-keymap):
9833 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
9834 * vc-hooks.el (vc-menu-map):
9835 * replace.el (occur-mode-map):
9836 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
9837 (menu-bar-edit-menu, menu-bar-goto-menu)
9838 (menu-bar-custom-menu, menu-bar-showhide-menu)
9839 (menu-bar-options-menu, menu-bar-tools-menu)
9840 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
9841 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
9842 (menu-bar-help-menu):
9843 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
9844 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
9845
9846 * term/x-win.el (x-gtk-stock-map):
9847 * progmodes/vera-mode.el (auto-mode-alist):
9848 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
9849 (inferior-lisp-program, inferior-lisp-load-command):
9850 * progmodes/hideshow.el (hs-special-modes-alist):
9851 * progmodes/gud.el (same-window-regexps):
9852 * progmodes/grep.el (grep-program, find-program, xargs-program):
9853 * net/telnet.el (same-window-regexps):
9854 * net/rlogin.el (same-window-regexps):
9855 * language/ethiopic.el (font-ccl-encoder-alist):
9856 * vc-sccs.el (vc-sccs-master-templates):
9857 * vc-rcs.el (vc-rcs-master-templates):
9858 * subr.el (cl-assertion-failed):
9859 * simple.el (next-error-overlay-arrow-position):
9860 * lpr.el (lpr-command):
9861 * locate.el (locate-ls-subdir-switches):
9862 * info.el (same-window-regexps, info)
9863 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
9864 * image-mode.el (image-mode, auto-mode-alist):
9865 * hippie-exp.el (hippie-expand-ignore-buffers):
9866 * format.el (format-alist):
9867 * find-dired.el (find-ls-subdir-switches, find-grep-options)
9868 (find-name-arg):
9869 * facemenu.el (facemenu-keybindings):
9870 * dired.el (dired-listing-switches, dired-chown-program):
9871 * diff.el (diff-switches, diff-command):
9872 * cus-edit.el (same-window-regexps):
9873 * bindings.el (mode-line-mule-info)
9874 (mode-line-buffer-identification): Purecopy strings.
9875
9876 2009-11-11 Juri Linkov <juri@jurta.org>
9877
9878 * simple.el (dired-get-filename) <declare-function>:
9879 Tell the byte-compiler about dired-get-filename.
9880 (shell-command): In Dired mode, get filename from the current line
9881 as the default value.
9882
9883 2009-11-10 Glenn Morris <rgm@gnu.org>
9884
9885 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
9886 * calendar/holidays.el, progmodes/cperl-mode.el:
9887 Update x-popup-menu declarations.
9888
9889 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
9890 (list-load-path-shadows): Use dolist.
9891 (list-load-path-shadows): Use with-current-buffer.
9892
9893 2009-11-10 Juri Linkov <juri@jurta.org>
9894
9895 * minibuffer.el (read-file-name): Support a list of default values
9896 in `default-filename'. Use the first file name where only one
9897 element is required. Doc fix.
9898
9899 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
9900
9901 * net/dbus.el (dbus-unregister-object): Release service, if no
9902 other method is registered for it.
9903
9904 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
9905
9906 * bookmark.el (bookmark-completing-read): Sort bookmark names if
9907 bookmark-sort-flag is non-nil (Bug#4653).
9908
9909 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
9910
9911 * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
9912 the progress reporter entirely.
9913
9914 * emulation/cua-base.el: Add CUA property to some CC mode commands
9915 (Bug#4100).
9916
9917 2009-11-08 Kevin Ryde <user42@zip.com.au>
9918
9919 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
9920 at end of sentence (Bug#4818).
9921
9922 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
9923
9924 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9925 Handle "see declaration of" MSFT statements (Bug#4100).
9926
9927 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
9928
9929 * net/tramp.el (tramp-advice-make-auto-save-file-name)
9930 (tramp-advice-file-expand-wildcards): Unload via
9931 `ad-remove-advice'.
9932
9933 * net/trampver.el: Update release number.
9934
9935 2009-11-08 Kevin Ryde <user42@zip.com.au>
9936
9937 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
9938 `ad-do-it'.
9939
9940 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
9941
9942 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
9943 in order to keep context in SELinux.
9944
9945 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
9946
9947 * dired-aux.el (dired-query): Place cursor in echo area and allow
9948 C-g.
9949
9950 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
9951 menu item if not on a directory (Bug#4701).
9952
9953 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
9954
9955 Sync with Tramp 2.1.17.
9956
9957 * net/tramp.el (tramp-handle-copy-directory): Don't use
9958 `file-remote-p' (due to compatibility).
9959
9960 * net/tramp-compat.el (tramp-compat-copy-directory)
9961 (tramp-compat-delete-directory): New defuns.
9962
9963 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
9964 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
9965 `tramp-compat-delete-directory'.
9966
9967 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
9968 (tramp-smb-handle-delete-directory): Use
9969 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
9970
9971 * net/trampver.el: Update release number.
9972
9973 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
9974
9975 * tar-mode.el (tar-copy): Call write-region on the right buffer
9976 (Bug#4857).
9977
9978 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
9979 by hand, if necessary (Bug#4878).
9980
9981 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
9982
9983 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
9984 align size column (Bug#4839).
9985
9986 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
9987 statement.
9988
9989 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
9990
9991 * progmodes/ld-script.el (auto-mode-alist):
9992 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
9993
9994 * cus-face.el (custom-declare-face): Purecopy face spec.
9995
9996 2009-11-06 Kenichi Handa <handa@m17n.org>
9997
9998 * international/uni-bidi.el: Re-generated.
9999 * international/uni-category.el: Re-generated.
10000 * international/uni-combining.el: Re-generated.
10001 * international/uni-mirrored.el: Re-generated.
10002
10003 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
10004
10005 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
10006 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
10007 (tex-start-options, slitex-run-command, latex-run-command)
10008 (tex-run-command, tex-directory):
10009 * textmodes/ispell.el (ispell-html-skip-alists)
10010 (ispell-tex-skip-alists, ispell-tex-skip-alists):
10011 * textmodes/fill.el (adaptive-fill-first-line-regexp):
10012 (adaptive-fill-regexp):
10013 * textmodes/dns-mode.el (auto-mode-alist):
10014 * progmodes/python.el (interpreter-mode-alist):
10015 * progmodes/etags.el (tags-compression-info-list):
10016 * progmodes/etags.el (tags-file-name):
10017 * net/browse-url.el (browse-url-galeon-program)
10018 (browse-url-firefox-program):
10019 * mail/sendmail.el (mail-signature-file)
10020 (mail-citation-prefix-regexp):
10021 * international/mule-conf.el (eight-bit):
10022 * international/latexenc.el (latex-inputenc-coding-alist):
10023 * international/fontset.el (x-pixel-size-width-font-regexp):
10024 * emacs-lisp/warnings.el (warning-type-format):
10025 * emacs-lisp/trace.el (trace-buffer):
10026 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
10027 (emacs-lisp-mode-map):
10028 * calendar/holidays.el (holiday-solar-holidays)
10029 (holiday-bahai-holidays, holiday-islamic-holidays)
10030 (holiday-christian-holidays, holiday-hebrew-holidays)
10031 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
10032 (hebrew-holidays-1, holiday-oriental-holidays)
10033 (holiday-general-holidays):
10034 * x-dnd.el (x-dnd-known-types):
10035 * tool-bar.el (tool-bar):
10036 * startup.el (site-run-file):
10037 * shell.el (shell-dumb-shell-regexp):
10038 * rfn-eshadow.el (file-name-shadow-tty-properties)
10039 (file-name-shadow-properties):
10040 * paths.el (remote-shell-program, news-directory):
10041 * mouse.el ([C-down-mouse-3]):
10042 * menu-bar.el (menu-bar-tools-menu):
10043 * jka-cmpr-hook.el (jka-compr-load-suffixes)
10044 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
10045 (jka-compr-compression-info-list):
10046 * isearch.el (search-whitespace-regexp):
10047 * image-file.el (image-file-name-extensions):
10048 * find-dired.el (find-ls-option):
10049 * files.el (directory-listing-before-filename-regexp)
10050 (directory-free-space-args, insert-directory-program)
10051 (list-directory-brief-switches, magic-fallback-mode-alist)
10052 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
10053 (automount-dir-prefix):
10054 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
10055 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
10056 (face-font-registry-alternatives, face-font-registry-alternatives)
10057 (face-font-family-alternatives):
10058 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
10059 (facemenu-foreground-menu, facemenu-face-menu):
10060 * epa-hook.el (epa-file-name-regexp):
10061 * dnd.el (dnd-protocol-alist):
10062 * textmodes/rst.el (auto-mode-alist):
10063 * button.el (default-button): Purecopy strings.
10064
10065 2009-11-06 Glenn Morris <rgm@gnu.org>
10066
10067 * Makefile.in (ELCFILES): Update.
10068
10069 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
10070
10071 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
10072 * emacs-lisp/levents.el: Move to obsolete/levents.el.
10073
10074 * nxml/xsd-regexp.el (xsdre-gen-categories):
10075 * nxml/xmltok.el (xmltok-parse-entity):
10076 * nxml/rng-parse.el (rng-parse-validate-file):
10077 * nxml/rng-maint.el (rng-format-manual)
10078 (rng-manual-output-force-new-line):
10079 * nxml/rng-loc.el (rng-save-schema-location-1):
10080 * nxml/rng-cmpct.el (rng-c-parse-file):
10081 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
10082 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
10083
10084 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
10085
10086 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
10087 Remove extra save-excursions and make-variable-buffer-local's.
10088 Suggested by Stefan Monnier.
10089
10090 (verilog-getopt-file, verilog-module-inside-filename-p)
10091 (verilog-set-define): Merge GNU 1.35 and repair changes from
10092 switching to using with-current-buffer.
10093
10094 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
10095 being treated as a number and confusing AUTORESET.
10096 Reported by Dan Dever.
10097
10098 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
10099 Add verilog-auto-ignore-concat to fix backward compatibility with
10100 older verilog-modes. Reported by Dan Katz.
10101
10102 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
10103 containing closing anchors "...$".
10104
10105 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
10106 Reported by Wade Smith.
10107
10108 (verilog-batch-execute-func): Comment on function usage.
10109
10110 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
10111
10112 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
10113 for labels.
10114
10115 (verilog-label-re, verilog-calc-1): Support proper indent of named
10116 asserts.
10117
10118 (verilog-backward-token, verilog-basic-complete-re)
10119 (verilog-beg-of-statement, verilog-indent-re): Support proper
10120 indent of the assert statement at the beginning of a block of text.
10121
10122 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
10123 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
10124 tokens as begins.
10125
10126 2009-11-05 Glenn Morris <rgm@gnu.org>
10127
10128 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
10129 Emacs 19. (Bug#1531)
10130 (byte-compile-fix-header): Update for the above change.
10131 Drop test for epoch::version.
10132
10133 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
10134 * cus-dep.el (custom-make-dependencies):
10135 * finder.el (finder-compile-keywords):
10136 Use autoload-rubric's feature argument.
10137
10138 * calendar/diary-lib.el (top-level): Make load behave more like require.
10139
10140 * vc-git.el (vc-git-stash-map): Move definition before use.
10141
10142 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
10143
10144 * custom.el (custom-declare-group): Purecopy standard-value.
10145 (custom-declare-group): Purecopy custom-prefix.
10146
10147 * international/mule.el (load-with-code-conversion):
10148 Call do-after-load-evaluation unconditionally.
10149
10150 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
10151
10152 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
10153
10154 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
10155
10156 2009-11-04 Glenn Morris <rgm@gnu.org>
10157
10158 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
10159 (byte-compile-compatibility): Remove option.
10160 (byte-compile-close-variables, byte-compile-fix-header)
10161 (byte-compile-insert-header, byte-compile-output-docform)
10162 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
10163 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
10164 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
10165 (byte-compile-insert, byte-compile-defun):
10166 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
10167 (byte-defop-compiler19): Remove.
10168 Without byte-compile-compatibility, the 'emacs19-opcode property is not
10169 used by anything. Replace all calls with byte-defop-compiler.
10170
10171 2009-11-04 Juri Linkov <juri@jurta.org>
10172
10173 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
10174 (menu-bar-options-menu): Don't quote the `prop' arg of
10175 `menu-bar-make-mm-toggle'.
10176
10177 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
10178
10179 * calendar/calendar.el (cal-loaddefs):
10180 * calendar/diary-lib.el (diary-loaddefs):
10181 * calendar/holidays.el (hol-loaddefs):
10182 * eshell/esh-module.el (esh-groups): Load rather than require.
10183
10184 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10185
10186 * calendar/todo-mode.el (todo-add-category): Don't hardcode
10187 point-min==1.
10188 (todo-top-priorities): Only display-buffer when called interactively.
10189 (todo-item-start): Don't save excursion point.
10190 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
10191 (todo-insert-item-here, todo-file-item, todo-remove-item):
10192 Adjust uses of todo-item-start and todo-item-end.
10193
10194 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
10195 (autoload-rubric): Don't use any more.
10196 * cedet/semantic/fw.el (semantic/loaddefs):
10197 * cedet/srecode.el (srecode/loaddefs):
10198 * cedet/ede.el (ede/loaddefs): Load rather than require.
10199 * cedet/ede/cpp-root.el:
10200 * cedet/ede/emacs.el:
10201 * cedet/ede/files.el:
10202 * cedet/ede/linux.el:
10203 * cedet/ede/locate.el:
10204 * cedet/ede/make.el:
10205 * cedet/ede/shell.el:
10206 * cedet/ede/speedbar.el:
10207 * cedet/ede/system.el:
10208 * cedet/ede/util.el:
10209 * cedet/semantic/analyze.el:
10210 * cedet/semantic/bovine.el:
10211 * cedet/semantic/complete.el:
10212 * cedet/semantic/ctxt.el:
10213 * cedet/semantic/db-file.el:
10214 * cedet/semantic/db-find.el:
10215 * cedet/semantic/db-global.el:
10216 * cedet/semantic/db-mode.el:
10217 * cedet/semantic/db-typecache.el:
10218 * cedet/semantic/db.el:
10219 * cedet/semantic/debug.el:
10220 * cedet/semantic/dep.el:
10221 * cedet/semantic/doc.el:
10222 * cedet/semantic/edit.el:
10223 * cedet/semantic/find.el:
10224 * cedet/semantic/format.el:
10225 * cedet/semantic/html.el:
10226 * cedet/semantic/ia-sb.el:
10227 * cedet/semantic/ia.el:
10228 * cedet/semantic/idle.el:
10229 * cedet/semantic/lex-spp.el:
10230 * cedet/semantic/lex.el:
10231 * cedet/semantic/mru-bookmark.el:
10232 * cedet/semantic/scope.el:
10233 * cedet/semantic/senator.el:
10234 * cedet/semantic/sort.el:
10235 * cedet/semantic/symref.el:
10236 * cedet/semantic/tag-file.el:
10237 * cedet/semantic/tag-ls.el:
10238 * cedet/semantic/tag-write.el:
10239 * cedet/semantic/tag.el:
10240 * cedet/semantic/util-modes.el:
10241 * cedet/semantic/analyze/complete.el:
10242 * cedet/semantic/analyze/refs.el:
10243 * cedet/semantic/bovine/c.el:
10244 * cedet/semantic/bovine/gcc.el:
10245 * cedet/semantic/bovine/make.el:
10246 * cedet/semantic/bovine/scm.el:
10247 * cedet/semantic/decorate/include.el:
10248 * cedet/semantic/decorate/mode.el:
10249 * cedet/semantic/symref/cscope.el:
10250 * cedet/semantic/symref/global.el:
10251 * cedet/semantic/symref/grep.el:
10252 * cedet/semantic/symref/idutils.el:
10253 * cedet/semantic/symref/list.el:
10254 * cedet/semantic/wisent/java-tags.el:
10255 * cedet/semantic/wisent/javascript.el:
10256 * cedet/srecode/compile.el:
10257 * cedet/srecode/cpp.el:
10258 * cedet/srecode/document.el:
10259 * cedet/srecode/el.el:
10260 * cedet/srecode/expandproto.el:
10261 * cedet/srecode/getset.el:
10262 * cedet/srecode/insert.el:
10263 * cedet/srecode/java.el:
10264 * cedet/srecode/map.el:
10265 * cedet/srecode/mode.el:
10266 * cedet/srecode/template.el:
10267 * cedet/srecode/texi.el: Remove the file-local setting of
10268 generated-autoload-feature.
10269
10270 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
10271 and only put a prop if it is non-nil.
10272
10273 2009-11-03 Juri Linkov <juri@jurta.org>
10274
10275 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
10276 (menu-bar-options-menu): Fix list quoting (Bug#4429).
10277
10278 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
10279 and "Menu" to make top-level menu item visually one unit (like
10280 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
10281 multi-word menu items). Fix :help string for quit-window.
10282
10283 2009-11-03 Glenn Morris <rgm@gnu.org>
10284
10285 * cedet/mode-local.el (with-mode-local): Doc fix.
10286
10287 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
10288 (byte-compile-file-form-define-abbrev-table)
10289 (byte-compile-file-form-custom-declare-variable)
10290 (byte-compile-variable-ref, byte-compile-defvar):
10291 Whether or not a warning is enabled should only affect whether we issue
10292 the warning, not whether or not we collect the relevant data.
10293 Eg warnings can be turned on and off throughout the course of a file.
10294
10295 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
10296 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
10297
10298 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10299
10300 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
10301 * play/mpuz.el (mpuz-create-buffer):
10302 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
10303 (lm-print-y,s,noise, lm-print-w0, lm-init):
10304 * play/gomoku.el (gomoku-prompt-for-move):
10305 * play/fortune.el (fortune-in-buffer):
10306 * play/dissociate.el (dissociated-press):
10307 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
10308 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
10309 * mail/supercite.el (sc-eref-show):
10310 * mail/smtpmail.el (smtpmail-send-it):
10311 * mail/rmailsum.el (rmail-summary-next-labeled-message)
10312 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
10313 (rmail-summary-undelete-many, rmail-summary-rmail-update)
10314 (rmail-summary-goto-msg, rmail-summary-expunge)
10315 (rmail-summary-get-new-mail, rmail-summary-search-backward)
10316 (rmail-summary-add-label, rmail-summary-output-menu)
10317 (rmail-summary-output-body):
10318 * mail/rfc822.el (rfc822-addresses):
10319 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
10320 * mail/mailpost.el (post-mail-send-it):
10321 * mail/hashcash.el (hashcash-generate-payment):
10322 * mail/feedmail.el (feedmail-run-the-queue)
10323 (feedmail-queue-send-edit-prompt-help-first)
10324 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
10325 (feedmail-deduce-address-list):
10326 * eshell/esh-ext.el (eshell-remote-command):
10327 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
10328 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
10329 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
10330 (viper-save-string-in-file, viper-valid-marker):
10331 * emulation/viper-keym.el (viper-toggle-key):
10332 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
10333 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
10334 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
10335 * emulation/viper-cmd.el (viper-exec-form-in-vi)
10336 (viper-exec-form-in-emacs, viper-brac-function):
10337 * emulation/viper.el (viper-delocalize-var):
10338 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
10339 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
10340 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
10341 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
10342 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
10343 * emulation/edt.el (edt-electric-helpify):
10344 * emulation/cua-rect.el (cua--rectangle-aux-replace):
10345 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
10346 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
10347 (cua-indent-to-global-mark-column):
10348 * calendar/diary-lib.el (calendar-mark-1):
10349 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
10350 Use with-current-buffer.
10351 * emulation/viper.el (viper-delocalize-var): Use dolist.
10352
10353 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
10354
10355 * comint.el (comint-replace-by-expanded-history-before-point):
10356 Replace !! with the previous input string literally (Bug#1795).
10357
10358 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
10359
10360 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
10361 to be made up of whitespace.
10362
10363 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
10364
10365 * minibuffer.el (read-file-name): Don't use file dialogs for
10366 remote directories (Bug#99).
10367
10368 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
10369
10370 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
10371
10372 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
10373
10374 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
10375 instead of deleting the window or frame.
10376
10377 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
10378
10379 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
10380 Support face colors.
10381
10382 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
10383 New function. Support face colors (Bug#1168).
10384 (tex-common-initialization): Use it.
10385
10386 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
10387 mode allows it (Bug#1168).
10388
10389 2009-10-31 Juri Linkov <juri@jurta.org>
10390
10391 * facemenu.el (list-colors-display): Don't mark buffer as
10392 modified (Bug#3948).
10393
10394 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
10395
10396 * international/mule-diag.el (list-character-sets-1): Minor
10397 message fix (Bug#3526).
10398
10399 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
10400 face property (Bug#4834).
10401 (etags-list-tags, etags-tags-apropos-additional)
10402 (etags-tags-apropos, tags-select-tags-table): Add follow-link
10403 property.
10404
10405 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
10406 items.
10407
10408 * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
10409 items.
10410
10411 * cedet/ede.el (ede-minor-mode):
10412 * cedet/semantic.el (semantic-mode): Toggle menu separators.
10413
10414 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
10415
10416 * textmodes/two-column.el (2C-split):
10417 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
10418 * textmodes/tex-mode.el (tex-set-buffer-directory):
10419 * textmodes/spell.el (spell-region, spell-string):
10420 * textmodes/reftex.el (reftex-erase-buffer):
10421 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
10422 * textmodes/reftex-toc.el (reftex-toc-promote-action):
10423 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
10424 (reftex-select-item):
10425 * textmodes/reftex-ref.el (reftex-label-info-update)
10426 (reftex-offer-label-menu):
10427 * textmodes/reftex-index.el (reftex-index-change-entry)
10428 (reftex-index-phrases-info):
10429 * textmodes/reftex-global.el (reftex-create-tags-file)
10430 (reftex-save-all-document-buffers, reftex-ensure-write-access):
10431 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
10432 (reftex-view-crossref-from-bibtex):
10433 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
10434 (reftex-extract-bib-entries-from-thebibliography)
10435 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
10436 * textmodes/refbib.el (r2b-capitalize-title):
10437 (r2b-convert-buffer, r2b-help):
10438 * textmodes/page-ext.el (pages-directory)
10439 (pages-directory-goto-with-mouse):
10440 * textmodes/bibtex.el (bibtex-validate-globally):
10441 * textmodes/bib-mode.el (bib-capitalize-title):
10442 * textmodes/artist.el (artist-clear-buffer, artist-system):
10443 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
10444 (local-set-scheme-interaction-buffer, xscheme-process-filter)
10445 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
10446 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
10447 (xscheme-send-control-g-interrupt, xscheme-start-process)
10448 (xscheme-process-sentinel, xscheme-cd):
10449 * progmodes/verilog-mode.el (verilog-read-always-signals)
10450 (verilog-set-define, verilog-getopt-file)
10451 (verilog-module-inside-filename-p):
10452 * progmodes/sh-script.el:
10453 * progmodes/python.el (python-pdbtrack-get-source-buffer)
10454 (python-pdbtrack-grub-for-buffer, python-execute-file):
10455 * progmodes/octave-inf.el (inferior-octave):
10456 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
10457 (idlwave-shell-compile-helper-routines, idlwave-set-local)
10458 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
10459 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
10460 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
10461 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
10462 (idlwave-shell-filter, idlwave-shell-examine-highlight)
10463 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
10464 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
10465 (idlwave-shell-examine-display, idlwave-shell-run-region)
10466 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
10467 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
10468 * progmodes/idlw-help.el (idlwave-help-get-special-help)
10469 (idlwave-help-get-help-buffer):
10470 * progmodes/gud.el (gud-basic-call, gud-find-class)
10471 (gud-tooltip-activate-mouse-motions-if-enabled):
10472 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
10473 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
10474 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
10475 (ebrowse-tags-next-file):
10476 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
10477 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
10478 (ebnf-eps-finish-and-write):
10479 * progmodes/cpp.el (cpp-edit-save):
10480 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
10481 * progmodes/cc-defs.el (c-emacs-features):
10482 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
10483 (antlr-directory-dependencies):
10484 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
10485 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
10486 (ada-find-any-references, ada-make-filename-from-adaname)
10487 (ada-make-body-gnatstub):
10488 * obsolete/rnews.el (news-list-news-groups):
10489 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
10490 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
10491 * net/rcirc.el (rcirc-debug):
10492 * net/newst-treeview.el (newsticker--treeview-list-add-item)
10493 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
10494 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
10495 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
10496 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
10497 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
10498 (newsticker--treeview-list-clear-highlight)
10499 (newsticker--treeview-list-update-highlight)
10500 (newsticker--treeview-list-highlight-start)
10501 (newsticker--treeview-tree-update-highlight)
10502 (newsticker--treeview-get-selected-item)
10503 (newsticker-treeview-mark-list-items-old)
10504 (newsticker--treeview-set-current-node):
10505 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
10506 * net/newst-backend.el (newsticker--get-news-by-funcall)
10507 (newsticker--get-news-by-wget, newsticker--image-get)
10508 (newsticker--image-sentinel):
10509 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
10510 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
10511 (eudc-ph-close-session):
10512 * net/eudc.el (eudc-save-options):
10513 * language/thai-word.el (thai-update-word-table):
10514 * language/japan-util.el (japanese-string-conversion):
10515 * international/titdic-cnv.el (tsang-quick-converter)
10516 (ziranma-converter, ctlau-converter):
10517 * international/mule-cmds.el (describe-language-environment):
10518 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
10519 (skkdic-convert-postfix, skkdic-convert-prefix):
10520 (skkdic-convert-okuri-nasi, skkdic-convert):
10521 * emacs-lisp/re-builder.el (reb-update-overlays):
10522 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
10523 * emacs-lisp/gulp.el (gulp-send-requests):
10524 * emacs-lisp/find-gc.el (trace-call-tree):
10525 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
10526 (eieio-describe-generic):
10527 * emacs-lisp/eieio-base.el (eieio-persistent-read):
10528 * emacs-lisp/edebug.el (edebug-outside-excursion):
10529 * emacs-lisp/debug.el (debugger-make-xrefs):
10530 * emacs-lisp/cust-print.el (custom-prin1-to-string):
10531 * emacs-lisp/chart.el (chart-new-buffer):
10532 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
10533 Use with-current-buffer.
10534 * textmodes/artist.el (artist-system): Don't call
10535 copy-sequence on a fresh string.
10536 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
10537
10538 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
10539
10540 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
10541 is no item to edit. (Bug#4820)
10542 (todo-top-priorities): Restore point and restore narrowing in Todo
10543 buffer. (Bug#4820)
10544
10545 2009-10-31 Glenn Morris <rgm@gnu.org>
10546
10547 * net/ange-ftp.el (top-level): Don't require dired when compiling.
10548 (comint-last-output-start, comint-last-input-start)
10549 (comint-last-input-end): Don't defvar when compiling.
10550 (ange-ftp-process-file): Use bound-and-true-p.
10551
10552 * pcmpl-rpm.el (top-level): Move provide statement to end.
10553 (pcmpl-rpm): Remove unused custom group.
10554
10555 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
10556
10557 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
10558
10559 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
10560 (byte-compile-warnings): Add `constants' as an option.
10561 (byte-compile-callargs-warn, byte-compile-arglist-warn)
10562 (display-call-tree): Update for byte-compile-fdefinition possibly
10563 returning `(macro lambda ...)'. (Bug#4778)
10564 (byte-compile-variable-ref, byte-compile-setq-default):
10565 Respect `constants' member of byte-compile-warnings.
10566
10567 * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
10568 Use mapc rather than mapcar because the return value is never used.
10569
10570 * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
10571 * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
10572 * cedet/semantic/html.el:
10573 Suppress harmless warnings about setting up semantic-imenu (not
10574 part of Emacs) variables.
10575
10576 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
10577
10578 * vc-bzr.el (vc-bzr-revision-keywords): New var.
10579 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
10580 to "submit:".
10581
10582 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
10583 * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
10584 * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
10585 * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
10586 * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
10587 * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
10588 (semantic-analyzer-debug-global-symbol)
10589 (semantic-analyzer-debug-missing-innertype)
10590 (semantic-analyzer-debug-insert-include-summary):
10591 * cedet/semantic/util.el (semantic-file-tag-table):
10592 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
10593 (semantic-recursive-find-nonterminal-by-name):
10594 * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
10595 * cedet/semantic/tag-file.el (semantic-prototype-file):
10596 * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
10597 * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
10598 * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
10599 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
10600 (semantic-idle-summary-maybe-highlight):
10601 * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
10602 (semantic-ia-sb-tag-info):
10603 * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
10604 * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
10605 * cedet/semantic/ede-grammar.el (project-compile-target):
10606 (ede-proj-makefile-insert-variables):
10607 * cedet/semantic/debug.el (semantic-debug-set-parser-location):
10608 (semantic-debug-set-source-location, semantic-debug-interface-layout)
10609 (semantic-debug-mode, semantic-debug):
10610 * cedet/semantic/db.el (semanticdb-needs-refresh-p):
10611 * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
10612 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
10613 * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
10614 (semanticdb-find-translate-path-includes--internal)
10615 (semanticdb-reset-log, semanticdb-find-log-activity):
10616 * cedet/semantic/db-file.el (object-write):
10617 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
10618 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
10619 (semanticdb-create-ebrowse-database):
10620 * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
10621 * cedet/semantic/complete.el (semantic-displayor-focus-request)
10622 (semantic-collector-calculate-completions-raw)
10623 (semantic-complete-read-tag-analyzer):
10624 * cedet/semantic/analyze.el (semantic-analyze-pulse):
10625 * cedet/ede/util.el (ede-update-version-in-source):
10626 * cedet/ede/proj.el (project-delete-target):
10627 * cedet/ede/proj-elisp.el (ede-update-version-in-source)
10628 (ede-proj-flush-autoconf):
10629 * cedet/ede/pconf.el (ede-proj-configure-synchronize)
10630 (ede-proj-configure-synchronize):
10631 * cedet/ede/locate.el (ede-locate-file-in-project-impl):
10632 * cedet/ede/linux.el (ede-linux-version):
10633 * cedet/ede/emacs.el (ede-emacs-version):
10634 * cedet/ede/dired.el (ede-dired-add-to-target):
10635 * cedet/ede.el (ede-buffer-header-file, ede-find-target)
10636 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
10637 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
10638 * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
10639 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
10640 (cedet-idutils-version-check):
10641 * cedet/cedet-global.el (cedet-gnu-global-call):
10642 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
10643 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
10644 * cedet/cedet-cscope.el (cedet-cscope-call)
10645 (cedet-cscope-expand-filename, cedet-cscope-version-check):
10646 Use with-current-buffer.
10647 * cedet/ede.el (ede-make-project-local-variable)
10648 (ede-set-project-variables, ede-set): Use dolist.
10649
10650 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
10651
10652 * textmodes/ispell.el (ispell-skip-region-alist):
10653 * international/mule-conf.el (eight-bit):
10654 * international/fontset.el (font-encoding-alist):
10655 * startup.el (pure-space-overflow-message):
10656 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
10657 * paths.el (gnus-nntp-service, rmail-spool-directory)
10658 (term-file-prefix):
10659 * files.el (save-some-buffers-action-alist):
10660 * cmuscheme.el (same-window-buffer-names):
10661 * ielm.el (same-window-buffer-names):
10662 * shell.el (same-window-buffer-names):
10663 * mail/sendmail.el (same-window-buffer-names):
10664 * progmodes/inf-lisp.el (same-window-buffer-names):
10665 * bindings.el (mode-line-client)
10666 (mode-line-column-line-number-mode-map):
10667 * language/tibetan.el (tibetan-precomposition-rule-regexp)
10668 (tibetan-precomposed-regexp): Purecopy string arguments.
10669
10670 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
10671
10672 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
10673 (calcDigit-nondigit):
10674 * calc/calc-yank.el (calc-copy-to-buffer):
10675 * calc/calc-units.el (calc-invalidate-units-table):
10676 * calc/calc-trail.el (calc-trail-yank):
10677 * calc/calc-store.el (calc-insert-variables):
10678 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
10679 * calc/calc-prog.el (calc-read-parse-table):
10680 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
10681 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
10682 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
10683 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
10684 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
10685 (calc-graph-name, calc-graph-find-command, calc-graph-view)
10686 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
10687 * calc/calc-ext.el (calc-realign):
10688 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
10689 (calc-embedded-finish-edit, calc-embedded-make-info)
10690 (calc-embedded-finish-command, calc-embedded-stack-change):
10691 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
10692
10693 * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
10694 (overload-docstring-extension): Use that info.
10695 * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
10696 * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
10697 * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
10698 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
10699 (semantic-nonterminal-full-name): Add the new `when' info.
10700 * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
10701 `assert'.
10702
10703 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
10704 shell-dynamic-complete-filename in preference to
10705 comint-dynamic-complete-filename.
10706
10707 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
10708 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
10709 Don't consider whether the display supports colors.
10710 (bookmark-import-new-list): Use dolist.
10711 (bookmark-bmenu-mode-map): Move initialization into declaration.
10712 (bookmark-bmenu-list): Use dolist, simplify.
10713 (bookmark-show-all-annotations): Use save-selected-window and dolist.
10714 (menu-bar-final-items): Use push.
10715
10716 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
10717
10718 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
10719 it works on remote files.
10720 (vc-hg-diff): Don't pass any `--cwd' argument.
10721
10722 2009-10-27 Kevin Ryde <user42@zip.com.au>
10723
10724 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
10725 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
10726 (Further to Bug#3921).
10727
10728 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
10729
10730 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
10731 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
10732 calling `tramp-imap-put-file'. Add file size to the call.
10733 (tramp-imap-get-file-entries): Compute also user name, file size,
10734 and date.
10735 (tramp-imap-handle-insert-directory): Insert uid and gid.
10736 (tramp-imap-handle-file-attributes): Transform uid and gid
10737 according to `id-format'.
10738 (tramp-imap-put-file): New optional parameter SIZE. Encode file
10739 size in header X-Size.
10740
10741 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
10742
10743 * simple.el (transpose-subr): Give clearer error when the mark
10744 is not set. (Bug#4807)
10745
10746 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
10747
10748 * net/tramp.el (tramp-perl-file-truename): New defconst.
10749 Perl code contributed by yary <not.com@gmail.com> (tiny change).
10750 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
10751 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
10752 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
10753
10754 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
10755 Ignore `dired-call-process'.
10756 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
10757
10758 2009-10-26 Julian Scheid <julians37@gmail.com>
10759
10760 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
10761 (tramp-get-remote-readlink): New defun.
10762 (tramp-handle-file-truename): Use it.
10763 (tramp-handle-file-exists-p): Check file-attributes cache, assume
10764 file exists if cache value present.
10765 (tramp-check-cached-permissions): New defun.
10766 (tramp-handle-file-readable-p): Use it.
10767 (tramp-handle-file-writable-p): Likewise.
10768 (tramp-handle-file-executable-p): Likewise.
10769 (tramp-handle-file-name-all-completions): Try using Perl to get
10770 partial completions. When perl not available, combine `cd' and
10771 `ls' into single remote operation and use shell expansion to get
10772 partial remote directory contents. Set `file-exists-p' cache for
10773 directory and any files returned by ls. Change cache handling to
10774 support partial directory contents. Use error message emitted by
10775 remote `cd' or Perl code for local tramp-error.
10776 (tramp-do-copy-or-rename-file-directly): Avoid separate
10777 tramp-send-command-and-check call.
10778 (tramp-handle-process-file): Merge three remote ops into one.
10779 Do not flush all caches when `process-file-side-effects' is set.
10780 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
10781 file-attributes shows uid/gid to be set already.
10782
10783 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
10784
10785 * textmodes/tex-mode.el (tex-dvi-view-command)
10786 (tex-show-queue-command, tex-open-quote):
10787 * progmodes/ruby-mode.el (auto-mode-alist)
10788 (interpreter-mode-alist): Purecopy strings.
10789
10790 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
10791
10792 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
10793 string for the hook, keymap and abbrev table.
10794
10795 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
10796
10797 * x-dnd.el (x-dnd-xdnd-to-action):
10798 * startup.el (fancy-startup-text, fancy-about-text): Change to
10799 defconst from defvar.
10800
10801 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
10802
10803 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
10804 Purecopy initialization strings.
10805
10806 * mail/sendmail.el (mail-header-separator)
10807 (mail-personal-alias-file):
10808 * mail/rmail.el (rmail-default-dont-reply-to-names)
10809 (rmail-ignored-headers, rmail-retry-ignored-headers)
10810 (rmail-highlighted-headers, rmail-secondary-file-directory)
10811 (rmail-secondary-file-regexp):
10812 * files.el (null-device, file-name-invalid-regexp)
10813 (locate-dominating-stop-dir-regexp)
10814 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
10815 (interpreter-mode-alist): Use mapcar instead of mapc.
10816
10817 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
10818
10819 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
10820 (completion-ignored-extensions):
10821 (debug-ignored-errors): Purecopy strings.
10822
10823 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
10824
10825 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
10826 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
10827 (pcomplete--here): Use push.
10828
10829 * subr.el (all-completions): Declare the 4th arg obsolete.
10830
10831 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
10832
10833 * pcomplete.el (pcomplete-unquote-argument-function): New var.
10834 (pcomplete-unquote-argument): New function.
10835 (pcomplete--common-suffix): Always pay attention to case.
10836 (pcomplete--table-subvert): Quote and unquote the text.
10837 (pcomplete--common-quoted-suffix): New function.
10838 (pcomplete-std-complete): Use it and pcomplete-begin.
10839
10840 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
10841 we're inside a dedicated or minibuffer window.
10842
10843 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
10844
10845 * cedet/semantic/fw.el (semantic-alias-obsolete)
10846 (semantic-varalias-obsolete): Make the `when' arg mandatory.
10847 (define-mode-overload-implementation):
10848 * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
10849 * cedet/semantic/wisent.el (wisent-lex-make-token-table):
10850 * cedet/semantic/util.el (semantic-file-token-stream)
10851 (semantic-something-to-stream):
10852 * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
10853 (semantic-expand-nonterminal):
10854 * cedet/semantic/tag-file.el (semantic-find-nonterminal)
10855 (semantic-find-dependency, semantic-find-nonterminal)
10856 (semantic-find-dependency):
10857 * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
10858 (semantic-flex-text, semantic-flex-make-keyword-table)
10859 (semantic-flex-keyword-p, semantic-flex-keyword-put)
10860 (semantic-flex-keyword-get, semantic-flex-map-keywords)
10861 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
10862 * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
10863 * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
10864 (semantic-after-idle-scheduler-reparse-hooks):
10865 * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
10866 * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
10867 * cedet/semantic.el (semantic-toplevel-bovine-table)
10868 (semantic-toplevel-bovine-cache)
10869 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
10870 (semantic-init-mode-hooks, semantic-init-db-hooks)
10871 (semantic-bovination-working-type): Provide the `when' arg.
10872
10873 2009-10-24 Karl Fogel <kfogel@red-bean.com>
10874
10875 * bookmark.el: Update documentation, especially documentation
10876 of `bookmark-alist' and of the bookmark file format.
10877 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
10878
10879 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
10880
10881 * mail/emacsbug.el (report-emacs-bug): Clarify that the
10882 keybindings apply to the mail buffer (Bug#4003). Shrink help
10883 window to buffer.
10884
10885 * whitespace.el (whitespace-mode, whitespace-newline-mode)
10886 (global-whitespace-mode, global-whitespace-newline-mode)
10887 (whitespace-toggle-options, global-whitespace-toggle-options):
10888 Doc fix (Bug#3660).
10889
10890 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
10891 of xmltok-start before the end tag was inserted (Bug#2840).
10892
10893 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
10894 patterns that are preceded by an open-paren (Bug#1320).
10895
10896 2009-10-24 Sven Joachim <svenjoac@gmx.de>
10897
10898 * files.el (delete-directory): Delete symlinks to directories with
10899 delete-file (Bug#4739).
10900
10901 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
10902
10903 * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
10904 * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
10905 argument to make-obsolete.
10906
10907 * cedet/semantic/fw.el (semantic-alias-obsolete)
10908 (semantic-varalias-obsolete): Add optional WHEN argument.
10909
10910 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
10911
10912 * vc.el (vc-backend-for-registration): Rename from
10913 vc-get-backend-for-registration. Update callers.
10914
10915 * international/mule-cmds.el (set-language-info-alist):
10916 Purecopy lang-env.
10917 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
10918 (charset): Purecopy the name.
10919 (define-char-code-property): Purecopy string arguments.
10920
10921 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
10922 Purecopy string arguments.
10923
10924 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
10925 * ediff-hook.el (menu-bar-ediff-menu):
10926 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
10927 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
10928
10929 2009-10-24 Glenn Morris <rgm@gnu.org>
10930
10931 * comint.el (comint-dynamic-list-completions):
10932 * term.el (term-dynamic-list-completions): Use choose-completion rather
10933 than obsolete alias mouse-choose-completion.
10934
10935 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
10936 file-cache-choose-completion.
10937 (file-cache-choose-completion): Handle an optional event argument.
10938 (file-cache-mouse-choose-completion): Make it an obsolete alias.
10939
10940 * progmodes/octave-mod.el (octave-complete-symbol):
10941 Use choose-completion if mouse-choose-completion is ever removed.
10942
10943 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
10944 use.
10945
10946 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
10947 compiler.
10948
10949 * vc-hooks.el (vc-responsible-backend): Fix declaration.
10950
10951 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
10952
10953 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
10954 Ignore `pred' now that we receive one.
10955 Handle test-completion specially.
10956
10957 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
10958
10959 * vc.el (vc-responsible-backend): Throw an error if not backend is
10960 found. Remove the REGISTER argument. Move the code dealing with
10961 REGISTER ...
10962 (vc-get-backend-for-registration): ... here. New function.
10963 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
10964 of vc-responsible-backend, pass the file name instead of the
10965 directory name.
10966
10967 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
10968
10969 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
10970 New funs.
10971 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
10972 (pcomplete-comint-setup): Don't modify a global var via
10973 accidental side-effects.
10974 (pcomplete-shell-setup): Adjust call accordingly.
10975 (pcomplete-parse-comint-arguments): Use push.
10976
10977 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
10978
10979 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
10980 Allow uncapitalized info node names (Bug#3921).
10981
10982 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
10983 to the DEBUG file (Bug#3781).
10984
10985 2009-10-23 Jari Aalto <jari.aalto@cante.net>
10986
10987 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
10988 dictionary entry (Bug#4579).
10989
10990 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
10991
10992 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
10993 from `rfn-eshadow-update-overlay-hook' when unloading.
10994 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
10995 "rsyncc". Adjust doc string.
10996 (tramp-temp-buffer-file-name): New buffer-local defvar.
10997 (tramp-handle-insert-file-contents, tramp-handle-write-region):
10998 Keep temporary file when indicated by method ("rsync" and
10999 "rsyncc").
11000 (tramp-handle-write-region): Handle APPEND.
11001 (tramp-delete-temp-file-function): New defun. Added to
11002 `kill-buffer-hook'.
11003
11004 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
11005
11006 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
11007
11008 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11009
11010 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
11011 (color-name-rgb-alist, tty-standard-colors)
11012 (tty-color-mode-alist): Change to defconst.
11013
11014 * simple.el (mark-inactive): Purecopy message.
11015
11016 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
11017 (global-map, yank-menu):
11018 * textmodes/ispell.el (ispell-menu-map):
11019 * net/eudc.el (eudc-tools-menu):
11020 * international/mule-cmds.el (describe-language-environment-map)
11021 (setup-language-environment-map, set-coding-system-map)
11022 (mule-menu-keymap):
11023 * vc-hooks.el (vc-menu-entry, vc-menu-map):
11024 * replace.el (occur-mode-map):
11025 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
11026
11027 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
11028
11029 * calc/calc.el (math-read-number, math-read-number-simple): Use
11030 `save-match-data'.
11031
11032 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
11033
11034 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
11035 rather than fiddling with global-map bindings, since it should only
11036 affect per-terminal settings.
11037 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
11038
11039 * minibuffer.el (completion-table-with-terminator): Allow to specify
11040 the terminator-regexp.
11041
11042 * simple.el (switch-to-completions): Look for *Completions* in other
11043 frames as well.
11044
11045 * pcomplete.el: Allow the use of completion-tables.
11046 (pcomplete-std-complete): New command.
11047 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
11048 (pcomplete--here): Use a function for `form' rather than an expression,
11049 so it can be byte-compiled.
11050 (pcomplete-here, pcomplete-here*): Adjust accordingly.
11051 Add edebug declaration.
11052 (pcomplete-show-completions): Remove unused var `curbuf'.
11053 (pcomplete-do-complete, pcomplete-stub):
11054 Don't assume `completions' is a list of strings any more.
11055
11056 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
11057
11058 * find-dired.el (find-name-arg): Fix typo in docstring.
11059
11060 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
11061
11062 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
11063 (pcmpl-linux-fs-types): Same, and update to new modules layout.
11064
11065 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
11066 pcomplete-entries.
11067
11068 * comint.el (comint-read-input-ring, comint-write-input-ring)
11069 (comint-substitute-in-file-name)
11070 (comint-dynamic-complete-as-filename)
11071 (comint-dynamic-simple-complete)
11072 (comint-dynamic-list-filename-completions)
11073 (comint-dynamic-list-completions)
11074 (comint-redirect-results-list-from-process): Minor simplifications.
11075
11076 2009-10-21 Kevin Ryde <user42@zip.com.au>
11077
11078 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
11079 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
11080 the first form. And insert a blank line after ";;; Code" since
11081 that's usual style. (Bug#4612)
11082
11083 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
11084
11085 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11086
11087 * minibuffer.el (completion-table-with-terminator): Properly implement
11088 boundaries, in case `terminator' appears in the suffix.
11089 (completion--embedded-envvar-table): Don't return boundaries if
11090 there's no valid completion. Simplify.
11091 (completion-file-name-table): New completion table extracted from
11092 completion--file-name-table.
11093 (completion--file-name-table): Use it.
11094 (read-file-name-predicate): Declare obsolete.
11095 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
11096 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
11097 completion-file-name-table, and use the `pred' argument.
11098 * files.el (locate-file-completion-table): Use the `pred' arg rather
11099 than read-file-name-predicate.
11100 (abbreviate-file-name): Use \` rather than ^ for BOS.
11101
11102 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
11103
11104 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
11105 vc-responsible-backend to register, it causes problems.
11106
11107 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11108
11109 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
11110
11111 2009-10-21 Eric Ludlam <zappo@gnu.org>
11112
11113 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
11114 (semantic-c-debug-mode-init-pch): New functions.
11115 (semantic-c-debug-mode-init-last-mode): New var.
11116 (semantic-c-parse-lexical-token): Use them.
11117
11118 * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
11119 When extracting the argument list, limit only by point-max.
11120
11121 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
11122
11123 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
11124 (tramp-smb-handle-file-attributes): Use it.
11125 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
11126 (tramp-smb-handle-insert-directory): Use `mapc' rather than
11127 `mapcar'. Use `tramp-smb-get-stat-capability'.
11128 Add `dired-filename' text properties.
11129 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
11130 (tramp-smb-maybe-open-connection): Simplify check for smbclient
11131 version.
11132
11133 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11134
11135 * subr.el (read-key-delay): Reduce to 0.01.
11136 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
11137 (bug#4751).
11138
11139 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
11140
11141 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
11142
11143 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
11144 (Info-menu): Remove unused vars `last' and `completions'.
11145 (Info-index-nodes): Remove unused var `node'.
11146
11147 * info.el (Info-complete-menu-item): Use complete-with-action.
11148
11149 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
11150
11151 Make vc-annotate work through copies and renames.
11152 * vc-annotate.el (vc-annotate-extract-revision-at-line):
11153 Return the file name too.
11154 (vc-annotate-revision-at-line)
11155 (vc-annotate-find-revision-at-line)
11156 (vc-annotate-revision-previous-to-line)
11157 (vc-annotate-show-log-revision-at-line): Update to get the file
11158 name from vc-annotate-extract-revision-at-line.
11159 (vc-annotate-show-diff-revision-at-line-internal): Change the
11160 argument to mean whether to show a file diff or not. Get the file
11161 name from vc-annotate-extract-revision-at-line.
11162 (vc-annotate-show-diff-revision-at-line):
11163 Update vc-annotate-show-diff-revision-at-line call.
11164 (vc-annotate-warp-revision): Add an optional file argument.
11165
11166 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
11167 (vc-git-annotate-extract-revision-at-line): Also return the file
11168 name if found.
11169
11170 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
11171 command. Remove unused code.
11172 (vc-hg-annotate-re): Update to match --follow output.
11173 (vc-hg-annotate-extract-revision-at-line): Also return the file
11174 name if found.
11175
11176 * vc.el: Update annotate-extract-revision-at-line documentation.
11177
11178 2009-10-18 Kevin Ryde <user42@zip.com.au>
11179
11180 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
11181 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
11182
11183 * net/browse-url.el (browse-url): Identify alist with "consp and
11184 not functionp" and let all other things go down the `apply' leg,
11185 as suggested by Stefan. (Further to bug#4531.)
11186
11187 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
11188
11189 * minibuffer.el (read-file-name): Check for repeat before putting
11190 a default argument in file-name-history (Bug#4657).
11191
11192 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
11193 read syntax (Bug#4737).
11194
11195 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
11196
11197 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11198
11199 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
11200 (html-tag-alist, html-tag-help): Add descriptions for undocumented
11201 entries and make note of obsolete tags.
11202
11203 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
11204
11205 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
11206
11207 2009-10-18 Glenn Morris <rgm@gnu.org>
11208
11209 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
11210 grep, so that binary files (eg international/uni-bidi.el) can match.
11211 Remove test for "UnicodeData" files, since it is hopefully unnecessary
11212 now, and in any case the file header format has changed.
11213
11214 2009-10-17 Glenn Morris <rgm@gnu.org>
11215
11216 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
11217 (flyspell-get-word, flyspell-large-region)
11218 (flyspell-auto-correct-previous-word): Doc/error message fixes.
11219
11220 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
11221
11222 * Makefile.in (ELCFILES): Add ede/shell.
11223
11224 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
11225
11226 * term/common-win.el (x-colors): Purecopy it.
11227
11228 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
11229
11230 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
11231 permissive for when the buffer is empty.
11232 (tar-header-block-tokenize): Decode the username and groupname.
11233 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
11234
11235 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
11236
11237 * cedet/srecode/srt.el:
11238 * cedet/srecode/compile.el:
11239 * cedet/semantic/mru-bookmark.el:
11240 * cedet/semantic/debug.el:
11241 * cedet/semantic/complete.el:
11242 * cedet/semantic/analyze.el: Require CL when compiling.
11243
11244 2009-10-17 Eric Ludlam <zappo@gnu.org>
11245
11246 * cedet/semantic/scope.el
11247 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
11248 tmpscope so that the regular scope will continue to work.
11249
11250 * cedet/semantic/idle.el (semantic-idle-tag-highlight):
11251 Use semantic-idle-summary-highlight-face as the highlighting.
11252
11253 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
11254 contains multibyte characters, choose first applicable coding
11255 system automatically.
11256
11257 * cedet/ede/project-am.el (project-run-target): New method.
11258 (project-run-target): New method.
11259
11260 * cedet/ede.el (ede-target): Add run target menu item.
11261 (ede-project, ede-minor-keymap): Add ede-run-target binding.
11262 (ede-run-target): New function.
11263 (ede-target::project-run-target): New method.
11264
11265 * cedet/ede/proj.el (project-run-target): New method.
11266
11267 * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
11268 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
11269 Add :rules.
11270 (ede-proj-target-makefile-shared-object): Only libtool compilers
11271 now available. Add linkers for libtool.
11272 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
11273 (ede-proj-makefile-target-name): Always use .la extension.
11274
11275 * cedet/ede/proj-prog.el (project-run-target): New method.
11276
11277 * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
11278 (ede-g++-linker): Change Change link lines.
11279
11280 * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
11281 When searching for old variables, go to the end of the buffer and
11282 search backward from there.
11283 (ede-proj-makefile-automake-insert-subdirs)
11284 (ede-proj-makefile-automake-insert-extradist): New methods.
11285 (ede-proj-makefile-create): Use them.
11286
11287 * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
11288 Force FILE to expand to the current target. Use file-exists-p to
11289 check that it exists.
11290
11291 * cedet/ede/linux.el (ede-linux-version): Don't call "head".
11292 (ede-linux-load): Wrap dir in file-name-as-directory.
11293 Set :version slot.
11294
11295 * cedet/ede/files.el (ede-get-locator-object): When enabling
11296 locate, do so on "top".
11297
11298 * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
11299 file-name-as-directory during compare.
11300 (ede-emacs-version): Return Emacs/XEmacs differentiator.
11301 Get version number from different places. Don't call egrep.
11302 (ede-emacs-load): Set :version slot. Call file-name-as-directory
11303 to set the directory.
11304
11305 * cedet/ede/shell.el: New file.
11306
11307 * cedet/inversion.el (inversion-decoders): Allow for stray . in
11308 alpha/beta variants.
11309
11310 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
11311
11312 * international/mule-cmds.el (select-safe-coding-system): If the file
11313 has a coding cookie, use it regardless of any other setting (bug#4712).
11314
11315 2009-10-17 Glenn Morris <rgm@gnu.org>
11316
11317 * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
11318 All errors should have messages.
11319
11320 * foldout.el (foldout-mouse-swallow-events):
11321 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
11322
11323 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
11324 (dired-keep-marker-copy, dired-keep-marker-hardlink)
11325 (dired-keep-marker-symlink, dired-dwim-target)
11326 (dired-copy-preserve-time): Do not autoload these defcustoms.
11327
11328 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
11329 messages from messing up the file coding. (Bug#4623)
11330
11331 2009-10-17 Jari Aalto <jari.aalto@cante.net>
11332
11333 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
11334 if no match is found for the current dictionary. (Bug#4578)
11335
11336 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
11337 optional, since that is how it is documented, and this is often called
11338 with a nil argument. (Bug#4577)
11339 (flyspell-external-point-words, flyspell-auto-correct-word)
11340 (flyspell-correct-word-before-point, flyspell-word-search-forward)
11341 (flyspell-word-search-backward): Remove nil argument in calls to
11342 flyspell-get-word, since it is not needed now.
11343
11344 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
11345
11346 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
11347
11348 2009-10-16 Glenn Morris <rgm@gnu.org>
11349
11350 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
11351
11352 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
11353
11354 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
11355 (ange-ftp-file-size): New function.
11356 (ange-ftp-file-attributes): Use it.
11357
11358 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
11359
11360 * net/tramp-smb.el (tramp-smb-version): New defvar.
11361 (tramp-smb-maybe-open-connection): Use it, in order to avoid
11362 repeated checks.
11363
11364 2009-10-16 Glenn Morris <rgm@gnu.org>
11365
11366 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
11367 Maybe copy some custom properties from old to new name. (Bug#4706)
11368
11369 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
11370
11371 * subr.el (error, sit-for, start-process-shell-command)
11372 (start-file-process-shell-command): Set the calling convention
11373 after the function definition.
11374
11375 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
11376
11377 * subr.el (error, sit-for, start-process-shell-command)
11378 (start-file-process-shell-command): Use the new
11379 set-advertised-calling-convention feature.
11380
11381 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
11382
11383 * international/ucs-normalize.el (ucs-normalize-version):
11384 Change to 1.2.
11385 (check-range): Adjust for Unicode 5.2.
11386
11387 2009-10-15 Juri Linkov <juri@jurta.org>
11388
11389 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
11390 to the `menu-item' format.
11391
11392 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
11393
11394 * net/tramp.el (tramp-replace-environment-variables): Do not fail
11395 if the environment variable does not exist.
11396
11397 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11398 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
11399 parameter.
11400 (tramp-smb-handle-add-name-to-file)
11401 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11402 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11403 (tramp-smb-handle-file-attributes)
11404 (tramp-smb-do-file-attributes-with-stat)
11405 (tramp-smb-handle-file-local-copy)
11406 (tramp-smb-handle-insert-directory)
11407 (tramp-smb-handle-make-directory)
11408 (tramp-smb-handle-make-directory-internal)
11409 (tramp-smb-handle-make-symbolic-link)
11410 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
11411 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
11412 (tramp-smb-maybe-open-connection): Apply the changed parameters.
11413 (tramp-smb-read-file-entry): Read Disk names in compressed format.
11414 Handle long file names.
11415 (tramp-smb-get-cifs-capabilities): Check, whether the connection
11416 process is running.
11417 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
11418 Read share names with "-g" option.
11419
11420 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
11421
11422 * net/rcirc.el (rcirc-view-log-file): New command.
11423 (rcirc-track-minor-mode-map): Remove C-c ` binding.
11424 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
11425 specified.
11426
11427 2009-10-15 Glenn Morris <rgm@gnu.org>
11428
11429 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
11430 from the second command-line argument.
11431 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
11432 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
11433 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
11434 w32-batch-update-autoloads.
11435 * emacs-lisp/autoload.el (autoload-make-program): New variable.
11436 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
11437
11438 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
11439 the headers cannot be located. Simplify, subtracting superflous
11440 save-excursions.
11441
11442 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
11443
11444 Replace completion-base-size by completion-base-position to fix bugs
11445 such as (bug#4699).
11446 * simple.el (completion-base-position): New var.
11447 (completion-base-size): Mark as obsolete.
11448 (choose-completion): Make it work for mouse events as well.
11449 Pass the new base-position to choose-completion-string.
11450 (choose-completion-guess-base-position): New function, extracted from
11451 choose-completion-delete-max-match.
11452 (choose-completion-delete-max-match): Use it. Make obsolete.
11453 (choose-completion-string): Use the new base-position info.
11454 (completion-root-regexp): Delete.
11455 (completion-setup-function): Preserve completion-base-position.
11456 Eliminate obsolete base-size manipulation.
11457 * minibuffer.el (display-completion-list): Don't mess with base-size.
11458 (minibuffer-completion-help): Set completion-base-position instead.
11459 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
11460 choose-completion.
11461 * textmodes/bibtex.el (bibtex-complete):
11462 * emacs-lisp/crm.el (crm--choose-completion-string):
11463 Adjust to new calling convention.
11464 * complete.el (partial-completion-mode): Use minibufferp to avoid
11465 bumping into incompatible change to choose-completion-string-functions.
11466 * ido.el (ido-choose-completion-string): Make its calling convention
11467 more permissive.
11468 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
11469 base-size manipulation.
11470 (comint-dynamic-list-input-ring): Use dotimes and push.
11471 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
11472 fundamental-mode. Use `or'.
11473
11474 2009-10-14 Juri Linkov <juri@jurta.org>
11475
11476 * misearch.el (multi-isearch-next-buffer-from-list)
11477 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
11478
11479 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
11480
11481 * Makefile.in (compile-onefile): Load `bytecomp' rather than
11482 `bytecomp.el'.
11483
11484 * minibuffer.el (completion-pcm--merge-completions): Make sure the
11485 string we return is all made up of text from the completions rather
11486 than part from the completions and part from the input (bug#4219).
11487
11488 * ido.el (ido-everywhere): Use define-minor-mode.
11489
11490 * buff-menu.el (list-buffers, ctl-x-map):
11491 Mark the entry points with ;;;###autoload cookies.
11492
11493 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
11494
11495 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
11496 correctly in the detached head case.
11497 (vc-git-print-log): Remove unused binding.
11498
11499 * vc.el (vc-responsible-backend): When a directory is passed for
11500 for registration create a VC repository if no backend is
11501 responsible for the directory argument.
11502 (vc-deduce-fileset): Tell vc-responsible-backend to register.
11503
11504 * vc.el: Move comments about RCS and SCCS ...
11505 * vc-rcs.el:
11506 * vc-sccs.el: ... here, respectively.
11507
11508 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
11509
11510 * minibuffer.el (completion--file-name-table): Return nil if there's
11511 no file completion, even if substitute-in-file-name changed
11512 the string (bug#4708).
11513
11514 2009-10-13 Juri Linkov <juri@jurta.org>
11515
11516 * files-x.el (read-file-local-variable-value): Don't filter out
11517 minor modes from mode name completion (bug#4664).
11518
11519 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
11520
11521 * international/mule-cmds.el (ucs-names): Remove exclusion of
11522 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
11523
11524 2009-10-13 Kenichi Handa <handa@m17n.org>
11525
11526 * international/uni-name.el: Regenerated.
11527
11528 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
11529
11530 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
11531 should be automatically buffer-local, but isn't.)
11532
11533 2009-10-12 Sam Steingold <sds@gnu.org>
11534
11535 * progmodes/compile.el (compilation-next-error-function): Fix the
11536 timestamps if the buffer has been visited before.
11537 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
11538 non-anchored patterns, like the perl one (bug#3928).
11539
11540 2009-10-12 Glenn Morris <rgm@gnu.org>
11541
11542 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
11543 Let-bind `size'.
11544
11545 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
11546
11547 * proced.el (proced-unload-function): New function.
11548
11549 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
11550 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
11551 Doc fix.
11552
11553 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
11554
11555 2009-10-11 Juri Linkov <juri@jurta.org>
11556
11557 * files-x.el (read-file-local-variable-value):
11558 Provide default value only for bound variables (bug#4664).
11559
11560 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
11561
11562 * net/tramp.el (tramp-local-host-p): Function shall return nil for
11563 connection methods like smb.
11564
11565 * net/tramp-cache.el (tramp-flush-connection-property): The hash
11566 can be empty.
11567
11568 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11569 (tramp-smb-file-name-handler-alist): Add handlers for
11570 `add-name-to-file', `make-symbolic-link'.
11571 (tramp-smb-handle-add-name-to-file)
11572 (tramp-smb-do-file-attributes-with-stat)
11573 (tramp-smb-handle-make-symbolic-link)
11574 (tramp-smb-get-cifs-capabilities): New defuns.
11575 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11576 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11577 (tramp-smb-handle-file-local-copy)
11578 (tramp-smb-handle-make-directory-internal)
11579 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
11580 The file name syntax depends on cifs capabilities.
11581 (tramp-smb-handle-file-attributes):
11582 Call `tramp-smb-do-file-attributes-with-stat' if possible.
11583 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
11584 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
11585
11586 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
11587
11588 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
11589 (eieio-defclass): Apply deftype handler and setf-method properties
11590 directly.
11591 (eieio-add-new-slot): Avoid union function from cl library.
11592 (eieio--typep): New function.
11593 (eieio-perform-slot-validation): Use it.
11594
11595 2009-10-10 Karl Fogel <kfogel@red-bean.com>
11596
11597 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
11598 Update documentation to refer to the variables documented in r1.135.
11599 (Bug#4188)
11600
11601 2009-10-10 Karl Fogel <kfogel@red-bean.com>
11602
11603 * bookmark.el (Info-suffix-list): Remove this unused variable.
11604 (bookmark-current-point): Remove this obsolete variable.
11605 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
11606 Adjust for removal of bookmark-current-point.
11607
11608 (bookmarks-already-loaded, bookmark-current-buffer)
11609 (bookmark-yank-point): Document. (Bug#4188)
11610
11611 2009-10-10 Glenn Morris <rgm@gnu.org>
11612
11613 * frame.el (frame-height): Doc fix.
11614
11615 * calendar/calendar.el (calendar-split-width-threshold): New option.
11616 (calendar-basic-setup): Use calendar-split-width-threshold.
11617
11618 2009-10-10 Sascha Wilde <wilde@sha-bang.de>
11619
11620 * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
11621 Use .la for Automake.
11622
11623 2009-10-09 Chong Yidong <cyd@stupidchicken.com>
11624
11625 * cedet/ede/pconf.el (ede-proj-configure-synchronize):
11626 Use "autoreconf -i". Suggested by Andreas Schwab.
11627
11628 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
11629
11630 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
11631 Ideographic Supplement" range (U+1F200..U+1F2FF).
11632
11633 2009-10-09 Karl Fogel <kfogel@red-bean.com>
11634
11635 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
11636 since the list will have been rebuilt anyway. (Bug#4349)
11637
11638 2009-10-09 Karl Fogel <kfogel@red-bean.com>
11639
11640 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
11641 (bookmark-bmenu-execute-deletions): Don't save here, as
11642 bookmark-delete will now do so if necessary.
11643 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
11644 (Bug#4348)
11645
11646 2009-10-09 Glenn Morris <rgm@gnu.org>
11647
11648 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
11649
11650 2009-10-09 Karl Fogel <kfogel@red-bean.com>
11651
11652 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
11653 (bookmark-jump-other-window): Just invoke bookmark-jump with new
11654 argument now, so the two function's behaviors will match. (Bug#3645)
11655
11656 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
11657
11658 * cedet/ede/proj.el (project-make-dist, project-compile-project):
11659 Fix filename test.
11660 (ede-proj-dist-makefile): Use expand-file-name instead of concat
11661 to expand file names.
11662
11663 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
11664
11665 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
11666 (tramp-file-name-real-host, tramp-file-name-port):
11667 Apply `save-match-data'.
11668
11669 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
11670 case both directories are remote.
11671 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
11672 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
11673
11674 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
11675
11676 * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
11677 (ede-proj-target-makefile-objectcode): Use it.
11678
11679 * cedet/ede/source.el (ede-want-any-source-files-p)
11680 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
11681 Return search result. This error was introduced while merging.
11682
11683 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
11684
11685 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
11686
11687 2009-10-07 Glenn Morris <rgm@gnu.org>
11688
11689 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
11690 of concat.
11691
11692 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
11693
11694 * files-x.el (read-file-local-variable): Include some
11695 non-user-variables in the completion table (bug#4664).
11696
11697 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
11698
11699 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
11700 message.
11701
11702 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11703 (tramp-smb-file-name-handler-alist): Add handler for
11704 `copy-directory', `expand-file-name', `set-file-modes'.
11705 (tramp-smb-handle-copy-directory)
11706 (tramp-smb-handle-expand-file-name)
11707 (tramp-smb-handle-set-file-modes): New defuns.
11708 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
11709 (tramp-smb-handle-file-attributes): Simplify check for retrieving
11710 entry.
11711 (tramp-smb-handle-insert-directory): Don't flush the cache.
11712 (tramp-smb-maybe-open-connection): Check for samba client and
11713 server versions.
11714
11715 2009-10-07 Eli Zaretskii <eliz@gnu.org>
11716
11717 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
11718 to not error out of search for "^lisp=" fails.
11719
11720 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
11721
11722 * makefile.w32-in (WINS_UPDATES): New macro.
11723 (custom-deps, finder-data, autoloads): Use it.
11724
11725 2009-10-07 Glenn Morris <rgm@gnu.org>
11726
11727 * Makefile.in (autoloads): Revert previous change.
11728 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
11729 the list of preloaded files passed on the command-line, get
11730 it from src/Makefile.
11731
11732 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
11733 show the original buffer rather than a random one.
11734
11735 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
11736
11737 * help.el (describe-no-warranty): Place point in a slightly better
11738 position in the GPLv3 text.
11739
11740 2009-10-06 Sam Steingold <sds@gnu.org>
11741
11742 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
11743 the comm attribute is present before calling regexp-quote.
11744
11745 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
11746
11747 * play/animate.el (animate-string): For good effect, make sure
11748 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
11749
11750 * play/animate.el (animate-sequence, animate-birthday-present):
11751 * misc.el (butterfly): Don't set `indent-tabs-mode'.
11752
11753 2009-10-06 Glenn Morris <rgm@gnu.org>
11754
11755 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
11756
11757 * emacs-lisp/autoload.el (autoload-excludes): New variable.
11758 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
11759 (batch-update-autoloads): Process a string value of autoload-excludes,
11760 set during the build process.
11761 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
11762
11763 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
11764 inside with-parsed... macro so that `v' is defined.
11765
11766 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
11767 * progmodes/fortran.el (fortran-end-of-block)
11768 (fortran-beginning-of-block):
11769 Also push mark in the macro case.
11770
11771 * emerge.el (emerge-show-file-name):
11772 * calc/calc.el (calc-quit):
11773 * calc/calc-misc.el (calc-big-or-small):
11774 * calc/calc-graph.el (calc-graph-view):
11775 * calc/calc-ext.el (calc-reset):
11776 * calendar/calendar.el (calendar-basic-setup):
11777 Use window-full-height-p.
11778
11779 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
11780 header we don't understand, don't insert another. (Bug#4624)
11781 If changing mime charset, insert the new one in the right place.
11782
11783 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
11784
11785 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
11786 (cal-tex-cursor-month): Correctly increment the end date for diary and
11787 holiday listing. (Bug#4626)
11788
11789 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
11790
11791 * help-fns.el (describe-function-1): Don't burp if the function is not
11792 a symbol.
11793
11794 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
11795
11796 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
11797 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
11798 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
11799 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
11800
11801 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
11802 (eieio-default-superclass): Reflow docstrings.
11803 (this, class-option-assoc, defclass, eieio-class-un-autoload)
11804 (eieio-unbind-method-implementations, defmethod)
11805 (eieio-validate-slot-value, eieio-validate-class-slot-value)
11806 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
11807 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
11808 (eieio-slot-originating-class-p, eieio-slot-name-index)
11809 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
11810 (constructor, initialize-instance, no-next-method, object-print)
11811 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
11812 Fix typos in docstrings.
11813 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
11814 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
11815 (next-method-p): Doc fixes.
11816 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
11817 Fix typos in error messages.
11818 (eieio-defmethod): Fix typo in description of generic method.
11819
11820 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
11821 (eieio-persistent-save-interactive, slot-missing):
11822 Fix typos in docstrings.
11823 (eieio-instance-inheritor-slot-boundp): Doc fix.
11824
11825 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
11826 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
11827
11828 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
11829 (eieio-custom-object-apply-reset):
11830 Fix typos in docstrings and error messages.
11831
11832 * emacs-lisp/eieio-datadebug.el (data-debug-show):
11833 Fix typo in docstring.
11834
11835 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
11836 (eieio-browse-tree): Doc fix.
11837 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
11838 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
11839 Fix typos in docstrings.
11840
11841 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
11842 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
11843 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
11844 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
11845 Reflow docstrings.
11846
11847 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
11848
11849 * vc-hg.el (log-view-vc-backend): Declare for compiler.
11850 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
11851 Set log-view-vc-backend so that diff can work.
11852
11853 * log-view.el (log-view-diff): Use vc-diff-internal instead of
11854 vc-version-diff.
11855 (vc-diff-internal): Autoload this instead of vc-version-diff.
11856
11857 2009-10-05 Eli Zaretskii <eliz@gnu.org>
11858
11859 * simple.el (eval-expression): Doc fix.
11860
11861 * progmodes/cwarn.el (cwarn-mode): Doc fix.
11862
11863 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
11864
11865 * files.el (directory-files-no-dot-files-regexp): New defconst.
11866 (delete-directory): Use it.
11867 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
11868
11869 * net/tramp.el (tramp-verbose): Fix docstring.
11870 (tramp-methods): Add recursive option to `tramp-copy-args'.
11871 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
11872 "scp1_old", "scp2_old", "rsync", "rsyncc".
11873 (tramp-default-method): Check also for `auth-source-user-or-password'.
11874 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
11875 Add handler for `copy-directory'.
11876 (tramp-handle-copy-directory): New defun.
11877 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
11878 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
11879 Optimize sent command.
11880
11881 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
11882
11883 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
11884 window if necessary.
11885
11886 * calendar/calendar.el (calendar-basic-setup): Don't call
11887 switch-to-buffer in a dedicated window.
11888
11889 2009-10-05 Karl Fogel <kfogel@red-bean.com>
11890
11891 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
11892 don't do anything related to relocating, just return nil.
11893 (bookmark-error-no-filename): New error.
11894 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
11895 bookmark has no file. Don't even attempt to handle things that
11896 are not files; the whole point of custom handlers is to keep that
11897 knowledge elsewhere anyway. Tighten some comments.
11898 (bookmark-file-or-variation-thereof): Remove now-unused function.
11899 (bookmark-location): Doc string fix.
11900 (Bug#4250)
11901
11902 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11903
11904 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
11905 don't use a file dialog, because they usually don't know how to read
11906 a directory target from the user. (Bug#4230)
11907 Also, make sure the prompt can display directories as well as files.
11908
11909 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11910
11911 * bookmark.el (bookmark-set, bookmark-buffer-name):
11912 Improve doc strings. (Bug#1193)
11913
11914 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11915
11916 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
11917 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
11918 (bookmark-get-annotation, bookmark-set-annotation)
11919 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
11920 (bookmark-set-position, bookmark-get-front-context-string)
11921 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
11922 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
11923 (bookmark-jump-other-window, bookmark-handle-bookmark)
11924 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
11925 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
11926 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
11927 Improve doc strings to say whether bookmark can be a string or
11928 a record or both, and make other consistency and clarity fixes.
11929 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
11930 (bookmark-default-annotation-text, bookmark-yank-word)
11931 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
11932 (bookmark-import-new-list, bookmark-maybe-rename)
11933 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
11934 (bookmark-bmenu-bookmark): Give these doc strings.
11935 (bookmark-bmenu-check-position): Give this a doc string, but also
11936 add a FIXME comment about how the function may be pointless.
11937 (bookmark-default-handler): Rework doc string and change a
11938 parameter name, to clarify that this takes a bookmark record
11939 not a bookmark name.
11940 (bookmark-set): Change a parameter name to indicate its meaning,
11941 and improve the doc string a bit.
11942 (Bug#4188)
11943
11944 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11945
11946 * bookmark.el (bookmark-alist): Document the new `handler' element
11947 in the param alist.
11948 (bookmark-make-record-function): Adjust documentation for above.
11949 (Bug#4193)
11950
11951 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11952
11953 * info.el (Info-bookmark-make-record): Document this function.
11954 (Info-bookmark-jump): Document with a doc string, not just a comment.
11955 (Bug#4203)
11956
11957 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
11958
11959 * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
11960 (semantic-new-buffer-fcn): Call parser setup functions here.
11961 (semantic-mode): Don't call parser setup functions here, it's done
11962 in semantic-new-buffer-fcn now.
11963 (semantic-mode): Parse all existing buffers when enabled.
11964
11965 * cedet/srecode/compile.el (srecode-compile-file):
11966 Call semantic-new-buffer-fcn if the buffer has not been parsed.
11967
11968 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
11969
11970 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
11971
11972 * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
11973 (proj-comp-insert-variable-once): New macro, renamed from
11974 ede-pmake-insert-variable-once in ede/pmake.edl.
11975 (ede-proj-makefile-insert-variables): Use it.
11976
11977 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
11978
11979 * files.el (copy-directory): New defun.
11980
11981 * dired-aux.el (dired-copy-file-recursive): Use it.
11982
11983 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
11984
11985 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
11986 (makefile-end-of-command):
11987 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
11988 (semantic-end-of-context): Fix previous change. Doc fixes.
11989
11990 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
11991
11992 * files-x.el (modify-dir-local-variable)
11993 (copy-dir-locals-to-file-locals-prop-line):
11994 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
11995 (makefile-end-of-command):
11996 * cedet/semantic/lex.el (semantic-lex-token):
11997 * cedet/semantic/analyze/fcn.el
11998 (semantic-analyze-dereference-metatype-1):
11999 * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
12000 (semantic-lex-cpp-undef):
12001 * cedet/semantic/wisent/wisent.el (wisent-skip-block):
12002 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
12003 (semantic-end-of-context): Fix typos in docstrings.
12004
12005 * recentf.el (recentf-unload-function): New function.
12006
12007 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
12008
12009 * cedet/ede.el (ede-project-placeholder-cache-file):
12010 * cedet/semantic/db-file.el (semanticdb-default-save-directory):
12011 * cedet/srecode/map.el (srecode-map-save-file):
12012 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
12013
12014 2009-10-04 Glenn Morris <rgm@gnu.org>
12015
12016 * window.el (window-full-height-p): Add doc string.
12017
12018 2009-10-04 Martin Rudalics <rudalics@gmx.at>
12019
12020 * window.el (window-full-height-p): New function. (Bug#4543)
12021
12022 2009-10-03 Chong Yidong <cyd@stupidchicken.com>
12023
12024 * cedet/srecode/insert.el: Require srecode/args.
12025
12026 * cedet/srecode/args.el: Require srecode/dictionary instead of
12027 srecode/insert.
12028
12029 * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
12030
12031 * files.el (auto-mode-alist): Add .srt and Project.ede.
12032
12033 * cedet/semantic.el (semantic-mode):
12034 Handle srecode-template-mode-hook as well.
12035 (semantic-mode): Use js-mode-hook for Javascript hook.
12036
12037 * cedet/srecode/template.el: Remove hook variable.
12038
12039 * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
12040
12041 * cedet/ede.el (ede-target-forms-menu): Don't enable if no
12042 projects exist.
12043 (ede-project-placeholder-cache-file): Default to a file in
12044 user-emacs-directory.
12045
12046 * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
12047 templates in data-directory.
12048 (srecode-map-save-file): Default to a file in user-emacs-directory.
12049
12050 * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
12051 directory.
12052
12053 2009-09-30 Eric Ludlam <zappo@gnu.org>
12054
12055 * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
12056 Doc fix.
12057
12058 * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
12059 Only insert each variable once.
12060
12061 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
12062 (ede-pmake-insert-variable-shared): Use it.
12063
12064 * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
12065 for lexical table iff table is nil.
12066
12067 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
12068
12069 * vc.el: Remove commented out code.
12070 (vc-derived-from-dir-mode): Remove, unused.
12071 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
12072
12073 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
12074
12075 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
12076 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
12077 there could be recursive loading when `default-directory' is a
12078 remote file name. (Bug#4614)
12079
12080 2009-10-03 Glenn Morris <rgm@gnu.org>
12081
12082 * calendar/calendar.el (calendar-basic-setup): Handle the case where
12083 the frame is wide.
12084 (calendar-generate-window): Test for shrinkability rather than width.
12085
12086 * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
12087 declaration, currently false.
12088
12089 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
12090 reusing existing buffers, in case we happen to visit two files with the
12091 same basename. (Bug#4593)
12092
12093 2009-10-02 Eli Zaretskii <eliz@gnu.org>
12094
12095 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
12096 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
12097 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
12098 subdirs of cedet as well.
12099 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
12100
12101 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
12102
12103 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
12104 Obey advertised-signature-table.
12105
12106 * help-fns.el (help-function-arglist): Don't check
12107 advertised-signature-table.
12108 (describe-function-1): Do it here instead so it also applies to subrs.
12109
12110 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
12111
12112 * simple.el (start-file-process): Say in the doc-string, that file
12113 handlers might not support pty association, if PROGRAM is nil.
12114
12115 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
12116 HOST and USER are strings. They are nil, when there are
12117 incomplete entries in ~/.netrc, for example.
12118 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
12119 root directory ("device busy" error otherwise).
12120
12121 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
12122 Flush file properties of created directory.
12123
12124 2009-10-02 Eli Zaretskii <eliz@gnu.org>
12125
12126 * makefile.w32-in (WINS_BASIC): Remove cedet.
12127 (WINS_CEDET): Add cedet.
12128 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
12129
12130 2009-10-02 Kevin Ryde <user42@zip.com.au>
12131
12132 * net/browse-url.el (browse-url): Pass any symbol in
12133 browse-url-browser-function to `apply', since if you've mistakenly put
12134 an unbound symbol then the error is clearer. (Bug#4531)
12135
12136 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
12137
12138 * allout.el (allout-init, allout-back-to-current-heading)
12139 (allout-beginning-of-current-entry, allout-ascend-to-depth)
12140 (allout-ascend, allout-up-current-level, allout-end-of-level)
12141 (allout-previous-visible-heading, allout-forward-current-level)
12142 (allout-backward-current-level, allout-show-children):
12143 * apropos.el (apropos-describe-plist):
12144 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
12145 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
12146 * completion.el (add-completion, add-permanent-completion):
12147 * descr-text.el (describe-text-category, describe-char):
12148 * desktop.el (desktop-lazy-abort):
12149 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
12150 * dired.el (dired-build-subdir-alist):
12151 * ediff.el (ediff-version):
12152 * elide-head.el (elide-head, elide-head-show):
12153 * emerge.el (emerge-version):
12154 * env.el (getenv):
12155 * face-remap.el (variable-pitch-mode):
12156 * faces.el (describe-face):
12157 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
12158 (dired-at-point):
12159 * files.el (find-file-existing, auto-save-mode):
12160 * font-lock.el (font-lock-fontify-buffer):
12161 * help-fns.el (describe-function, describe-variable)
12162 (describe-syntax, describe-categories):
12163 * help.el (view-lossage, describe-bindings, describe-key)
12164 (describe-mode):
12165 * hexl.el (hexl-current-address):
12166 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
12167 * info.el (Info-goto-emacs-key-command-node):
12168 * log-edit.el (log-edit-insert-cvs-template)
12169 (log-edit-insert-cvs-rcstemplate):
12170 * menu-bar.el (menu-bar-mode):
12171 * mouse.el (mouse-appearance-menu):
12172 * newcomment.el (comment-indent-new-line):
12173 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
12174 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
12175 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
12176 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
12177 * recentf.el (recentf-mode):
12178 * savehist.el (savehist-mode, savehist-save):
12179 * shadowfile.el (shadow-copy-files):
12180 * simple.el (kill-ring-save, next-line, previous-line)
12181 (normal-erase-is-backspace-mode):
12182 * strokes.el (strokes-update-window-configuration)
12183 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
12184 (strokes-xpm-for-stroke):
12185 * time.el (emacs-uptime, emacs-init-time):
12186 * tutorial.el (tutorial--describe-nonstandard-key)
12187 (tutorial--detailed-help):
12188 * type-break.el (type-break-mode)
12189 (type-break-mode-line-message-mode, type-break-query-mode)
12190 (type-break-guesstimate-keystroke-threshold):
12191 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
12192 * version.el (emacs-version):
12193 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
12194 * winner.el (winner-mode):
12195 * calendar/timeclock.el (timeclock-in, timeclock-out)
12196 (timeclock-status-string, timeclock-change)
12197 (timeclock-workday-remaining-string)
12198 (timeclock-workday-elapsed-string)
12199 (timeclock-when-to-leave-string):
12200 * calendar/todo-mode.el (todo-add-category):
12201 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
12202 * emacs-lisp/autoload.el (update-file-autoloads):
12203 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
12204 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
12205 (checkdoc-message-text, checkdoc-defun):
12206 * emacs-lisp/debug.el (debugger-list-functions):
12207 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12208 * emacs-lisp/eieio-opt.el (eieio-describe-class)
12209 (eieio-describe-generic):
12210 * emacs-lisp/lisp-mnt.el (lm-synopsis):
12211 * emacs-lisp/shadow.el (list-load-path-shadows):
12212 * emulation/cua-base.el (cua-mode):
12213 * emulation/edt.el (edt-set-scroll-margins):
12214 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
12215 (tpu-toggle-regexp, tpu-toggle-search-direction)
12216 (tpu-toggle-rectangle, tpu-toggle-control-keys):
12217 * emulation/tpu-extras.el (tpu-set-scroll-margins):
12218 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
12219 (viper-set-parsing-style-toggling-macro)
12220 (viper-set-emacs-state-searchstyle-macros):
12221 * emulation/viper.el (viper-set-hooks):
12222 * eshell/esh-mode.el (eshell-truncate-buffer):
12223 * international/mule-cmds.el (prefer-coding-system)
12224 (describe-input-method, describe-language-environment):
12225 * international/mule-diag.el (list-character-sets)
12226 (describe-character-set, describe-coding-system)
12227 (describe-fontset, list-fontsets, list-input-methods):
12228 * mail/sendmail.el (mail-signature):
12229 * net/ange-ftp.el (ange-ftp-copy-file):
12230 * net/browse-url.el (browse-url):
12231 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
12232 * net/quickurl.el (quickurl-add-url):
12233 * net/rcirc.el (names, topic):
12234 * net/xesam.el (xesam-mode):
12235 * play/5x5.el (5x5-new-game):
12236 * play/yow.el (apropos-zippy):
12237 * progmodes/ada-mode.el (ada-mode-version):
12238 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
12239 (f90-end-of-block)
12240 (f90-beginning-of-block):
12241 * progmodes/fortran.el (fortran-end-of-block)
12242 (fortran-beginning-of-block):
12243 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
12244 * progmodes/python.el (python-describe-symbol, python-shell):
12245 * term/ns-win.el (ns-print-buffer):
12246 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
12247 * textmodes/flyspell.el (flyspell-mode-on):
12248 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
12249 (pages-directory-for-addresses):
12250 * textmodes/table.el (table-recognize-cell)
12251 (table-query-dimension, table-generate-source)
12252 (table-insert-sequence, table--warn-incompatibility):
12253 * textmodes/tex-mode.el (tex-validate-buffer):
12254 * textmodes/texinfmt.el (texinfmt-version)
12255 (texinfo-format-buffer):
12256 Use `called-interactively-p' instead of `interactive-p'.
12257
12258 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
12259
12260 * image-mode.el (image-toggle-display):
12261 * emacs-lisp/elp.el (elp-instrument-function):
12262 * emacs-lisp/advice.el (ad-make-advised-definition):
12263 * emacs-lisp/easy-mmode.el (define-minor-mode):
12264 * net/browse-url.el (browse-url-maybe-new-window):
12265 * progmodes/sh-script.el (sh-learn-buffer-indent):
12266 Pass new argument 'any to `called-interactively-p'.
12267
12268 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12269
12270 * international/uni-bidi.el:
12271 * international/uni-category.el:
12272 * international/uni-combining.el:
12273 * international/uni-comment.el:
12274 * international/uni-decimal.el:
12275 * international/uni-decomposition.el:
12276 * international/uni-digit.el:
12277 * international/uni-lowercase.el:
12278 * international/uni-mirrored.el:
12279 * international/uni-name.el:
12280 * international/uni-numeric.el:
12281 * international/uni-old-name.el:
12282 * international/uni-titlecase.el:
12283 * international/uni-uppercase.el:
12284 Regenerate from Unicode 5.2.0 data.
12285
12286 2009-10-01 Glenn Morris <rgm@gnu.org>
12287
12288 * Makefile.in (ELCFILES): Regenerate.
12289
12290 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12291
12292 * subr.el (interactive-p): Mark obsolete.
12293 (called-interactively-p): Make the optional-ness of `kind' obsolete.
12294 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
12295 advertised-signature-table for subroutines as well.
12296
12297 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
12298 (set-advertised-calling-convention): New function.
12299 (make-obsolete, define-obsolete-function-alias)
12300 (make-obsolete-variable, define-obsolete-variable-alias):
12301 Make the optional-ness of `when' obsolete.
12302 (define-obsolete-face-alias): Make `when' non-optional.
12303 * help-fns.el (help-function-arglist):
12304 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
12305 Use advertised-signature-table.
12306
12307 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
12308
12309 * files.el (delete-directory): New defun. The original function
12310 in fileio.c has been renamed to `delete-directory-internal'.
12311
12312 * dired.el (dired-delete-file): Call `delete-directory' with
12313 RECURSIVE parameter.
12314
12315 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
12316 parameter RECURSIVE. Implementation is missing.
12317
12318 * net/tramp.el (tramp-handle-make-directory): Flush upper
12319 directory's file properties.
12320 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
12321 (tramp-handle-dired-recursive-delete-directory): Flush directory
12322 properties after the remove command only.
12323
12324 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
12325 Handle optional parameter RECURSIVE.
12326
12327 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
12328 Handle optional parameter RECURSIVE.
12329
12330 * net/tramp-smb.el (tramp-smb-errors): Add error message for
12331 connection timeout.
12332 (tramp-smb-handle-delete-directory): Handle optional parameter
12333 RECURSIVE.
12334
12335 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12336
12337 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
12338 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
12339 (byte-compile-defmacro): Use backquotes.
12340
12341 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
12342
12343 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
12344 has no associated file.
12345 (vc-resynch-buffer): Use vc-dir-buffers.
12346
12347 2009-10-01 Glenn Morris <rgm@gnu.org>
12348
12349 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
12350 (chart-file-count):
12351 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
12352 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
12353 * emacs-lisp/eieio-opt.el (eieio-describe-class):
12354 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
12355 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
12356 (eieio-copy-parents-into-subclass, make-instance, class-children)
12357 (eieio-generic-form):
12358 * cedet/cedet-files.el (cedet-directory-name-to-file-name):
12359 * cedet/cedet-idutils.el (cedet-idutils-search)
12360 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
12361 (cedet-idutils-version-check):
12362 * cedet/cedet.el (cedet-version):
12363 * cedet/data-debug.el (data-debug-insert-overlay-button)
12364 (data-debug-insert-overlay-list-button)
12365 (data-debug-insert-buffer-button)
12366 (data-debug-insert-buffer-list-button)
12367 (data-debug-insert-process-button, data-debug-insert-ring-button)
12368 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
12369 (data-debug-insert-stuff-vector-button)
12370 (data-debug-insert-symbol-button, data-debug-insert-string)
12371 (data-debug-insert-number, data-debug-insert-lambda-expression)
12372 (data-debug-insert-nil, data-debug-insert-simple-thing)
12373 (data-debug-insert-custom, data-debug-edebug-expr):
12374 * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
12375 (global-ede-mode-map, ede-new, ede-debug-target)
12376 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
12377 * cedet/semantic.el (semantic-minimum-working-buffer-size)
12378 (semantic-fetch-tags, semantic-submode-list)
12379 (semantic-default-submodes):
12380 * cedet/ede/source.el (ede-source-match):
12381 * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
12382 (project-am-package-info):
12383 * cedet/ede/proj.el (ede-proj-target, project-new-target):
12384 * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
12385 * cedet/ede/proj-comp.el (ede-current-build-list):
12386 * cedet/ede/makefile-edit.el (makefile-move-to-macro):
12387 * cedet/ede/files.el (ede-toplevel-project-or-nil):
12388 * cedet/ede/cpp-root.el (initialize-instance):
12389 * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
12390 (autoconf-parameter-strip, autoconf-insert-new-macro):
12391 * cedet/semantic/wisent.el (wisent-lex-eoi):
12392 * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
12393 (semantic-show-parser-state-mode):
12394 * cedet/semantic/texi.el (semantic-texi-environment-regexp):
12395 * cedet/semantic/tag.el (semantic-tag-new-variable)
12396 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
12397 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
12398 (semantic--tag-deep-copy-tag-list)
12399 (semantic-tag-components-with-overlays-default):
12400 * cedet/semantic/symref.el (semantic-symref-find-text):
12401 * cedet/semantic/senator.el (senator-yank-tag)
12402 (senator-transpose-tags-up):
12403 * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
12404 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
12405 * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
12406 * cedet/semantic/lex.el (semantic-lex-comment-regex)
12407 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
12408 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
12409 * cedet/semantic/lex-spp.el
12410 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
12411 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
12412 * cedet/semantic/idle.el
12413 (semantic-idle-summary-current-symbol-info-brutish)
12414 (semantic-idle-summary-current-symbol-info-default):
12415 * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
12416 (semantic--grammar-macro-compl-dict):
12417 * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
12418 * cedet/semantic/format.el (semantic-format-tag-custom-list)
12419 (semantic-format-tag-canonical-name-default):
12420 * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
12421 (semantic-find-tags-for-completion)
12422 (semantic-find-tags-by-scope-protection-default)
12423 (semantic-deep-find-tags-for-completion):
12424 * cedet/semantic/edit.el
12425 (semantic-edits-incremental-reparse-failed-hook)
12426 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
12427 (semantic-edits-splice-remove, semantic-edits-splice-replace):
12428 * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
12429 * cedet/semantic/dep.el (semantic-dependency-include-path):
12430 * cedet/semantic/db.el (semanticdb-default-find-index-class)
12431 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
12432 (semanticdb-project-roots):
12433 * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
12434 (semanticdb-find-adebug-insert-scanned-tag-cons)
12435 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
12436 (semanticdb-brute-deep-find-tags-for-completion):
12437 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
12438 * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
12439 (semantic-end-of-context-default)
12440 (semantic-ctxt-current-function-default)
12441 (semantic-ctxt-scoped-types-default):
12442 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
12443 (semantic-complete-inline-tag-engine)
12444 (semantic-complete-inline-custom-type)
12445 (semantic-complete-read-tag-analyzer):
12446 * cedet/semantic/chart.el (semantic-chart-tags-by-class)
12447 (semantic-chart-database-size):
12448 * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
12449 (semantic-analyze-current-context):
12450 * cedet/semantic/symref/list.el (semantic-symref)
12451 (semantic-symref-hide-buffer, semantic-symref-symbol):
12452 * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
12453 * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
12454 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
12455 * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
12456 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
12457 (semantic-c-dereference-template):
12458 * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
12459 (semantic--analyze-refs-full-lookup-with-parents)
12460 (semantic--analyze-refs-full-lookup-simple):
12461 * cedet/semantic/analyze/complete.el
12462 (semantic-analyze-possible-completions):
12463 * cedet/srecode/table.el (srecode-mode-table-new):
12464 * cedet/srecode/srt.el (srecode-read-variable-name):
12465 * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
12466 * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
12467 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
12468 * cedet/srecode/map.el (srecode-current-map):
12469 * cedet/srecode/insert.el (srecode-insert)
12470 (srecode-insert-variable-secondname-handler, srecode-insert-method)
12471 (srecode-template-inserter-point-override)
12472 (srecode-insert-include-lookup):
12473 * cedet/srecode/getset.el (srecode-auto-choose-class):
12474 * cedet/srecode/extract.el (srecode-inserter-extract):
12475 * cedet/srecode/document.el
12476 (srecode-document-autocomment-return-last-alist)
12477 (srecode-document-autocomment-param-type-alist)
12478 (srecode-document-insert-function-comment)
12479 (srecode-document-insert-variable-one-line-comment)
12480 (srecode-document-function-name-comment):
12481 * cedet/srecode/dictionary.el (srecode-create-dictionary)
12482 (srecode-compound-toString):
12483 * cedet/srecode/compile.el (srecode-flush-active-templates):
12484 * cedet/srecode/args.el (srecode-semantic-handle-:blank):
12485 Doc/message fixes.
12486
12487 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
12488 match-data. (Bug#4555).
12489
12490 * cedet/semantic/bovine/gcc.el
12491 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
12492 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
12493
12494 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
12495 rather than parsing it as a regexp. This relaxes the layout
12496 requirements and makes errors easier to detect.
12497 (check-declare-verify): Check file is regular.
12498 (check-declare-directory): Doc fix.
12499 * subr.el (declare-function): Doc fix.
12500
12501 * ibuffer.el (ibuffer-format-qualifier):
12502 * isearch.el (hi-lock-regexp-okay):
12503 * calc/calc.el (math-zerop):
12504 * mail/uce.el (rmail-msgbeg, rmail-msgend):
12505 * term/w32-win.el (setup-default-fontset, set-fontset-font):
12506 Remove unused declarations.
12507
12508 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12509
12510 * cedet/semantic/wisent/javat-wy.el
12511 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
12512
12513 2009-09-30 Juanma Barranquero <lekktu@gmail.com>
12514
12515 * cedet/srecode/expandproto.el: Fix provide statement.
12516
12517 2009-09-30 Eric Ludlam <zappo@gnu.org>
12518
12519 * emacs-lisp/eieio.el (boolean-p): Delete.
12520
12521 2009-09-30 Sascha Wilde <wilde@sha-bang.de>
12522
12523 * cedet/ede/srecode.el: Fix provide statement.
12524
12525 2009-09-30 Glenn Morris <rgm@gnu.org>
12526
12527 * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
12528 * cedet/ede/proj-aux.el (ede-aux-source):
12529 * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
12530 (ede-misc-source):
12531 * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
12532 (semantic-mrub-switch-tags): Fix doc typos.
12533
12534 * cedet/semantic/db-global.el (data-debug-new-buffer)
12535 (data-debug-insert-thing): Remove unneeded declarations (one broken).
12536 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
12537
12538 * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
12539
12540 * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
12541 use of CL function `remove-if-not'.
12542
12543 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
12544
12545 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
12546 filename is not a string.
12547
12548 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
12549
12550 * files.el (safe-local-eval-forms): Fix typo.
12551
12552 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
12553
12554 * vc-hooks.el (vc-dir-buffers): New var.
12555 (vc-state-refresh): New function.
12556 (vc-state): Use it.
12557 (vc-after-save): Always ask the backend to recompute the new state.
12558 Always call vc-dir if necessary, using vc-dir-buffers.
12559 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
12560 Use vc-dir-buffers.
12561 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
12562 (vc-dir-prepare-status-buffer, vc-dir-update)
12563 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
12564 Don't call expand-file-name on default-directory.
12565
12566 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
12567
12568 * speedbar.el (speedbar-item-delete):
12569 * calc/calc-prog.el (calc-kbd-if):
12570 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
12571
12572 * epa.el (epa-key-list-mode-map):
12573 * hi-lock.el (hi-lock-menu): Fix typos in menus.
12574
12575 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
12576 (hs-show-hook): Fix typo in docstring.
12577
12578 2009-09-29 Glenn Morris <rgm@gnu.org>
12579
12580 * cedet/semantic/symref/idutils.el:
12581 * cedet/semantic/symref/list.el: Relicense under GPLv3+.
12582
12583 * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
12584
12585 * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
12586 * cedet/semantic/tag-file.el (semanticdb-table-child-p):
12587 * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
12588 Mark declarations not understood by check-declare.
12589
12590 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
12591 file-name-nondirectory call preventing location of cedet files.
12592 (check-declare-verify): Use literal search rather than re-search.
12593 Add basic defmethod and defclass, and define-overloadable-function.
12594
12595 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
12596 Use tramp-compat-file-attributes rather than nonexistent
12597 tramp-compat-handle-file-attributes.
12598
12599 * Makefile.in (lisptagsfiles4): New.
12600 (AUTOGENEL): Add cedet loaddefs files.
12601 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
12602 (update-elclist, compile-always, backup-compiled-files)
12603 (bootstrap-clean): Add yet another directory level.
12604 (update-elclist): Use LC_COLLATE rather than COLLATE.
12605 (ELCFILES): Update, via `make update-elclist'.
12606
12607 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
12608
12609 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
12610 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
12611 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
12612
12613 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
12614
12615 * Makefile.in (lisptagsfiles3): Define.
12616 (TAGS, TAGS-LISP): Use it.
12617 (update-elclist): Add third directory level to look for elc files.
12618 (compile-always): Likewise.
12619 (backup-compiled-files): Likewise.
12620 (bootstrap-clean): Likewise.
12621 (ELCFILES): Update.
12622
12623 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
12624
12625 * Makefile.in (ELCFILES): Add CEDET files.
12626
12627 2009-09-28 Eric Ludlam <zappo@gnu.org>
12628
12629 CEDET (development tools) package merged.
12630
12631 * cedet/*.el:
12632 * cedet/ede/*.el:
12633 * cedet/semantic/*.el:
12634 * cedet/srecode/*.el: New files.
12635
12636 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
12637
12638 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
12639
12640 * net/tramp.el (top): Require tramp-imap.
12641
12642 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
12643 Use `tramp-compat-handle-file-attributes'.
12644
12645 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
12646
12647 * net/tramp-imap.el: New package.
12648
12649 2009-09-28 Eric Ludlam <zappo@gnu.org>
12650
12651 * emacs-lisp/chart.el:
12652 * emacs-lisp/eieio-base.el:
12653 * emacs-lisp/eieio-comp.el:
12654 * emacs-lisp/eieio-custom.el:
12655 * emacs-lisp/eieio-datadebug.el:
12656 * emacs-lisp/eieio-opt.el:
12657 * emacs-lisp/eieio-speedbar.el:
12658 * emacs-lisp/eieio.el: New files.
12659
12660 * cedet/cedet-cscope.el:
12661 * cedet/cedet-files.el:
12662 * cedet/cedet-global.el:
12663 * cedet/cedet-idutils.el:
12664 * cedet/data-debug.el:
12665 * cedet/inversion.el:
12666 * cedet/mode-local.el:
12667 * cedet/pulse.el: New files.
12668
12669 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12670
12671 * whitespace.el (whitespace-trailing-regexp)
12672 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
12673 Fix doc string.
12674
12675 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
12676
12677 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
12678 menu.
12679
12680 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
12681 menu-bar-ediff-menu.
12682
12683 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
12684 define-overloadable-function.
12685
12686 * progmodes/autoconf.el: Provide autoconf as well, so that this
12687 file can be `require'd.
12688
12689 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
12690
12691 * emacs-lisp/autoload.el (generated-autoload-feature)
12692 (generated-autoload-load-name): New vars.
12693 (autoload-rubric, autoload-generate-file-autoloads): Use them.
12694 (make-autoload): Recognize define-overloadable-function and
12695 defclass forms (for EIEIO).
12696
12697 * Makefile.in (update-subdirs): Exclude cedet directory.
12698
12699 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12700
12701 * term/ns-win.el: Don't set the region face background. (Bug#4381)
12702
12703 * faces.el: Default light-background background for region face to
12704 ns_selection_color under NS.
12705
12706 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
12707
12708 * net/imap-hash.el: New library, see NEWS.
12709
12710 * Makefile.in (ELCFILES): Add imap-hash.el.
12711
12712 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
12713
12714 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
12715 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
12716 * help-macro.el (make-help-screen): Avoid using an ambiguous function
12717 definition where the docstring could be taken for the return value.
12718
12719 2009-09-26 Glenn Morris <rgm@gnu.org>
12720
12721 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
12722 Add option to only show images below a certain size.
12723 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
12724 save-excursion calls.
12725
12726 2009-09-26 Eli Zaretskii <eliz@gnu.org>
12727
12728 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
12729 subdirectories) and eieio.
12730
12731 2009-09-26 Alan Mackenzie <acm@muc.de>
12732
12733 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
12734 buggy bracketing. (Bug#4289)
12735
12736 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
12737 character constants (as case labels). (Bug#4289)
12738
12739 2009-09-25 Juri Linkov <juri@jurta.org>
12740
12741 * files.el (safe-local-eval-forms): Allow time-stamp in
12742 before-save-hook (Bug#4554).
12743
12744 2009-09-25 Drew Adams <drew.adams@oracle.com>
12745
12746 * menu-bar.el (list-buffers-directory): Doc fix.
12747
12748 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
12749
12750 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
12751 Try and avoid copying twice the same paragraph.
12752 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
12753 Remove save-excursion.
12754 (log-edit-changelog-entry): Do it here instead.
12755
12756 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
12757
12758 * bs.el (bs--get-file-name): Use `list-buffers-directory'
12759 when available, instead of hardcoding mode names. Doc fix.
12760
12761 * menu-bar.el (list-buffers-directory): Add docstring.
12762 Make automatically buffer-local.
12763
12764 * dired.el (dired-mode):
12765 * files.el (cd-absolute):
12766 * pcvs.el (cvs-temp-buffer):
12767 * pcvs-util.el (cvs-get-buffer-create):
12768 * shell.el (shell-mode):
12769 * vc-dir.el (vc-dir-mode):
12770 Don't make `list-buffers-directory' buffer local.
12771
12772 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
12773
12774 * comint.el (comint-exec, comint-run, make-comint):
12775 Doc fixes (Bug#4542).
12776
12777 2009-09-25 Glenn Morris <rgm@gnu.org>
12778
12779 * mail/rmailmm.el (rmail-mime): New custom group.
12780 Move all defcustoms in this file into this group.
12781 (rmail-mime-media-type-handlers-alist): Revert previous change.
12782 (rmail-mime-show-images): New option.
12783 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
12784 references to it, since it wasn't actually used for anything.
12785 (rmail-mime-insert-image): New function.
12786 (rmail-mime-image): Use rmail-mime-insert-image.
12787 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
12788 obey the value of `rmail-mime-show-images' option. Print the size of
12789 attachments.
12790
12791 2009-09-25 David Engster <deng@randomsample.de>
12792
12793 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
12794
12795 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12796
12797 * whitespace.el: Does not highlight trailing spaces While point is
12798 at end of line. Does not highligt spaces at beginning of buffer
12799 while point is at beginning of buffer. Does not highlight spaces
12800 at end of buffer while point is at end of buffer. (Bug#4177)
12801 New version 12.0.
12802 (whitespace-display-mappings): Adjust initialization.
12803 (whitespace-point, whitespace-font-lock-refontify): New vars.
12804 (whitespace-color-on, whitespace-color-off): Adjust code.
12805 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
12806 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
12807 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
12808
12809 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
12810
12811 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
12812
12813 * textmodes/sgml-mode.el: Remove xml-mode alias.
12814
12815 * files.el (auto-mode-alist, conf-mode-maybe)
12816 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
12817
12818 2009-09-24 Alan Mackenzie <acm@muc.de>
12819
12820 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
12821 c-forward-conditionals, but it doesn't move point and doesn't set
12822 the mark.
12823 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
12824 (c-down-conditional-with-else, c-backward-conditional)
12825 (c-forward-conditional): Refactor to use c-scan-conditionals.
12826
12827 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12828
12829 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
12830 (help-default-arg-highlight): Remove.
12831 (help-highlight-arg): New function.
12832 (help-do-arg-highlight): Use it.
12833 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
12834
12835 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
12836
12837 * term.el (term-set-scroll-region, term-handle-ansi-escape):
12838 Undo last change, which didn't fix the problem and introduced others.
12839
12840 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
12841
12842 * progmodes/gdb-mi.el: Don't require speedbar.
12843 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
12844
12845 2009-09-24 Glenn Morris <rgm@gnu.org>
12846
12847 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
12848
12849 * term/ns-win.el (ns-reg-to-script): Define for compiler.
12850
12851 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
12852 there is no newline after the final mime boundary. (Bug#4539)
12853 Move markers on insertion so that any buttons inserted don't end up in
12854 the next part of a multipart message.
12855 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
12856 (rmail-mime-bulk-handler): Optionally handle images.
12857 (rmail-mime-image): New button action.
12858 (rmail-mime-image-handler): New function.
12859 (rmail-mime-mode): New mode.
12860 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
12861
12862 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
12863
12864 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
12865 than just dropping elements from it (bug#4504).
12866
12867 * term.el (term-set-scroll-region): Don't move cursor any more.
12868 (term-handle-ansi-escape): Call term-goto here instead.
12869 Suggested by Ivan Kanis <apple@kanis.eu>.
12870
12871 * term.el: Require CL.
12872 (term-ansi-reset): New function.
12873 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
12874 (term-handle-colors-array): Simplify.
12875
12876 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12877
12878 * allout.el (allout-overlay-interior-modification-handler)
12879 (allout-obtain-passphrase):
12880 * epa-file.el (epa-file-write-region):
12881 * ps-print.el (ps-begin-job):
12882 * vc-hooks.el (vc-toggle-read-only):
12883 * vc-rcs.el (vc-rcs-rollback):
12884 * vc-sccs.el (vc-sccs-rollback):
12885 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
12886 (vc-version-diff, vc-revert, vc-rollback):
12887 * wdired.el (wdired-check-kill-buffer):
12888 * emacs-lisp/authors.el (authors):
12889 * net/socks.el (socks-open-connection):
12890 * net/zeroconf.el (zeroconf-service-add-hook):
12891 * obsolete/vc-mcvs.el (vc-mcvs-register):
12892 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
12893 (gdb-select-frame):
12894 * progmodes/grep.el (lgrep, rgrep):
12895 * progmodes/idlw-help.el (idlwave-help-check-locations)
12896 (idlwave-help-html-link, idlwave-help-assistant-open-link):
12897 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
12898 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
12899 (reftex-toc-rename-label): Fix typos in error messages.
12900
12901 * dired-aux.el (dired-do-shell-command): Reflow docstring.
12902 (dired-copy-how-to-fn): Doc fix.
12903 (dired-files-attributes, dired-read-shell-command):
12904 Fix typos in docstrings.
12905
12906 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
12907 (dired-x-find-file-other-window): Reflow docstrings.
12908 (dired-omit-marker-char, dired-read-shell-command)
12909 (dired-x-submit-report): Fix typos in docstrings.
12910
12911 * shell.el (shell-mode-hook):
12912 * view.el (View-scroll-line-forward):
12913 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
12914 Fix typos in docstrings.
12915
12916 * net/dig.el (dig-invoke): Fix typo in docstring.
12917 (query-dig): Reflow docstring.
12918
12919 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
12920 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
12921 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
12922 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
12923 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
12924 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
12925 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
12926 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
12927 (idlwave-completion-map, idlwave-current-indent)
12928 (idlwave-custom-ampersand-surround, idlwave-customize)
12929 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
12930 (idlwave-define-abbrev, idlwave-determine-class-special)
12931 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
12932 (idlwave-end-block-reg, idlwave-end-of-statement)
12933 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
12934 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
12935 (idlwave-explicit-class-listed, idlwave-file-header)
12936 (idlwave-fill-paragraph, idlwave-find-class-definition)
12937 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
12938 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
12939 (idlwave-in-quote, idlwave-indent-action-table)
12940 (idlwave-indent-expand-table, idlwave-indent-line)
12941 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
12942 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
12943 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
12944 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
12945 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
12946 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
12947 (idlwave-outlawed-buffers, idlwave-popup-select)
12948 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
12949 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
12950 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
12951 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
12952 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
12953 (idlwave-statement-type, idlwave-struct-skip)
12954 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
12955 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
12956 (idlwave-what-module-find-class): Fix typos in docstrings.
12957 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
12958 (idlwave-calculate-cont-indent, idlwave-expand-equal)
12959 (idlwave-find-module, idlwave-find-structure-definition)
12960 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
12961 (idlwave-list-load-path-shadows, idlwave-next-statement)
12962 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
12963 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
12964 (idlwave-template): Reflow docstrings.
12965
12966 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
12967 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
12968 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
12969 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
12970 (idlwave-shell-display-line, idlwave-shell-display-wframe)
12971 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
12972 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
12973 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
12974 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
12975 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
12976 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
12977 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
12978 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
12979 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
12980 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
12981 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
12982 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
12983 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
12984 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
12985 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
12986 Fix typos in docstrings.
12987 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
12988 (idlwave-shell-hide-output, idlwave-shell-mode)
12989 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
12990 Reflow docstrings.
12991
12992 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
12993
12994 2009-09-24 Ivan Kanis <apple@kanis.eu>
12995
12996 * term.el (term-bold-attribute): New var.
12997 (term-handle-colors-array): Use it.
12998
12999 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
13000
13001 * progmodes/gdb-mi.el (gdb-version): New variable.
13002 (gdb-non-stop-handler): Set gdb-version.
13003 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
13004 Condition "--thread" option on gdb-version.
13005 (gdb-invalidate-threads): Remove unused argument.
13006
13007 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
13008
13009 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
13010 to looking-back to avoid ridiculous slow down in large files (bug#4511).
13011
13012 2009-09-23 Glenn Morris <rgm@gnu.org>
13013
13014 * mail/rmail.el (rmail-reply): Don't try to add a References header when
13015 replying to mail without References or Message-Id. (Bug#4525)
13016
13017 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
13018
13019 * term/ns-win.el (ns-reg-to-script): New variable.
13020
13021 2009-09-23 Daiki Ueno <ueno@unixuser.org>
13022
13023 * epg.el (epg-wait-for-status): Preserve existing 'error results.
13024
13025 2009-09-22 Sam Steingold <sds@gnu.org>
13026
13027 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
13028 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
13029 to 1 because hg returns status 1 when nothing is found.
13030 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
13031
13032 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
13033
13034 * textmodes/fill.el: Convert to utf-8 encoding.
13035 (fill-french-nobreak-p): Remove redundant » and « inherited from our
13036 pre-Unicode days.
13037
13038 * add-log.el (change-log-fill-forward-paragraph): New function.
13039 (change-log-mode): Use it so fill-region DTRT.
13040 Set fill-indent-according-to-mode here rather than in
13041 change-log-fill-paragraph.
13042 (change-log-fill-paragraph): Remove.
13043
13044 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
13045
13046 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
13047 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
13048
13049 2009-09-22 Glenn Morris <rgm@gnu.org>
13050
13051 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
13052 the scroll-bar scroll the calendar window rather than the buffer.
13053
13054 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
13055 commands that move point (as opposed to scrolling).
13056
13057 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
13058
13059 * emacs-lisp/elint.el (elint): New custom group.
13060 (elint-log-buffer): Make it a defcustom.
13061 (elint-scan-preloaded, elint-ignored-warnings)
13062 (elint-directory-skip-re): New options.
13063 (elint-builtin-variables): Doc fix.
13064 (elint-preloaded-env): New variable.
13065 (elint-unknown-builtin-args): Add an entry for encode-time.
13066 (elint-extra-errors): Make it a variable rather than a constant.
13067 (elint-preloaded-skip-re): New constant.
13068 (elint-directory): Skip files matching elint-directory-skip-re.
13069 (elint-features): New variable, local to linted buffers.
13070 (elint-update-env): Initialize elint-features. Possibly add
13071 elint-preloaded-env to the buffer's environment.
13072 (elint-get-top-forms): Bind elint-current-pos, for log messages.
13073 Skip quoted forms.
13074 (elint-init-form): New function, extracted from elint-init-env.
13075 Make non-list forms a warning rather than an error.
13076 Add the mode-map for define-derived-mode. Handle define-minor-mode,
13077 easy-menu-define, put that adds an error-condition, and provide.
13078 When requiring cl, also require cl-macs. Really require cl, to handle
13079 some cl macros. Store required libraries in the list elint-features,
13080 so as not to re-load them. Treat cc-require like require.
13081 (elint-init-env): Call elint-init-form to do the work.
13082 Handle eval-and-compile and such like.
13083 (elint-add-required-env): Do not clear messages.
13084 (elint-special-forms): Add handlers for function, defalias, if, when,
13085 unless, and, or.
13086 (elint-form): Add optional argument to ignore elint-special-forms,
13087 useful to prevent recursive calls from handlers. Doc fix.
13088 Respect elint-ignored-warnings.
13089 (elint-form): Respect elint-ignored-warnings.
13090 (elint-bound-variable, elint-bound-function): New variables.
13091 (elint-unbound-variable): Respect elint-bound-variable.
13092 (elint-get-args): Respect elint-bound-function.
13093 (elint-check-cond-form): Add some simple handling for (f)boundp and
13094 featurep tests.
13095 (elint-check-defalias-form): New handler.
13096 (elint-check-let-form): Make an empty let a warning rather than an
13097 error.
13098 (elint-check-setq-form): Make an empty setq a warning rather than an
13099 error. Respect elint-ignored-warnings.
13100 (elint-check-defvar-form): Accept null doc-strings.
13101 (elint-check-conditional-form): New handler. Does some simple-minded
13102 checking of featurep and (f)boundp tests.
13103 (elint-put-function-args): New function.
13104 (elint-initialize): Use elint-scan-doc-file rather than
13105 elint-find-builtin-variables. Use elint-put-function-args.
13106 Possibly scan preloaded-file-list.
13107 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
13108 extend to handle functions as well.
13109
13110 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
13111
13112 * linum.el (linum-delete-overlays, linum-update-window):
13113 Do not modify the right margin. (Bug#3971)
13114
13115 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
13116
13117 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
13118 nxml-mode instead of xml-mode.
13119
13120 2009-09-21 Kevin Ryde <user42@zip.com.au>
13121
13122 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
13123
13124 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
13125
13126 * net/dig.el (dig-mode): Use define-derived-mode.
13127
13128 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
13129
13130 * vc-dispatcher.el (vc-do-command): Return the process object in
13131 the asynchronous case. Use when instead of if. Do not run
13132 vc-exec-after to display a message if not enabled. (Bug#4463)
13133
13134 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
13135 properties to the stash strings.
13136 (vc-git-stash-list): Return a list of strings.
13137 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
13138 (vc-git-stash-show-at-point): New functions.
13139 (vc-git-stash-map): New keymap.
13140
13141 * register.el (ctl-x-r-map): Define the keys here instead of
13142 using autoload.
13143
13144 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
13145
13146 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
13147 list, to workaround performance problem (bug#4485).
13148
13149 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
13150
13151 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
13152
13153 2009-09-20 Daiki Ueno <ueno@unixuser.org>
13154
13155 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
13156 Document that this option is not recommended to use.
13157
13158 2009-09-19 Glenn Morris <rgm@gnu.org>
13159
13160 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
13161 variable `var'.
13162
13163 * calc/calc-alg.el (var):
13164 * calc/calcalg2.el (var): Define for compiler.
13165
13166 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
13167
13168 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
13169 Doc fix (Bug#3932).
13170
13171 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
13172
13173 * time-stamp.el (time-stamp-month-dd-yyyy)
13174 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
13175 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
13176 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
13177 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
13178 Remove functions that have been obsolete since 1995 (Bug#4436).
13179
13180 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
13181 indent buffer only if called interactively (Bug#4452).
13182
13183 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
13184 Eli Zaretskii <eliz@gnu.org>
13185
13186 This fixes bug#4197 (merged to bug#865, though not identical).
13187 * server.el (server-auth-dir): Add docstring note about FAT32.
13188 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
13189 but warn against using them.
13190
13191 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
13192
13193 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
13194 older GDB where there is no has_more field.
13195
13196 2009-09-19 Glenn Morris <rgm@gnu.org>
13197
13198 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
13199
13200 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
13201
13202 * files.el (auto-mode-alist): Change default for XML files to nXML
13203 mode (Bug#4169).
13204
13205 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
13206
13207 * server.el (server-ensure-safe-dir): Pass 'integer
13208 to `file-attributes', as suggested.
13209
13210 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
13211
13212 * dired-aux.el (dired-query-alist): Remove spurious backslash.
13213 (dired-query): Use read-key.
13214
13215 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
13216
13217 * cus-start.el (ns-use-qd-smoothing): Remove.
13218
13219 2009-09-18 Glenn Morris <rgm@gnu.org>
13220
13221 * allout.el (top-level): Remove unnecessary progn.
13222
13223 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
13224
13225 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
13226 definition of abbrev table.
13227
13228 * speedbar.el (speedbar-track-mouse):
13229 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
13230 * net/eudc.el (eudc-expand-inline):
13231 * net/newst-backend.el (newsticker--cache-read-feed):
13232 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
13233 condition-case handlers.
13234
13235 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
13236
13237 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
13238 (gdb-var-list): Add an element for has_more field.
13239 (gdb-non-stop-handler): Enable pretty printing for STL containers.
13240 (gdb-var-create-handler, gdb-var-list-children-handler-1)
13241 (gdb-var-update-handler-1): Parse output of dynamic variable
13242 objects (STL containers).
13243 (gdb-var-delete-1): Pass var1 as an explicit second argument.
13244 (gdb-get-field): Delete alias. Use bindat-get-field directly.
13245
13246 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
13247 gdb-var-list.
13248 (gud-speedbar-buttons): Make node expandable if expression "has more"
13249 children.
13250
13251 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
13252
13253 * startup.el (emacs-quick-startup): Remove variable and all uses.
13254 (command-line): Set `inhibit-x-resources' instead.
13255 (command-line-1): Use `inhibit-x-resources' instead.
13256
13257 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
13258
13259 * subr.el: Fix last change to avoid using the `unless' macro,
13260 which breaks bootstrapping.
13261
13262 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
13263
13264 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
13265 extended definitions, in case we reload subr.el after having
13266 loaded CL.
13267 (eval-next-after-load): Mark as obsolete.
13268
13269 2009-09-17 Juri Linkov <juri@jurta.org>
13270
13271 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
13272 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
13273 (menu-bar-showhide-menu, menu-bar-tools-menu)
13274 (menu-bar-describe-menu, menu-bar-help-menu)
13275 (minibuffer-local-completion-map, minibuffer-local-map):
13276 Fix list quoting.
13277
13278 2009-09-17 Glenn Morris <rgm@gnu.org>
13279
13280 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
13281 arguments, whether or not it has a handler.
13282
13283 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
13284
13285 * simple.el (hard-newline): Give it a doc-string.
13286
13287 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13288 (lisp-mode-syntax-table): Give them doc-strings.
13289
13290 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
13291
13292 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
13293 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
13294 (menu-bar-options-menu, menu-bar-showhide-menu)
13295 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
13296 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
13297 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
13298 (menu-bar-options-menu, menu-bar-tools-menu)
13299 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
13300 (menu-bar-help-menu):
13301 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
13302 string arguments.
13303
13304 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
13305 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
13306 calls for the menu names and :help.
13307
13308 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
13309
13310 * mouse.el (minor-mode-menu-from-indicator): Pay attention
13311 to :minor-mode-function (bug#4455).
13312
13313 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13314
13315 * startup.el (command-line): Initialize the window-system after
13316 processing the command-line.
13317
13318 * textmodes/page.el (what-page): Make sure we don't inf-loop if
13319 page-delimiter matches the empty string.
13320
13321 2009-09-16 Glenn Morris <rgm@gnu.org>
13322
13323 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
13324 byte-compile-not-obsolete-var. It's a list now.
13325 (byte-compile-not-obsolete-funcs): New variable.
13326 (byte-compile-warn-obsolete): Don't warn about functions if they are in
13327 byte-compile-not-obsolete-funcs.
13328 (byte-compile-variable-ref, byte-compile-defvar): Update for
13329 byte-compile-not-obsolete-vars name-change and list nature.
13330 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
13331 and variables behind (f)boundp tests.
13332 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
13333
13334 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
13335
13336 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
13337
13338 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13339
13340 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
13341 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
13342 Don't autoload.
13343
13344 2009-09-15 Stephen Eglen <stephen@gnu.org>
13345
13346 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
13347 the virtual-buffers, use the name of the buffer specified by
13348 find-file-noselect, as the match may be a symlink. (This was a
13349 problem if the target and the symlink had different names.)
13350
13351 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13352
13353 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
13354
13355 * desktop.el (desktop-path): Check user-emacs-directory.
13356
13357 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
13358
13359 * loadup.el: Use after-load-functions to GC after loading each file.
13360 Remove the explicit GC calls that used to be sprinkled around.
13361
13362 * subr.el (after-load-functions): New hook.
13363 (do-after-load-evaluation): Run it. Use string-match-p to detect
13364 `obsolete' packages, rather than painfully extracting the relevant
13365 directory name.
13366
13367 2009-09-15 Glenn Morris <rgm@gnu.org>
13368
13369 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
13370 free variable `doc'.
13371
13372 * dired.el (dired-mode-map): Add menu entry for async shell command.
13373
13374 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
13375 variables, also consider the .elc files, since the .el files are
13376 normally gzipped (subsequent code locates the .el.gz from the .elc).
13377
13378 * calc/calc-prog.el (arglist): Define for compiler.
13379
13380 * calendar/diary-lib.el (diary-display-function): Change the default to
13381 fancy display.
13382 (body): Define for compiler.
13383
13384 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
13385 (byte-compile-file-form, byte-compile-lambda)
13386 (byte-compile-top-level-body, byte-compile-form)
13387 (byte-compile-variable-ref, byte-compile-setq)
13388 (byte-compile-setq-default, byte-compile-body)
13389 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
13390 (batch-byte-compile): Give some more local variables with common names
13391 a "bytecomp-" prefix to avoid masking warnings about free variables.
13392
13393 * startup.el (command-line-1): Give local variables with common names a
13394 distinguishing prefix, so as not to hide free variable warnings during
13395 bootstrap.
13396
13397 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
13398 clever and add a suffix to make a unique name, just let the user decide
13399 whether or not to overwrite it. If the input is a directory, write the
13400 default filename to that directory. (Bug#4388)
13401 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
13402 is a filename-as-a-directory.
13403
13404 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13405
13406 * textmodes/page.el (what-page): Don't move to beginning of line.
13407 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
13408
13409 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
13410
13411 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
13412
13413 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
13414
13415 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
13416 * help.el (help-for-help-internal): Add purecopy calls for text.
13417
13418 * vc.el (top): print-log method now takes an optional SHORTLOG
13419 argument. Add a new method: root.
13420 (vc-root-diff, vc-print-root-log): New functions.
13421 (vc-log-short-style): New variable.
13422 (vc-print-log-internal): Add support for showing short logs.
13423
13424 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
13425 vc-print-root-log and vc-print-root-diff.
13426
13427 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
13428 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
13429 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
13430 short logs.
13431
13432 * vc-cvs.el (vc-cvs-print-log):
13433 * vc-mtn.el (vc-mtn-print-log):
13434 * vc-rcs.el (vc-rcs-print-log):
13435 * vc-sccs.el (vc-sccs-print-log):
13436 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
13437 that is ignored for now.
13438
13439 * vc-mtn.el (vc-mtn-annotate-command):
13440 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
13441
13442 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
13443
13444 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
13445 to function-key-map, and give them ascii-character property.
13446 * term/x-win.el (x-alternatives-map):
13447 * term/ns-win.el (ns-alternatives-map):
13448 * term/internal.el (msdos-key-remapping-map):
13449 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
13450
13451 2009-09-14 Glenn Morris <rgm@gnu.org>
13452
13453 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
13454 temp-buffers (2009-09-12).
13455
13456 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
13457
13458 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
13459 the new read-key function.
13460
13461 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
13462
13463 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
13464 is defined (Bug#4405).
13465
13466 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
13467
13468 * recentf.el (recentf-cleanup): Use a hash table to find
13469 duplicates (Bug#4407).
13470
13471 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
13472
13473 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
13474 kp-0 to ascii equivalents (Bug#4325).
13475
13476 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
13477
13478 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
13479
13480 * eshell/em-hist.el:
13481 * eshell/em-dirs.el (eshell-complete-user-reference):
13482 Declare pcomplete functions and variables to avoid compiler warnings.
13483
13484 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
13485
13486 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
13487 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
13488 * eshell/em-alias.el (eshell-aliases-file):
13489 * eshell/em-hist.el (eshell-history-file-name):
13490 Use expand-file-name instead of concat to make file names (Bug#4308).
13491
13492 2009-09-13 Glenn Morris <rgm@gnu.org>
13493
13494 * ediff-merg.el (ediff-do-merge):
13495 * filesets.el (filesets-run-cmd):
13496 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
13497 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
13498 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
13499 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
13500 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
13501 Replace empty `let's with `progn'.
13502
13503 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
13504
13505 * mail/sendmail.el (send-mail-function):
13506 * tooltip.el (tooltip-mode):
13507 * simple.el (transient-mark-mode):
13508 * rfn-eshadow.el (file-name-shadow-mode):
13509 * frame.el (blink-cursor-mode):
13510 * font-core.el (global-font-lock-mode):
13511 * files.el (temporary-file-directory)
13512 (small-temporary-file-directory, auto-save-file-name-transforms):
13513 * epa-hook.el (auto-encryption-mode):
13514 * composite.el (global-auto-composition-mode):
13515 Use custom-initialize-delay.
13516 * startup.el (command-line): Don't explicitly call
13517 custom-reevaluate-setting for all the above vars.
13518 * custom.el (custom-initialize-safe-set)
13519 (custom-initialize-safe-default): Delete.
13520
13521 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13522
13523 * term/x-win.el (x-initialize-window-system):
13524 * term/w32-win.el (w32-initialize-window-system):
13525 * term/ns-win.el (ns-initialize-window-system): Don't call
13526 mouse-wheel-mode since it's enabled globally by default already.
13527
13528 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
13529 actually define the variable, but only silences the byte-compiler.
13530 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
13531 before looking it up.
13532 (mouse-wheel-scroll-amount): Also reset the bindings if this value
13533 is changed.
13534
13535 2009-09-12 Glenn Morris <rgm@gnu.org>
13536
13537 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
13538 1000.
13539 (elint-add-required-env): Don't beep on error.
13540 (elint-forms): In case of error, return ENV unchanged.
13541 (elint-init-env): Skip non-list forms.
13542 (elint-log): Handle unknown file positions.
13543
13544 2009-09-12 Daiki Ueno <ueno@unixuser.org>
13545
13546 * epg.el (epg-make-context): Add autoload cookie.
13547 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
13548 (epg-decrypt-string, epg-start-verify, epg-verify-file)
13549 (epg-verify-string, epg-start-sign, epg-sign-file)
13550 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
13551 (epg-encrypt-string, epg-start-export-keys)
13552 (epg-export-keys-to-file, epg-export-keys-to-string)
13553 (epg-start-import-keys, epg-import-keys-from-file)
13554 (epg-import-keys-from-string, epg-start-receive-keys)
13555 (epg-receive-keys, epg-import-keys-from-server)
13556 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
13557 (epg-sign-keys, epg-start-generate-key)
13558 (epg-generate-key-from-file, epg-generate-key-from-string):
13559 Remove autoload cookie.
13560
13561 2009-09-12 Eli Zaretskii <eliz@gnu.org>
13562
13563 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
13564 reevaluation of trash-directory.
13565
13566 * mwheel.el: Fix last change.
13567 (mouse-wheel-mode): New defvar.
13568 (mouse-wheel-mode): Remove autoload cookie.
13569
13570 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13571
13572 * mwheel.el (mwheel-installed-bindings): New var.
13573 (mouse-wheel-mode): Use it, so as to make sure we really remove all
13574 the bindings we set last time. Use custom-initialize-delay.
13575 * loadup.el: Load mwheel after term/*-win.el.
13576 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
13577 and mouse-wheel-up-event now that their first evaluation is done
13578 sufficiently late to be correct.
13579
13580 * startup.el (tutorial-directory): Make it a defcustom.
13581 Use custom-initialize-delay rather than eval-at-startup to set it.
13582 * image.el (image-load-path): Make it a defcustom.
13583 Use custom-initialize-delay rather than eval-at-startup to set it.
13584 * subr.el (eval-at-startup): Remove.
13585 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
13586
13587 * subr.el (do-after-load-evaluation): Warn the user after loading an
13588 obsolete package.
13589
13590 2009-09-12 Glenn Morris <rgm@gnu.org>
13591
13592 * proced.el (proced-mark-alt): Remove alias.
13593 (proced-mode-map): Remove proced-mark-alt.
13594
13595 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
13596 Elint file and directory. Remove initialization entry.
13597
13598 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
13599 commands.
13600 (elint-current-buffer): Set mode-line-process.
13601 (elint-init-env): Handle define-derived-mode.
13602 Fix declare-function with unspecified arglist. Guard against odd
13603 defalias statements (eg iso-insert's 8859-1-map).
13604 (elint-add-required-env): Use a temp buffer.
13605 (elint-form): Just print the function/macro name, not the whole form.
13606 Return env unchanged if we fail to parse a macro.
13607 (elint-forms): Guard against parse errors.
13608 (elint-output): New function, to handle batch mode.
13609 (elint-log-message): Add optional argument. Use elint-output.
13610 (elint-set-mode-line): New function.
13611
13612 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
13613
13614 * emacs-lisp/elp.el (elp-not-profilable): Add more
13615 functions (Bug#4233).
13616
13617 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
13618
13619 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
13620 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
13621
13622 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
13623
13624 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
13625 (gdb-var-list-children): Use json parsing.
13626
13627 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
13628
13629 * progmodes/js.el (js--proper-indentation): Handle the case where
13630 char-before is null. Reported by Deniz Dogan.
13631
13632 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
13633
13634 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
13635
13636 2009-09-11 Daiki Ueno <ueno@unixuser.org>
13637
13638 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
13639 (epg-digest-algorithm-alist): Add SHA224.
13640 (epg-context-set-passphrase-callback)
13641 (epg-context-set-progress-callback): Add description about
13642 callback function.
13643
13644 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
13645
13646 * custom.el (custom-delayed-init-variables): New var.
13647 (custom-initialize-delay): New function.
13648 * startup.el (command-line): "Re"evaluate all vars in
13649 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
13650 explicitly any more.
13651 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
13652 to avoid creating a ~/.emacs.d at build-time (bug#4347).
13653
13654 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
13655
13656 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
13657
13658 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
13659 (gdb-var-update-handler): Use json parsing.
13660
13661 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
13662
13663 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
13664 decode annotated text, regardless of language environment. (Bug#2741)
13665
13666 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
13667
13668 * Makefile.in (autoloads): Make rmail.el writable as well.
13669
13670 2009-09-11 Glenn Morris <rgm@gnu.org>
13671
13672 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
13673 loaddefs.el.
13674 * dired.el: Regenerate with extracted autoloads.
13675 * Makefile.in (autoloads): Make dired.el writable.
13676
13677 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
13678 * ibuffer.el: Regenerate with extracted autoloads.
13679 * Makefile.in (autoloads): Make ibuffer.el writable.
13680
13681 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
13682 * version.el (emacs-copyright, emacs-major-version)
13683 (emacs-minor-version): Reformat doc-strings for make-docfile.
13684
13685 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
13686 functions and variables, since they must be stuff specific to some other
13687 platform.
13688 (apropos-print): Make mouse-click message less specific about button.
13689
13690 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
13691 that records where a macro was defined.
13692 * help-fns.el (describe-function-1): Mention if a function has a
13693 compiler-macro.
13694 * help-mode.el (help-function-cmacro): New button.
13695
13696 * locate.el (top-level): Always require dired.
13697 (locate-mode-map): Initialize inside the defvar.
13698
13699 * net/ange-ftp.el (dired-compress-file): Declare.
13700 (ange-ftp-dired-compress-file): Add doc string.
13701
13702 * term/ns-win.el (x-display-name, x-setup-function-keys):
13703 Unify doc-strings with X versions.
13704
13705 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
13706
13707 * emulation/crisp.el (crisp-mode-map): Move initialization
13708 into declaration.
13709 (crisp-mode): Use define-minor-mode.
13710
13711 * progmodes/xscheme.el (xscheme-evaluation-commands):
13712 Put a :advertised-binding property rather than using
13713 advertised-xscheme-send-previous-expression.
13714 (advertised-xscheme-send-previous-expression): Declare obsolete.
13715 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
13716 `advertised-undo'.
13717 (crisp-mode): Add corresponding bindings to
13718 undo's :advertised-binding instead.
13719 * dired.el (dired-mode-map): Put a :advertised-binding property rather
13720 than using dired-advertised-find-file.
13721 (dired-advertised-find-file):
13722 * simple.el (advertised-undo):
13723 * wid-edit.el (advertised-widget-backward): Declare obsolete.
13724 (widget-keymap): Put a :advertised-binding property rather
13725 than using advertised-widget-backward.
13726 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
13727 than using advertised-undo.
13728 * tutorial.el (tutorial--default-keys): Adjust accordingly.
13729
13730 2009-09-10 Simon South <ssouth@slowcomputing.org>
13731
13732 * progmodes/delphi.el (delphi-tab): Indent region when Transient
13733 Mark mode is enabled and region is active; otherwise indent or
13734 insert TAB as usual.
13735 (delphi-mode): Update description of TAB-key binding.
13736
13737 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
13738
13739 * subr.el (define-key-rebound-commands): Mark obsolete.
13740 * startup.el (precompute-menubar-bindings): Remove.
13741 (normal-top-level): Remove obsolete code that tried to precompute
13742 menubar bindings.
13743 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
13744 define-key-rebound-commands and precompute-menubar-bindings.
13745
13746 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
13747
13748 * net/imap.el (imap-interactive-login): Better messages.
13749 (imap-open): Fix bug with renamed buffer on reconnect.
13750 (imap-authenticate): Add buffer-local imap-last-authenticator variable
13751 for easier debugging and cleaner code. On successful (guessed based on
13752 server capabilities) secondary authentication, set imap-state
13753 correctly.
13754 (imap-last-authenticator): Define imap-last-authenticator as a variable
13755 to avoid warnings.
13756
13757 2009-09-10 Glenn Morris <rgm@gnu.org>
13758
13759 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
13760
13761 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
13762 (byte-compile-file-form-autoload): Don't warn about unknown functions
13763 where the autoload statement comes after the use.
13764 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
13765 that any handlers inside the body (eg require) are in turn respected.
13766
13767 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
13768 effects.
13769
13770 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
13771 and syntax and abbrev tables basic docs, if they don't have any.
13772
13773 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
13774
13775 * international/mule-cmds.el (top-level): Require cl when compiling.
13776 (view-hello-file): Use default-value rather than
13777 default-enable-multibyte-characters.
13778
13779 * progmodes/fortran.el: Move all safe and risky properties into the
13780 defcustoms.
13781
13782 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
13783 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
13784 * mail/undigest.el:
13785 Put autoloads in rmail.el rather than loaddefs.el.
13786 * mail/rmail.el: Regenerate with extracted autoloads.
13787
13788 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
13789 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
13790
13791 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
13792
13793 Reported in thread for Bug#4375.
13794 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
13795 "-data-evaluate-expression" instead of print.
13796 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
13797 (gdb-tooltip-print): Parse output from above MI command.
13798 (gdb): Revert 2009-08-11 change. User should detach inferior
13799 manually.
13800
13801 Remove the word "separate" from IO functions as inferior
13802 output is now never displayed in the GUD buffer.
13803
13804 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
13805
13806 * startup.el (command-line-normalize-file-name): On Windows and
13807 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
13808
13809 2009-09-10 Juri Linkov <juri@jurta.org>
13810
13811 * isearch.el (isearch-text-char-description): Propertize escape
13812 character sequences with the `escape-glyph' face. (Bug#4344)
13813
13814 * simple.el (shell-command): Set asynchronous process filter to
13815 `comint-output-filter'. (Bug#4343)
13816
13817 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
13818 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
13819 the list. Move "asm" to the bottom.
13820 (grep-find-ignored-directories): Add `choice' with nil value
13821 to empty the list easily.
13822 (grep-find-ignored-files): New option.
13823 (grep-files-history): Set to nil by default instead of '("ch" "el").
13824 (grep-compute-defaults): Add "<X>" to `grep-template'.
13825 (grep-read-files): Bind new local variables `default-alias' and
13826 `default-extension'. Use a list of default values for the file prompt.
13827 (lgrep): Add `--exclude=' command line options composed from
13828 `grep-find-ignored-files'.
13829 (rgrep): Add `-name' command line options composed from
13830 `grep-find-ignored-files'. (Bug#4301)
13831
13832 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
13833
13834 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
13835 (bug#4368).
13836
13837 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
13838
13839 * calendar/time-date.el (autoload):
13840 Expand define-obsolete-function-alias into defalias and make-obsolete
13841 for old Emacsen that Gnus supports.
13842 (with-no-warnings): Define it for old Emacsen.
13843 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
13844 is available.
13845 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
13846 float-time is available; suppress compile warning for time-to-seconds.
13847
13848 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
13849
13850 * net/imap.el (imap-message-map): Docstring fix.
13851
13852 2009-09-09 Glenn Morris <rgm@gnu.org>
13853
13854 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
13855 line numbers too. (Bug#4374)
13856
13857 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
13858
13859 * smerge-mode.el (smerge-remove-props, smerge-refine):
13860 Use with-silent-modifications (bug#4342).
13861
13862 * subr.el (with-silent-modifications): New macro.
13863
13864 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
13865
13866 * files.el (top-level): Require `cl' when compiling.
13867
13868 2009-09-07 Glenn Morris <rgm@gnu.org>
13869
13870 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
13871
13872 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
13873 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
13874
13875 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
13876
13877 * vc-git.el (vc-git-annotate-command): Use separator to parse
13878 arguments correctly.
13879
13880 2009-09-06 Eli Zaretskii <eliz@gnu.org>
13881
13882 * proced.el (proced-mode): Doc fix.
13883
13884 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
13885
13886 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
13887 lstat fails.
13888 (tramp-do-file-attributes-with-ls): Check for file existence at
13889 remote end.
13890 (tramp-do-file-attributes-with-stat): Likewise.
13891 (tramp-convert-file-attributes): Return nil when attr is nil.
13892
13893 2009-09-05 Glenn Morris <rgm@gnu.org>
13894
13895 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
13896 properties to this button.
13897 (diary-fancy-display): Don't extend the button to the final newline.
13898 (diary-fancy-display-mode): Continue to define "q" as a local key.
13899
13900 * calendar/cal-china.el (holiday-chinese): Make it slightly more
13901 efficient.
13902
13903 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
13904
13905 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
13906 (byte-compile-dest-file-function): New option.
13907 (byte-compile-dest-file): Doc fix.
13908 Obey byte-compile-dest-file-function.
13909 (byte-compile-cl-file-p): New function.
13910 (byte-compile-eval): Only suppress noruntime warnings about cl functions
13911 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
13912 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
13913 than for file being previously loaded.
13914 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
13915 (byte-compile-file-form-require): Handle the case where requiring a file
13916 indirectly causes CL to be loaded.
13917
13918 2009-09-05 Karl Fogel <kfogel@red-bean.com>
13919
13920 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
13921 before killing the old buffer, since by the time `kill-buffer' is
13922 run so many buffer variables have been set to nil that it may not
13923 behave as expected. (Bug#4061)
13924
13925 2009-09-05 Karl Fogel <kfogel@red-bean.com>
13926
13927 * files.el (find-alternate-file): If the old buffer is modified
13928 and visiting a file, behave similarly to `kill-buffer' when
13929 killing it, thus reverting to the pre-1.878 behavior; see
13930 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
13931 for discussion. Also, consult `buffer-file-name' as a variable
13932 not as a function, for consistency with the rest of the code.
13933
13934 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
13935
13936 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
13937 also when adding a new directory.
13938
13939 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
13940 defun.
13941
13942 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
13943
13944 * files.el (locate-file-completion-table): Make it provide boundary
13945 information, so partial-completion works better.
13946
13947 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
13948
13949 * mail/footnote.el (Footnote-text-under-cursor):
13950 Check footnote-text-marker-alist before using it (bug#4324).
13951
13952 2009-09-04 Glenn Morris <rgm@gnu.org>
13953
13954 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
13955 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
13956 * play/solitaire.el, play/tetris.el:
13957 Remove leading * from defcustom and defface docs.
13958
13959 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
13960 necessary.
13961 (diary-fancy-overriding-map): New variable.
13962 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
13963 Use view-mode.
13964
13965 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
13966 goto-line.
13967
13968 2009-09-03 Glenn Morris <rgm@gnu.org>
13969
13970 * arc-mode.el (archive-mode):
13971 * dos-fns.el (set-default-process-coding-system):
13972 * man.el (Man-getpage-in-background):
13973 * menu-bar.el (menu-bar-describe-menu):
13974 * server.el (server-process-filter):
13975 * startup.el (command-line):
13976 * tar-mode.el (tar-header-block-tokenize, tar-extract):
13977 * w32-fns.el (set-default-process-coding-system):
13978 * x-dnd.el (x-dnd-handle-file-name):
13979 * international/mule-cmds.el (mule-menu-keymap)
13980 (set-default-coding-systems, language-info-alist, set-language-info)
13981 (set-language-environment, standard-display-european-internal)
13982 (set-locale-environment):
13983 * international/mule-diag.el (mule-diag):
13984 * mail/emacsbug.el (report-emacs-bug):
13985 * mail/rmail.el (rmail-mode):
13986 * mail/sendmail.el (mail-setup):
13987 Use default-value rather than default-enable-multibyte-characters.
13988
13989 * progmodes/f90.el: Move all safe properties into the defcustoms.
13990 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
13991
13992 * calendar/appt.el (appt-check):
13993 * calendar/diary-lib.el (diary-set-header, diary-live-p)
13994 (diary-check-diary-file, diary-list-entries)
13995 (diary-include-other-diary-files, diary-simple-display)
13996 (diary-fancy-display, diary-print-entries)
13997 (diary-mark-included-diary-files, diary-make-entry):
13998 Don't call substitute-in-file-name on diary-file.
13999
14000 2009-09-03 Eduard Wiebe <usenet@pusto.de>
14001 Stefan Monnier <monnier@iro.umontreal.ca>
14002
14003 * mail/footnote.el (footnote-prefix): Make it a defcustom.
14004 (footnote-mode-map): Move initialization into the declaration.
14005 (footnote-minor-mode-map): Define it rather than changing global-map.
14006 (footnote-mode): Use define-minor-mode.
14007
14008 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
14009
14010 * net/tramp.el (tramp-handle-file-attributes-with-ls)
14011 (tramp-do-file-attributes-with-perl)
14012 (tramp-do-file-attributes-with-stat): Rename from
14013 `tramp-handle-file-attributes-with-*'.
14014 (tramp-handle-file-attributes): Use them.
14015 (tramp-do-directory-files-and-attributes-with-perl)
14016 (tramp-do-directory-files-and-attributes-with-stat): Rename from
14017 `tramp-handle-directory-files-and-attributes-with-*'.
14018 (tramp-handle-directory-files-and-attributes): Use them.
14019 (tramp-method-out-of-band-p): Additional parameter SIZE.
14020 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
14021 (tramp-handle-write-region): Use it.
14022 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
14023 (tramp-handle-vc-registered): Check, whether the first run did
14024 return files to be tested.
14025 (tramp-advice-make-auto-save-file-name): Do not call directly
14026 `tramp-handle-make-auto-save-file-name', because this would bypass
14027 the locking mechanism.
14028
14029 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
14030 (file-remote-p, process-file, start-file-process, set-file-times)
14031 (tramp-compat-file-attributes): Compatibility functions shall not
14032 call directly `tramp-handle-*', because this would bypass the
14033 locking mechanism.
14034 (tramp-compat-number-sequence): New defun.
14035
14036 2009-09-02 Glenn Morris <rgm@gnu.org>
14037
14038 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
14039 alias for float-time.
14040 (time-to-number-of-days): In Emacs, use float-time.
14041 * net/newst-backend.el (time-add): Suppress warnings from compat
14042 function.
14043 * time.el (emacs-uptime, emacs-init-time):
14044 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
14045 Use float-time rather than time-to-seconds.
14046
14047 * minibuffer.el (completion-initials-expand): Fix typo.
14048
14049 * faces.el (modeline, modeline-inactive, modeline-highlight)
14050 (modeline-buffer-id):
14051 * info.el (info-menu-5): Mark these face aliases as obsolete.
14052
14053 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
14054
14055 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
14056 space ...
14057 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
14058 no "--thread" option.
14059 (gdb-stopped): Don't print "Switched to thread" message when it is
14060 unchanged.
14061
14062 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
14063
14064 * minibuffer.el (completion-try-completion)
14065 (completion-all-completions): Remove ill-defined (and
14066 mistakenly installed and luckily never used nor documented)
14067 `completion-styles' property.
14068 (completion-initials-expand, completion-initials-all-completions)
14069 (completion-initials-try-completion): New functions.
14070 (completion-styles-alist): Add doc to each entry.
14071 Add new `initials' entry.
14072
14073 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
14074
14075 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
14076 MI command -var-evaluate-expression.
14077 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
14078 and tweak for case of string child.
14079 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
14080
14081 2009-09-01 Glenn Morris <rgm@gnu.org>
14082
14083 * add-log.el (change-log-date-face, change-log-name-face)
14084 (change-log-email-face, change-log-file-face, change-log-list-face)
14085 (change-log-conditionals-face, change-log-function-face)
14086 (change-log-acknowledgement-face):
14087 * cus-edit.el (custom-invalid-face, custom-rogue-face)
14088 (custom-modified-face, custom-set-face, custom-changed-face)
14089 (custom-saved-face, custom-button-face, custom-button-pressed-face)
14090 (custom-documentation-face, custom-state-face, custom-comment-face)
14091 (custom-comment-tag-face, custom-variable-tag-face)
14092 (custom-variable-button-face, custom-face-tag-face)
14093 (custom-group-tag-face-1, custom-group-tag-face):
14094 * diff-mode.el (diff-header-face, diff-file-header-face)
14095 (diff-index-face, diff-hunk-header-face, diff-removed-face)
14096 (diff-added-face, diff-changed-face, diff-function-face)
14097 (diff-context-face, diff-nonexistent-face):
14098 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
14099 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
14100 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
14101 (Info-title-4-face):
14102 * isearch.el (isearch-lazy-highlight-face):
14103 * log-view.el (log-view-file-face, log-view-message-face):
14104 * paren.el (show-paren-match-face, show-paren-mismatch-face):
14105 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
14106 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
14107 (cvs-msg-face):
14108 * smerge-mode.el (smerge-mine-face, smerge-other-face)
14109 (smerge-base-face, smerge-markers-face):
14110 * wid-edit.el (widget-documentation-face, widget-button-face)
14111 (widget-field-face, widget-single-line-field-face)
14112 (widget-inactive-face, widget-button-pressed-face):
14113 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
14114 (woman-addition-face):
14115 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
14116 (eshell-ls-executable-face, eshell-ls-readonly-face)
14117 (eshell-ls-unreadable-face, eshell-ls-special-face)
14118 (eshell-ls-missing-face, eshell-ls-archive-face)
14119 (eshell-ls-backup-face, eshell-ls-product-face)
14120 (eshell-ls-clutter-face):
14121 * eshell/em-prompt.el (eshell-prompt-face):
14122 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
14123 * obsolete/old-whitespace.el (whitespace-highlight-face):
14124 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
14125 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
14126 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
14127 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
14128 (antlr-font-lock-literal-face):
14129 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
14130 (ebrowse-root-class-face, ebrowse-file-name-face)
14131 (ebrowse-default-face, ebrowse-member-attribute-face)
14132 (ebrowse-member-class-face, ebrowse-progress-face):
14133 * progmodes/make-mode.el (makefile-space-face):
14134 * progmodes/sh-script.el (sh-heredoc-face):
14135 * textmodes/flyspell.el (flyspell-incorrect-face)
14136 (flyspell-duplicate-face):
14137 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
14138 * textmodes/texinfo.el (texinfo-heading-face):
14139 Mark face aliases with "-face" suffix as obsolete.
14140
14141 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
14142 compiler.
14143
14144 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
14145 (eudc-bob-sound-menu): Use defvar rather than defconst, since
14146 easy-menu-define wants to modify these.
14147
14148 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
14149
14150 * net/browse-url.el (browse-url-file-url):
14151 * term/internal.el (dos-codepage-setup):
14152 Use default-value rather than default-enable-multibyte-characters.
14153
14154 * progmodes/etags.el (etags-goto-tag-location):
14155 * progmodes/flymake.el (flymake-highlight-line)
14156 (flymake-goto-file-and-line, flymake-goto-line):
14157 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
14158 (gdb-goto-breakpoint):
14159 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
14160 * progmodes/python.el (python-find-function)
14161 (python-pdbtrack-track-stack-file):
14162 * progmodes/verilog-mode.el (verilog-surelint-off):
14163 * term/ns-win.el (ns-open-file-select-line):
14164 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
14165 Use forward-line rather than goto-line.
14166
14167 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
14168 * textmodes/reftex-index.el (reftex-display-index):
14169 * textmodes/reftex-ref.el (reftex-offer-label-menu):
14170 * textmodes/reftex-toc.el (reftex-toc):
14171 Remove unnecessary bindings of default-major-mode (all are followed by
14172 major-mode check and possible mode switch).
14173
14174 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
14175
14176 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14177 Handle watchpoints (bug#4282).
14178 (def-gdb-thread-buffer-command): Enable thread to be selected by
14179 clicking without selecting threads buffer first.
14180 (gdb-current-context-command): Use selected frame so that "up",
14181 "down" etc work in the GUD buffer.
14182 (gdb-update): Find selected frame before rendering stack buffer.
14183 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
14184
14185 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
14186
14187 * progmodes/sym-comp.el (displayed-completions): Remove.
14188 (symbol-complete): Use minibuffer-complete.
14189
14190 2009-08-31 Glenn Morris <rgm@gnu.org>
14191
14192 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
14193
14194 * apropos.el (apropos-symbols-internal):
14195 Handle (obsolete) face aliases.
14196
14197 * faces.el (describe-face): Adjust the output format to be more like
14198 describe-variable, and to mention (obsolete) face aliases.
14199 Adjust the whitespace so that help-setup-xref works.
14200
14201 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
14202 * calendar/diary-lib.el (diary-button-face):
14203 Mark these face aliases as obsolete.
14204
14205 * calendar/calendar.el (calendar-today): Doc fix.
14206
14207 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
14208
14209 * progmodes/gdb-mi.el (gdb-control-all-threads)
14210 (gdb-control-current-thread): Force tool bar update.
14211 (gdb-non-stop-handler): New function.
14212 (gdb-init-1): Use it to test if non-stop mode is supported.
14213 Remove unused gdbmi buffer type.
14214
14215 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
14216
14217 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
14218 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
14219
14220 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
14221
14222 * comint.el (comint-exec-1): Check command is non-null first.
14223 Part of gdb-mi.el change (2009-08-28).
14224
14225 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
14226
14227 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
14228
14229 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
14230
14231 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
14232 instead of `dolist' to avoid a recursive require when bootstrapping.
14233
14234 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
14235
14236 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
14237
14238 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
14239
14240 * net/imap.el (imap-send-command): Simplify.
14241 (imap-wait-for-tag): point-max -> buffer-size.
14242
14243 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
14244
14245 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
14246 with constant argument.
14247
14248 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
14249
14250 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
14251
14252 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
14253 Change default, since most of our files don't have a history.
14254 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
14255 the user.
14256
14257 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14258 Add comint-run.
14259
14260 * calc/calc.el: Improve commenting convention.
14261 (calc-digit-map, toplevel): Simplify.
14262
14263 * comint.el (comint-insert-input): Be careful to only set point if we
14264 don't delegate to some other command.
14265
14266 * proced.el (proced-signal-list): Make it an alist.
14267 (proced-grammar-alist): Capitalize names.
14268 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
14269 Disable undo manually and make it read-only.
14270 Use completion-annotate-function.
14271
14272 * minibuffer.el (minibuffer-message): If the current buffer is not
14273 a minibuffer, insert the message in the echo area rather than at the
14274 end of the buffer.
14275 (completion-annotate-function): New variable.
14276 (minibuffer-completion-help): Use it.
14277 (completion--embedded-envvar-table): Environment vars are
14278 always case-sensitive.
14279
14280 2009-08-30 Glenn Morris <rgm@gnu.org>
14281
14282 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
14283 from fortran-current-defun.
14284 (fortran-beginning-of-subprogram): Be more precise about finding the
14285 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
14286 (fortran-end-of-subprogram): Simplify.
14287 (fortran-current-defun): Use fortran-start-prog-re.
14288
14289 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
14290
14291 * subr.el (do-after-load-evaluation): Simplify.
14292
14293 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
14294
14295 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
14296
14297 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
14298 (vc-rcs-print-log): Use it.
14299
14300 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
14301
14302 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
14303
14304 * paths.el (abbrev-file-name): Move to abbrev.el.
14305 * abbrev.el (abbrev-file-name): Move from paths.el.
14306 Obey user-emacs-directory.
14307 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
14308 user-emacs-directory.
14309 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
14310 abbrev-file-name and calc-settings-file any more.
14311 * startup.el (command-line): Recompute abbrev-file-name and
14312 abbreviated-home-dir.
14313 (normal-no-mouse-startup-screen): Improve the generic code and get rid
14314 of the special code for when C-h bindings haven't been changed.
14315 (display-startup-echo-area-message): Use with-current-buffer.
14316 (command-line-1): Use a list of strings, rather than a list of lists
14317 of strings for longopts.
14318
14319 * files.el (get-free-disk-space): Use / for default-directory.
14320
14321 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
14322 Use with-current-buffer.
14323
14324 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
14325 Recognize immutable variables like most-positive-fixnum.
14326 (byte-compile-setq-default): Check and warn if trying to assign
14327 to an immutable variable, or a non-variable.
14328
14329 * progmodes/cc-vars.el (c-comment-continuation-stars):
14330 * progmodes/cc-engine.el (c-looking-at-bos):
14331 * progmodes/cc-cmds.el (c-toggle-auto-state)
14332 (c-forward-into-nomenclature, c-backward-into-nomenclature)
14333 (c-comment-line-break-function): Add version of obsolescence.
14334
14335 2009-08-28 Juri Linkov <juri@jurta.org>
14336
14337 * files.el (magic-fallback-mode-alist): Add ZIP magic number
14338 associated with `archive-mode'.
14339
14340 * image.el (image-type-header-regexps): Use only JPEG magic number
14341 to determine JPEG images, and don't use `image-jpeg-p' because
14342 Emacs can display non-JFIF non-Exif JPEG images.
14343
14344 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
14345
14346 * arc-mode.el (archive-mode):
14347 * emacs-lisp/re-builder.el (re-builder-unload-function):
14348 Protect against the default value of `major-mode' being nil.
14349
14350 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
14351
14352 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
14353 Fix typos in docstrings.
14354
14355 * progmodes/js.el (js--macro-decl-re): Doc fix.
14356 (js--plain-method-re, js--split-name): Refloc docstring.
14357 (js--class-styles, js--make-merged-item, js--splice-into-items):
14358 Fix typos in docstrings; reflow docstrings.
14359 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
14360 (js--variable-decl-matcher, js--inside-pitem-p)
14361 (js--parse-state-at-point, js--get-all-known-symbols)
14362 (js--symbol-history, js-find-symbol, js--js-references)
14363 (js--moz-interactor, js--js-encode-value, js--read-tab):
14364 Fix typos in docstrings.
14365
14366 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14367
14368 * textmodes/reftex.el (reftex-get-file-buffer-force):
14369 * progmodes/verilog-mode.el (verilog-batch-execute-func):
14370 * emulation/viper.el (viper-go-away, viper-set-hooks):
14371 * emacs-lisp/re-builder.el (re-builder-unload-function):
14372 * emacs-lisp/bytecomp.el (byte-compile-file):
14373 * ses.el (ses-unload-function):
14374 * hexl.el (hexl-find-file):
14375 * files.el (normal-mode):
14376 * ehelp.el (with-electric-help):
14377 * autoinsert.el (auto-insert-alist):
14378 * arc-mode.el (archive-mode):
14379 Use (default-value 'major-mode) instead of default-major-mode.
14380
14381 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
14382 * international/mule.el (load-with-code-conversion):
14383 * emacs-lisp/debug.el (debug):
14384 * ediff-vers.el (ediff-rcs-get-output-buffer):
14385 * dired.el (dired-internal-noselect): Don't let-bind
14386 default-major-mode around code that doesn't use it.
14387 E.g. buffer creation via get-buffer-create doesn't use it.
14388
14389 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
14390
14391 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
14392 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
14393 when writing the temp file. Otherwise, epa-file gets confused.
14394 (tramp-register-file-name-handlers): Make it a defun. Move also
14395 `epa-file-handler' to the front of `file-name-handler-alist'.
14396
14397 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14398
14399 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
14400 start right after a ^M.
14401 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
14402 (tramp-completion-file-name-regexp-separate)
14403 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
14404 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
14405 Don't modify last-coding-system-used by accident.
14406 (tramp-completion-file-name-handler): Apply the checks here,
14407 instead during registration.
14408 (tramp-register-file-name-handlers): Renamed from
14409 `tramp-register-file-name-handler'. Register both
14410 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
14411 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
14412
14413 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
14414
14415 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
14416 Remove variable ...
14417 (gdb-init-1, gdb-display-separate-io-buffer)
14418 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
14419 references to it.
14420 (gdb-inferior-io-mode): Use make-comint-in-buffer.
14421 (gdb-inferior-filter): Use comint-output-filter to stop
14422 echoing and remove ^M characters.
14423
14424 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14425
14426 * emulation/viper-init.el (viper-restore-cursor-type):
14427 * emulation/cua-base.el (cua--update-indications):
14428 Replace default-cursor-type with (default-value 'cursor-type).
14429
14430 * mail/sendmail.el (mail-recover-1):
14431 * international/mule-diag.el (describe-current-coding-system-briefly)
14432 (describe-current-coding-system):
14433 * international/mule-cmds.el (select-safe-coding-system)
14434 (select-message-coding-system)
14435 (set-language-environment-coding-systems, set-locale-environment):
14436 * hexl.el (hexl-insert-multibyte-char):
14437 * dos-w32.el (find-buffer-file-type-coding-system):
14438 * simple.el (what-cursor-position):
14439 Replace uses of default-buffer-file-coding-system
14440 with (default-value 'buffer-file-coding-system).
14441
14442 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
14443 Replace uses of default-cursor-in-non-selected-windows
14444 with (default-value 'cursor-in-non-selected-windows).
14445 Use with-current-buffer.
14446
14447 * mail/feedmail.el: Use CL macros.
14448 (feedmail-run-the-queue, feedmail-send-it-immediately):
14449 * dos-w32.el (find-buffer-file-type): Replace uses of
14450 default-buffer-file-type with (default-value 'buffer-file-type).
14451
14452 2009-08-28 Glenn Morris <rgm@gnu.org>
14453
14454 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
14455 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
14456 Use default-value of major-mode rather than default-major-mode.
14457
14458 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
14459
14460 * Makefile.in (update-elcfiles): Report left over elc files.
14461
14462 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
14463 expand-file-name and with-current-buffer.
14464 (mail-get-names, mail-directory): Use with-current-buffer.
14465
14466 * vc.el (vc-read-revision): New function.
14467 (vc-version-diff, vc-merge): Use it.
14468
14469 2009-08-27 Sam Steingold <sds@gnu.org>
14470
14471 * simple.el (kill-do-not-save-duplicates): New user option.
14472 (kill-new): When it is non-nil, and the new string is the same as
14473 the latest kill, set replace to t to avoid duplicates in kill-ring.
14474
14475 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
14476
14477 * net/tramp.el (tramp-handle-process-file): Do not flush all
14478 caches when `process-file-side-effects' is set.
14479 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
14480 instead of `tramp-find-file-exists-command'.
14481 Unset `process-file-side-effects'.
14482
14483 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
14484
14485 * net/tramp.el (tramp-methods): New method "rsyncc".
14486 (top): Add completion function for "rsyncc".
14487 (tramp-message-show-message): New defvar.
14488 (tramp-message, tramp-error): Use it.
14489 (tramp-do-copy-or-rename-file-directly): Extend check for direct
14490 remote copying.
14491 (tramp-do-copy-or-rename-file-out-of-band): Handle new
14492 `tramp-methods' entry `copy-env' of "rsyncc".
14493 (tramp-vc-registered-read-file-names): New defconst.
14494 (tramp-vc-registered-file-names): New defvar.
14495 (tramp-handle-vc-registered): Implement optimization strategy.
14496 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
14497 (tramp-vc-file-name-handler): New defun.
14498 (tramp-get-ls-command, tramp-get-test-command)
14499 (tramp-get-file-exists-command, tramp-get-remote-ln)
14500 (tramp-get-remote-perl, tramp-get-remote-stat)
14501 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
14502
14503 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
14504 (tramp-cache-inhibit-cache): Extend doc string. It allows also
14505 timestamps.
14506 (tramp-get-file-property): Check for timestamps in
14507 `tramp-cache-inhibit-cache'.
14508 (tramp-set-file-property): Write timestamp.
14509
14510 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
14511
14512 * language/japan-util.el (japanese-symbol-table): Add entries for
14513 cp932-2-byte.
14514
14515 * international/characters.el: Add category `j' to cp932-2-byte.
14516
14517 2009-08-27 Kenichi Handa <handa@m17n.org>
14518
14519 * international/fontset.el (build-default-fontset-data): New macro.
14520 (setup-default-fontset): Use build-default-fontset-data for CJK,
14521 tibetan, ethiopic, and ipa.
14522
14523 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
14524
14525 * cus-start.el (default-major-mode): Customize `major-mode' instead.
14526 (enable-multibyte-characters): Not customizable any more.
14527
14528 * subr.el (default-mode-line-format, default-header-line-format)
14529 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
14530 (default-direction-reversed, default-truncate-lines)
14531 (default-left-margin, default-tab-width, default-case-fold-search)
14532 (default-left-margin-width, default-right-margin-width)
14533 (default-left-fringe-width, default-right-fringe-width)
14534 (default-fringes-outside-margins, default-scroll-bar-width)
14535 (default-vertical-scroll-bar, default-indicate-empty-lines)
14536 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
14537 (default-fringe-cursor-alist, default-scroll-up-aggressively)
14538 (default-scroll-down-aggressively, default-fill-column)
14539 (default-cursor-type, default-buffer-file-type)
14540 (default-cursor-in-non-selected-windows)
14541 (default-buffer-file-coding-system, default-major-mode)
14542 (default-enable-multibyte-characters): Mark as obsolete.
14543
14544 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
14545
14546 * vc-dir.el (vc-dir-update): Remove debug helper.
14547
14548 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
14549
14550 2009-08-26 Sam Steingold <sds@gnu.org>
14551
14552 * simple.el (save-interprogram-paste-before-kill): New user option.
14553 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
14554 save the interprogram-paste into kill-ring before overriding it
14555 with the Emacs kill.
14556
14557 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
14558
14559 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
14560 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
14561 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
14562 and move to vc-rcs.el.
14563 (vc-default-next-revision): Rename to vc-rcs-next-revision and
14564 move to vc-rcs.el.
14565 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
14566 (vc-rcs-update-changelog): Remove.
14567 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
14568 and move to vc-rcs.el.
14569
14570 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
14571 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
14572 renaming.
14573 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
14574 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
14575 vc.el, renamed to be RCS specific.
14576
14577 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
14578 New functions.
14579 (vc-cvs-update-changelog): Move here from vc.el.
14580
14581 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
14582 New functions.
14583
14584 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
14585
14586 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
14587
14588 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
14589
14590 * vc-git.el (vc-git-register): Use "git add" for directories.
14591 (vc-git-stash, vc-git-stash-show): New functions.
14592 (vc-git-extra-menu-map): Bind them.
14593
14594 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
14595 directory correctly in case the item is a directory itself.
14596
14597 * vc.el: Document the desired behavior for reverted files in the
14598 `added' state.
14599 (vc-default-prettify-state-info): Remove function, unused.
14600
14601 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
14602
14603 2009-08-26 Glenn Morris <rgm@gnu.org>
14604
14605 * bindings.el (standard-mode-line-format): Reposition dashes in
14606 which-func entry. (Bug#4217)
14607
14608 * files.el (enable-local-variables, enable-local-eval)
14609 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
14610 the defcustoms.
14611 (auto-mode-alist, ignored-local-variables)
14612 (save-some-buffers-action-alist): Move risky declarations to the
14613 definitions.
14614 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
14615 (font-lock-defaults, format-alist, imenu--index-alist)
14616 (imenu-generic-expression, input-method-alist, minor-mode-alist)
14617 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
14618 (mode-line-modified, mode-line-mule-info, mode-line-position)
14619 (mode-line-process, mode-line-remote, outline-level)
14620 (parse-time-rules, rmail-output-file-alist)
14621 (special-display-buffer-names, vc-mode):
14622 Move risky declarations to the relevant files.
14623 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
14624 (mode-line-modified, mode-line-process, mode-line-position)
14625 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
14626 * font-core.el (font-lock-defaults):
14627 * format.el (format-alist):
14628 * vc-hooks.el (vc-mode):
14629 * window.el (special-display-buffer-names):
14630 * international/mule-cmds.el (input-method-alist):
14631 Define riskiness here (dumped file) rather than in files.el.
14632 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
14633 * imenu.el (imenu-generic-expression, imenu--index-alist):
14634 * outline.el (outline-level):
14635 * time.el (display-time-string):
14636 * calendar/parse-time.el (parse-time-rules):
14637 * mail/rmailout.el (rmail-output-file-alist):
14638 Autoload riskiness here, rather than placing in files.el.
14639
14640 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
14641
14642 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
14643
14644 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
14645
14646 * simple.el (process-file-side-effects): New defvar.
14647
14648 * dired-aux.el (dired-show-file-type):
14649 * vc.el (vc-diff-internal):
14650 * vc-arch.el (vc-arch-diff):
14651 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
14652 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
14653 * vc-git.el (vc-git-registered, vc-git-working-revision)
14654 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
14655 (vc-git--empty-db-p):
14656 * vc-hooks.el (vc-user-login-name):
14657 * vc-svn.el (vc-svn-registered, vc-svn-state)
14658 (vc-svn-dir-extra-headers, vc-svn-find-revision):
14659 * progmodes/grep.el (grep-probe): Let-bind
14660 `process-file-side-effects' with nil.
14661
14662 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
14663
14664 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
14665 daemon. Replace ping by checking for running service for bluez
14666 and zeroconf. (Bug#4239)
14667
14668 2009-08-25 Kevin Ryde <user42@zip.com.au>
14669
14670 * net/dig.el (dig): Add autoload cookie.
14671
14672 2009-08-25 Glenn Morris <rgm@gnu.org>
14673
14674 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
14675 load-history for absolute file-names.
14676 (byte-compile-file-form-require): Warn about use of the cl package.
14677
14678 * format.el (format-alist): Doc fix.
14679
14680 * play/bubbles.el (top-level): Don't require cl at run-time.
14681
14682 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
14683 run-time cl).
14684
14685 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
14686
14687 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
14688 from cl package.
14689 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
14690
14691 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
14692
14693 * calc/calc-alg.el (math-trig-rewrite)
14694 (math-hyperbolic-trig-rewrite): New functions.
14695 (calc-simplify): Simplify trig functions when asked.
14696
14697 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
14698
14699 * diff-mode.el (diff-find-source-location): Avoid goto-line.
14700
14701 2009-08-24 Kenichi Handa <handa@m17n.org>
14702
14703 * language/ind-util.el (mapthread): Delete it.
14704 (combinatorial): New function.
14705 (indian--puthash-cv): Use combinatorial instead of mapthread.
14706
14707 2009-08-22 Kevin Ryde <user42@zip.com.au>
14708
14709 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
14710 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
14711 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
14712 Clarify docstring that the value is strings not symbols.
14713 (checkdoc-list-of-strings-p): New function.
14714
14715 2009-08-22 Glenn Morris <rgm@gnu.org>
14716
14717 * files.el (auto-mode-alist):
14718 * hippie-exp.el (he-concat-directory-file-name):
14719 * lpr.el (lpr-windows-system, printer-name):
14720 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
14721 * ps-print.el (ps-windows-system):
14722 * startup.el (command-line):
14723 * emulation/viper-ex.el (viper-glob-function):
14724 * international/mule-cmds.el (set-language-environment-coding-systems):
14725 * net/ange-ftp.el (ange-ftp-write-region):
14726 * obsolete/fast-lock.el (fast-lock-cache-name):
14727 Remove code for defunct system-types emx, macos, mswindows, next-mach,
14728 unisoft-unix, vax-vms, win32, w32.
14729
14730 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
14731 given name if the pattern is not more specific.
14732
14733 * calendar/lunar.el (lunar-phase-names): New option.
14734 (lunar-phase): Doc fix.
14735 (lunar-cycles-per-year): New constant.
14736 (lunar-index): New function.
14737 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
14738 (lunar-phase-name): Use lunar-phase-names.
14739 (calendar-lunar-phases): Use format.
14740 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
14741
14742 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
14743 Copy imenu-example--name-and-position function here for own use.
14744 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
14745
14746 * bs.el (bs--redisplay):
14747 * cus-edit.el (custom-redraw):
14748 * ibuffer.el (ibuffer-bury-buffer):
14749 * server.el (server-goto-line-column):
14750 * startup.el (command-line-1):
14751 * strokes.el (strokes-xpm-for-stroke):
14752 * term.el (term-display-buffer-line):
14753 * view.el (View-goto-line):
14754 * calc/calc.el (calc-do, calc-trail-buffer):
14755 * play/gamegrid.el (gamegrid-add-score-insecure):
14756 * progmodes/ada-mode.el (ada-compile-goto-error):
14757 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
14758 (ebrowse-select-1st-to-9nth):
14759 * progmodes/cperl-mode.el (cperl-time-fontification):
14760 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
14761 * progmodes/gud.el (gud-display-line):
14762 (idlwave-shell-display-line):
14763 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
14764 * progmodes/make-mode.el (makefile-browser-toggle):
14765 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
14766 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
14767 * textmodes/picture.el (picture-draw-rectangle):
14768 * textmodes/reftex-index.el (reftex-index-goto-letter):
14769 (reftex-select-jump-to-previous):
14770 * textmodes/reftex-sel.el (reftex-find-start-point)
14771 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
14772 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
14773 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
14774 * textmodes/tex-mode.el (tex-compilation-parse-errors):
14775 * textmodes/two-column.el (2C-associated-buffer):
14776 Use forward-line rather than goto-line.
14777
14778 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
14779 goto-line.
14780
14781 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
14782 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
14783 (quick-check-list-to-regexp): Declare.
14784
14785 * progmodes/make-mode.el (makefile-browser-insert-selection):
14786 Use goto-char rather than goto-line.
14787
14788 * progmodes/prolog.el (compilation-error-regexp-alist)
14789 (compilation-forget-errors): Declare.
14790
14791 2009-08-22 Juri Linkov <juri@jurta.org>
14792
14793 * progmodes/grep.el (lgrep, rgrep): At the beginning
14794 set `dir' to `default-directory' unless `dir' is a non-nil
14795 readable directory. (Bug#4052)
14796 (lgrep, rgrep): Change a weird way to report an error
14797 from using `read-string' to using `error'.
14798 Instead of using interactive arguments in the function body,
14799 add new argument `confirm'.
14800
14801 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
14802
14803 * textmodes/remember.el (remember-buffer):
14804 * progmodes/cperl-mode.el (cperl-vc-header-alist):
14805 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
14806 (icalendar-extract-ical-from-buffer):
14807 * net/newst-treeview.el (newsticker-groups-filename):
14808 * net/newst-backend.el (newsticker-cache-filename):
14809 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
14810 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
14811 (speedbar-add-ignored-path-regexp, speedbar-line-path)
14812 (speedbar-buffers-line-path, speedbar-path-line)
14813 (speedbar-buffers-line-path):
14814 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
14815 (epg-sign-keys):
14816 * epa.el (epa-display-verify-result):
14817 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
14818
14819 2009-08-21 Glenn Morris <rgm@gnu.org>
14820
14821 * progmodes/js.el (inferior-moz-process): Fix declaration.
14822
14823 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
14824
14825 * obsolete/rnewspost.el (news-mail-reply):
14826 Use goto-char rather than goto-line.
14827
14828 * term/ns-win.el (ns-open-file-select-line):
14829 Use line-beginning-position rather than goto-line.
14830
14831 * apropos.el (apropos-command):
14832 * ehelp.el (electric-helpify):
14833 * printing.el (pr-show-setup):
14834 * strokes.el (strokes-help):
14835 * tutorial.el (tutorial--describe-nonstandard-key)
14836 (tutorial--detailed-help):
14837 * woman.el (woman-mini-help, woman-display-extended-fonts):
14838 * calc/calc-help.el (calc-describe-key):
14839 * emulation/edt.el (edt-electric-helpify):
14840 * international/mule-diag.el (mule-diag):
14841 * play/yow.el (apropos-zippy):
14842 * progmodes/python.el (python-describe-symbol):
14843 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
14844 * textmodes/table.el (*table--cell-describe-mode)
14845 (*table--cell-describe-bindings):
14846 Use help-print-return-message rather than the now obsolete alias.
14847
14848 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
14849 (calendar-cursor-to-visible-date):
14850 * play/5x5.el (5x5-position-cursor):
14851 * play/decipher.el (decipher):
14852 * play/gomoku.el (gomoku-goto-xy):
14853 * play/landmark.el (lm-goto-xy):
14854 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
14855 (mpuz-paint-digit):
14856 Use forward-line, not goto-line.
14857
14858 * mail/rmail.el (rmail-obsolete): Delete custom group.
14859 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
14860 (rmail-remote-password, rmail-remote-password-required):
14861 Remove unneeded :set-after and :set properties.
14862
14863 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
14864
14865 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
14866
14867 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
14868
14869 * loadup.el: Remove leftover macos code.
14870
14871 * vc-git.el (vc-git-annotate-command): Run asynchronously.
14872 Explicitly pass the date format to git blame so that user local
14873 so that the output format can be parsed.
14874
14875 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
14876
14877 * net/dbus.el (top): Don't check for (getenv
14878 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
14879
14880 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
14881
14882 * log-edit.el (log-edit-strip-single-file-name): New var.
14883 (log-edit-insert-changelog): Use it. Bug#3571
14884
14885 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
14886
14887 * subr.el (read-passwd): Use read-key so keypad keys work as well.
14888 Bug#3287
14889
14890 * help.el (help-print-return-message): Rename from
14891 print-help-return-message.
14892
14893 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
14894 cvs-mode-map parent hack.
14895 (log-view-mode): Derive from special-mode.
14896
14897 * linum.el (linum-mode): window-size-change-functions is redundant.
14898 Adapt to new window-configuration-change-hook behavior.
14899 (linum-after-size, linum-after-config): Remove.
14900
14901 * imenu.el (imenu-example--name-and-position)
14902 (imenu-example--lisp-extract-index-name)
14903 (imenu-example--create-lisp-index, imenu-example--create-c-index):
14904 Mark as obsolete.
14905
14906 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
14907 (inferior-prolog-mode): Use it.
14908 (inferior-prolog-load-file): Reset list of errors.
14909
14910 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
14911
14912 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
14913
14914 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
14915
14916 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
14917
14918 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
14919 is running already.
14920
14921 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
14922
14923 * subr.el (listify-key-sequence-1): Use normal syntax since those
14924 integers are nowadays always represented by the same (positive) number
14925 on all platforms.
14926 (read-key-empty-map): New const.
14927 (read-key-delay): New var.
14928 (read-key): New function.
14929 (force-mode-line-update): Use with-current-buffer.
14930 (locate-user-emacs-file): Don't forget to abbreviate the file name.
14931 (start-process-shell-command, start-file-process-shell-command):
14932 Discourage the use of command-args.
14933
14934 2009-08-19 Glenn Morris <rgm@gnu.org>
14935
14936 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
14937
14938 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
14939
14940 * simple.el (choose-completion-string): Don't rely on
14941 minibuffer-completing-file-name and ad-hoc checks to decide whether
14942 to continue completion or not.
14943
14944 * minibuffer.el (minibuffer-hide-completions): New function.
14945 (completion--do-completion): Use it.
14946 (completions-annotations): New face.
14947 (completion--insert-strings): Use it.
14948 (completion-pcm--delim-wild-regex): Add docstring.
14949 (completion-pcm--string->pattern): Add support for 0-width delimiters
14950 in completion-pcm--delim-wild-regex.
14951
14952 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
14953
14954 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
14955 Remove unused var `buffer-modified-p'.
14956
14957 * minibuffer.el (completion--do-completion): Move point for the #b001
14958 case as well (bug#4176).
14959 (minibuffer-complete, minibuffer-complete-word): Don't move point.
14960
14961 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
14962
14963 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
14964 and :session buses.
14965
14966 2009-08-18 Kenichi Handa <handa@m17n.org>
14967
14968 * international/ucs-normalize.el (ucs-normalize-version):
14969 Change to 1.1.
14970 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
14971 (utf-8-hfs): Make it perform normalization on encoding too.
14972
14973 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
14974 (sentence-end-without-space): Delete duplicated chars.
14975 (sentence-end-base): Likewise.
14976
14977 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
14978 (html-mode): Delete duplicated chars from sentence-end-base.
14979
14980 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
14981 (texinfo-mode): Delete duplicated chars from sentence-end-base.
14982
14983 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
14984
14985 * files.el (hack-one-local-variable): If the mode function is for
14986 a minor mode, pass it an argument (Bug#4148).
14987
14988 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
14989
14990 * net/tramp.el (tramp-register-completion-file-name-handler):
14991 Check also for (member 'partial-completion completion-styles).
14992
14993 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
14994
14995 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
14996 abbrev (Bug#3943).
14997
14998 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
14999
15000 * progmodes/cperl-mode.el: Merge upstream 6.2.
15001 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
15002 (cperl-forward-re): Check cperl-brace-recursing.
15003 (cperl-highlight-charclass): New function.
15004 (cperl-find-pods-heres): Use it.
15005 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
15006 (cperl-beautify-regexp-piece): Fix column calculation.
15007 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
15008 (cperl-beautify-level): Don't process entire regexp.
15009 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
15010 calling man.
15011 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
15012 (cperl-init-faces): Build a list in the normal way.
15013
15014 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
15015
15016 * calendar/parse-time.el (parse-time-string-chars): Save match
15017 data.
15018
15019 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
15020
15021 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
15022 (sql-product): Use it.
15023 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
15024 (sql-set-product): Add completion.
15025 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
15026 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
15027 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
15028 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
15029 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
15030 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
15031 (sql-highlight-db2-keywords): Remove.
15032 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
15033 (sql-highlight-product): Use derived-mode-p.
15034 (sql-set-sqli-buffer): Use with-current-buffer.
15035 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
15036 Simplify.
15037
15038 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
15039
15040 * term.el: Fix commenting convention, turn comments into docstrings.
15041
15042 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
15043
15044 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
15045
15046 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
15047
15048 * calendar/parse-time.el (parse-time-string-chars): Compute using
15049 character classes, to handle non-ascii characters (Bug#3190).
15050
15051 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
15052
15053 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
15054 another heredoc if the user adds another < (Bug#3226).
15055
15056 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
15057 Don't initialize based on window-system (Bug#4124).
15058
15059 * facemenu.el (facemenu-read-color): Use a completion function
15060 that accepts any defined color, such as RGB triplets (Bug#3677).
15061
15062 * files.el (get-free-disk-space): Change fallback default
15063 directory to /. Expand DIR argument before switching to fallback.
15064 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
15065
15066 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
15067
15068 * files.el (load-library): Doc fix.
15069
15070 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
15071
15072 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
15073 (viper-if-string): Redefine C-s in the minibuffer to insert the last
15074 incremental search string.
15075
15076 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
15077 XEmacs.
15078
15079 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
15080 (ediff-merge-region-is-non-clash)
15081 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
15082 Also check if the job is really a merge job.
15083
15084 * ediff.el (ediff-current-file): New function.
15085
15086 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
15087
15088 * progmodes/js.el: Edit docstrings throughout to follow Emacs
15089 conventions.
15090 (js-insert-and-indent): Delete function.
15091 (js-mode-map): Don't bind keys to js-insert-and-indent.
15092 (js-beginning-of-defun): Rename from js--beginning-of-defun.
15093 (js-end-of-defun): Rename from js--end-of-defun.
15094 (js-auto-indent-flag): Delete variable.
15095
15096 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
15097
15098 * progmodes/js.el: Remove proclaim statement.
15099 Defvar which-func-imenu-joiner-function to silence compiler.
15100
15101 * files.el (auto-mode-alist): Use js-mode for .js files.
15102
15103 * progmodes/js2-mode.el: Remove file.
15104
15105 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
15106
15107 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
15108
15109 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
15110
15111 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
15112 Karl Landstrom <karl.landstrom@brgeight.se>
15113
15114 * progmodes/js.el: New file.
15115
15116 2009-08-14 Mark A. Hershberger <mah@everybody.org>
15117
15118 * timezone.el (timezone-parse-date): Add ability to understand ISO
15119 basic format (minimal separators) dates in addition to the
15120 already-supported extended format dates.
15121
15122 2009-08-14 Eli Zaretskii <eliz@gnu.org>
15123
15124 * international/ucs-normalize.el: Add a `coding' file variable.
15125
15126 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
15127
15128 2009-08-14 Sam Steingold <sds@gnu.org>
15129
15130 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
15131
15132 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
15133
15134 * faces.el (help-argument-name): Define it here instead of
15135 help-fns.el, because in daemon mode help-fns.el may be loaded when
15136 faces are still uninitialized (Bug#1078).
15137
15138 * help-fns.el (help-argument-name): Move defface to faces.el.
15139
15140 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
15141
15142 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
15143 create buffer with a pty but no process so that GDB can make the
15144 inferior the controlling process.
15145
15146 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
15147
15148 * international/ucs-normalize.el: New file.
15149
15150 2009-08-13 Richard Stallman <rms@gnu.org>
15151
15152 * mail/rmail.el (rmail-get-attr-names):
15153 Accept an attribute header that is too short.
15154
15155 * mail/rmail.el (rmail-forget-messages):
15156 Ignore nil elt in rmail-message-vector. Use dotimes.
15157
15158 * progmodes/compile.el (compilation-goto-locus):
15159 Use next-error-move-function.
15160
15161 * simple.el (next-error-move-function): New variable.
15162
15163 2009-08-12 Juri Linkov <juri@jurta.org>
15164
15165 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
15166 always non-nil. (Bug#4052)
15167
15168 * replace.el (read-regexp): Return empty string when
15169 `default-value' is nil.
15170 (keep-lines-read-args): Don't use empty string as the
15171 default value for `read-regexp'. (Bug#2495)
15172
15173 2009-08-12 Juri Linkov <juri@jurta.org>
15174
15175 * international/mule-cmds.el (ucs-insert): Change arguments
15176 from `arg' to `character', `count', `inherit' to be the same
15177 as in `insert-char'. Doc fix. (Bug#4039)
15178
15179 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
15180
15181 2009-08-12 Juri Linkov <juri@jurta.org>
15182
15183 * files-x.el: New file.
15184
15185 * files.el: Move code that deals with adding/deleting
15186 file/directory-local variables to files-x.el.
15187
15188 * Makefile.in (ELCFILES): Add files-x.elc.
15189
15190 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
15191
15192 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
15193 to use `goto-line'.
15194 (gdb-place-breakpoints, gdb-get-location): Rewritten without
15195 `goto-line'.
15196 (gdb-invalidate-disassembly): Do not refresh upon receiving
15197 'update signal. Instead, update all disassembly buffers only after
15198 threads list.
15199 (gdb): Send -target-detach when buffer is killed (Bug#3794).
15200 (gdb-starting): Moved -data-list-register-names...
15201 (gdb-stopped): ...here so it's sent when first thread stops.
15202 (gdb-registers-handler-custom): Do nothing if register names are
15203 unknown yet.
15204
15205 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
15206 from `gdb-mi.el' to avoid extra tangling.
15207
15208 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
15209 change which breaks `gud-def' definitions used in `gdb'.
15210 (gdb-update-gud-running): No extra fuss for updating frame number.
15211
15212 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
15213
15214 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
15215 (describe-language-environment-map, setup-language-environment-map)
15216 (set-coding-system-map): Move initialization into declaration.
15217 (set-language-info-alist): Last arg to define-key-after can be skipped.
15218
15219 * international/quail.el (quail-completion-1): Simplify.
15220 (quail-define-rules): Use slightly more compact code.
15221 (quail-insert-decode-map): Propertize keys, compact columns.
15222
15223 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15224 Add goto-line.
15225
15226 2009-08-10 Miles Bader <miles@gnu.org>
15227
15228 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
15229 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
15230 (js2-instance-member, js2-private-member, js2-private-function-call)
15231 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
15232 (js2-magic-paren, js2-external-variable):
15233 Remove "-face" suffix from face names.
15234 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
15235 (js2-highlight-undeclared-vars, js2-peek-token)
15236 (js2-parse-function-params, js2-mode-show-errors)
15237 (js2-mode-show-warnings, js2-make-magic-delimiter)
15238 (js2-mode-highlight-magic-parens): Update to use new face names.
15239
15240 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
15241
15242 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
15243 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
15244
15245 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
15246
15247 * subr.el: Provide hashtable-print-readable.
15248
15249 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
15250 hs-c-like-adjust-block-beginning.
15251 (hs-hide-block-at-point): Stop hiding at the beginning of
15252 hs-block-end-regexp (Bug#700).
15253
15254 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
15255
15256 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
15257 a macro.
15258 (gdb-registers-handler-custom): Do not fail when register names
15259 are unavailable.
15260
15261 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
15262
15263 * progmodes/gdb-mi.el (gdb-control-all-threads)
15264 (gdb-control-current-thread): Interactive setters for
15265 `gdb-gud-control-all-threads' to use in menu.
15266 (gdb-show-run-p): Show «Go» when process is not active.
15267 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
15268 gud/thread.xpm and gud/all.xpm.
15269
15270 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
15271
15272 * net/net-utils.el (net-utils-font-lock-keywords): New var.
15273 (nslookup-font-lock-keywords): Make it a variable.
15274 (net-utils-mode): New mode for viewing diagnostic network output.
15275 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
15276 (net-utils-run-simple): New function.
15277 (ifconfig, iwconfig, netstat, arp, route): Use it.
15278
15279 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
15280
15281 * progmodes/gdb-mi.el (gdb-read-memory-custom)
15282 (gdb-memory-set-address, def-gdb-set-positive-number)
15283 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
15284 after changing settings.
15285 (gdb-invalidate-disassembly): Update when first shown.
15286 (gdb-edit-locals-value): Fixed.
15287 (gdb-registers-handler-custom): Print registers in right order and
15288 allow changing register values (only for current thread yet).
15289 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
15290 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
15291 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
15292 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
15293 info in mode name.
15294 (gdb-registers-mode-map): TAB to switch to locals.
15295
15296 2009-08-08 Eli Zaretskii <eliz@gnu.org>
15297
15298 * mail/rmail.el (rmail-add-mbox-headers)
15299 (rmail-set-message-counters-counter): Search for
15300 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
15301
15302 2009-08-08 Glenn Morris <rgm@gnu.org>
15303
15304 * Makefile.in (ELCFILES): Update.
15305
15306 2009-08-07 Eli Zaretskii <eliz@gnu.org>
15307
15308 * mail/sendmail.el (mail-yank-original): Set
15309 buffer-file-coding-system from the one used by the message whose
15310 text is yanked.
15311
15312 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
15313 to "windows" when "pgnuplot" is used.
15314 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
15315 call accept-process-output if "pgnuplot" is used.
15316 (calc-graph-init): Don't send -display and -geometry to
15317 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
15318 running "pgnuplot -V" with shell-command-to-string.
15319
15320 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
15321 the default.
15322
15323 2009-08-07 Eli Zaretskii <eliz@gnu.org>
15324
15325 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
15326 org/org-latex.elc.
15327
15328 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
15329
15330 * vc-dispatcher.el (vc-resynch-window): Update comment.
15331
15332 * term.el (term-handle-ansi-escape): Add comments with the
15333 terminfo capabilities implemented.
15334
15335 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
15336
15337 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
15338 (gdb-var-create-handler): Rewritten using JSON parser.
15339 (gdb-propertize-header): Moved earlier.
15340 (gdb-set-header): Removed to avoid duplication.
15341 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
15342 Refresh disassembly buffers only after threads list have been
15343 update.
15344 (gdb-threads-header, gdb-registers-header): Per-buffer header line
15345 variables.
15346
15347 2009-08-04 Juri Linkov <juri@jurta.org>
15348
15349 * files.el: Commands to add/delete file/directory-local variables.
15350 (read-file-local-variable, read-file-local-variable-value)
15351 (read-file-local-variable-mode, modify-file-local-variable)
15352 (modify-file-local-variable-prop-line)
15353 (modify-dir-local-variable): New functions.
15354 (add-file-local-variable, delete-file-local-variable)
15355 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
15356 (add-dir-local-variable, delete-dir-local-variable)
15357 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
15358 (copy-dir-locals-to-file-locals-prop-line): New commands.
15359
15360 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
15361
15362 * abbrev.el (insert-abbrev-table-description): Prettify output.
15363 Suggested by Karl Chen.
15364
15365 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
15366
15367 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
15368 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
15369 (gdb-overlay-arrow-position, gdb-thread-position)
15370 (gdb-disassembly-position): Declare variables.
15371 (gdb-wait-for-pending): Function now.
15372 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
15373 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
15374 compilation goes smoothly.
15375 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
15376 (gdb-non-stop-setting): New customization setting which replaces
15377 `gdb-non-stop' so changing it doesn't break active GDB session.
15378 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
15379 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
15380 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
15381 (gdb-show-threads-by-default): New customization options.
15382 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
15383 routines.
15384 (gdb-get-buffer-create): Send buffers update signal when they are
15385 created.
15386 (gdb-invalidate-locals, gdb-invalidate-registers)
15387 (gdb-invalidate-breakpoints)
15388 (gdb-invalidate-threads, gdb-invalidate-disassembly)
15389 (gdb-invalidate-memory): Accept update signal.
15390 (gdb-current-context-command): Use --frame option.
15391 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
15392 Implement `gdb-frame-number' selection logic.
15393 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
15394 whether to show GUD toolbar buttons.
15395 (gdb-thread-exited): Unselect current thread when it exits.
15396 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
15397 (gdb-mark-line): Routine which sets overlay arrow or inverses
15398 video on fringeless displays.
15399 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
15400 to build aligned columns of data in GDB buffers and set text
15401 properties line-by-line.
15402 (gdb-invalidate-breakpoints)
15403 (gdb-breakpoints-list-handler-custom)
15404 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
15405 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
15406 (gdb-registers-handler-custom): Align data columns.
15407 (gdb-locals-handler-custom): Now prints data like in variable
15408 declarations.
15409 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
15410 Removed confusing buttons.
15411 (gdb-invalidate-threads): Append --frame.
15412 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
15413 between breakpoints/threads buffers.
15414 (gdb-set-window-buffer): Now can ignore dedicated windows.
15415 (gdb-propertize-header): Use `gdb-set-window-buffer'.
15416 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
15417 (def-gdb-thread-buffer-gud-command): Replaces
15418 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
15419 for fine thread control.
15420 (gdb-preempt-existing-or-display-buffer): New function used to
15421 display bound buffers without breaking window layout.
15422 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
15423 (gdb-select-frame): New version of `gdb-frames-select' which now
15424 sets `gdb-frame-number' so commands may use --frame option instead
15425 of inner debugger state.
15426 (gdb-frame-handler): Do not set `gdb-frame-number'.
15427 (gdb-threads-mode-map): Select threads with mouse.
15428
15429 * progmodes/gud.el (gdb-gud-context-call): Declare function to
15430 avoid compilation warning.
15431 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
15432 `gdb-show-stop-p`.
15433
15434 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
15435 Argument `key' renamed to `buffer-type'.
15436 (gdb-current-context-buffer-name): Do not add thread info to
15437 buffer name when no thread is selected.
15438 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
15439 command (bug 3794).
15440 (gdb-thread-selected): Handle `=thread-selected' notification.
15441 (gdb-wait-for-pending): New macro to deal with congestion problems.
15442 (gdb-breakpoints-list-handler-custom): Don't fail on pending
15443 breakpoints.
15444 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
15445 This fixes problem similar to one described in bug 3947.
15446 (gud-menu-map): More menu items.
15447 (gdb-init-1): Reset `gdb-thread-number' to nil.
15448
15449 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
15450 non-stop settings.
15451
15452 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
15453 (gdb-current-context-command): Do not append --thread if
15454 `gdb-thread-number' is nil.
15455 (gdb-running-threads-count, gdb-stopped-threads-count): New
15456 variables.
15457 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
15458 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
15459 customization options.
15460 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
15461 GUD commands.
15462 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
15463 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
15464 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
15465 set `gdb-thread-number' and update `gud-running' properly.
15466 (gdb-running): Update threads list when new threads appear.
15467 (gdb-stopped): Support non-stop operation and new thread switching
15468 logic.
15469 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
15470 (gdb-json-partial-output): New set of JSON routines.
15471 (def-gdb-auto-update-trigger): New `signal-list' optional
15472 argument.
15473 (gdb-thread-list-handler-custom): Update `gud-running',
15474 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
15475 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
15476 (gdb-continue-thread, gdb-step-thread): New commands for fine
15477 thread execution control.
15478 (gud-menu-map): New menu items to switch non-stop options.
15479 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
15480 (gdb-send): Mimic RET properly (bug 3794).
15481
15482 * progmodes/gdb-mi.el (gdb-rules-name-maker)
15483 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
15484 gdb-buffer-rules.
15485 (def-gdb-auto-update-handler): New nopreserve optional argument.
15486 (gdb-stack-list-frames-custom): Print stack from top to bottom.
15487
15488 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
15489 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
15490 (gdb-parent-mode): New mode to derive other GDB modes from.
15491 (gdb-display-disassembly-for-thread)
15492 (gdb-frame-disassembly-for-thread): New commands for threads
15493 buffer.
15494
15495 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
15496 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
15497 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
15498 (gdb-update): We now store all GDB buffers in a list so that they
15499 can be updated by traversing a list instead of calling invalidate
15500 triggers explicitly.
15501 (def-gdb-trigger-and-handler): New macro to define trigger-handler
15502 pair for GDB buffer.
15503 (gdb-stack-buffer-name): Add thread information.
15504 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
15505 handle pending triggers.
15506 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
15507 (def-gdb-thread-buffer-simple-command)
15508 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
15509 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
15510 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
15511 New commands which show buffers bound to thread.
15512 (gdb-stack-list-locals-regexp): Removed unused regexp.
15513
15514 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
15515 (gdb-locals-buffer-name, gdb-registers-buffer-name)
15516 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
15517 to (gud-comint-buffer) in *-buffer-name functions
15518 because (gdb-get-target-string) already does that.
15519 (gdb-locals-handler-custom, gdb-registers-handler-custom)
15520 (gdb-changed-registers-handler): Rewritten without regexps.
15521
15522 * progmodes/gdb-mi.el: Basic thread selection support.
15523 (gdb-thread-number): New variable.
15524 (gdb-current-context-command): New macro which adds --thread
15525 option to command.
15526 (gdb-threads-mode-map): Select thread with SPC.
15527 (gdb-thread-list-handler-custom): Mark current thread with overlay
15528 arrow. Synchronize GDB thread and Emacs thread.
15529 (gdb-select-thread): New command which selects current thread.
15530 (gdb-invalidate-frames, gdb-invalidate-locals)
15531 (gdb-invalidate-registers): Use --thread option.
15532
15533 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
15534
15535 * net/tramp.el (top): Make check for tramp-gvfs loading more
15536 robust. (Bug#3977)
15537 (tramp-handle-insert-file-contents): `unwind-protect' must be
15538 inside `with-parsed-tramp-file-name'.
15539
15540 * net/tramp-gvfs.el (top): Remove superfluous message when loading
15541 fails.
15542
15543 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
15544
15545 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
15546 directory if CLASSPATH is not set.
15547
15548 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
15549
15550 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
15551 New defconst.
15552 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
15553
15554 2009-08-02 Kevin Ryde <user42@zip.com.au>
15555
15556 * net/newst-backend.el (newsticker--raw-url-list-defaults):
15557 Update freshmeat link. Delete newsforge.com as it seems gone.
15558
15559 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
15560
15561 * select.el (x-set-selection): Doc fix (Bug#4021).
15562
15563 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
15564
15565 * help-fns.el (describe-variable): Treat list return values from
15566 dir-locals-find-file properly (Bug#4005).
15567
15568 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
15569
15570 * net/tramp.el (tramp-debug-message): Print also microseconds.
15571
15572 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
15573
15574 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
15575 or END is non-nil.
15576 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
15577 (tramp-get-debug-buffer): Change `outline-regexp' according to new
15578 format.
15579
15580 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
15581 (tramp-get-file-property): Use it.
15582
15583 * autorevert.el (auto-revert-handler): Allow
15584 `auto-revert-tail-mode' for remote files.
15585
15586 2009-08-02 Jason Rumney <jasonr@gnu.org>
15587
15588 * minibuffer.el (read-file-name): Treat confirm options to
15589 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
15590
15591 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
15592
15593 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
15594 (font-lock-variable-name-face, font-lock-constant-face): Darken
15595 the colors for light backgrounds.
15596
15597 2009-08-01 Eli Zaretskii <eliz@gnu.org>
15598
15599 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
15600 month names. (Bug#3987)
15601
15602 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
15603
15604 * simple.el (line-move-finish): Pass whole number to
15605 line-move-to-column.
15606 (line-move-visual): Perform hscroll to the recorded position.
15607
15608 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
15609
15610 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
15611
15612 2009-07-29 Alan Mackenzie <acm@muc.de>
15613
15614 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
15615
15616 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
15617
15618 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
15619 (gdb-place-breakpoints): Use full path when setting breakpoints.
15620
15621 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
15622
15623 * calc/calc.el (calc-mode-map): Add keybinding for
15624 `calc-transpose-lines'.
15625
15626 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
15627
15628 * calc/calc-misc.el (calc-transpose-lines): New function.
15629
15630 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
15631
15632 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
15633 Simplify check for out-of-band methods.
15634 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
15635 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
15636
15637 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
15638
15639 * vc-git.el (vc-git-checkin): Fix typo.
15640
15641 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
15642
15643 * progmodes/js2-mode.el: New file.
15644
15645 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
15646
15647 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
15648 (gud-menu-map): Adjust tooltip accordingly.
15649
15650 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
15651
15652 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
15653 (vc-bzr-log-view-mode): Adjust log-view-file-re.
15654
15655 * add-log.el (change-log-mode-map): Add a menu.
15656
15657 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
15658
15659 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
15660 function returns nil.
15661 (dbus-handle-event): Handle special return value :ignore.
15662 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
15663
15664 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
15665
15666 * view.el (view-mode-enable): Don't define Helper-return-blurb if
15667 it's not needed.
15668
15669 2009-07-25 Eli Zaretskii <eliz@gnu.org>
15670
15671 Fix Bug#3888:
15672
15673 * w32-vars.el (x-select-enable-clipboard): Doc fix.
15674
15675 * term/pc-win.el (x-display-name, x-colors)
15676 (x-select-enable-clipboard, x-select-text): Doc fix.
15677
15678 * term/common-win.el (x-display-name, x-colors): Doc fix.
15679
15680 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
15681 (xw-defined-colors): Doc fix.
15682
15683 * w32-fns.el (x-select-text, x-setup-function-keys)
15684 (x-get-selection, x-set-selection): Doc fix.
15685
15686 * term/x-win.el (x-select-text, x-setup-function-keys)
15687 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
15688
15689 * select.el (x-set-selection): Doc fix.
15690
15691 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
15692
15693 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
15694 instead of "IsNSSSupportAvailable". Avahi ought to work also when
15695 "IsNSSSupportAvailable" method is not available. Reported by
15696 Steve Youngs <steve@sxemacs.org>.
15697
15698 2009-07-24 Kenichi Handa <handa@m17n.org>
15699
15700 * international/characters.el: Fix setting of category ?C, ?|, ?K,
15701 and ?H. Fix setting of case for Latin Extended and Greek Extended.
15702 (build-unicode-category-table): Fix range checks.
15703
15704 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
15705
15706 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
15707 the buffer we try to sync is current when calling
15708 vc-resynch-buffer.
15709
15710 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
15711 not show up to date files.
15712
15713 2009-07-24 Glenn Morris <rgm@gnu.org>
15714
15715 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
15716 Add autoload cookies. If necessary, initialize.
15717 (elint-log): Handle non-file buffers.
15718 (elint-initialize): Add optional argument to reinitialize.
15719 (elint-find-builtin-variables): Save excursion.
15720
15721 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
15722
15723 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
15724 for Lint.
15725
15726 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
15727
15728 * vc.el (vc-print-log-internal): New function, split out from ...
15729 (vc-print-log): ... here.
15730 (vc-dir-move-to-goal-column): Declare.
15731
15732 * vc-git.el (vc-git-add-signoff): New variable.
15733 (vc-git-checkin): Use it.
15734 (vc-git-toggle-signoff): New function.
15735 (vc-git-extra-menu-map): Bind it to menu.
15736 (vc-git--run-command-string): Accept a nil FILE argument.
15737 (vc-git-stash-list): New function.
15738 (vc-git-dir-extra-headers): Use it.
15739
15740 2009-07-23 Glenn Morris <rgm@gnu.org>
15741
15742 * help-fns.el (describe-variable): Describe ignored and risky local
15743 variables in a similar way to that in which we describe safe ones.
15744
15745 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
15746 (byte-compile-output-file-form, byte-compile-output-docform)
15747 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
15748 Give some more local variables with common names a "bytecomp-" prefix,
15749 so as not to shadow things during compilation.
15750 * emacs-lisp/cl-macs.el (load-time-value)
15751 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
15752 `outbuffer' to `bytecomp-outbuffer'.
15753
15754 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
15755 since the next two variables cover them automatically now.
15756 (elint-builtin-variables, elint-autoloaded-variables): New.
15757 (elint-unknown-builtin-args): Remove all members, since they can be
15758 parsed automatically now.
15759 (elint-extra-errors): New.
15760 (elint-env-add-env, elint-env-add-macro): Use cadr.
15761 (elint-current-buffer): Use or. Change final message.
15762 (elint-get-top-forms): Use line-end-position.
15763 (elint-init-env): Use cadr. Handle autoload, declare-function,
15764 and defalias.
15765 (elint-add-required-env): Doc fix. Use or. Standardize error.
15766 (regexp-assoc): Remove unused function.
15767 (elint-top-form): Set elint-current-pos, to record the start of the
15768 top-level form, for compilation-mode.
15769 (elint-form): Trap errors in macro expansion. Use dolist.
15770 (elint-unbound-variable): Use elint-builtin-variables and
15771 elint-autoloaded-variables.
15772 (elint-get-args): Use cadr, or.
15773 (elint-check-cond-form): Use dolist, cadr.
15774 (elint-check-condition-case-form): Doc fix. Use cadr.
15775 Use elint-extra-errors.
15776 (elint-log): New function.
15777 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
15778 Distinguish errors and warnings.
15779 (elint-log-message): Use with-current-buffer. Inhibit read-only.
15780 Use a bytecomp-style format.
15781 (elint-clear-log): Preserve default-directory. Inhibit read-only.
15782 (elint-get-log-buffer): Use compilation mode. Disable undo.
15783 Don't truncate lines.
15784 (elint-initialize): Set builtin and autoloaded variable lists.
15785 Only process elint-unknown-builtin-args if non-nil.
15786 (elint-find-builtin-variables, elint-find-autoloaded-variables):
15787 New functions.
15788 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
15789
15790 2009-07-22 Kevin Ryde <user42@zip.com.au>
15791
15792 * net/newst-backend.el (newsticker--parse-atom-1.0)
15793 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
15794 (newsticker--parse-rss-1.0):
15795 * progmodes/idlwave.el (idlwave-mode):
15796 * progmodes/idlw-shell.el (idlwave-shell-mode):
15797 * progmodes/vera-mode.el (vera-mode):
15798 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
15799 * progmodes/vhdl-mode.el (vhdl-mode):
15800 * textmodes/table.el (table-generate-source)
15801 (table--warn-incompatibility):
15802 Hyperlink urls in docstrings with URL `...'.
15803
15804 2009-07-22 Glenn Morris <rgm@gnu.org>
15805
15806 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
15807 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
15808 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
15809 Remove leading * from defcustom docs.
15810
15811 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
15812
15813 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
15814 defcustom doc.
15815 (list-load-path-shadows): Optionally, just return shadows as a string.
15816
15817 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
15818
15819 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
15820
15821 * mail/rmailedit.el (rmail-edit-mode): Use
15822 auto-save-include-big-deletions.
15823
15824 * mail/rmail.el (rmail-variables): Use
15825 auto-save-include-big-deletions.
15826
15827 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
15828 changes.
15829
15830 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
15831
15832 * calc/calc.el (calc-undo-length): New variable.
15833 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
15834
15835 2009-07-21 Richard Stallman <rms@gnu.org>
15836
15837 * files.el (auto-save-mode): Handle buffer-save-size = -2
15838 for toggling mode.
15839
15840 2009-07-21 Glenn Morris <rgm@gnu.org>
15841
15842 * textmodes/ispell.el (ispell-looking-back): Update declaration.
15843
15844 * calendar/todo-mode.el (calendar-current-date): Update declaration.
15845
15846 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
15847 silence compiler. Instead...
15848 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
15849 (ps-print-ensure-fontified): Update for above function name changes.
15850
15851 * printing.el (pr-mh-get-msg-num, pr-mh-show)
15852 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
15853 silence compiler. Instead...
15854 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
15855 (mh-show-buffer): Only define for compiler.
15856 (pr-mh-current-message): Update for above function name changes.
15857
15858 * files.el (abort-if-file-too-large): Explicitly pass `filename'
15859 as an argument.
15860 (find-file-noselect, insert-file-1): Update for above change.
15861
15862 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
15863
15864 * mail/mailclient.el (mailclient-send-it): Fix message.
15865
15866 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
15867 (edebug-eval): Check cl-debug-env is bound.
15868 (print-level, print-circle): Don't redefine built-in variables.
15869
15870 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
15871 (custom-print-vectors): Remove old comments from doc.
15872
15873 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
15874 (emerge-version): Make the variable an obsolete alias for the
15875 emacs-version variable. Make the function obsolete.
15876 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
15877 Emerge options, rather than merging in into the main Options menu.
15878 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
15879 and auto advance modes. Disable edit/fast items when not relevant.
15880
15881 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
15882
15883 * term/vt420.el (terminal-init-vt420): Fix typo.
15884
15885 2009-07-20 Sam Steingold <sds@gnu.org>
15886
15887 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
15888 variable (removed from compile.el on 2004-03-11).
15889
15890 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
15891
15892 * files.el (hack-local-variables-filter): Fix last change.
15893
15894 2009-07-19 Juri Linkov <juri@jurta.org>
15895
15896 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
15897 (dir-local-variables-alist): New buffer-local variable.
15898 (hack-local-variables-filter): If variable is not dir-local,
15899 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
15900 because file-local overrides dir-local.
15901 (c-postprocess-file-styles) <declare-function>:
15902 Remove obsolete declaration.
15903 (hack-dir-local-variables): Add dir-local variable/value pair to
15904 `dir-local-variables-alist' and remove duplicates. Doc fix.
15905
15906 * help-fns.el (describe-variable): Add information about
15907 file-local and dir-local variables.
15908
15909 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
15910
15911 * files.el (hack-local-variables-filter): Rewrite.
15912
15913 2009-07-19 Glenn Morris <rgm@gnu.org>
15914
15915 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
15916 Silence compiler by only defining on XEmacs.
15917
15918 * international/mule.el (auto-coding-regexp-alist): Only match
15919 BABYL... at the start of buffer, not of lines. (Bug#3790)
15920
15921 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
15922 non-calendar buffers (Bug#3862). Restore "not on a date" message.
15923 (cal-menu-context-mouse-menu): Doc fix.
15924
15925 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
15926
15927 * simple.el (mail-user-agent): Doc fix. Set :version tag.
15928
15929 2009-07-18 Juri Linkov <juri@jurta.org>
15930
15931 * info.el: Virtual Info keyword finder.
15932 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
15933 (Info-finder-file): New variable.
15934 (Info-finder-find-file): New function.
15935 (finder-known-keywords, finder-package-info)
15936 (find-library-name, lm-commentary): Use defvar and
15937 declare-function to silence compiler warnings.
15938 (Info-finder-find-node): New function.
15939 (info-finder): New command.
15940
15941 * subr.el (process-kill-buffer-query-function): New function.
15942 (add-hook)<kill-buffer-query-functions>: Add hook
15943 `process-kill-buffer-query-function'.
15944
15945 2009-07-18 Alan Mackenzie <acm@muc.de>
15946
15947 * progmodes/cc-mode.el (c-before-hack-hook)
15948 (c-postprocess-file-styles): Give invocation of `c-set-style'
15949 DONT-OVERRIDE parameter of t. Already set style variables will
15950 thus not be overridden by style settings given by `c-file-syle'.
15951
15952 * files.el (hack-local-variables-filter): Remove entries with
15953 duplicate keys from `file-local-variables-alist'.
15954
15955 2009-07-18 Eli Zaretskii <eliz@gnu.org>
15956
15957 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
15958 x-set-selection if display-selections-p returns nil for the
15959 current frame.
15960
15961 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
15962
15963 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
15964
15965 2009-07-18 Eli Zaretskii <eliz@gnu.org>
15966
15967 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
15968 Accept nil in addition to a regexp.
15969 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
15970 Accept nil in addition to a regexp.
15971 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
15972 buffers that have an associated file. Handle nil values of
15973 desktop-buffers-not-to-save and desktop-files-not-to-save.
15974 (Bug#3833)
15975
15976 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15977 (x-disown-selection-internal): New functions.
15978
15979 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
15980
15981 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
15982 warning.
15983 (gdb-breakpoints-header): Move forward to avoid compiler warning.
15984 (gdb-make-header-line-mouse-map): Remove duplicate definition.
15985
15986 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
15987
15988 * simple.el (set-mark): Revert last change.
15989
15990 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
15991
15992 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
15993 rendering of pngs is not possible instead of messaging a long
15994 description.
15995
15996 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
15997
15998 * w32-fns.el (x-selection-owner-p): New function.
15999
16000 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
16001 (mouse-yank-at-click, mouse-yank-primary): If
16002 select-active-regions is non-nil, deactivate the mark before
16003 insertion.
16004
16005 * simple.el (deactivate-mark, set-mark): Only save selection if we
16006 own it.
16007
16008 2009-07-17 Kenichi Handa <handa@m17n.org>
16009
16010 * case-table.el (describe-buffer-case-table): Fix for the case
16011 that KEY is a cons.
16012
16013 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16014
16015 * vc-rcs.el (vc-rcs-find-file-hook):
16016 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
16017
16018 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
16019
16020 * net/tramp.el (tramp-wait-for-output): Handle the case when
16021 commands do not return a newline but a null byte before the shell
16022 prompt. (Bug#3858)
16023
16024 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16025
16026 * term/ns-win.el (ns-set-alpha): Don't declare.
16027 (ns-set-background-alpha): Remove function.
16028
16029 2009-07-16 Kevin Ryde <user42@zip.com.au>
16030
16031 * emacs-lisp/copyright.el (copyright-update): Save match-data across
16032 y-or-n-p, for safety.
16033
16034 2009-07-16 Richard Stallman <rms@gnu.org>
16035
16036 * files.el (auto-save-mode): If buffer-saved-size is -2,
16037 don't clobber it.
16038
16039 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
16040 (rmail-retry-ignored-headers): Add more uninteresting fields.
16041
16042 2009-07-15 Jari Aalto <jari.aalto@cante.net>
16043
16044 * net/rcirc.el (rcirc): Use history variables.
16045 (rcirc-server-name-history, rcirc-nick-name-history)
16046 (rcirc-server-port-history): New variables.
16047
16048 2009-07-15 Kenichi Handa <handa@m17n.org>
16049
16050 * international/mule-cmds.el (set-language-environment-charset):
16051 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
16052 ignore them.
16053
16054 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
16055 Delete unibyte-display.
16056
16057 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
16058
16059 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
16060
16061 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
16062
16063 * simple.el (deactivate-mark): Optional argument FORCE.
16064 (set-mark): Use deactivate-mark.
16065
16066 * info.el (Info-search): No need to check transient-mark-mode
16067 before calling deactivate-mark.
16068
16069 * select.el (x-set-selection): Doc fix.
16070 (x-valid-simple-selection-p): Allow buffer values.
16071 (xselect--selection-bounds): Handle buffer values. Suggested by
16072 David De La Harpe Golden.
16073
16074 * mouse.el (mouse-set-region, mouse-drag-track): Call
16075 copy-region-as-kill before setting the mark, to let
16076 select-active-regions work.
16077
16078 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
16079
16080 * simple.el (deactivate-mark): If select-active-regions is
16081 non-nil, copy the selection data into a string.
16082 (activate-mark): If select-active-regions is non-nil, set the
16083 selection to the current buffer.
16084 (set-mark): Update selection if select-active-regions is non-nil.
16085
16086 * select.el (x-valid-simple-selection-p): Allow buffer values.
16087
16088 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
16089
16090 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
16091 and more featureful message-mode.
16092
16093 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
16094
16095 * select.el (x-set-selection): Doc fix.
16096 (x-valid-simple-selection-p): Disallow selection data consisting
16097 of a list or cons of integers, since that is not used.
16098 (xselect--selection-bounds, xselect--int-to-cons): New functions.
16099 (xselect-convert-to-string, xselect-convert-to-length)
16100 (xselect-convert-to-filename, xselect-convert-to-charpos)
16101 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
16102
16103 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
16104
16105 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
16106 output in -break-info command (Emacs bug #3794).
16107
16108 2009-07-14 Glenn Morris <rgm@gnu.org>
16109
16110 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
16111 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
16112 (edebug-print-length, edebug-print-level, edebug-print-circle)
16113 (edebug-sit-for-seconds, edebug-view-outside)
16114 (edebug-bounce-point, edebug-set-global-break-condition)
16115 (edebug-Go-nonstop-mode, edebug-trace-mode)
16116 (edebug-Trace-fast-mode, edebug-continue-mode)
16117 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
16118 (edebug-visit-eval-list): Doc fixes.
16119
16120 * subr.el (def-edebug-spec): Doc fix.
16121
16122 2009-07-14 Kenichi Handa <handa@m17n.org>
16123
16124 * international/characters.el: Fix setting of category ?C.
16125
16126 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
16127
16128 * term/ns-win.el (x-select-font): defalias x-select-font to
16129 ns-popup-font-panel instead of generate-fontset-menu.
16130
16131 2009-07-12 Eli Zaretskii <eliz@gnu.org>
16132
16133 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
16134
16135 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
16136
16137 * arc-mode.el (archive-find-type): Allow for a PK00 string before
16138 the PK\003\004 header (Bug#3770).
16139
16140 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
16141
16142 * pcomplete.el (pcomplete-comint-setup): Check for
16143 shell-dynamic-complete-filename too.
16144
16145 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
16146
16147 * simple.el (temporary-goal-column): Change the value for
16148 line-move-visual to a cons cell.
16149 (line-move-visual): Record or set the window hscroll, if
16150 necessary (Bug#3494).
16151 (line-move-1): Handle cons value of temporary-goal-column.
16152
16153 2009-07-11 Kenichi Handa <handa@m17n.org>
16154
16155 * international/mule-diag.el (describe-character-set): Don't show
16156 width.
16157
16158 2009-07-10 Sam Steingold <sds@gnu.org>
16159
16160 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16161 Omake sometimes indents the errors it prints, so allow all
16162 regexps to start with spaces.
16163
16164 2009-07-10 Eli Zaretskii <eliz@gnu.org>
16165
16166 * cus-edit.el (customize-changed-options-previous-release):
16167 Bump value to 22.1. (Bug#3804)
16168
16169 2009-07-08 Sam Steingold <sds@gnu.org>
16170
16171 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
16172 to be a cons cell (test . ignored-directory) to selectively ignore
16173 some directories depending on the location of the search.
16174
16175 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
16176
16177 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
16178 remote user is root, on the local host.
16179 (tramp-local-host-p): Either the local user or the remote user
16180 must be root. (Bug#3771)
16181
16182 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
16183
16184 * progmodes/gdb-mi.el (gdb): Remove description of
16185 gdb-use-separate-io-buffer.
16186 (menu): Don't allow toggling of or enable
16187 gdb-use-separate-io-buffer from menubar.
16188
16189 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
16190
16191 * mail/unrmail.el (unrmail): Make sure the message ends with two
16192 newlines (Bug#3769).
16193
16194 2009-07-08 Glenn Morris <rgm@gnu.org>
16195
16196 * calendar/calendar.el (calendar-current-date): Rework previous change.
16197
16198 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
16199
16200 * calendar/calendar.el (calendar-current-date):
16201 Add an optional argument giving an offset from today.
16202
16203 2009-07-08 Glenn Morris <rgm@gnu.org>
16204
16205 * tutorial.el (tutorial--describe-nonstandard-key):
16206 Adjust the message for when a key has been unbound.
16207 (help-with-tutorial): Hide the arch-tag.
16208
16209 2009-07-08 Kenichi Handa <handa@m17n.org>
16210
16211 * international/fontset.el (setup-default-fontset): For each
16212 script, append (not set) font-specs.
16213
16214 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
16215 docstring.
16216
16217 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
16218
16219 * progmodes/gdb-mi.el (gdb-init-1): Move sending
16220 -data-list-register-names to ...
16221 (gdb-starting): ... here because GDB 7.0 requires execution to
16222 have started when using this MI command.
16223 (gdb-set-header): New function to distinguish select and
16224 unselected tabs in gdb buffers.
16225 (gdb-propertize-header): New macro that uses gdb-set-header.
16226 (gdb-breakpoints-header, gdb-locals-header): Use it.
16227 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
16228
16229 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
16230
16231 * Makefile.in (ELCFILES): Remove fadr.elc.
16232
16233 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
16234
16235 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
16236 may contain frame information, so `string-match' should be used.
16237 (gdb-update): Disassembly is invalidated through
16238 `gdb-get-selected-frame'.
16239 (gdb-pad-string): New function to pad string with spaces.
16240 (gdb-invalidate-disassembly): Invalidate only if the buffer
16241 exists.
16242 (gdb-disassembly-handler-custom): Column alignment.
16243 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
16244 placing new ones.
16245 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
16246 end of line, too.
16247 (gdb-frame-handler): Match convention to for disassembly buffer
16248 mode name.
16249 (gdb-stack-list-frames-handler): Rewritten without regexps.
16250 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
16251 not highlight breakpoints without line information.
16252 (gdb-input): Add trailing newline to command.
16253
16254 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
16255 buffer properly.
16256 (gdb-breakpoints-list-handler-custom): Replacement for
16257 `gdb-break-list-handler'. Using real parser instead of regexps
16258 now.
16259 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
16260 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
16261 to place breakpoints.
16262 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
16263 functions.
16264 (gdb-disassembly-handler-custom): Show overlay arrow.
16265 (gdb-disassembly-place-breakpoints): Show breakpoints in
16266 disassembly buffer.
16267 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
16268 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
16269 instead of parsing breakpoints buffer. Fixed old menu references
16270 in `gud-menu-map'.
16271
16272 * fadr.el: Remove.
16273
16274 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
16275 (gdb-memory-address): New variable which holds top address of
16276 memory page shown in memory buffer.
16277 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
16278 customization variables.
16279 New functions:
16280 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
16281 display the memory buffer.
16282 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
16283 buffer display parameters.
16284 (def-gdb-memory-format, gdb-memory-format-binary)
16285 (gdb-memory-format-octal, gdb-memory-format-unsigned)
16286 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
16287 Functions for setting memory buffer format.
16288 (gdb-memory-unit-word, gdb-memory-unit-halfword)
16289 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
16290 unit size used in memory buffer.
16291 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
16292 to next/previous page of memory buffer.
16293 Now using (bindat-get-field) instead of fadr functions.
16294
16295 2009-07-07 Sam Steingold <sds@gnu.org>
16296
16297 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
16298 non-top-level files.
16299
16300 2009-07-07 Kenichi Handa <handa@m17n.org>
16301
16302 * international/mule-cmds.el (reset-language-environment): Put
16303 the highset priority to the charset iso-8859-1.
16304
16305 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
16306
16307 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
16308 to the end of the line when locating the block (Bug#700).
16309
16310 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
16311
16312 * net/tramp.el (tramp-handle-write-region): Flush file properties
16313 in case of short track.
16314
16315 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
16316
16317 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
16318 Coded custom representation of verilog error regular expressions
16319 to work with Emacs-22's new format.
16320 (verilog-error-regexp-xemacs-alist): Coded custom representation
16321 of verilog error regular expressions to work with XEmacs format.
16322 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
16323 error recognition into XEmacs.
16324 (verilog-error-regexp-add-emacs): Hook routine to install verilog
16325 error recognition into Emacs-22.
16326
16327 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
16328
16329 * woman.el: Remove stand-alone closing parentheses.
16330 (woman-file-name, woman2-format-paragraphs)
16331 (woman-leave-blank-lines): Code cleanup.
16332 (woman-use-own-frame): Change default to nil.
16333 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
16334 defaults to inherit from default faces.
16335 (woman2-process-escapes): Consume the newline after a stand-alone
16336 filler character (Bug#3651).
16337
16338 2009-07-06 Glenn Morris <rgm@gnu.org>
16339
16340 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
16341 (top-level): Move provide to the end.
16342 (ffap): Remove defunct URL from custom group.
16343
16344 * subr.el (eval-after-load): Doc fix.
16345
16346 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
16347
16348 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
16349 `calc-embedded-word' is called twice.
16350
16351 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16352
16353 * files.el (find-alternate-file-other-window, find-alternate-file):
16354 Obey confirm-nonexistent-file-or-buffer.
16355
16356 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
16357
16358 * dired-aux.el (dired-show-file-type): Handle remote files.
16359
16360 2009-07-05 Jari Aalto <jari.aalto@cante.net>
16361
16362 * desktop.el (desktop-globals-to-save):
16363 Add file-name-history (Bug#2750).
16364
16365 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
16366
16367 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
16368
16369 2009-07-04 Johan Bockgård <bojohan@gnu.org>
16370
16371 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
16372 property on entire argument since this is what eshell-lisp-command
16373 expects.
16374
16375 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
16376
16377 * net/tramp-gvfs.el (tramp-gvfs-methods)
16378 (tramp-gvfs-zeroconf-domain)
16379 (tramp-bluez-discover-devices-timeout): Add version flag.
16380 (tramp-gvfs-handler-mounted-unmounted)
16381 (tramp-gvfs-connection-mounted-p): Polish handling of
16382 incompatibilities between GVFS 0.2 and 1.0.
16383
16384 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
16385
16386 * cus-start.el (all): Add make-pointer-invisible.
16387
16388 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
16389
16390 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
16391 formatted correctly.
16392
16393 2009-07-02 Juri Linkov <juri@jurta.org>
16394
16395 * info.el: Virtual Info files and nodes.
16396 (Info-virtual-files, Info-virtual-nodes): New variables.
16397 (Info-current-node-virtual): New variable.
16398 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
16399 New functions.
16400 (Info-file-supports-index-cookies): Use Info-virtual-file-p
16401 to check for a virtual file instead of checking a fixed list
16402 of node names.
16403 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
16404 instead of ad-hoc processing of "dir" and (apropos history toc).
16405 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
16406 instead of ad-hoc processing of "dir" and (apropos history toc).
16407 Reread a file when moving from a virtual node.
16408 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
16409 (Info-directory-toc-nodes, Info-directory-find-file)
16410 (Info-directory-find-node): New functions.
16411 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
16412 (Info-history): Move part of code to
16413 `Info-history-find-node'.
16414 (Info-history-toc-nodes, Info-history-find-file)
16415 (Info-history-find-node): New functions.
16416 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
16417 (Info-toc): Move part of code to `Info-toc-find-node'.
16418 (Info-toc-find-node): New function.
16419 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
16420 the current Info file name to references because now the node
16421 "*TOC*" belongs to the same Info manual.
16422 (Info-toc-build): Rename from `Info-build-toc'.
16423 (Info-toc-nodes): Rename input argument `file' to `filename'.
16424 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
16425 instead of ad-hoc processing of ("dir" apropos history toc).
16426 (Info-index-nodes): Use Info-virtual-file-p
16427 to check for a virtual file instead of checking a fixed list
16428 of node names.
16429 (Info-index-node): Add check for `Info-current-node-virtual'.
16430 Raise `save-match-data' higher up the tree to contain
16431 `search-forward' too (bug fix).
16432 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
16433 (Info-virtual-index-nodes): New variable.
16434 (Info-virtual-index-find-node, Info-virtual-index): New functions.
16435 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
16436 (Info-apropos-file, Info-apropos-nodes): New variables.
16437 (Info-apropos-toc-nodes, Info-apropos-find-file)
16438 (Info-apropos-find-node, Info-apropos-matches): New functions.
16439 (info-apropos): Move part of code to `Info-apropos-find-node' and
16440 `Info-apropos-matches'.
16441 (Info-mode-map): Bind "I" to `Info-virtual-index'.
16442 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
16443 for a virtual file instead of checking a fixed list of node names.
16444
16445 * simple.el (async-shell-command): New command.
16446
16447 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
16448
16449 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
16450 instead of `mount-info'.
16451
16452 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
16453
16454 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
16455 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
16456
16457 2009-07-02 Kenichi Handa <handa@m17n.org>
16458
16459 * international/mule.el (set-keyboard-coding-system): Force *-unix
16460 coding-system to avoid eol conversion.
16461
16462 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
16463
16464 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16465 Add handler for `process-file', `shell-command' and
16466 `start-file-process'.
16467 (tramp-gvfs-handle-shell-command)
16468 (tramp-gvfs-handle-start-file-process)
16469 (tramp-gvfs-handle-process-file): New defuns.
16470 (tramp-synce-list-devices): Simplify check for existence of property.
16471
16472 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
16473
16474 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
16475
16476 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
16477
16478 * language/korean.el (set-language-info-alist): Add korean-cp949,
16479 cp949 to spec.
16480
16481 2009-07-01 Kenichi Handa <handa@m17n.org>
16482
16483 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
16484
16485 * international/encoded-kb.el: Deleted.
16486
16487 * international/mule.el (set-keyboard-coding-system): Perform the
16488 necessary setup here instead of calling encoded-kbd-setup-display.
16489
16490 2009-07-01 Glenn Morris <rgm@gnu.org>
16491
16492 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
16493
16494 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
16495
16496 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
16497
16498 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
16499
16500 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
16501 Handle also the 'rename case, when setting file modes. (Bug#3712)
16502 (tramp-default-file-modes): Remove execute permissions.
16503
16504 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
16505 (top): Add a default for "synce" in `tramp-default-user-alist'.
16506 Add completion function for "synce" method.
16507 (tramp-hal-service, tramp-hal-path-manager)
16508 (tramp-hal-interface-manager, tramp-hal-interface-device):
16509 New defconst.
16510 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
16511 (tramp-synce-list-devices, tramp-synce-parse-device-names):
16512 New defuns.
16513
16514 * net/trampver.el: Update release number.
16515
16516 2009-06-30 Kenichi Handa <handa@m17n.org>
16517
16518 * international/fontset.el (setup-default-fontset): Add CJK fonts
16519 for symbols and the other miscellaneous characters.
16520
16521 * language/korea-util.el (setup-korean-environment-internal):
16522 Make char-width-table suitable for Korean environments.
16523 (exit-korean-environment): Cancel above.
16524
16525 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
16526 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
16527 setup-function to make char-width-table suitable for respective
16528 environments, and an exit-function to cancel that.
16529
16530 * language/japan-util.el (setup-japanese-environment-internal):
16531 Call use-cjk-char-width-table with arg `ja_JP'.
16532
16533 * international/characters.el (cjk-char-width-table): Delete it.
16534 (cjk-char-width-table-list): New variable.
16535 (use-cjk-char-width-table): New arg local-name.
16536 (use-default-char-width-table): Fix for the case that Emacs is
16537 already using the default char-width-table.
16538
16539 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
16540
16541 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
16542 modes mandatory. (Bug#3712)
16543
16544 2009-06-29 Alan Mackenzie <acm@muc.de>
16545
16546 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
16547 correction between the visible width of TABs and their number of bytes.
16548
16549 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
16550
16551 * server.el (server-buffer-done): Prevent kill-buffer from
16552 prompting by clearing the buffer modification flag (Bug#3696).
16553
16554 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
16555
16556 * progmodes/verilog-mode.el (verilog-beg-of-statement)
16557 (verilog-endcomment-reason-re): Support unique case and priority case.
16558 (verilog-basic-complete-re): Support localparam lineup.
16559 (verilog-beg-of-statement-1): Fix for robustness, unique case.
16560 (verilog-set-auto-endcomments): Fix for unique case, always_comb
16561 commenting.
16562 (verilog-leap-to-case-head): Now support *nested* unique &
16563 priority case statements.
16564 (verilog-auto-lineup): Make just declarations the default (as it
16565 had been).
16566 (verilog-leap-to-case-head): Support priority/unique case statements.
16567 (verilog-auto-lineup): Rework to give users radio buttons to
16568 select the various styles of automatic lineup.
16569 (verilog-error-regexp-alist): Rework to support the XEmacs style
16570 of error regular expressions from compilers, lint tools &
16571 simulators. Note that GNU Emacs has made it impossible for a mode
16572 to load such things.
16573 (electric-verilog-terminate-line, verilog-indent-declaration)
16574 (verilog-auto-wiure): Rework for radio button selection of
16575 auto-lineup selection of specification of auto lineup.
16576 (verilog-beg-of-statement-1): Redesign to support proper operation
16577 in additional code, based on testing with auto-lineup.
16578 (verilog-calculate-indent, assignments & declarations)
16579 (verilog-backward-token): Enhance to support auto-lineup of
16580 assignments & declarations.
16581 (verilog-in-directive-p, verilog-at-struct-p): New function for
16582 easy test of whether we are.
16583 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
16584 to support safe execution at almost anyline.
16585 (verilog-calc-1): Properly support indenting deep inside generate
16586 blocks.
16587 (verilog-init-font): Remove definition & use of verilog-init-font,
16588 as it is redundant with font-lock-defaults.
16589 (verilog-mode): Alter the definition of verilog-font-lock-defaults
16590 to avoid circular calls if syntax-ppss is a function (as is the
16591 case now in 22.x GNU Emacs) as that function would sometimes call
16592 itself, leading to (nearly) infinite recursion.
16593 (verilog-ovm-begin-re, verilog-ovm-end-re)
16594 (verilog-ovm-statement-re, verilog-leap-to-head)
16595 (verilog-backward-token): Add support for OVM macros. Some are
16596 complete statements, and others open and close scopes like begin
16597 and end.
16598 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
16599 (verilog-defun-level-generate-only-re): Really fix the defun-list
16600 compilation issue.
16601 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
16602 coverpoint, constraint and cross statements.
16603 (verilog-defun-level-list, verilog-generate-defun-level-list)
16604 (verilog-all-defun-level-list): Redo these specifications - it is
16605 too hard to support eval-when compile aggregation of lists also
16606 built at when-compile time.
16607 (verilog-defun-level-list): Place defconsts of variables used in
16608 building regular expressions which are built in eval-when-compile
16609 bodies in the same eval-when-compile body to facilitate compile
16610 without load.
16611 (verilog-beg-block-re-ordered): Support indenting
16612 virtual/protected tasks and functions.
16613 (verilog-defun-level-list, verilog-in-generate-region-p)
16614 (verilog-backward-ws&directives, verilog-calc-1): Speed up
16615 indentation of some module items (generate items).
16616 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
16617 across virtual/protected tasks and functions.
16618
16619 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
16620
16621 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
16622 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
16623 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
16624 in concatenations. Reported by Yishay Belkind.
16625 (verilog-auto-ascii-enum): Support one-hot state machines in
16626 AUTOASCIIENUM. Suggested by Lloyd Gomez.
16627 (verilog-auto-inst, verilog-auto-inst-port): Include interface
16628 modport in AUTOINST and add vl-modport for users. Reported by
16629 David Rogoff.
16630 (verilog-auto-inout-module, verilog-auto-inst)
16631 (verilog-decls-get-interfaces, verilog-insert-definition)
16632 (verilog-insert-one-definition, verilog-read-decls)
16633 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
16634 (verilog-sig-modport, verilog-signals-combine-bus)
16635 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
16636 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
16637 Suggested by David Rogoff.
16638 (verilog-repair-open-comma): Fix non-insertion of comma when
16639 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
16640 (verilog-make-width-expression): Simplify [A-1:0] expression
16641 widths to just {A{1'b0}}.
16642 (verilog-mode): Cleanup checkdoc warnings.
16643 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
16644 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
16645 inputs/outputs or data type. Suggested by Vasu Kandadi.
16646 (next-error-last-buffer): Fix byte-compiler warning.
16647 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
16648 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
16649 or shell command text during AUTO expansion. Suggested by Tad Truex.
16650 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
16651 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
16652 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
16653 in AUTOINOUT. Reported by Matthew Lovell.
16654 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
16655 causing use of <= assignments. Reported by Alex Reed.
16656 (verilog-read-decls): Fix triand, trior, wand, wor to be
16657 recognized by AUTOWIRE. Reported by Spencer Isaacson.
16658 (verilog-extended-complete-re): Support import "DPI-C" functions.
16659 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
16660 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
16661 (verilog-insert-date, verilog-insert-year)
16662 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
16663 Windows systems. Reported by Michael Potts.
16664 (verilog-read-module-name): Fix AUTOINST when the child module
16665 declaration's name is a tick define. Reported by Elliot Mednick.
16666 (verilog-read-decls): Fix V2K parameter bit subscripts getting
16667 passed to next parameter's definition. Reported by Bruce T.
16668 (verilog-read-decls): Fix detecting "parameter int" when using
16669 AUTOINSTPARAM. Reported by Bruce T.
16670 (verilog-goto-defun): Fix goto not finding modules unless first
16671 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
16672 (verilog-mode): Expand -f flag arguments on entry to mode so
16673 verilog-goto-defun will work. Reported by Lawrence Butcher.
16674 (verilog-getopt): Expand environment variables in -f file
16675 arguments. Suggested by Lawrence Butcher.
16676 (verilog-set-define): Fix "Symbol's value as variable is void"
16677 when reading enumerations.
16678 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
16679 Suggested by Stephen Peltan.
16680 (verilog-read-defines): Fix reading of enumerations in include
16681 files. Reported by Steve Peltan.
16682
16683 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
16684
16685 * files.el (trash-directory): Fix defcustom type.
16686
16687 2009-06-28 Juri Linkov <juri@jurta.org>
16688
16689 * help-fns.el (describe-function-1): Correctly locate adviced
16690 functions in hyperlink (Bug#2438).
16691
16692 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
16693
16694 * files.el (trash-directory): Change default to nil.
16695 (move-file-to-trash): If trash-directory is nil and
16696 system-move-file-to-trash is unbound, perform freedesktop-style
16697 trashing.
16698
16699 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
16700
16701 * files.el (move-file-to-trash): Add freedesktop trash
16702 support (Bug#973).
16703
16704 2009-06-28 Glenn Morris <rgm@gnu.org>
16705
16706 * autorevert.el (global-auto-revert-non-file-buffers)
16707 (global-auto-revert-mode): Doc fixes.
16708
16709 2009-06-27 Johan Bockgård <bojohan@gnu.org>
16710
16711 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
16712
16713 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
16714
16715 * faces.el (x-handle-named-frame-geometry): Ensure that we have
16716 opened an X connection before calling x-get-resource (Bug#3194).
16717
16718 * play/doctor.el: Remove reference to obsolete website.
16719 (make-doctor-variables): Correct grammar mistake (Bug#2633).
16720
16721 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
16722
16723 Remove find-file-not-found-hook VC method. (Bug#2757)
16724 * vc-hooks.el (vc-file-not-found-hook)
16725 (vc-default-find-file-not-found-hook): Remove functions.
16726 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
16727 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
16728 * vc.el:
16729 * vc-hg.el:
16730 * vc-git.el: Do not mention find-file-not-found-hook VC method.
16731
16732 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
16733
16734 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
16735 compatibility function for `looking-back'.
16736
16737 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
16738 Use `ispell-looking-back'.
16739
16740 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
16741
16742 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
16743 rather than `filename'.
16744
16745 2009-06-23 Miles Bader <miles@gnu.org>
16746
16747 * face-remap.el (text-scale-set): New function.
16748
16749 2009-06-23 Glenn Morris <rgm@gnu.org>
16750
16751 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
16752
16753 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
16754
16755 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
16756
16757 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
16758
16759 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
16760 Simplify Persian conditionals.
16761
16762 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
16763 variable `filename'.
16764
16765 * comint.el (comint-insert-input): Doc fix.
16766
16767 * Makefile.in (ELCFILES): Fix typo in previous change.
16768
16769 2009-06-23 Miles Bader <miles@gnu.org>
16770
16771 * cus-start.el: Add entry for `recenter-redisplay'.
16772
16773 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
16774
16775 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
16776 Add an optional argument for the backend, use it instead of
16777 calling vc-backend.
16778 (vc-mode-line): Add an optional argument for the backend.
16779 Pass the backend to vc-state and vc-working-revision. Move code for
16780 special handling for vc-state being a buffer to ...
16781
16782 * vc-rcs.el (vc-rcs-find-file-hook):
16783 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
16784
16785 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
16786 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
16787 vc-stay-local-p and vc-mode-line calls.
16788
16789 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
16790 (vc-cvs-diff, vc-cvs-annotate-command)
16791 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
16792 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
16793 vc-mode-line calls.
16794
16795 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
16796 direct comparison.
16797 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
16798 backend when calling vc-mode-line.
16799 (vc-register): Do not create a closure for calling the vc register
16800 function, call it directly.
16801
16802 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
16803
16804 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
16805 to make it obvious item can be clicked.
16806
16807 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
16808
16809 2009-06-23 Kenichi Handa <handa@m17n.org>
16810
16811 * language/korea-util.el (korean-key-bindings): Change the binding
16812 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
16813 same command.
16814
16815 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
16816
16817 Sync with Tramp 2.1.16.
16818
16819 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
16820
16821 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
16822 when a loading of a package fails. Completion function for rsync
16823 is `tramp-completion-function-alist-ssh'.
16824 (all): Replace all calls of `split-string' and
16825 `tramp-split-string' by `tramp-compat-split-string'.
16826 (tramp-default-method): Use `tramp-compat-process-running-p'.
16827 (tramp-default-proxies-alist): Allow also Lisp forms.
16828 (tramp-remote-path): Add choice "Private Directories".
16829 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
16830 (tramp-domain-regexp): Allow also "-", "_" and ".".
16831 (tramp-end-of-output): Remove newlines, and add "$" at the end.
16832 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
16833 (tramp-debug-message): Insert header line in debug buffer.
16834 (tramp-handle-directory-files-and-attributes-with-stat):
16835 Care about filenames with spaces, or starting with "-".
16836 (tramp-handle-dired-uncache): New defun.
16837 (tramp-handle-insert-directory): Don't flush the directory from
16838 cache, this is handled by `dired-uncache' now.
16839 (tramp-handle-insert-file-contents): Improve error handling.
16840 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16841 Quote `tramp-end-of-output'.
16842 (tramp-action-password): Improve trace message.
16843 (tramp-check-for-regexp): Both echoes must be present, before removing.
16844 (tramp-open-connection-setup-interactive-shell): Trace coding system.
16845 (tramp-compute-multi-hops): Eval cons cells of
16846 `tramp-default-proxies-alist'.
16847 (tramp-maybe-open-connection): Use the same command pattern for
16848 first hop and further hops.
16849 (tramp-wait-for-output): Remove handling of newlines.
16850 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
16851 (tramp-split-string): Remove function. It is handled in
16852 tramp-compat now.
16853
16854 * net/tramp-cmds.el (tramp-bug):
16855 Recommend `tramp-cleanup-all-connections' in the bug mail.
16856
16857 * net/tramp-compat.el (tramp-compat-split-string)
16858 (tramp-compat-process-running-p): New defuns.
16859
16860 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
16861 for `dired-uncache'.
16862
16863 * net/tramp-gvfs.el: New package.
16864
16865 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
16866 Add handler for `dired-uncache'.
16867 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
16868
16869 * net/trampver.el: Update release number. Make version check fit
16870 for SXEmacs 22.
16871
16872 2009-06-22 Jim Meyering <meyering@redhat.com>
16873
16874 Automatically handle .xz suffix (XZ-compressed files), too.
16875 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
16876 XZ is the successor to LZMA: <http://tukaani.org/xz/>
16877
16878 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
16879 Nick Roberts <nickrob@snap.net.nz>
16880
16881 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
16882 repository (http://sphinx.net.ru/hg/gdb-mi/).
16883
16884 2009-06-22 Glenn Morris <rgm@gnu.org>
16885
16886 * files.el (dir-locals-collect-mode-variables): Allow for any number of
16887 `mode' and `eval' entries. (Bug#3430)
16888
16889 * Makefile.in (ELCFILES): Add fadr.elc.
16890
16891 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
16892 differing behavior of \n and ^ in strings. (Bug#3385)
16893
16894 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
16895
16896 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
16897 property.
16898 (lisp-indent-function): Make it a defcustom.
16899
16900 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
16901
16902 * progmodes/gdb-ui.el: Replace with ...
16903 * progmodes/gdb-mi.el: ... this file.
16904 * progmodes/gud.el: Modify for gdb-mi.el.
16905
16906 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
16907
16908 * fadr.el: New file.
16909
16910 See ChangeLog.14 for earlier changes.
16911
16912 ;; Local Variables:
16913 ;; coding: utf-8
16914 ;; End:
16915
16916 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
16917
16918 This file is part of GNU Emacs.
16919
16920 GNU Emacs is free software: you can redistribute it and/or modify
16921 it under the terms of the GNU General Public License as published by
16922 the Free Software Foundation, either version 3 of the License, or
16923 (at your option) any later version.
16924
16925 GNU Emacs is distributed in the hope that it will be useful,
16926 but WITHOUT ANY WARRANTY; without even the implied warranty of
16927 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16928 GNU General Public License for more details.
16929
16930 You should have received a copy of the GNU General Public License
16931 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
16932
16933 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1