Implement bidi-sensitive movement with arrow keys.
[bpt/emacs.git] / lisp / ChangeLog
1 2010-05-15 Eli Zaretskii <eliz@gnu.org>
2
3 Bidi-sensitive movement with arrow keys.
4 * subr.el (right-arrow-command, left-arrow-command): New functions.
5
6 * bindings.el (global-map): Bind them to right and left arrow keys.
7
8 Don't override standard definition of convert-standard-filename.
9 * files.el (convert-standard-filename): Call
10 w32-convert-standard-filename and dos-convert-standard-filename on
11 the corresponding systems.
12
13 * w32-fns.el (w32-convert-standard-filename): Rename from
14 convert-standard-filename. Doc fix.
15
16 * dos-fns.el (dos-convert-standard-filename): Doc fix.
17 (convert-standard-filename): Don't defalias.
18 (register-name-alist, make-register, register-value)
19 (set-register-value, intdos): Obsolete aliases for the
20 corresponding dos-* functions and variables.
21 (dos-intdos): Add a doc string.
22
23 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
24
25 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
26 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
27 (math-compose-tex-func):
28 * calc/calccomp.el (math-compose-expr):
29 * calc/calc-ext.el (math-format-flat-expr-fancy):
30 * calc/calc-store.el (calc-read-var-name):
31 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
32
33 * calc/calc.el (var-π, var-φ, var-γ): New variables.
34 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
35 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
36 (math-standard-units): Add units.
37
38 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
39
40 * progmodes/asm-mode.el (asm-mode):
41 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
42
43 * pcomplete.el (pcomplete-completions-at-point): New function,
44 extracted from pcomplete-std-complete.
45 (pcomplete-std-complete): Use it.
46
47 2010-05-15 Glenn Morris <rgm@gnu.org>
48
49 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
50 Remove references to CVS, RCS and Old directories.
51
52 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
53
54 * calc/calc-bin.el (math-format-twos-complement): Group digits when
55 appropriate.
56
57 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
58
59 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
60 (sh-mode-syntax-table): Give it a default value instead.
61 (sh-header-marker): Make buffer-local.
62 (sh-mode): Move make-local-variable to the corresponding setq.
63 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
64 Use complete-with-action.
65
66 * simple.el (prog-mode): New (abstract) major mode.
67 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
68 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
69
70 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
71
72 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
73 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
74 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
75 (sql-make-alternate-buffer-name, sql-placeholders-filter)
76 (sql-escape-newlines-filter, sql-input-sender)
77 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
78
79 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
80
81 Add TeX open-block and close-block keybindings to SGML, and vice
82 versa.
83
84 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
85 latex-open-block and C-c / to latex-close-block.
86
87 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
88 and C-c C-e to sgml-close-tag.
89
90 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
91
92 * net/tramp.el (with-progress-reporter): Create reporter object
93 only when the message would be displayed. Handled nested calls.
94 (tramp-handle-load, tramp-handle-file-local-copy)
95 (tramp-handle-insert-file-contents, tramp-handle-write-region)
96 (tramp-maybe-send-script, tramp-find-shell):
97 Use `with-progress-reporter'.
98 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
99 Fix message text.
100
101 * net/tramp-smb.el (tramp-smb-handle-copy-file)
102 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
103 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
104 Use `with-progress-reporter'.
105
106 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
107
108 * ispell.el (ispell-init-process): Do not kill ispell process
109 everytime when spellchecking from the minibuffer (bug#6143).
110
111 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
112
113 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
114
115 * dos-fns.el: Add "dos-" prefix for namespace control.
116 (convert-standard-filename): Define as alias for
117 dos-convert-standard-filename but only if applicable.
118
119 2010-05-12 Alan Mackenzie <acm@muc.de>
120
121 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
122 Push the mark at the start of these functions when appropriate.
123
124 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
125
126 * minibuffer.el (completion-cycle-threshold): New custom var.
127 (completion--do-completion): Use it.
128 (minibuffer-complete): Use cycling if appropriate.
129
130 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
131
132 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
133 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
134
135 2010-05-11 Juri Linkov <juri@jurta.org>
136
137 * scroll-all.el (scroll-all-check-to-scroll):
138 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
139
140 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
141
142 * iimage.el (iimage-mode-map): Move initialization into declaration.
143 (iimage-mode-buffer): Use with-silent-modifications.
144 Simplify calling convention. Adjust callers.
145 (iimage-mode): Don't run hook redundantly.
146
147 * minibuffer.el (completion-pcm--pattern->regex):
148 Fix last change (bug#6160).
149
150 2010-05-10 Juri Linkov <juri@jurta.org>
151
152 Remove nodes visited during Isearch from the Info history.
153 * info.el (Info-isearch-initial-history)
154 (Info-isearch-initial-history-list): New variables.
155 (Info-isearch-start): Record initial values of
156 Info-isearch-initial-history and Info-isearch-initial-history-list.
157 Add Info-isearch-end to isearch-mode-end-hook.
158 (Info-isearch-end): New function.
159
160 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
161
162 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
163 format string, in order to work around a bug in pdksh.
164 Reported by Gilles Pion <gpion@lfdj.com>.
165 (tramp-handle-verify-visited-file-modtime): Do not send a command
166 when the connection is not established.
167 (tramp-handle-set-file-times): Simplify the check for utc.
168
169 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
170
171 Fix use of `filter-buffer-substring' (rework previous change).
172 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
173 (cua-repeat-replace-region):
174 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
175 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
176 (cua-cut-region-to-global-mark): Use it.
177
178 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
179
180 * progmodes/sql.el: Version 2.1.
181 (sql-product-alist): Redesign structure of product info.
182 (sql-product, sql-user, sql-server, sql-database): Safe variables.
183 (sql-port, sql-port-history): New variables.
184 (sql-interactive-product): New variable.
185 (sql-send-terminator): New variable.
186 (sql-imenu-generic-expression): Add "Types" imenu entry.
187 (sql-oracle-login-params, sql-sqlite-login-params)
188 (sql-mysql-login-params, sql-solid-login-params)
189 (sql-sybase-login-params, sql-informix-login-params)
190 (sql-ingres-login-params, sql-ms-login-params)
191 (sql-postgres-login-params, sql-interbase-login-params)
192 (sql-db2-login-params, sql-linter-login-params)
193 (sql-oracle-scan-on): New variables.
194 (sql-mode-map): Add C-c C-i to start interactive mode.
195 (sql-mode-menu): Update existing menu entries.
196 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
197 (sql-mode-oracle-font-lock-keywords)
198 (sql-mode-postgres-font-lock-keywords)
199 (sql-mode-ms-font-lock-keywords)
200 (sql-mode-sybase-font-lock-keywords)
201 (sql-mode-informix-font-lock-keywords)
202 (sql-mode-interbase-font-lock-keywords)
203 (sql-mode-ingres-font-lock-keywords)
204 (sql-mode-solid-font-lock-keywords)
205 (sql-mode-mysql-font-lock-keywords)
206 (sql-mode-sqlite-font-lock-keywords)
207 (sql-mode-db2-font-lock-keywords)
208 (sql-mode-linter-font-lock-keywords): Update initialization to
209 reduce run-time complexity.
210 (sql-add-product, sql-del-product): New functions.
211 (sql-set-product-feature, sql-get-product-feature): New functions.
212 (sql-product-font-lock): Update product API.
213 (sql-add-product-keywords): New function.
214 (sql-highlight-product): Update product API.
215 (sql-help-list-products): New function.
216 (sql-help): Dynamically lists free and non-free products.
217 (sql-get-login): Correct bug in handling history and added
218 prompt for port.
219 (sql-copy-column): Copy without properties.
220 (sqli-input-sender): Apply filters to SQLi input.
221 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
222 Implement as a filter.
223 (sql-escape-newlines-filter): Implement as a filter.
224 (sql-remove-tabs-filter): New function.
225 (sql-send-magic-terminator): New function.
226 (sql-send-string): Implement magic terminator.
227 (sql-send-region): Use `sql-send-string'.
228 (sql-interactive-mode): Use product API.
229 (sql-product-interactive): Use product API.
230 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
231 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
232 (sql-db2, sql-linter): Use `sql-product-interactive'.
233 (sql-connect): New function.
234 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
235 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
236 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
237 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
238 Use `sql-connect'.
239
240 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
241
242 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
243 New custom variable.
244 (completion-pcm--string->pattern): Use it.
245 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
246 Make it handle any symbol as `any'.
247 (completion-pcm--merge-completions): Extract common suffix for the new
248 `prefix' symbol as well.
249 (completion-substring--all-completions): Use the new `prefix' symbol.
250
251 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
252
253 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
254 not bound.
255 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
256 (tramp-compat-funcall): New defmacro.
257 (tramp-compat-line-beginning-position)
258 (tramp-compat-line-end-position)
259 (tramp-compat-temporary-file-directory)
260 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
261 (tramp-compat-copy-file, tramp-compat-copy-directory)
262 (tramp-compat-delete-file, tramp-compat-delete-directory)
263 (tramp-compat-number-sequence, tramp-compat-process-running-p)
264 * net/tramp.el (top, with-progress-reporter)
265 (tramp-rfn-eshadow-setup-minibuffer)
266 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
267 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
268 (tramp-completion-mode-p, tramp-check-for-regexp)
269 (tramp-open-connection-setup-interactive-shell)
270 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
271 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
272 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
273 * net/tramp-cmds.el (tramp-cleanup-all-connections)
274 (tramp-reporter-dump-variable, tramp-load-report-modules)
275 (tramp-append-tramp-buffers)
276 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
277
278 * net/tramp-imap.el (top): Autoload `epg-make-context'.
279
280 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
281
282 * progmodes/compile.el (compilation-buffer-modtime): Rename from
283 buffer-modtime. Adjust users.
284
285 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
286
287 * international/mule.el (auto-coding-alist): Only purecopy
288 car of each item, not the whole list (Bug#6083).
289
290 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
291
292 * progmodes/js.el (js-mode): Make paragraph variables local before
293 calling c-setup-paragraph-variables (Bug#6071).
294
295 2010-05-08 Eli Zaretskii <eliz@gnu.org>
296
297 * composite.el (compose-region, reference-point-alist): Fix typos
298 in the doc strings.
299
300 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
301
302 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
303 gnuplot's "set" command.
304
305 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
306
307 * abbrev.el (last-abbrev-text): Doc fix.
308 (abbrev-prefix-mark): Don't escape parenthesis.
309
310 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
311
312 * composite.el (find-composition): Doc fix.
313
314 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
315
316 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
317 (sql-oracle-program, sql-sqlite-options)
318 (sql-query-placeholders-and-send): Doc fixes.
319 (sql-set-product, sql-interactive-mode): Reflow docstrings.
320 (sql-imenu-generic-expression, sql-buffer)
321 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
322 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
323 (sql-mode-sybase-font-lock-keywords)
324 (sql-mode-informix-font-lock-keywords)
325 (sql-mode-interbase-font-lock-keywords)
326 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
327 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
328 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
329 (sql-product-feature, sql-highlight-product)
330 (comint-line-beginning-position, sql-rename-buffer)
331 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
332 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
333 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
334 Fix typos in docstrings.
335
336 2010-05-08 Juri Linkov <juri@jurta.org>
337
338 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
339 property instead of `invisible' and `after-string' (bug#5998).
340
341 2010-05-08 Juri Linkov <juri@jurta.org>
342
343 * image-mode.el (image-mode-as-text): Fix typo in docstring.
344
345 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
346
347 * filecache.el (file-cache-add-directory-list)
348 (file-cache-add-directory-recursively): Fix typos in docstrings.
349
350 2010-05-08 Kenichi Handa <handa@m17n.org>
351
352 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
353 (gujarati-composable-pattern): Fix typo.
354
355 2010-05-08 Kenichi Handa <handa@m17n.org>
356
357 * language/indian.el (oriya-composable-pattern)
358 (tamil-composable-pattern, malayalam-composable-pattern):
359 Add two-part vowels to "v" (vowel sign).
360
361 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
362
363 * files.el (copy-directory): Handle symlinks (Bug#5982).
364
365 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
366
367 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
368 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
369 (Bug#5846).
370
371 2010-05-08 Glenn Morris <rgm@gnu.org>
372
373 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
374
375 * minibuffer.el (completion-at-point): Doc fix.
376
377 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
378
379 * electric.el (Electric-command-loop): Minor tweak.
380
381 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
382 better with dedicated windows.
383
384 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
385
386 * Version 23.2 released.
387
388 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
389 Stefan Monnier <monnier@iro.umontreal.ca>
390
391 Highlight vendor specific properties.
392 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
393 (css-proprietary-property): New face.
394 (css-font-lock-keywords): Use them.
395
396 2010-05-07 Eli Zaretskii <eliz@gnu.org>
397
398 * cus-start.el (all): Add native condition for tool-bar-* symbols.
399
400 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
401
402 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
403 * files.el (auto-mode-alist): Remove redundant entries.
404
405 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
406 * simple.el (auto-save-mode): Move from files.el.
407 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
408
409 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
410
411 * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
412
413 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
414
415 * mail/binhex.el (binhex-decode-region-internal)
416 * mail/uudecode.el (uudecode-decode-region-internal)
417 * net/dns.el (dns-read-string-name, dns-write, dns-read)
418 (dns-read-type, dns-query)
419 * pgg-parse.el (pgg-parse-armor)
420 * pgg.el (pgg-verify-region)
421 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
422 XEmacs.
423
424 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
425
426 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
427
428 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
429
430 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
431 * emulation/cua-base.el (cua-repeat-replace-region):
432 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
433 (cua-cut-region-to-global-mark):
434 Remove text properties with `set-text-properties'.
435
436 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
437
438 * net/tramp.el (top, with-progress-reporter):
439 Use `symbol-function' inside `funcall'.
440
441 * net/tramp-compat.el (tramp-compat-file-attributes)
442 (tramp-compat-delete-file, tramp-compat-delete-directory):
443 Handle only `wrong-number-of-arguments' error.
444
445 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
446 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
447 inside `funcall'.
448
449 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
450
451 * minibuffer.el (completion--sreverse, completion--common-suffix):
452 New functions.
453 (completion-pcm--merge-completions): Extract common suffix when safe.
454
455 * emacs-lisp/easy-mmode.el (define-minor-mode):
456 Make :variable more flexible.
457 * files.el (auto-save-mode): Use it to define using define-minor-mode.
458
459 2010-05-05 Juri Linkov <juri@jurta.org>
460
461 Add `slow' and `history' tags to the desktop data.
462
463 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
464 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
465 (Info-finder-find-node): Require `finder.el' to be able
466 to restore node from the desktop.
467 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
468 data `Info-history' and `slow' tag in the assoc list.
469 (Info-restore-desktop-buffer): Don't restore nodes with the
470 `slow' tag. Restore `Info-history'.
471
472 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
473
474 Add FORCE argument to `delete-file'.
475
476 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
477 forcing to delete the temporary file.
478 (ange-ftp-delete-file): Add FORCE arg.
479 (ange-ftp-rename-remote-to-remote)
480 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
481 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
482 Force file deletion.
483
484 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
485
486 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
487 (tramp-handle-make-symbolic-link, tramp-handle-load)
488 (tramp-do-copy-or-rename-file-via-buffer)
489 (tramp-do-copy-or-rename-file-directly)
490 (tramp-do-copy-or-rename-file-out-of-band)
491 (tramp-handle-process-file, tramp-handle-call-process-region)
492 (tramp-handle-shell-command, tramp-handle-file-local-copy)
493 (tramp-handle-insert-file-contents, tramp-handle-write-region)
494 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
495
496 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
497 (tramp-fish-handle-make-symbolic-link)
498 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
499
500 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
501 Use `tramp-compat-delete-file'.
502
503 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
504 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
505
506 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
507 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
508
509 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
510 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
511 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
512 `tramp-compat-delete-file'.
513
514 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
515
516 Minor cleanups.
517 * subr.el (add-minor-mode): Use push.
518 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
519 * emulation/edt.el (edt-select-mode): Simplify.
520
521 Use define-minor-mode in more cases.
522 * term/tvi970.el (tvi970-set-keypad-mode):
523 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
524 (normal-erase-is-backspace-mode):
525 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
526 (set-scroll-bar-mode-1): (Re)move to its sole caller.
527 (get-scroll-bar-mode): New function.
528 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
529
530 Use define-minor-mode for less obvious cases.
531 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
532 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
533 * international/iso-ascii.el (iso-ascii-mode):
534 * frame.el (auto-raise-mode, auto-lower-mode):
535 * composite.el (global-auto-composition-mode): Use define-minor-mode.
536
537 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
538
539 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
540 in order to see error messages for failed logins.
541
542 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
543
544 * diff.el (diff-sentinel):
545
546 * epg.el (epg--make-temp-file, epg-decrypt-string)
547 (epg-verify-string, epg-sign-string, epg-encrypt-string):
548
549 * jka-compr.el (jka-compr-partial-uncompress)
550 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
551
552 * server.el (server-sentinel): Use delete-file's new FORCE arg
553 (Bug#6070).
554
555 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
556
557 Use define-minor-mode where applicable.
558 * view.el (view-mode):
559 * type-break.el (type-break-query-mode)
560 (type-break-mode-line-message-mode):
561 * textmodes/reftex.el (reftex-mode):
562 * term/vt100.el (vt100-wide-mode):
563 * tar-mode.el (tar-subfile-mode):
564 * savehist.el (savehist-mode):
565 * ibuf-ext.el (ibuffer-auto-mode):
566 * composite.el (auto-composition-mode):
567 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
568 Use define-minor-mode.
569 (vhdl-mode): Use static mode-line format.
570 (vhdl-mode-line-update): Delete.
571 (vhdl-create-mode-menu, vhdl-activate-customizations)
572 (vhdl-hs-minor-mode): Don't bother calling it.
573
574 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
575
576 * simple.el (with-wrapper-hook): Move.
577 (buffer-substring-filters): Mark obsolete.
578 (filter-buffer-substring-functions): New variable.
579 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
580
581 Use a mode-line spec rather than a static string in Semantic.
582 * cedet/semantic/util-modes.el:
583 (semantic-minor-modes-format): New var to replace...
584 (semantic-minor-modes-status): Remove.
585 (semantic-mode-line-update): Construct a mode-line spec rather than
586 a static string so that mouse buttons can be used on individual minor
587 modes and so that semantic-mode-line-update only needs to be called
588 when global settings are changed.
589 (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
590 Call semantic-mode-line-update.
591 (semantic-toggle-minor-mode-globally): Don't assume mode is on
592 minor-mode-alist, check semantic-minor-mode-alist as well.
593 (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
594 (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
595 (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
596 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
597 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
598 (define-semantic-idle-service, semantic-idle-summary-mode):
599 * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
600 Don't call semantic-mode-line-update any more.
601
602 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
603
604 Use define-minor-mode in CEDET where applicable.
605
606 * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
607 Use define-minor-mode.
608
609 * cedet/semantic/util-modes.el (semantic-add-minor-mode):
610 Remove unused arg `keymap' and code redundant with define-minor-mode.
611 (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
612 (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
613 (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
614 (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
615 (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
616 (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
617 Use define-minor-mode.
618 (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
619 (semantic-show-unmatched-syntax-mode-setup)
620 (semantic-show-parser-state-mode-setup)
621 (semantic-highlight-func-mode-setup): Inline into sole caller.
622
623 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
624 (semantic-mru-bookmark-mode): Use define-minor-mode.
625 (semantic-mru-bookmark-mode-setup): Inline into sole caller.
626
627 * cedet/semantic/idle.el (define-semantic-idle-service):
628 Use define-minor-mode and inline setup function into its sole caller.
629 (semantic-idle-scheduler-mode-setup)
630 (semantic-idle-summary-mode-setup): Inline into sole caller.
631 (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
632 Use define-minor-mode.
633
634 * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
635 (semantic-decoration-mode): Use define-minor-mode.
636 (semantic-decoration-mode-setup): Inline into sole caller.
637
638 * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
639 (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
640 (ede-dired-add-to-target): Use dolist.
641
642 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
643 Michael Albinus <michael.albinus@gmx.de>
644
645 Implement compression for inline methods.
646
647 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
648 (tramp-copy-size-limit): Allow also nil.
649 (tramp-inline-compress-commands): New defconst.
650 (tramp-find-inline-compress, tramp-get-inline-compress)
651 (tramp-get-inline-coding): New defuns.
652 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
653 replaced by `tramp-get-inline-coding'.
654 (tramp-handle-file-local-copy, tramp-handle-write-region)
655 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
656
657 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
658
659 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
660 Remove unused functions.
661
662 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
663 Set find-tag-default-function as a variable rather than a property.
664
665 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
666 * progmodes/etags.el (tags-completion-at-point-function):
667 Remove left over interactive spec. Add autoloading stub.
668 (complete-tag): Use tags-completion-at-point-function.
669
670 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
671
672 * minibuffer.el (tags-completion-at-point-function): Fix return value.
673
674 2010-04-30 Eli Zaretskii <eliz@gnu.org>
675
676 * composite.el (compose-region, reference-point-alist): Fix typos
677 in the doc strings.
678
679 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
680
681 * ido.el (ido-init-completion-maps): Remove C-v binding.
682 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
683
684 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
685
686 * minibuffer.el (tags-completion-at-point-function): New function.
687 (completion-at-point-functions): Use it.
688
689 * cedet/semantic.el (semantic-completion-at-point-function): New function.
690 (semantic-mode): Use semantic-completion-at-point-function for
691 completion-at-point-functions instead.
692
693 * progmodes/etags.el (complete-tag): Revert last change.
694
695 2010-04-29 Alan Mackenzie <acm@muc.de>
696
697 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
698 off-by-one error (in end of macro position).
699
700 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
701
702 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
703 firefox is absent. Don't autoload.
704 (browse-url-galeon-program): Don't autoload.
705
706 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
707
708 * bindings.el (complete-symbol): Move into minibuffer.el.
709
710 * minibuffer.el (complete-tag): Move from etags.el. If tags
711 completion cannot be performed, return nil instead of signalling
712 an error.
713 (completion-at-point): Make it an alias for complete-symbol.
714 (complete-symbol): Move from bindings.el, and replace with the
715 body of completion-at-point.
716
717 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
718
719 * cedet/semantic.el (semantic-mode): When enabled, add
720 semantic-ia-complete-symbol to completion-at-point-functions.
721
722 * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
723 if Semantic is not active.
724
725 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
726
727 * net/tramp.el (tramp-remote-selinux-p): New defun.
728 (tramp-handle-file-selinux-context)
729 (tramp-handle-set-file-selinux-context): Use it.
730
731 2010-04-28 Sam Steingold <sds@gnu.org>
732
733 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
734 `safe-local-variable' if the value is a string or a symbol with
735 the property `bug-reference-url-format'.
736
737 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
738
739 * progmodes/bug-reference.el (bug-reference-url-format): Revert
740 2010-04-27 change due to security risk.
741
742 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
743
744 Make it possible to locally disable a globally enabled mode.
745 * simple.el (fundamental-mode): Run fundamental-mode-hook.
746 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
747 rather than kill-all-local-variables so it runs fundamental-mode-hook.
748 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
749 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
750 that subsequent hooks get a chance to disable it.
751
752 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
753
754 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
755 Avoid re-enabling a minor mode after the user turned the minor mode
756 off if MODE-enable-in-buffers is run twice (typically once from
757 fundamental-mode's after-change-major-mode-hook and a second time from
758 run-mode-hook's own after-change-major-mode-hook).
759
760 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
761
762 2010-04-27 Sam Steingold <sds@gnu.org>
763
764 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
765 `safe-local-variable' if the value is a string or a function, as
766 documented and implemented on 2010-04-02.
767
768 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
769
770 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
771 when method is 'kill.
772
773 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
774
775 * ispell.el (ispell-init-process): Fix personal dictionary condition
776 in default directory check.
777 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
778 Kill ispell process when killing its associated buffer.
779
780 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
781
782 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
783 but we aren't using it.
784
785 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
786
787 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
788 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
789
790 2010-04-24 Glenn Morris <rgm@gnu.org>
791
792 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
793 Ignore VCS-ignore files, and deleted nextstep preferences files.
794 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
795 (authors-ambiguous-files): New list.
796 (authors-valid-file-names): Add some deleted files.
797 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
798 (authors-disambiguate-file-name): New function. (Bug#5501)
799 (authors-canonical-file-name): Doc fix.
800 Don't warn about obsolete files.
801 (authors-canonical-file-name, authors-scan-el):
802 Use authors-disambiguate-file-name.
803
804 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
805 Add autoload cookies.
806 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
807 (generated-autoload-file): Set file-local value to "htmlfontify.el".
808 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
809 They have definitions / compiler macros in cl.el.
810 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
811 Replace manual autoloads with generated ones.
812 (htmlfontify-unload-rgb-file): Remove autoload.
813 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
814
815 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
816
817 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
818 (byte-compile-setq-default): Optimize for the
819 single-var case and don't call byte-compile-form in this case to avoid
820 inf-loop with byte-compile-set-default.
821
822 * progmodes/compile.el (compilation-start): Abbreviate default directory.
823
824 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
825
826 Implement SELINUX backends.
827
828 * net/tramp.el (tramp-file-name-handler-alist):
829 Add `file-selinux-context' and `set-file-selinux-context'.
830 (tramp-handle-file-selinux-context)
831 (tramp-handle-set-file-selinux-context): New defuns.
832 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
833 Handle PRESERVE-SELINUX-CONTEXT.
834
835 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
836 Add `file-selinux-context' and `set-file-selinux-context'.
837 (tramp-gvfs-handle-file-selinux-context)
838 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
839 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
840
841 * net/ange-ftp.el (ange-ftp-copy-file):
842 * net/tramp-fish.el (tramp-fish-handle-copy-file):
843 * net/tramp-imap.el (tramp-imap-handle-copy-file):
844 * net/tramp-smb.el (tramp-smb-handle-copy-file):
845 Add PRESERVE-SELINUX-CONTEXT.
846
847 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
848
849 Synchronize with Tramp repository.
850
851 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
852 (tramp-action-process-alive, tramp-action-out-of-band)
853 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
854 (tramp-exists-file-name-handler): Fix docstring.
855 (with-progress-reporter): New defmacro.
856 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
857 (tramp-maybe-open-connection): Use it.
858
859 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
860
861 Detect ssh 'ControlMaster' argument automatically in some cases.
862
863 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
864 (tramp-default-method): Use it.
865
866 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
867
868 * net/tramp.el (tramp-handle-copy-file): Add new optional
869 parameter `preserve-selinux-context'.
870 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
871
872 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
873
874 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
875 Ensure, that non remote files are still checked. Oops.
876
877 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
878
879 Fix Bug#5840.
880
881 * icomplete.el (icomplete-completions): Use `non-essential'.
882
883 * net/tramp.el (tramp-connectable-p): New defun.
884 (tramp-handle-expand-file-name)
885 (tramp-completion-handle-file-name-all-completions)
886 (tramp-completion-handle-file-name-completion): Use it.
887
888 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
889
890 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
891
892 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
893
894 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
895
896 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
897
898 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
899 is present.
900
901 * info.el (info-tool-bar-map): Add labels.
902
903 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
904
905 * cus-edit.el (custom-commands): Add labels for tool bar.
906 (custom-buffer-create-internal, Custom-mode): Adjust for
907 labels in custom-commands.
908
909 * dynamic-setting.el: Renamed from font-setting.el.
910
911 2010-04-21 John Wiegley <jwiegley@gmail.com>
912
913 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
914 toggles the use of virtual buffers.
915 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global
916 value.
917 (ido-toggle-virtual-buffers): New function.
918
919 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
920
921 Use `define-derived-mode'; fix window selection; doc fixes.
922 * play/tetris.el (tetris, tetris-update-speed-function)
923 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
924 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
925 (tetris-rotate-next, tetris-end-game, tetris-start-game)
926 (tetris-pause-game): Fix typos in docstrings.
927 (tetris-mode-map, tetris-null-map):
928 Move initialization into declaration.
929 (tetris-mode): Define with `define-derived-mode';
930 set show-trailing-whitespace to nil.
931 (tetris): Prefer window already displaying the "*Tetris*" buffer.
932
933 2010-04-21 Karel Klíč <kklic@redhat.com>
934
935 * files.el (backup-buffer): Handle SELinux context, and return it
936 if a backup was made by renaming.
937 (backup-buffer-copy): Set SELinux context to the target file.
938 (basic-save-buffer): Set SELinux context of the newly written file.
939 (basic-save-buffer-1): Now it also returns any SELinux context.
940 (basic-save-buffer-2): Set SELinux context of the newly created file,
941 and return it.
942 * net/tramp.el (tramp-file-name-for-operation):
943 Add file-selinux-context.
944
945 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
946
947 Make the log-edit comments use RFC822 format throughout.
948
949 * vc.el (vc-checkin, vc-modify-change-comment):
950 Adjust to new vc-start/finish-logentry.
951 (vc-find-conflicted-file): New command.
952 (vc-transfer-file): Adjust to new vc-checkin.
953 (vc-next-action): Improve scoping.
954
955 * vc-hg.el (vc-hg-log-edit-mode): Remove.
956 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
957
958 * vc-git.el (vc-git-log-edit-mode): Remove.
959 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
960 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
961
962 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
963 (vc-start-logentry): Remove argument `extra'.
964 (vc-finish-logentry): Remove extra args.
965
966 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
967 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
968 (vc-bzr-conflicted-files): New function.
969
970 * log-edit.el (log-edit-extra-flags)
971 (log-edit-before-checkin-process): Remove.
972 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
973 (log-edit-headers-alist): New var.
974 (log-edit-header-contents-regexp): New const.
975 (log-edit-match-to-eoh): New function.
976 (log-edit-font-lock-keywords): Use them.
977 (log-edit): Insert a "Summary:" header as default.
978 (log-edit-mode): Mark font-lock rules as case-insensitive.
979 (log-edit-done): Cleanup headers.
980 (log-view-process-buffer): Remove.
981 (log-edit-extract-headers): New function to replace it.
982
983 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
984
985 * subr.el (default-direction-reversed): Remove obsolescence info.
986
987 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
988
989 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
990 windows/frames.
991
992 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
993 I.e. include text after point in the completion region.
994 Also, return nil when we're not after/in a symbol.
995
996 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
997 default enable-multibyte-characters.
998
999 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1000
1001 * international/mule.el: Help the user choose a valid coding-system.
1002 (read-buffer-file-coding-system): New function.
1003 (set-buffer-file-coding-system): Use it. Prompt the user if the
1004 coding-system cannot encode all the chars.
1005
1006 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
1007 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
1008 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
1009 Don't use *vc-bzr-shelve*.
1010
1011 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
1012
1013 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
1014 Don't destroy list before using it.
1015
1016 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
1017
1018 Fix the version number for added files.
1019 * vc-hg.el (vc-hg-working-revision): Check if the file is
1020 registered after hg parent fails (Bug#5961).
1021
1022 2010-04-19 Glenn Morris <rgm@gnu.org>
1023
1024 * htmlfontify.el (htmlfontify-buffer)
1025 (htmlfontify-copy-and-link-dir): Autoload entry points.
1026
1027 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
1028
1029 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
1030 name relative to the project root (Bug#5960).
1031
1032 2010-04-19 Glenn Morris <rgm@gnu.org>
1033
1034 * vc-git.el (vc-git-print-log): Doc fix.
1035
1036 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
1037
1038 * ido.el (ido-file-internal): Fix 2009-12-02 change.
1039
1040 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
1041
1042 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
1043 default settings (Bug#5928).
1044
1045 2010-04-19 Glenn Morris <rgm@gnu.org>
1046
1047 * progmodes/fortran.el (fortran-match-and-skip-declaration):
1048 New function.
1049 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
1050
1051 2010-04-19 Kenichi Handa <handa@m17n.org>
1052
1053 * language/indian.el (malayalam-composable-pattern): Fix previous
1054 change (add U+0D4D "SIGN VIRAMA").
1055 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
1056 (tamil-composable-pattern): Fix typo in the regexp.
1057 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
1058 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
1059 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
1060
1061 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
1062
1063 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
1064 paragraph-separate (Bug#5821).
1065
1066 2010-04-19 Juri Linkov <juri@jurta.org>
1067
1068 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
1069
1070 * info.el (Info-find-node-2): Comment out code that skips
1071 breadcrumbs line.
1072 (Info-mouse-follow-link): New command.
1073 (Info-link-keymap): New keymap.
1074 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
1075 Return a string with links instead of inserting breadcrumbs
1076 to the Info buffer.
1077 (Info-fontify-node): Comment out code that inserts breadcrumbs.
1078 Instead of putting the `invisible' text property over the Info
1079 header, make an overlay over the Info header with the `invisible'
1080 property and `after-string' set to the string returned by
1081 `Info-breadcrumbs'.
1082
1083 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
1084
1085 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
1086 Reported by monkey@sandpframing.com.
1087
1088 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1089
1090 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
1091 (tmm-get-keymap): Add key-binding shortcuts now that they're not
1092 available in the "keyseq cache" any more.
1093
1094 * custom.el (defcustom): Add edebug spec.
1095
1096 2010-04-18 Juri Linkov <juri@jurta.org>
1097
1098 Test for special mode-class in view-buffer instead of view-file (bug#5513).
1099
1100 * view.el (view-file, view-buffer): Move test for special mode-class
1101 from view-file to view-buffer.
1102
1103 * tar-mode.el (tar-extract): Turn if's into one cond
1104 like in arc-mode.el.
1105
1106 2010-04-18 Juri Linkov <juri@jurta.org>
1107
1108 Add 7z archive format support (bug#5475).
1109
1110 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
1111 (archive-7z-extract): New defcustom.
1112 (archive-find-type): Add magic string for 7z.
1113 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
1114 If `stderr-file' is non-nil, use `(t stderr-file)' for the
1115 `buffer' arg of `call-process'.
1116 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
1117 call the function `archive-7z-extract' with the variable
1118 `archive-7z-extract' let-bound to `archive-zip-extract'.
1119 (archive-7z-summarize, archive-7z-extract): New functions.
1120
1121 * international/mule.el (auto-coding-alist):
1122 * files.el (auto-mode-alist): Add 7z file extension.
1123
1124 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1125
1126 * loadup.el: Setup hash-cons for pure data.
1127
1128 Fix duplicate entries in cedet's loaddefs.el files.
1129 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
1130 Should make most file-local generated-autoload-file unnecessary.
1131 (print-readably): Silence warnings.
1132 (autoload-find-destination): Take load-name as an arg to make sure
1133 it's the same as the one that will be in the file.
1134 (autoload-generate-file-autoloads): Adjust to above changes.
1135 Try to make the dataflow a bit simpler.
1136
1137 * cvs-status.el (cvs-refontify): Remove unused.
1138
1139 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
1140
1141 * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
1142
1143 * calc-bin.el (calc-radix): Have the "O" option turn on
1144 twos-complement mode.
1145
1146 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
1147
1148 * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
1149 Add `calc-option-prefix-help' to calc-help autoloads.
1150 (calc-inverse): Add "Option" to message, as appropriate.
1151 (calc-hyperbolic): Add "Option" to message, as appropriate.
1152 (calc-option, calc-is-option): New functions.
1153
1154 * calc-help.el (calc-full-help): Add `calc-option-help'.
1155 (calc-option-prefix-help): New function.
1156
1157 * calc-misc.el (calc-help): Add "Option" entry.
1158
1159 * calc.el (calc-local-var-list): Add `calc-option-flag'.
1160 (calc-option-flag): New variable.
1161 (calc-do): Set `calc-option-flag to nil.
1162 (calc-set-mode-line): Add "Opt " as appropriate.
1163
1164 2010-04-16 Juri Linkov <juri@jurta.org>
1165
1166 Move scrolling commands from simple.el to window.el
1167 because their primitives are implemented in window.c.
1168
1169 * simple.el (scroll-error-top-bottom)
1170 (scroll-up-command, scroll-down-command, scroll-up-line)
1171 (scroll-down-line, scroll-other-window-down)
1172 (beginning-of-buffer-other-window, end-of-buffer-other-window):
1173 * window.el (scroll-error-top-bottom)
1174 (scroll-up-command, scroll-down-command, scroll-up-line)
1175 (scroll-down-line, scroll-other-window-down)
1176 (beginning-of-buffer-other-window, end-of-buffer-other-window):
1177 Move from simple.el to window.el because their primitives are
1178 implemented in window.c.
1179
1180 2010-04-16 Juri Linkov <juri@jurta.org>
1181
1182 * isearch.el (isearch-lookup-scroll-key): Check both
1183 `isearch-scroll' and `scroll-command' properties.
1184 (scroll-up, scroll-down): Remove `isearch-scroll' property.
1185
1186 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
1187
1188 * simple.el (scroll-up-command, scroll-down-command)
1189 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
1190
1191 2010-04-15 Juri Linkov <juri@jurta.org>
1192
1193 * simple.el (scroll-up-command, scroll-down-command)
1194 (scroll-up-line, scroll-down-line): Put `scroll-command'
1195 property on the these symbols. Remove them from
1196 `scroll-preserve-screen-position-commands'.
1197
1198 * mwheel.el (mwheel-scroll): Put `scroll-command' and
1199 `isearch-scroll' properties on the `mwheel-scroll' symbol.
1200 Remove it from `scroll-preserve-screen-position-commands'.
1201
1202 * isearch.el (isearch-allow-scroll): Doc fix.
1203
1204 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
1205
1206 * net/tramp.el (tramp-error-with-buffer): Don't show the
1207 connection buffer when we are in completion mode.
1208 (tramp-file-name-handler): Catch the error for some operations
1209 when we are in completion mode. This gives the user the chance to
1210 correct the file name in the minibuffer.
1211
1212 2010-04-15 Glenn Morris <rgm@gnu.org>
1213
1214 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
1215
1216 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
1217
1218 Simplify by using `define-derived-mode'.
1219 * info.el (Info-mode):
1220 * calendar/todo-mode.el (todo-mode):
1221 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
1222 (gomoku-mode-map): Move initialization into declaration.
1223
1224 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
1225
1226 Fix Bug#5840.
1227 * ido.el (ido-file-name-all-completions-1):
1228 * minibuffer.el (minibuffer-completion-help):
1229 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
1230
1231 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1232
1233 * simple.el (non-essential): New var.
1234
1235 Add a new field `location' to bookmarks for non-file bookmarks.
1236 * bookmark.el (bookmark-location): Use the new field, if present.
1237 (bookmark-insert-location): Undo last change, not needed any more.
1238 * man.el (Man-bookmark-make-record):
1239 * woman.el (woman-bookmark-make-record): Add `location' field.
1240
1241 2010-04-14 Juri Linkov <juri@jurta.org>
1242
1243 * simple.el (scroll-error-top-bottom): New defcustom.
1244 (scroll-up-command, scroll-down-command): Use it. Doc fix.
1245
1246 * emulation/pc-select.el (pc-select-override-scroll-error):
1247 Obsolete in favor of `scroll-error-top-bottom'.
1248
1249 2010-04-14 Juri Linkov <juri@jurta.org>
1250
1251 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
1252 `scroll-up-command' and `M-v' to `scroll-down-command'.
1253
1254 * emulation/cua-rect.el (cua--init-rectangles):
1255 * forms.el (forms--change-commands):
1256 * image-mode.el (image-mode-map):
1257 Remap scroll-down-command and scroll-up-command
1258 in addition to scroll-down and scroll-up.
1259
1260 2010-04-14 Juri Linkov <juri@jurta.org>
1261
1262 * mwheel.el (scroll-preserve-screen-position-commands):
1263 Add mwheel-scroll to this list of commands.
1264
1265 * simple.el (scroll-preserve-screen-position-commands):
1266 Add scroll-up-command, scroll-down-command, scroll-up-line,
1267 scroll-down-line to this list of commands.
1268
1269 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1270
1271 * obsolete/complete.el: Move from lisp/complete.el.
1272
1273 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
1274
1275 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
1276 to the minor mode function now turns the mode ON unconditionally.
1277
1278 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1279
1280 * vc-dir.el (vc-dir-kill-line): New command.
1281 (vc-dir-mode-map): Bind it to C-k.
1282
1283 * bookmark.el (bookmark-insert-location): Handle a nil filename.
1284
1285 * woman.el: Add bookmark declarations to silence the compiler.
1286 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
1287 step to compatibility between man and woman bookmarks.
1288 Adjust for Man-default-bookmark-title renaming.
1289 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
1290
1291 * man.el: Add bookmark declarations to silence the compiler.
1292 (Man-name-local-regexp): Make it match NAME as well.
1293 (Man-getpage-in-background): Return the buffer.
1294 (Man-notify-when-ready): Use `case'.
1295 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
1296 Don't hardcode "NAME". Simplify.
1297 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
1298 Rename from Man-bookmark-make-record.
1299 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
1300 we have the actual man-args. Use Man-getpage-in-background rather
1301 than `man' since the arg is already processed. Let bookmark.el do the
1302 window handling. Only wait for the relevant process.
1303 Don't forget to autoload.
1304
1305 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
1306
1307 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1308
1309 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
1310 New functions.
1311 (woman-mode): Setup bookmark support.
1312
1313 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
1314 (man-bookmark-jump): New functions.
1315 (Man-mode): Setup bookmark support.
1316
1317 2010-04-10 Jari Aalto <jari.aalto@cante.net>
1318
1319 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
1320 recognize ssh-keygen prompt (Bug#2817).
1321
1322 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
1323
1324 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
1325
1326 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
1327
1328 Synchronize with Tramp repository.
1329
1330 * net/tramp.el (tramp-completion-function-alist)
1331 (tramp-file-name-regexp, tramp-chunksize)
1332 (tramp-local-coding-commands, tramp-remote-coding-commands):
1333 Fix docstring.
1334 (tramp-remote-process-environment): Use `format' instead of `concat'.
1335 (tramp-handle-directory-files-and-attributes)
1336 (tramp-get-remote-path): Use `copy-tree'.
1337 (tramp-handle-file-name-all-completions): Backward/ XEmacs
1338 compatibility: Use `completion-ignore-case' if
1339 `read-file-name-completion-ignore-case' does not exist.
1340 (tramp-do-copy-or-rename-file-directly): Do not use
1341 `tramp-handle-file-remote-p'.
1342 (tramp-do-copy-or-rename-file-out-of-band):
1343 Use `tramp-compat-delete-directory'.
1344 (tramp-do-copy-or-rename-file-out-of-band)
1345 (tramp-compute-multi-hops, tramp-maybe-open-connection):
1346 Use `format-spec-make'.
1347 (tramp-find-foreign-file-name-handler)
1348 (tramp-advice-make-auto-save-file-name)
1349 (tramp-set-auto-save-file-modes): Remove superfluous check for
1350 `stringp'. This is done inside `tramp-tramp-file-p'.
1351 (tramp-debug-outline-regexp): New defconst.
1352 (tramp-get-debug-buffer): Use it.
1353 (tramp-check-for-regexp): Use (forward-line 1).
1354 (tramp-set-auto-save-file-modes): Adapt version check.
1355
1356 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
1357 Wrap call of `featurep' for 2nd argument.
1358 (tramp-compat-make-temp-file): Simplify fallback implementation.
1359 (tramp-compat-copy-tree): Remove function.
1360 (tramp-compat-delete-directory): Provide implementation for older
1361 Emacsen.
1362
1363 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
1364 Do not use `tramp-fish-handle-file-attributes.
1365
1366 * net/trampver.el: Update release number.
1367
1368 2010-04-10 Glenn Morris <rgm@gnu.org>
1369
1370 * progmodes/compile.el (compilation-save-buffers-predicate):
1371 Add missing :version tag.
1372
1373 2010-04-09 Sam Steingold <sds@gnu.org>
1374
1375 * progmodes/compile.el (compilation-save-buffers-predicate):
1376 Remove the "autoload" cookie.
1377
1378 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
1379 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
1380 and `bug-reference-prog-mode' can be used in hooks directly.
1381
1382 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
1383
1384 Add --author support to git commit.
1385 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
1386 (vc-git-log-edit-mode): New minor mode.
1387 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
1388 New declarations.
1389
1390 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
1391
1392 * vc-hooks.el, vc-git.el: Improve documentation comments.
1393
1394 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
1395
1396 Fix some of the problems in defsubst* (bug#5728).
1397 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
1398 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
1399
1400 2010-04-07 Sam Steingold <sds@gnu.org>
1401
1402 * progmodes/compile.el (compilation-save-buffers-predicate):
1403 New custom variable.
1404 (compile, recompile): Pass it to `save-some-buffers'.
1405
1406 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
1407
1408 * wid-edit.el (widget-choose): Move cursor to the second line of
1409 the buffer (Bug#5695).
1410
1411 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
1412
1413 Add new VC methods: vc-log-incoming and vc-log-outgoing.
1414 * vc.el (vc-print-log-setup-buttons): New function split out from
1415 vc-print-log-internal.
1416 (vc-log-internal-common): New function, a parametrized version of
1417 vc-print-log-internal.
1418 (vc-print-log-internal): Just call vc-log-internal-common with the
1419 right arguments.
1420 (vc-incoming-outgoing-internal):
1421 (vc-log-incoming, vc-log-outgoing): New functions.
1422 (vc-log-view-type): New permanent local variable.
1423
1424 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
1425
1426 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
1427 of the dynamic bound vc-short-log.
1428 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
1429
1430 * vc-git.el (vc-git-log-outgoing): New function.
1431 (vc-git-log-view-mode): Use vc-log-view-type instead
1432 of the dynamic bound vc-short-log.
1433
1434 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
1435 of the dynamic bound vc-short-log. Highlight the tag.
1436 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
1437 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
1438 (vc-hg-incoming-mode): Remove.
1439 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
1440
1441 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
1442
1443 Fix default-directory for vc-root-diff.
1444 * vc.el (vc-root-diff): Bind default-directory to the root
1445 directory for the diff command.
1446
1447 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
1448
1449 * progmodes/verilog-mode.el (verilog-forward-sexp):
1450 (verilog-calc-1): Support "disable fork" and "fork wait" multi
1451 word keywords, suggested by Steve Pearlmutter.
1452 (verilog-pretty-declarations): Support lineup of declarations in
1453 port lists.
1454 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
1455 fix bug for /* / comments
1456 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
1457 Speed up and simplfy as this is never called with a bound.
1458 (verilog-pretty-declarations): Enhance to line up declarations
1459 inside a parameter list, suggested by Alan Morgan.
1460 (verilog-pretty-expr): Tune assignment regular expression match
1461 string for corner cases; also use markers instead of character
1462 number as indent changes the later.
1463
1464 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
1465
1466 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
1467 as missing keyword.
1468 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
1469 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
1470 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
1471 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
1472 Tennant.
1473 (verilog-keywords):
1474 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
1475 1800-2009 keywords, including "global.".
1476
1477 2010-04-06 John Wiegley <jwiegley@gmail.com>
1478
1479 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
1480 appearing in buffer list (if a live buffer name matched a recentf
1481 file basename). Should use uniquify to offer a real solution.
1482
1483 2010-04-06 John Wiegley <jwiegley@gmail.com>
1484
1485 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
1486 comment to code, and add a :version tag.
1487 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
1488
1489 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
1490
1491 Enable recentf-mode if using virtual buffers.
1492 * ido.el (recentf-list): Declare for byte-compiler.
1493 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
1494 (ido-make-buffer-list): Simplify.
1495 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
1496
1497 2010-04-05 Juri Linkov <juri@jurta.org>
1498
1499 Scrolling commands which scroll a line instead of full screen.
1500 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
1501
1502 * simple.el (scroll-up-line, scroll-down-line): New commands.
1503 Put property isearch-scroll=t on them.
1504
1505 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
1506 Remove commands.
1507
1508 2010-04-05 Juri Linkov <juri@jurta.org>
1509
1510 Scrolling commands which do not signal errors at top/bottom.
1511 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
1512
1513 * simple.el (scroll-up-command, scroll-down-command): New commands.
1514 Put property isearch-scroll=t on them.
1515
1516 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
1517 `scroll-down-command' and [next] from `scroll-up' to
1518 `scroll-up-command'.
1519
1520 * emulation/cua-base.el: Put property CUA=move on
1521 `scroll-up-command' and `scroll-down-command'.
1522 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
1523 and `scroll-down-command' to `cua-scroll-down'.
1524
1525 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
1526
1527 * help.el (describe-mode): Return nil.
1528
1529 2010-04-04 John Wiegley <jwiegley@gmail.com>
1530
1531 * ido.el (ido-use-virtual-buffers): New variable to indicate
1532 whether "virtual buffer" support is enabled for IDO.
1533 (ido-virtual): Face used to indicate virtual buffers in the list.
1534 (ido-buffer-internal): If a buffer is chosen, and no such buffer
1535 exists, but a virtual buffer of that name does (which would be why
1536 it was in the list), recreate the buffer by reopening the file.
1537 (ido-make-buffer-list): If virtual buffers are being used, call
1538 `ido-add-virtual-buffers-to-list' before the make list hook.
1539 (ido-virtual-buffers): New variable which contains a copy of the
1540 current contents of the `recentf-list', albeit pared down for the
1541 sake of speed, and with proper faces applied.
1542 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
1543 create a list of "virtual buffers" to present to the user in
1544 addition to the currently open set. Note that this logic could
1545 get rather slow if that list is too large. With the default
1546 `recentf-max-saved-items' of 200, there is little speed penalty.
1547
1548 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1549
1550 * font-lock.el: Require CL when compiling.
1551 (font-lock-turn-on-thing-lock): Use `case'.
1552
1553 2010-04-03 Eli Zaretskii <eliz@gnu.org>
1554
1555 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
1556 Zaretskii.
1557
1558 2010-04-02 Juanma Barranquero <lekktu@gmail.com>
1559
1560 * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
1561 (semantic-create-imenu-directory-index): Fix typos in docstrings.
1562 (semantic-imenu-goto-function): Reflow docstring.
1563
1564 2010-04-02 Juri Linkov <juri@jurta.org>
1565
1566 * ehelp.el (electric-help-orig-major-mode):
1567 New buffer-local variable.
1568 (electric-help-mode): Set it to original major-mode. Doc fix.
1569 (with-electric-help): Use `electric-help-orig-major-mode' instead
1570 of (default-value 'major-mode). Doc fix.
1571 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
1572
1573 2010-04-02 Sam Steingold <sds@gnu.org>
1574
1575 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
1576 `vc-hg-command' with a list of flags.
1577
1578 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1579 Also accept "patch" and "RFE".
1580 (bug-reference-fontify): `bug-reference-url-format' can also be a
1581 function to be able to handle the bug kind.
1582 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
1583
1584 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
1585
1586 * tmm.el (tmm-get-keymap): Check with symbolp before passing
1587 value to fboundp, it may not be a symbol.
1588
1589 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1590
1591 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
1592
1593 2010-03-31 Juri Linkov <juri@jurta.org>
1594
1595 * simple.el (next-line, previous-line): Re-throw a signal
1596 with `signal' instead of using `ding'.
1597 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
1598
1599 2010-03-31 Juri Linkov <juri@jurta.org>
1600
1601 * simple.el (keyboard-escape-quit): Raise deselecting the active
1602 region higher than exiting the minibuffer.
1603 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
1604
1605 2010-03-31 Juri Linkov <juri@jurta.org>
1606
1607 * image.el (image-animated-p): Use `image-metadata' instead of
1608 `image-extension-data'. Get GIF extenstion data from metadata
1609 property `extension-data'.
1610
1611 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1612
1613 * simple.el (append-to-buffer): Simplify.
1614
1615 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
1616
1617 * textmodes/artist.el (artist-mode): Fix typo in docstring.
1618 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
1619
1620 2010-03-31 Kenichi Handa <handa@m17n.org>
1621
1622 * language/sinhala.el (composition-function-table): Fix regexp for
1623 the new Unicode specification.
1624
1625 * language/indian.el (devanagari-composable-pattern)
1626 (tamil-composable-pattern, kannada-composable-pattern)
1627 (malayalam-composable-pattern): Adjust for the new Unicode
1628 specification.
1629 (bengali-composable-pattern, gurmukhi-composable-pattern)
1630 (gujarati-composable-pattern, oriya-composable-pattern)
1631 (telugu-composable-pattern): New variables to cope with the new
1632 Unicode specification. Use them in composition-function-table.
1633
1634 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1635
1636 Make tmm-menubar work for the Buffers menu again (bug#5726).
1637 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1638 vectors rather than cons cells, as used in menu-bar-update-buffers.
1639
1640 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1641
1642 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1643 (js-insert-and-indent): Revert 2009-08-15 change, restoring
1644 electric punctuation for "{}();,:" (Bug#5586).
1645
1646 * mail/sendmail.el (mail-default-directory): Doc fix.
1647
1648 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1649
1650 * mail/sendmail.el (mail-default-directory): Doc fix.
1651
1652 2010-03-31 Eli Zaretskii <eliz@gnu.org>
1653
1654 * subr.el (version-regexp-alist, version-to-list)
1655 (version-list-<, version-list-=, version-list-<=)
1656 (version-list-not-zero, version<, version<=, version=): Doc fix.
1657 (Bug#5744).
1658
1659 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
1660
1661 * vc.el (vc-root-diff): Doc fix.
1662
1663 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1664
1665 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1666
1667 * simple.el (append-to-buffer): Fix last change.
1668
1669 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1670
1671 * simple.el (append-to-buffer): Ensure that point is preserved if
1672 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
1673 (Bug#5749)
1674
1675 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1676
1677 * files.el (auto-mode-case-fold): Change default to t.
1678
1679 2010-03-30 Juri Linkov <juri@jurta.org>
1680
1681 * dired-x.el (dired-omit-mode): Doc fix.
1682
1683 2010-03-30 Juri Linkov <juri@jurta.org>
1684
1685 * replace.el (occur-accumulate-lines): Move occur-engine related
1686 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
1687 to be located after `occur-engine'.
1688
1689 2010-03-30 Juri Linkov <juri@jurta.org>
1690
1691 Make occur handle multi-line matches cleanly with context.
1692 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
1693
1694 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
1695 (occur-engine): Add local variables `ret', `prev-after-lines',
1696 `prev-lines'. Use more arguments for `occur-context-lines'.
1697 Set first elem of its returned list to `data', and the second elem
1698 to `prev-after-lines'. Don't print the separator line.
1699 In the end, print remaining context after-lines.
1700 (occur-context-lines): Add new arguments `begpt', `endpt',
1701 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
1702 after-lines of the previous match with before-lines of the
1703 current match and not overlap them. Return a list with two
1704 values: the output line and the list of context after-lines.
1705
1706 2010-03-30 Juri Linkov <juri@jurta.org>
1707
1708 * replace.el (occur-accumulate-lines): Fix a bug where the first
1709 context line at the beginning of the buffer was missing.
1710
1711 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1712
1713 * files.el: Make bidi-display-reordering safe variable for boolean
1714 values.
1715
1716 2010-03-29 Phil Hagelberg <phil@evri.com>
1717 Chong Yidong <cyd@stupidchicken.com>
1718
1719 * subr.el: Extend progress reporters to perform "spinning".
1720 (progress-reporter-update, progress-reporter-do-update):
1721 Handle non-numeric value arguments.
1722 (progress-reporter--pulse-characters): New var.
1723
1724 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
1725
1726 * progmodes/compile.el (compilation-start): Fix regexp detection
1727 of initial cd command (Bug#5771).
1728
1729 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
1730
1731 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
1732
1733 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
1734
1735 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
1736 * lisp/progmodes/gdb-mi.el: Restore.
1737 * lisp/progmodes/gdb-ui.el: Remove.
1738 * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
1739
1740 2010-03-25 Glenn Morris <rgm@gnu.org>
1741
1742 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1743 all dired buffers, even tramp ones. (Bug#5755)
1744
1745 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
1746
1747 Add "union tags" in mpc.el.
1748 * mpc.el: Remove backward compatibility code.
1749 (mpc-browser-tags): Change default.
1750 (mpc--find-memoize-union-tags): New var.
1751 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
1752 (mpc-cmd-find): Handle the case where the playlist does not exist.
1753 Handle union-tags.
1754 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
1755 (mpc-cmd-add): Use mpc-cmd-flush.
1756 (mpc-tagbrowser-tag-name): New fun.
1757 (mpc-tagbrowser-buf): Use it.
1758 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
1759
1760 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1761
1762 Misc cleanup.
1763 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
1764 Use replace-regexp-in-string.
1765 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
1766 (makefile-imake-mode-syntax-table): Move init into defvar.
1767 (makefile-mode): Use define-derived-mode.
1768
1769 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1770 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1771 not be present any more.
1772
1773 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1774
1775 * faces.el (set-face-attribute): Fix typo in docstring.
1776 (face-valid-attribute-values): Reflow docstring.
1777
1778 * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
1779
1780 2010-03-24 Glenn Morris <rgm@gnu.org>
1781
1782 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
1783
1784 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
1785
1786 * indent.el (indent-for-tab-command): Doc fix.
1787
1788 2010-03-24 Alan Mackenzie <acm@muc.de>
1789
1790 * progmodes/cc-engine.el (c-remove-stale-state-cache):
1791 Fix off-by-one error. Fixes bug #5747.
1792
1793 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1794
1795 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
1796 (image-dired-read-comment): Doc fix.
1797
1798 * json.el (json-object-type, json-array-type, json-key-type)
1799 (json-false, json-null, json-read-number):
1800 * minibuffer.el (completion-in-region-functions):
1801 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
1802 (cal-tex-cursor-week):
1803 * emacs-lisp/trace.el (trace-function):
1804 * eshell/em-basic.el (eshell/printnl):
1805 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
1806 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
1807 * obsolete/levents.el (allocate-event, event-key, event-object)
1808 (event-point, event-process, event-timestamp, event-to-character)
1809 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
1810 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
1811 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
1812 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
1813 (reftex-highlight-selection): Fix typos in docstrings.
1814
1815 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1816
1817 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
1818
1819 2010-03-24 Glenn Morris <rgm@gnu.org>
1820
1821 * mail/rmail.el (rmail-highlight-face): Restore option deleted
1822 2008-02-13 without comment; mark it obsolete.
1823 (rmail-highlight-headers): Use rmail-highlight-face once more.
1824
1825 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
1826
1827 * woman.el (woman2-process-escapes): Only consume the newline if
1828 the filler character is on a line by itself (Bug#5729).
1829
1830 2010-03-24 Kenichi Handa <handa@m17n.org>
1831
1832 * language/indian.el (devanagari-composable-pattern): Add more
1833 consonants.
1834
1835 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
1836
1837 * net/trampver.el: Update release number.
1838
1839 2010-03-24 Glenn Morris <rgm@gnu.org>
1840
1841 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
1842
1843 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
1844
1845 * net/tramp.el (tramp-find-executable):
1846 Use `tramp-get-connection-buffer'. Make the regexp for checking
1847 output of "wc -l" more robust.
1848 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
1849 (tramp-open-connection-setup-interactive-shell): Remove workaround
1850 for OpenSolaris bug, it is not needed anymore.
1851
1852 2010-03-24 Eric M. Ludlam <zappo@gnu.org>
1853
1854 * cedet/semantic/imenu.el: New file, from the CEDET repository
1855 (Bug#5412).
1856
1857 2010-03-24 Glenn Morris <rgm@gnu.org>
1858
1859 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
1860
1861 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
1862
1863 * files.el (auto-mode-alist): Accept more verilog file patterns.
1864
1865 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1866
1867 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
1868
1869 2010-03-24 Glenn Morris <rgm@gnu.org>
1870
1871 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
1872 log-edit-before-checkin-process.
1873
1874 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
1875
1876 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
1877
1878 * vc-dispatcher.el (vc-start-logentry): Doc fix.
1879 (log-view-process-buffer, log-edit-extra-flags): Declare.
1880
1881 * log-edit.el (log-edit-before-checkin-process): Doc fix.
1882
1883 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
1884 Consistently check ede-object is bound throughout.
1885
1886 * cedet/ede/project-am.el (ede-shell-run-something): Declare.
1887
1888 2010-03-23 Sam Steingold <sds@gnu.org>
1889
1890 Fix bug#5620: recalculate all markers on compilation buffer
1891 modifications, not on file modifications.
1892 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
1893 the buffer modification time, for buffers not associated with files.
1894 (compilation-mode): Create it.
1895 (compilation-filter): Update it.
1896 (compilation-next-error-function): Use it instead of
1897 `visited-file-modtime' for timestamp.
1898
1899 2010-03-23 Juri Linkov <juri@jurta.org>
1900
1901 Implement Occur multi-line matches.
1902 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
1903
1904 * replace.el (occur): Doc fix.
1905 (occur-engine): Set `begpt' to the beginning of the first line.
1906 Set `endpt' to the end of the last match line. At first, count
1907 line numbers between `origpt' and `begpt'. Split out code from
1908 `out-line' variable to new let-bindings `match-prefix' and
1909 `match-str'. In `out-line' add non-numeric prefix to all
1910 non-first lines of multi-line matches. Finally, count lines
1911 between `begpt' and `endpt' and add to `lines'.
1912
1913 2010-03-23 Juri Linkov <juri@jurta.org>
1914
1915 * replace.el (occur-accumulate-lines, occur-engine):
1916 Use `occur-engine-line' instead of duplicate code.
1917 (occur-engine-line): New function created from duplicate code
1918 in `occur-accumulate-lines' and `occur-engine'.
1919
1920 * replace.el (occur-engine-line): Add optional arg `keep-props'.
1921 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
1922
1923 2010-03-23 Juri Linkov <juri@jurta.org>
1924
1925 * finder.el: Remove TODO tasks.
1926
1927 * info.el (Info-finder-find-node): Add node "all"
1928 with all package info. Handle a list of multiple keywords
1929 separated by comma.
1930 (info-finder): In interactive use with a prefix argument,
1931 use `completing-read-multiple' to read a list of keywords
1932 separated by comma.
1933
1934 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
1935
1936 Add a new completion style `substring'.
1937 * minibuffer.el (completion-basic--pattern): New function.
1938 (completion-basic-try-completion, completion-basic-all-completions):
1939 Use it.
1940 (completion-substring--all-completions)
1941 (completion-substring-try-completion)
1942 (completion-substring-all-completions): New functions.
1943 (completion-styles-alist): New style `substring'.
1944
1945 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
1946
1947 Get rid of .elc files after removal of the corresponding .el.
1948 * Makefile.in (compile-clean): New target.
1949 (compile-main): Use it.
1950
1951 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
1952
1953 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
1954 don't do make there. When compiling with separate object dir, there
1955 is no Makefile there.
1956
1957 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
1958
1959 Get rid of the ELCFILES abomination, again.
1960 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
1961 (all, compile): Don't call compile-last.
1962 (compile-main): Build the "elcfiles" list dynamically.
1963 (compile-targets): New (internal) target.
1964
1965 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
1966
1967 * Makefile.in (top_srcdir): Define.
1968 (abs_top_builddir): Define.
1969 (srcdir): Don't append `/..'.
1970 (EMACS): Use ${abs_top_builddir}.
1971 (all, compile, compile-always, compile-last): Don't set emacswd.
1972 (update-subdirs, update-authors): Use $(top_srcdir) instead of
1973 $(srcdir).
1974 (lisp): Use $(srcdir) instead of @srcdir@.
1975
1976 2010-03-21 Juri Linkov <juri@jurta.org>
1977
1978 Fix message of multi-line occur regexps and multi-buffer header lines.
1979 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
1980
1981 * replace.el (occur-1): Don't display regexp if it is longer
1982 than window-width. Use `query-replace-descr' to display regexp.
1983 (occur-engine): Don't display regexp in the buffer header for
1984 multi-buffer occur. Display a separate header line with total
1985 match count and regexp for multi-buffer occur.
1986 Use `query-replace-descr' to display regexp.
1987
1988 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
1989
1990 * net/secrets.el: Fix parenthesis.
1991 (secrets-enabled): Fix parenthesis.
1992
1993 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
1994
1995 Use more relative file and directory names.
1996 * Makefile.in (EMACS): Arrange for it to work when we chdir.
1997 (setwins, setwins_almost, setwins_for_subdirs):
1998 Don't `cd'; output relative names.
1999 (all, compile, compile-always, compile-last): Set emacswd.
2000 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
2001 Just cd to the lisp source dir so we can use relative file names.
2002
2003 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
2004
2005 2010-03-20 Glenn Morris <rgm@gnu.org>
2006
2007 * textmodes/rst.el: Use faces for font-lock customization, and make the
2008 old -face variables obsolete.
2009 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
2010 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
2011 (rst-block-face, rst-external-face, rst-definition-face)
2012 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
2013 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
2014 Make obsolete.
2015 (rst-font-lock-keywords-function): Update for above changes.
2016
2017 2010-03-20 Juri Linkov <juri@jurta.org>
2018
2019 * s-region.el:
2020 * obsolete/s-region.el: Move to obsolete.
2021
2022 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
2023
2024 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
2025
2026 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
2027
2028 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
2029
2030 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
2031
2032 Add special markup processing for commit logs.
2033 * log-edit.el (log-edit-extra-flags): New variable.
2034 (log-edit): Add new argument MODE. Use that mode when non-nil
2035 instead of the log-view-mode.
2036 (log-view-process-buffer): New function.
2037
2038 * vc.el: Document that the checkin method takes optional
2039 arguments. Document new backend specific method: log-view-mode.
2040 (vc-default-log-edit-mode): New function.
2041 (vc-checkin): Use a backend specific log-view-mode.
2042 Pass extra arguments to the checkin method.
2043 (vc-modify-change-comment): Pass a dummy extra argument.
2044
2045 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
2046 log-edit.
2047 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
2048 (vc-finish-logentry): Process the log buffer before passing it
2049 down. Pass log-edit-extra-flags.
2050
2051 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
2052 command.
2053 (log-edit-extra-flags, log-edit-before-checkin-process):
2054 New declarations.
2055
2056 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
2057 command.
2058 (log-edit-extra-flags, log-edit-before-checkin-process):
2059 New declarations.
2060 (vc-hg-log-edit-mode): New derived mode.
2061
2062 * vc-arch.el (vc-arch-checkin):
2063 * vc-cvs.el (vc-cvs-checkin):
2064 * vc-git.el (vc-git-checkin):
2065 * vc-mtn.el (vc-mtn-checkin):
2066 * vc-rcs.el (vc-rcs-checkin):
2067 * vc-sccs.el (vc-sccs-checkin):
2068 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
2069
2070 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
2071
2072 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
2073 parent typo).
2074
2075 2010-03-19 Glenn Morris <rgm@gnu.org>
2076
2077 * password-cache.el (password-cache, password-cache-expiry): Autoload.
2078
2079 2010-03-18 Glenn Morris <rgm@gnu.org>
2080
2081 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
2082
2083 * replace.el (query-replace-history): Give it a doc string.
2084 (map-query-replace-regexp): Use query-replace-from-history-variable
2085 and query-replace-to-history-variable.
2086
2087 * mail/hashcash.el (declare-function): Remove duplicate definition.
2088
2089 * mail/emacsbug.el (report-emacs-bug-pretest-address):
2090 Make it an obsolete alias for report-emacs-bug-address.
2091 (message-strip-special-text-properties): Declare.
2092 (report-emacs-bug): Remove test for a pretest bug address.
2093 Combine message-mode-specific code.
2094
2095 * mail/supercite.el: Don't require sendmail.
2096 (mh-in-header-p): Declare rather than using with-no-warnings.
2097 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
2098 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
2099
2100 * calendar/cal-french.el: Convert to utf-8.
2101
2102 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
2103 Emacs scripts.
2104
2105 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
2106
2107 * net/secrets.el (secrets-enabled): New variable. Use it instead
2108 of a subfeature.
2109
2110 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
2111
2112 * net/secrets.el (top): Register the D-Bus signals only when the
2113 service "org.freedesktop.secrets" can be pinged.
2114 Provide subfeature `enabled'.
2115
2116 2010-03-14 Juri Linkov <juri@jurta.org>
2117
2118 Add finder unknown keywords.
2119
2120 * finder.el (finder-unknown-keywords): New function.
2121
2122 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
2123 to create a Finder node with unknown keywords.
2124
2125 2010-03-14 Juri Linkov <juri@jurta.org>
2126
2127 * finder.el (finder-compile-keywords): Replace `princ' with
2128 `prin1' on a list of symbols interned from keyword strings.
2129
2130 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
2131 a comma, then split keywords using a comma and optional whitespace.
2132 Otherwise, split by whitespace.
2133
2134 * complete.el:
2135 * face-remap.el:
2136 * log-view.el:
2137 * net/hmac-def.el:
2138 * net/hmac-md5.el:
2139 * net/netrc.el:
2140 * progmodes/mixal-mode.el: Fix keywords.
2141
2142 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
2143
2144 * Makefile.in (ELCFILES): Add net/secrets.elc.
2145
2146 * net/secrets.el: New file.
2147
2148 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
2149
2150 * facemenu.el (list-colors-display, list-colors-print): New arg
2151 callback. Use it to allow selecting colors.
2152
2153 * wid-edit.el (widget-image-insert): Insert image prop even if the
2154 current display is non-graphic.
2155 (widget-field-value-set): New fun.
2156 (editable-field): Use it.
2157 (widget-field-value-get): Clean up unused var.
2158 (widget-color-value-create, widget-color--choose-action):
2159 New funs. Allow using list-colors-display to choose color.
2160
2161 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
2162
2163 * cus-edit.el: Resort topmost custom groups.
2164 (custom-buffer-sort-alphabetically): Default to t.
2165 (customize-apropos): Use apropos-parse-pattern.
2166 (custom-search-field): New var.
2167 (custom-buffer-create-internal): Add custom-apropos search field.
2168 (custom-add-parent-links): Don't display parent doc.
2169 (custom-group-value-create): Don't sort top-level custom group.
2170 (custom-magic-value-create): Show visibility button before option name.
2171
2172 (custom-variable-state): New fun, from custom-variable-state-set.
2173 (custom-variable-state-set): Use it.
2174 (custom-group-value-create): Hide options with standard values
2175 using the :hidden-states property. Use progress reporter.
2176
2177 (custom-show): Simplify.
2178 (custom-visibility): Disable images by default.
2179 (custom-variable): New property :hidden-states.
2180 (custom-variable-value-create): Enable images for
2181 custom-visibility widgets. Use :hidden-states property to
2182 determine initial visibility.
2183
2184 * wid-edit.el (widget-image-find): Give images center ascent.
2185 (visibility): Add :on-image and :off-image properties.
2186 (widget-visibility-value-create): Use them.
2187
2188 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
2189
2190 * cus-edit.el (processes): Remove from development group.
2191 (oop, hypermedia): Delete group.
2192 (comm): Promote to top-level group.
2193
2194 * net/browse-url.el (browse-url):
2195 * net/xesam.el (xesam):
2196 * net/tramp.el (tramp):
2197 * net/goto-addr.el (goto-address):
2198 * net/ange-ftp.el (ange-ftp): Put in comm group.
2199
2200 * view.el (view): Remove from editing group.
2201
2202 * uniquify.el (uniquify): Put in files group.
2203
2204 * net/browse-url.el (browse-url):
2205 * ps-print.el (postscript): Put in external group.
2206
2207 * cus-edit.el (outlines):
2208 * textmodes/text-mode.el (text-mode-hook):
2209 * textmodes/table.el (table):
2210 * textmodes/picture.el (picture):
2211 * outline.el (outlines): Put in wp group.
2212
2213 * nxml/nxml-mode.el (nxml): Remove from wp group.
2214
2215 * net/tramp-imap.el (tramp-imap): Put in tramp group.
2216
2217 * mail/metamail.el (metamail): Remove from hypermedia group.
2218
2219 * cus-edit.el (abbrev):
2220 * whitespace.el (whitespace):
2221 * vcursor.el (vcursor):
2222 * reveal.el (reveal):
2223 * hl-line.el (hl-line): Put in convenience group.
2224
2225 * epg-config.el (epg): Put in data group.
2226
2227 * emulation/pc-select.el (pc-select): Put in emulations group.
2228
2229 * calculator.el (calculator): Put in applications group.
2230
2231 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
2232
2233 Add .dir-locals.el support for file-less buffers.
2234 * files.el (hack-local-variables): Split out code to apply local
2235 variable settings ...
2236 (hack-local-variables-apply): ... here. New function.
2237 (hack-dir-local-variables): Use the default directory for when the
2238 buffer does not have an associated file.
2239 (hack-dir-local-variables-non-file-buffer): New function.
2240 * diff-mode.el (diff-mode):
2241 * vc-annotate.el (vc-annotate-mode):
2242 * vc-dir.el (vc-dir-mode):
2243 * log-edit.el (log-edit-mode):
2244 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
2245
2246 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
2247
2248 Add support for shelving snapshots and for showing shelves.
2249 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
2250 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
2251 New functions.
2252 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
2253 (vc-bzr-extra-menu-map): Map them.
2254
2255 2010-03-11 Glenn Morris <rgm@gnu.org>
2256
2257 * cus-edit.el (customize-changed-options-previous-release):
2258 Bump to 23.1.
2259
2260 * image.el (image-animate-max-time): Fix :version tag.
2261
2262 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
2263
2264 * Branch for 23.2.
2265
2266 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2267
2268 * vc-git.el (vc-git-revision-table): Include remote branches.
2269
2270 2010-03-10 Kim F. Storm <storm@cua.dk>
2271
2272 Animated image API.
2273 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
2274
2275 * image.el (image-animate-max-time): New defcustom.
2276 (image-animated-types): New defconst.
2277 (create-animated-image, image-animate-timer)
2278 (image-animate-start, image-animate-stop, image-animate-timeout)
2279 (image-animated-p): New functions.
2280
2281 * image-mode.el (image-toggle-display-image):
2282 Replace `create-image' with `create-animated-image'.
2283
2284 2010-03-09 Miles Bader <miles@gnu.org>
2285
2286 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
2287 instead of "format:"; this ensures that the output is
2288 newline-terminated.
2289
2290 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
2291
2292 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
2293 that all errors are caught, and that the return value is always a
2294 list (Bug#5692).
2295
2296 2010-03-08 Kenichi Handa <handa@m17n.org>
2297
2298 * language/misc-lang.el (windows-1256): New coding system.
2299 (cp1256): New alias of windows-1256 (bug#5690).
2300
2301 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
2302
2303 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
2304 call to rfc822-bad-address. (Bug#5692)
2305
2306 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
2307
2308 * vc-git.el (vc-git-annotate-extract-revision-at-line):
2309 Use vc-git-root as default directory for revision path (Bug#5657).
2310
2311 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
2312
2313 * calculator.el (calculator): Don't bind split-window-keep-point
2314 (Bug#5674).
2315
2316 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
2317
2318 * vc-git.el: Re-flow to fit into 80 columns.
2319 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
2320 Remove spurious `quote' element in each case alternative.
2321 (vc-git-show-log-entry): Use prog1.
2322 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
2323
2324 2010-03-06 Glenn Morris <rgm@gnu.org>
2325
2326 * cedet/semantic/grammar.el (semantic-grammar-header-template):
2327 Update template copyright to GPLv3+.
2328
2329 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2330
2331 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
2332
2333 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
2334
2335 * macros.el (insert-kbd-macro): Look up keyboard macro using the
2336 definition, not the name (Bug#5481).
2337
2338 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
2339
2340 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
2341 argument with a local variable. (Bug#5670)
2342
2343 2010-03-02 Juri Linkov <juri@jurta.org>
2344
2345 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
2346
2347 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
2348
2349 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
2350 error when FILENAME and NEWNAME are existing remote directories.
2351
2352 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
2353 parameter DIR-FLAG.
2354
2355 2010-03-02 Glenn Morris <rgm@gnu.org>
2356
2357 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
2358 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
2359
2360 2010-03-01 Kenichi Handa <handa@m17n.org>
2361
2362 * language/burmese.el (burmese-composable-pattern): Rename from
2363 myanmar-composable-pattern.
2364
2365 * international/characters.el (script-list):
2366 * international/fontset.el (script-representative-chars):
2367 Change myanmar to burmese.
2368 (otf-script-alist): Likewise.
2369 (setup-default-fontset): Likewise. Re-fix :otf spec.
2370
2371 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
2372
2373 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
2374
2375 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
2376
2377 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
2378
2379 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
2380
2381 * net/tramp.el (tramp-handle-write-region): START can be a string.
2382 Take care in the checks. Reported by Dan Davison
2383 <davison@stats.ox.ac.uk>.
2384
2385 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
2386
2387 * net/dbus.el (dbus-introspect, dbus-get-property)
2388 (dbus-set-property, dbus-get-all-properties):
2389 Use `dbus-call-method' when noninteractive. (Bug#5645)
2390
2391 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
2392
2393 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
2394 * emacs-lisp/elint.el (elint-add-required-env):
2395 * cedet/semantic/db-find.el
2396 (semanticdb-find-translate-path-brutish-default):
2397 * cedet/ede/make.el (ede-make-check-version):
2398 * calendar/icalendar.el (icalendar--add-diary-entry):
2399 * calc/calcalg2.el (math-tracing-integral):
2400 * files.el (recover-session-finish): Use with-current-buffer
2401 instead of save-excursion.
2402
2403 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
2404
2405 Fix in-buffer completion when after-change-functions modify the buffer.
2406 * minibuffer.el (completion--replace): New function.
2407 (completion--do-completion): Use it and use relative movement.
2408
2409 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
2410
2411 * international/fontset.el (setup-default-fontset): Fix :otf spec.
2412
2413 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
2414
2415 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
2416 Allow the characters _<> in the stack entry (Bug#5653).
2417
2418 2010-02-26 Kenichi Handa <handa@m17n.org>
2419
2420 * language/burmese.el: Fix entries in composition-function-table.
2421 (myanmar-composable-pattern): New variable.
2422
2423 * international/fontset.el (setup-default-fontset): Add an entry
2424 for myanmar.
2425
2426 * international/characters.el (script-list): Add Myanmar
2427 Extended-A.
2428
2429 2010-02-26 Glenn Morris <rgm@gnu.org>
2430
2431 * custom.el (custom-initialize-delay): Doc fix.
2432
2433 * mail/sendmail.el (send-mail-function): Autoload the call
2434 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
2435
2436 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
2437
2438 * files.el (hack-local-variables-filter): For eval forms, also
2439 check safe-local-variable-p (Bug#5636).
2440
2441 2010-02-24 Eduard Wiebe <usenet@pusto.de>
2442
2443 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
2444 and use c(ad)r of cddr (Bug#5640).
2445
2446 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
2447
2448 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
2449 setting the modes by `ignore-errors'. It might fail, for example
2450 if the file is not owned by the user but the group.
2451 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
2452
2453 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2454
2455 * files.el (directory-listing-before-filename-regexp): Use
2456 stricter matching for iso-style dates, to avoid false matches with
2457 date-like filenames (Bug#5597).
2458
2459 * htmlfontify.el (htmlfontify): Doc fix.
2460
2461 * eshell/eshell.el (eshell): Doc fix.
2462
2463 * startup.el (fancy-about-screen): In mode-line, apply
2464 mode-line-buffer-id face only to the buffer name (Bug#5613).
2465
2466 2010-02-20 Kevin Ryde <user42@zip.com.au>
2467
2468 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2469 In `watcom' anchor regexp to start of line, to avoid slowness
2470 (Bug#5599).
2471
2472 2010-02-20 Eli Zaretskii <eliz@gnu.org>
2473
2474 * subr.el (remove-yank-excluded-properties): Explain in a comment
2475 why `category' property is removed.
2476
2477 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
2478
2479 * isearch.el (isearch-update-post-hook, isearch-update): Revert
2480 2010-02-17 change.
2481
2482 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
2483
2484 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
2485 (icalendar--convert-weekly-to-ical)
2486 (icalendar--convert-yearly-to-ical)
2487 (icalendar--convert-block-to-ical)
2488 (icalendar--convert-cyclic-to-ical)
2489 (icalendar--convert-anniversary-to-ical): Take care of time
2490 specifications where hour has 1-digit only (Bug#5549).
2491
2492 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
2493
2494 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
2495 of disassemble output in GDB 7.1.
2496
2497 2010-02-19 Glenn Morris <rgm@gnu.org>
2498
2499 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
2500 property. (Bug#5593)
2501
2502 2010-02-18 Sam Steingold <sds@gnu.org>
2503
2504 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
2505
2506 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2507
2508 Use abbreviated file names in bookmarks (bug#5591).
2509 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
2510 calls to expand-file-name.
2511 (bookmark-relocate): Use abbreviated file names in bookmarks.
2512 (bookmark-load): Use abbreviated file names in messages.
2513
2514 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2515
2516 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
2517 expand "." and "..". Reported by Thierry Volpiatto
2518 <thierry.volpiatto@gmail.com>.
2519
2520 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2521
2522 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
2523 permissions of the temporary file to "0600". In case the remote
2524 file has no read permissions for the owner, there might be
2525 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
2526
2527 22010-02-18 Glenn Morris <rgm@gnu.org>
2528
2529 * emacs-lisp/authors.el (authors-renamed-files-alist):
2530 Add entries for INSTALL.CVS.
2531
2532 2010-02-17 Mark A. Hershberger <mah@everybody.org>
2533
2534 * vc-bzr.el: Fix typo in Known Bugs section.
2535
2536 * isearch.el (isearch-update-post-hook): New hook.
2537 (isearch-update): Use the new hook.
2538
2539 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
2540
2541 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
2542 Fix errors in copying directories.
2543 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
2544 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
2545 (tramp-handle-delete-file)
2546 (tramp-handle-dired-recursive-delete-directory)
2547 (tramp-handle-write-region): Flush also the cache for the upper
2548 directory.
2549
2550 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
2551
2552 * simple.el (save-interprogram-paste-before-kill): Doc fix.
2553
2554 * cus-edit.el (hardware): Doc fix.
2555
2556 * man.el (man): Add to external custom group.
2557
2558 * delim-col.el (columns): Move to wp custom group.
2559
2560 * doc-view.el (doc-view): Add to data custom group.
2561
2562 * cedet/data-debug.el (data-debug): Move to extensions group.
2563
2564 * cedet/ede.el (ede):
2565 * cedet/srecode.el (srecode):
2566 * cedet/semantic.el (semantic): Put in tools and extensions group.
2567
2568 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
2569
2570 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
2571 by ispell-parse-output (Bug#5575).
2572
2573 2010-02-16 Kenichi Handa <handa@m17n.org>
2574
2575 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
2576 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
2577 (skkdic-convert): Use `euc-japan' coding system for writing.
2578
2579 2010-02-16 Glenn Morris <rgm@gnu.org>
2580
2581 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
2582 tex-main-file before using it. (Bug#5562)
2583
2584 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
2585
2586 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
2587 warnings, since it is annoying for the user to see them each time he
2588 runs the code.
2589
2590 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
2591
2592 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
2593 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
2594 instead of PROC for caching "first-password-request". Otherwise,
2595 new processes would not profit from passwords already entered.
2596
2597 * net/tramp-cache.el (tramp-dump-connection-properties):
2598 Don't save "first-password-request" property.
2599
2600 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
2601
2602 * outline.el (outline-head-from-level):
2603 * simple.el (with-wrapper-hook):
2604 * cedet/ede.el (ede-run-target, project-delete-target)
2605 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
2606 (ede-adebug-project, ede-adebug-project-parent)
2607 (ede-adebug-project-root):
2608 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
2609 (elint-defun, elint-buffer-env, elint-top-form-logged)
2610 (elint-unbound-variable):
2611 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
2612 Fix typos in docstrings.
2613
2614 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
2615
2616 * files.el (insert-directory): When WILDCARD-REGEXP and
2617 FULL-DIRECTORY-P are nil, insert the file entry instead of the
2618 whole directory. (Bug#5551)
2619
2620 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
2621 dired's alignment sanity. (Bug#5516)
2622
2623 2010-02-14 Juri Linkov <juri@jurta.org>
2624
2625 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
2626 Remove remaining ^H with their preceding chars. (Bug#5566)
2627
2628 2010-02-13 Glenn Morris <rgm@gnu.org>
2629
2630 * simple.el (transpose-subr): Give it a doc-string.
2631
2632 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
2633 Doc fixes.
2634
2635 2010-02-12 Juri Linkov <juri@jurta.org>
2636
2637 * arc-mode.el (archive-unique-fname): Make directories for nested
2638 archives. (Bug#5540)
2639
2640 2010-02-12 Juri Linkov <juri@jurta.org>
2641
2642 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
2643
2644 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2645
2646 * subr.el (copy-overlay): Handle deleted overlays.
2647
2648 * man.el (Man-completion-table): Don't signal an error if we can't run
2649 manual-program (bug#4056).
2650
2651 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
2652
2653 * textmodes/artist.el (artist-mt): Fix typos in docstring.
2654
2655 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2656
2657 * info.el (Info-bookmark-jump): Simplify.
2658
2659 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
2660 (bookmark-default-handler): Accept new bookmark field `buffer'.
2661
2662 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
2663
2664 * iswitchb.el (iswitchb-completions): Revert last change.
2665
2666 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
2667
2668 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
2669 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
2670 This prevents file names like "~/" being listed literally.
2671
2672 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
2673
2674 * term/xterm.el (xterm-maybe-set-dark-background-mode):
2675 Remove dead code. (Bug#5546)
2676
2677 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
2678
2679 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
2680 correctly (Bug#5548).
2681
2682 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
2683
2684 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
2685 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
2686
2687 2010-02-08 Kenichi Handa <handa@m17n.org>
2688
2689 * international/mule-util.el (with-coding-priority): Add autoload
2690 cookie for putting `lisp-indent-function'.
2691
2692 2010-02-07 Glenn Morris <rgm@gnu.org>
2693
2694 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
2695 Move F2003 named interfaces from keywords-2 to keywords-1, and
2696 use function-name-face rather than constant-face.
2697 Simplify "abstract interface" regexp.
2698
2699 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
2700
2701 * eshell/esh-util.el (eshell-file-attributes): New optional arg
2702 ID-FORMAT. Pass it to `file-attributes'.
2703
2704 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
2705
2706 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
2707
2708 * faces.el (set-face-attribute): Allow calling
2709 internal-set-lisp-face-attribute with 'unspecified family and
2710 foundry argument (Bug#5536).
2711
2712 2010-02-07 Glenn Morris <rgm@gnu.org>
2713
2714 * progmodes/f90.el (f90-font-lock-keywords-2)
2715 (f90-looking-at-type-like, f90-looking-at-program-block-end):
2716 Handle F2003 named interfaces.
2717
2718 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2719
2720 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
2721 beg and end before calling c-get-state-before-change-functions.
2722
2723 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
2724
2725 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
2726
2727 2010-02-05 Juri Linkov <juri@jurta.org>
2728
2729 * doc-view.el (doc-view-mode):
2730 * image-mode.el (image-mode): Put property mode-class=special.
2731 (Bug#4896)
2732
2733 2010-02-05 Mark A. Hershberger <mah@everybody.org>
2734
2735 * vc-svn.el (vc-svn-revision-table): New function.
2736
2737 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
2738
2739 * net/ange-ftp.el (ange-ftp-insert-directory):
2740 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2741 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2742 Handle also directories. (Bug#5478)
2743
2744 2010-02-05 Glenn Morris <rgm@gnu.org>
2745
2746 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
2747
2748 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2749
2750 * startup.el (command-line-1): Convert options beginning with a
2751 single dash as well (Bug#5519).
2752
2753 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
2754
2755 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
2756 * minibuffer.el (completion-initials-expand): Only check the presence
2757 of delims *within* the boundaries, since otherwise the / delim is
2758 always found for files.
2759
2760 Fix up various corner case problems.
2761 * doc-view.el (doc-view-last-page-number): New function.
2762 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
2763 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
2764 (doc-view-kill-proc): Avoid inf-loop in freak cases.
2765 (doc-view-reconvert-doc): Use the new recursive delete-directory.
2766 (doc-view-convert-current-doc): Don't create the resolution.el file
2767 here any more.
2768 (doc-view-pdf/ps->png): Do it here instead.
2769 (doc-view-already-converted-p): Check that resolution.el is present.
2770 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
2771 windows that are not yet showing images.
2772
2773 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
2774
2775 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
2776 `dired-uncache' for every elemnt which is an absolute file name.
2777
2778 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
2779 directory, handle its directory component.
2780 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
2781 function is called permanently and creates noise, otherwise.
2782
2783 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2784 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2785 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
2786
2787 2010-02-04 David Burger <dburger@google.com> (tiny change)
2788
2789 * macros.el (apply-macro-to-region-lines):
2790 Minor simplification. (Bug#5485)
2791
2792 2010-02-04 Glenn Morris <rgm@gnu.org>
2793
2794 * mail/rmail.el (rmail-show-message-1): Handle malformed
2795 quoted-printable text. (Bug#5441)
2796
2797 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
2798
2799 * simple.el (visual-line-mode): Capitalize lighter.
2800
2801 2010-02-03 John Wiegley <jwiegley@gmail.com>
2802
2803 * iswitchb.el (iswitchb-completions): Add bookmark files to the
2804 list of files considered for "virtual buffer" completions.
2805
2806 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
2807
2808 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
2809 also in case of (and (not full) (not wildcard)). This is needed,
2810 when dired is called with a list of files, which are not in
2811 `default-directory'. (Bug#5478)
2812
2813 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
2814
2815 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
2816
2817 2010-02-02 Juri Linkov <juri@jurta.org>
2818
2819 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
2820 from unidiff to allow function-line after @@.
2821
2822 2010-02-02 Juri Linkov <juri@jurta.org>
2823
2824 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
2825 '(RCS SCCS) with inverted condition.
2826
2827 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
2828
2829 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
2830 messages.
2831
2832 2010-02-01 Juri Linkov <juri@jurta.org>
2833
2834 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
2835 compare with "pkunzip" and "pkzip" instead of only "pkzip".
2836 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
2837 only when (car archive-zip-extract) is "unzip". (Bug#5475)
2838
2839 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2840
2841 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
2842 (doc-view-revert-buffer): New command.
2843 (doc-view-mode-map): Use it.
2844
2845 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
2846
2847 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
2848 pending merge is detected.
2849
2850 2010-01-31 Juri Linkov <juri@jurta.org>
2851
2852 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
2853 beginning of interactive spec like all other grep commands do.
2854 Put "all" in front of "gz". (Bug#5260)
2855
2856 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
2857
2858 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
2859
2860 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2861
2862 * dirtrack.el (dirtrack): Warn instead of signalling error if the
2863 regexp is incorrect (Bug#5476).
2864
2865 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
2866
2867 * net/tramp.el (tramp-handle-insert-directory): Handle also
2868 symlinks, when FILENAME is not in `default-directory'.
2869
2870 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2871
2872 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
2873 FILE is not in `default-directory'. (Bug#5478)
2874
2875 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
2876 of SWITCHES. Handle the case, FILENAME is not in
2877 `default-directory'. (Bug#5478)
2878 (tramp-register-file-name-handlers): Add safe-magic property.
2879
2880 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2881
2882 * arc-mode.el (archive-zip-extract): Quote the argument passed to
2883 unzip (Bug#5475).
2884
2885 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
2886
2887 * progmodes/flymake.el (flymake-allowed-file-name-masks)
2888 (flymake-master-make-header-init): Add other C++ filename masks.
2889 (flymake-find-possible-master-files)
2890 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
2891
2892 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2893
2894 Fix some busybox annoyances.
2895
2896 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
2897 not responding." string.
2898 (tramp-open-connection-setup-interactive-shell): Dump stty
2899 settings. Enable "neveropen" arg for all `tramp-send-command'
2900 calls. Handle "=" in variable values properly.
2901 (tramp-find-inline-encoding): Raise an error, when no encoding is
2902 found.
2903 (tramp-wait-for-output): Check, whether PROC buffer is available.
2904 Remove spurious " ^H" sequences, sent by busybox.
2905 (tramp-get-ls-command): Suppress coloring, if possible.
2906
2907 2010-01-28 Glenn Morris <rgm@gnu.org>
2908
2909 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
2910
2911 * log-edit.el (log-edit-strip-single-file-name): Add missing
2912 :safe, :group, and :version tags.
2913
2914 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
2915
2916 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
2917 buffers. (Bug#5477)
2918
2919 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2920
2921 * files.el (delete-directory): Handle moving to trash without
2922 first doing recursion (Bug#5436).
2923
2924 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
2925
2926 * vc-hooks.el (vc-path): Mark as obsolete.
2927
2928 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
2929
2930 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
2931 names too.
2932
2933 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
2934 for the short log.
2935 (vc-bzr-log-view-mode): Adjust regexp for the above change.
2936
2937 2010-01-25 Mark A. Hershberger <mah@everybody.org>
2938
2939 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
2940
2941 * vc-bzr.el (vc-bzr-revision-table): New function.
2942
2943 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
2944
2945 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
2946 diff-index command. This requires at least git-1.5.5. (Bug#1589).
2947
2948 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
2949
2950 Remove support for adding --signoff on commit.
2951 Future support will use an incompatible generic mechanism.
2952 * vc-git.el (vc-git-add-signoff): Remove variable.
2953 (vc-git-toggle-signoff): Remove function.
2954 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
2955
2956 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
2957 from xterm-set-background-mode. Return t if the background mode
2958 was set.
2959 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2960 earlier, call it again in case the background mode has changed.
2961
2962 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
2963
2964 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2965 (Bug#3541).
2966
2967 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
2968
2969 * emacs-lisp/assoc.el (aelement): Doc fix.
2970 (aput, adelete, amake): Use lexical-let (Bug#5450).
2971
2972 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
2973
2974 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2975 is the same as subprogram call, not declaration. (Bug#5435).
2976
2977 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
2978
2979 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2980 (tramp-smb-maybe-open-connection): Use it.
2981
2982 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
2983
2984 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
2985
2986 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2987
2988 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2989 just because we see "encoding: 8bit".
2990 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2991
2992 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
2993
2994 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2995
2996 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2997
2998 * jka-compr.el (jka-compr-load): If load-file is not in
2999 load-history, try its file-truename version. (bug#5447)
3000
3001 2010-01-21 Alan Mackenzie <acm@muc.de>
3002
3003 Fix a situation where deletion of a cpp construct throws an error.
3004 * progmodes/cc-engine.el (c-invalidate-state-cache): Before
3005 invoking c-with-all-but-one-cpps-commented-out, check that the
3006 special cpp construct is still in the buffer.
3007 (c-parse-state): Record the special cpp with markers, not numbers.
3008
3009 2010-01-21 Kenichi Handa <handa@m17n.org>
3010
3011 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
3012 process last-command-event, as it is now decoded first (Bug#5380).
3013
3014 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
3015
3016 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
3017
3018 2010-01-20 Glenn Morris <rgm@gnu.org>
3019
3020 * indent.el (tab-always-indent): Fix custom-type.
3021
3022 2010-01-19 Alan Mackenzie <acm@muc.de>
3023
3024 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
3025 buffer throws "args out of range".
3026 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
3027 playing the role of delimiter.
3028
3029 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
3030
3031 * progmodes/ada-mode.el: Fix bug#5400.
3032 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
3033 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
3034 changed. Delete RECURSIVE parameter; never used. Improve doc string.
3035 Improve comments in "is" portion. Handle null procedure declaration.
3036 (ada-move-to-end): Improve doc string.
3037
3038 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
3039
3040 * ido.el (ido-cur-list): Initialize to nil.
3041 Remove obsolete information from commentary.
3042 (ido-choice-list): Initialize to nil.
3043 (ido-get-bufname): Reject minibuffers.
3044 (ido-make-buffer-list): If "default" is a nonexistent
3045 buffer, ignore it, as per the function's comment.
3046 (ido-kill-buffer-internal): New function.
3047 (ido-kill-buffer-at-head): Use it.
3048 (ido-visit-buffer): Likewise.
3049
3050 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
3051
3052 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
3053
3054 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
3055
3056 * cedet/ede/locate.el (ede-locate-file-in-project)
3057 (ede-locate-file-in-project-impl): Fix typos in docstrings.
3058 (ede-enable-locate-on-project): Fix typos in error messages.
3059
3060 * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
3061 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
3062 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
3063 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
3064 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
3065 Fix typos in menu help.
3066
3067 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
3068 Fix typos in chart titles.
3069
3070 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
3071 * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
3072 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
3073 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
3074 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
3075 (semantic-parse-stream, semantic-parse-region)
3076 (semantic-parse-region-default, semantic--set-buffer-cache)
3077 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
3078 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
3079 (semantic-default-submodes):
3080 * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
3081 (semanticdb-create-ebrowse-database)
3082 (semanticdb-find-tags-for-completion-method)
3083 (semanticdb-find-tags-by-class-method)
3084 (semanticdb-deep-find-tags-by-name-method)
3085 (semanticdb-deep-find-tags-for-completion-method):
3086 * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
3087 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
3088 (semanticdb-find-tags-for-completion-method)
3089 (semanticdb-find-tags-by-class-method)
3090 (semanticdb-deep-find-tags-for-completion-method):
3091 * cedet/semantic/db-find.el (semanticdb-find-translate-path)
3092 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
3093 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
3094 (semanticdb-find-tags-by-name-method)
3095 (semanticdb-find-tags-by-name-regexp-method)
3096 (semanticdb-find-tags-for-completion-method)
3097 (semanticdb-find-tags-by-class-method)
3098 (semanticdb-find-tags-external-children-of-type-method)
3099 (semanticdb-find-tags-subclasses-of-type-method)
3100 (semanticdb-deep-find-tags-by-name-method)
3101 (semanticdb-deep-find-tags-by-name-regexp-method)
3102 (semanticdb-deep-find-tags-for-completion-method):
3103 * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
3104 (semanticdb-enable-gnu-global-in-buffer)
3105 (semanticdb-find-tags-for-completion-method)
3106 (semanticdb-deep-find-tags-by-name-method)
3107 (semanticdb-deep-find-tags-for-completion-method):
3108 * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
3109 (javascript-mode, semanticdb-find-translate-path)
3110 (semanticdb-find-tags-for-completion-method)
3111 (semanticdb-find-tags-by-class-method)
3112 (semanticdb-deep-find-tags-by-name-method)
3113 (semanticdb-deep-find-tags-for-completion-method)
3114 (semanticdb-find-tags-external-children-of-type-method):
3115 * cedet/semantic/idle.el (semantic-idle-work-core-handler)
3116 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
3117 (global-semantic-idle-scheduler-mode):
3118 * cedet/srecode/dictionary.el (srecode-field-value)
3119 (srecode-dictionary-add-section-dictionary):
3120 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
3121 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
3122 (describe-class, eieio-describe-generic, describe-generic):
3123 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
3124 (eieio-speedbar-expand):
3125 * emulation/viper-cmd.el (viper-exec-form-in-vi)
3126 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
3127 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
3128 (viper-del-backward-char-in-replace, viper-backward-indent)
3129 (viper-brac-function, viper-register-to-point, viper-submit-report):
3130 * net/tramp.el (tramp-remote-coding-commands):
3131 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
3132 Fix typos in docstrings.
3133
3134 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
3135
3136 * mail/sendmail.el (mail-yank-original): Set the mark if the
3137 specified function for yanking does not do it.
3138
3139 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
3140
3141 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
3142
3143 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
3144 resyncing a directory.
3145
3146 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
3147
3148 * progmodes/ada-mode.el: Fix bug#1920.
3149 (ada-ident-re): Delete ., allow multibyte characters.
3150 (ada-goto-label-re): New; matches goto labels.
3151 (ada-block-label-re): New; matches block labels.
3152 (ada-label-re): New; matches both.
3153 (ada-named-block-re): Deleted; callers changed to use
3154 `ada-block-label-re' instead.
3155 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
3156 Use `ada-block-label-re'.
3157 (ada-indent-on-previous-lines): Improve handling of goto labels.
3158 (ada-get-indent-block-start): Special-case block label.
3159 (ada-get-indent-label): Split into `ada-indent-block-label' and
3160 `ada-indent-goto-label'.
3161 (ada-goto-stmt-start, ada-goto-next-non-ws):
3162 Optionally ignore goto labels.
3163 (ada-goto-next-word): Simplify.
3164 (ada-indent-newline-indent-conditional): Insert newline before
3165 trying to fix indentation; doc fix.
3166
3167 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
3168
3169 * calc/calc.el (calc-command-flags): Give it an initial value.
3170
3171 2010-01-17 Glenn Morris <rgm@gnu.org>
3172
3173 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
3174
3175 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
3176
3177 * cedet/semantic.el (semantic-mode):
3178 * files.el (minibuffer-with-setup-hook):
3179 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
3180 (artist-key-draw-continously, artist-key-do-continously-continously)
3181 (artist-key-set-point-continously, artist-mouse-draw-continously):
3182 Fix typos in docstrings.
3183
3184 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
3185
3186 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
3187 return t (Bug#3898).
3188
3189 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
3190
3191 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
3192 can parse the output of the external commands (Bug#5279).
3193
3194 2010-01-16 Jari Aalto <jari.aalto@cante.net>
3195
3196 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
3197
3198 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
3199
3200 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
3201
3202 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
3203
3204 * startup.el (command-line): Remove unused --icon-type arg.
3205 Handle --display arg, passing it to command-line-1 (Bug#5392).
3206
3207 2010-01-16 Mario Lang <mlang@delysid.org>
3208
3209 * cedet/ede/cpp-root.el (ede-cpp-root-project):
3210 * cedet/ede/files.el (ede-expand-filename):
3211 * cedet/ede/simple.el (ede-simple-project):
3212 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
3213 (semantic-complete-inline-tag-engine):
3214 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
3215 * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
3216 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
3217 * cedet/semantic/db.el (semanticdb-equivalent-mode):
3218 * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
3219 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
3220 * emacs-lisp/chart.el (chart-translate-namezone):
3221 * textmodes/artist.el (artist-compute-popup-menu-table):
3222 Remove duplicated words in doc-strings.
3223
3224 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
3225
3226 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
3227 to mairix-search to suppress threading (Bug#5342).
3228
3229 2010-01-15 Kenichi Handa <handa@m17n.org>
3230
3231 * international/mule-cmds.el (canonicalize-coding-system-name):
3232 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
3233
3234 2010-01-15 Glenn Morris <rgm@gnu.org>
3235
3236 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
3237
3238 * wid-edit.el (widget-keymap): Doc fix.
3239
3240 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
3241 former seems to be more widely accepted by various svn versions.
3242
3243 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
3244
3245 * find-cmd.el (find-constituents):
3246 * vc-arch.el (vc-arch-root):
3247 * window.el (window-body-height, pop-up-frames):
3248 * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
3249 (semantic-no-reparse-needed-change-hook):
3250 * cedet/srecode/insert.el (srecode-resolve-argument-list)
3251 (srecode-template-inserter-blank, srecode-template-inserter-variable)
3252 (srecode-template-inserter-ask, srecode-template-inserter-width)
3253 (srecode-template-inserter-section-start)
3254 (srecode-template-inserter-section-end, srecode-insert-method):
3255 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
3256 * progmodes/ada-stmt.el (ada-if):
3257 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
3258 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
3259 (ispell-encoding8-command, ispell-aspell-supports-utf8)
3260 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
3261
3262 * progmodes/flymake.el (flymake-post-syntax-check):
3263 Fix typo in error message.
3264
3265 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
3266
3267 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
3268 which is always a string. (Bug#5313)
3269
3270 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
3271
3272 * progmodes/ada-xref.el (ada-default-prj-properties):
3273 Simplify previous change.
3274
3275 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
3276
3277 * progmodes/ada-xref.el (ada-default-prj-properties):
3278 Default ada_project_path to $ADA_PROJECT_PATH.
3279
3280 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
3281
3282 * progmodes/ada-mode.el (ada-create-keymap):
3283 Override `narrow-to-defun' with `ada-narrow-to-defun'.
3284
3285 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
3286
3287 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
3288 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
3289 (ada-get-current-indent, ada-imenu-generic-expression)
3290 (ada-which-function): Check for it.
3291
3292 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
3293
3294 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
3295 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
3296
3297 2010-01-14 Glenn Morris <rgm@gnu.org>
3298
3299 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
3300
3301 2010-01-14 Kenichi Handa <handa@m17n.org>
3302
3303 * composite.el (auto-composition-mode): Make it a buffer local
3304 variable (permanent-local).
3305 (auto-composition-function): Set the default value to
3306 auto-compose-chars.
3307 (auto-composition-mode): Make it a simple function, not a minor mode.
3308 (global-auto-composition-mode): Likewise.
3309 (turn-on-auto-composition-if-enabled): Delete it.
3310
3311 2010-01-13 Karl Fogel <kfogel@red-bean.com>
3312
3313 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
3314
3315 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
3316
3317 * files.el (copy-directory): Compute target for recursive
3318 directories with identical names. (Bug#5343)
3319
3320 2010-01-12 Glenn Morris <rgm@gnu.org>
3321
3322 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
3323 it to bug-gnu-emacs rather than emacs-pretest-bug.
3324
3325 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
3326
3327 * cedet/data-debug.el (data-debug): Fix customization group reference.
3328
3329 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
3330
3331 * cedet/semantic/analyze.el (semantic-analyze-push-error)
3332 (semantic-analyze-context, semantic-analyze-context-assignment)
3333 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
3334 * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
3335 (semantic-java-doc-keywords-map):
3336 * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
3337 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
3338 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
3339 (semantic-c-classname, semantic-format-tag-uml-prototype)
3340 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
3341 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
3342 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
3343 (semantic-get-local-variables, semantic-end-of-command)
3344 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
3345 (lisp-mode):
3346 * cedet/semantic/bovine/make.el (makefile-mode):
3347 * cedet/semantic/wisent/python.el (wisent-python-string-re)
3348 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
3349 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
3350 (semantic-lex, semantic-get-local-variables, python-mode):
3351 * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
3352 * cedet/srecode/extract.el (srecode-extract-state-set)
3353 (srecode-extract-method): Fix typos in docstrings.
3354
3355 2010-01-11 Sam Steingold <sds@gnu.org>
3356
3357 * imenu.el (imenu-default-create-index-function): Detect infinite
3358 loops caused by imenu-prev-index-position-function.
3359
3360 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
3361
3362 * htmlfontify.el (htmlfontify-load-rgb-file)
3363 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
3364 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
3365 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
3366 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
3367 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
3368 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
3369 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
3370 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
3371 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
3372 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
3373 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
3374 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
3375 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
3376 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
3377 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
3378 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
3379 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
3380 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
3381 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
3382 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
3383 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
3384 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
3385 backslash-quoting from parentheses, etc.
3386
3387 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
3388
3389 * progmodes/js.el: Autoload javascript-mode alias.
3390
3391 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
3392
3393 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
3394 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
3395 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
3396 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
3397 Fix typos in docstrings.
3398 (ffap-url-regexp): Doc fix.
3399 (ffap-at-mouse): Fix typo in message.
3400
3401 2010-01-11 Glenn Morris <rgm@gnu.org>
3402
3403 * version.el (emacs-copyright): Set copyright year to 2010.
3404
3405 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
3406
3407 * format.el (format-annotate-function): Only set
3408 write-region-post-annotation-function after running to-fn so as not to
3409 affect nested write-region calls (bug#5273).
3410
3411 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
3412
3413 * cedet/semantic.el (semantic-new-buffer-setup-functions):
3414 Add python parser.
3415
3416 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
3417 wisent/python.el.
3418
3419 2010-01-10 Richard Kim <emacs18@gmail.com>
3420
3421 * cedet/semantic/wisent/python-wy.el:
3422 * cedet/semantic/wisent/python.el: New files.
3423
3424 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
3425
3426 * man.el (Man-goto-section): Signal error if the section is not
3427 found (Bug#5317).
3428
3429 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
3430
3431 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
3432 URLs with a leading triple slash in the file: scheme. (Bug#5345)
3433
3434 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
3435
3436 * progmodes/compile.el: Don't treat compile-command as safe if
3437 compilation-read-command might be nil (Bug#4218).
3438
3439 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
3440
3441 * startup.el (command-line-1): Use orig-argi to check for ignored X and
3442 NS options.
3443
3444 2010-01-08 Kenichi Handa <handa@m17n.org>
3445
3446 * international/fontset.el (build-default-fontset-data):
3447 Exclude characters in scripts kana, hangul, han, or cjk-misc.
3448
3449 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
3450
3451 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
3452 to `create-file-buffer' as it expects, not just a buffer name.
3453 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
3454 to help uniquify. (Bug#3224)
3455
3456 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
3457
3458 * font-setting.el (font-setting-change-default-font): Use user-spec
3459 instead of name.
3460
3461 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
3462
3463 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
3464
3465 2010-01-05 Tom Tromey <tromey@redhat.com>
3466
3467 * progmodes/python.el (python-font-lock-keywords):
3468 Handle qualified decorators (Bug#881).
3469
3470 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
3471
3472 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
3473 in a lightweight checkout.
3474
3475 2010-01-05 Kenichi Handa <handa@m17n.org>
3476
3477 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
3478
3479 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
3480
3481 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
3482
3483 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
3484
3485 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
3486 checkouts. (Bug#618)
3487 (vc-bzr-log-view-mode): Also highlight the author.
3488 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
3489 (vc-bzr-shelve-menu-map):
3490 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
3491 (vc-bzr-shelve-apply): Make prompt more explicit.
3492
3493 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
3494
3495 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
3496 They are valid characters in URL paths (rfc3986), and at least
3497 Firefox does not understand the encoded version (Bug#3166).
3498
3499 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
3500
3501 * progmodes/octave-mod.el (octave-end-keywords)
3502 (octave-block-begin-or-end-regexp, octave-block-match-alist):
3503 Add "end" keyword (Bug#3061).
3504 (octave-end-as-array-index-p): New function.
3505 (calculate-octave-indent): Use it.
3506
3507 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3508
3509 * bookmark.el: Consistently put the text property on the bookmark name.
3510 (bookmark-bmenu-marks-width): Bump back to 2, to include
3511 annotation marks.
3512 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
3513 property on the bookmark name, instead of not putting it at all.
3514 (bookmark-bmenu-list): Fix where we put the text property.
3515
3516 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3517
3518 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
3519 for showing buffer modified state (as added in the previous change).
3520
3521 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3522
3523 * bookmark.el: Show modified state of bookmark buffer more accurately.
3524 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
3525 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
3526 (with-buffer-modified-unmodified): New macro.
3527 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
3528 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
3529 Use new macro to preserve the buffer modified state.
3530
3531 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3532
3533 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
3534 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
3535 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
3536 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
3537 (bookmark-bmenu-rename, bookmark-bmenu-locate)
3538 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
3539 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
3540
3541 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3542
3543 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
3544 Make the lines in the generated doc string shorter. (Bug#4668)
3545
3546 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
3547
3548 * net/rcirc.el: Add follow-link binding (Bug#4738).
3549
3550 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3551
3552 * Makefile.in (bzr-update): Rename from cvs-update.
3553 (cvs-update): New target for backward compatibility.
3554
3555 * makefile.w32-in (bzr-update): Rename from cvs-update.
3556 (cvs-update): New target for backward compatibility.
3557
3558 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3559
3560 * bookmark.el: Remove gratuitous gratitude.
3561
3562 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3563
3564 * bookmark.el (bookmark-bmenu-any-marks): New function
3565 (bookmark-bmenu-save): Clear buffer modification if no marks.
3566
3567 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3568
3569 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
3570 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
3571 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
3572 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
3573
3574 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
3575 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
3576 To: emacs-devel {_AT_} gnu.org
3577 Subject: bookmark.el bug report
3578 Date: Mon, 28 Dec 2009 14:19:16 +0800
3579 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
3580
3581 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3582
3583 * bookmark.el: Improvements suggested by Drew Adams:
3584 (bookmark-bmenu-ensure-position): New name for
3585 `bookmark-bmenu-check-position'. Just ensure the position,
3586 don't return any meaningful value.
3587 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
3588 New constants.
3589
3590 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
3591
3592 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
3593 (bookmark-yank-point, bookmark-bmenu-check-position):
3594 Fix typos in docstrings.
3595 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
3596 (bookmark-name-from-full-record, bookmark-get-position)
3597 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
3598 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
3599 Remove useless quoting of parenthesis, etc. in docstrings.
3600
3601 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
3602 (ediff-append-custom-diff): Fix typo in error message.
3603 (ediff-meta-mark-equal-files): Fix typos in messages.
3604
3605 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
3606
3607 * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
3608 Fix typo in docstring.
3609
3610 * net/imap-hash.el (imap-hash-make): Doc fix.
3611 (imap-hash-test): Fix typo in error message; reflow docstring.
3612 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
3613 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
3614 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
3615 Fix typos in docstrings.
3616 (imap-hash-open-connection): Fix typo in error message.
3617
3618 * play/gomoku.el (gomoku): Fix typos in docstring.
3619
3620 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
3621 (gdb-jsonify-buffer): Fix typos in docstring.
3622 (gdb-goto-breakpoint): Fix typo in error message.
3623 ("Display Other Windows"): Fix typo in help message.
3624 (gdb-speedbar-expand-node): Fix typo in question.
3625
3626 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
3627 (idlwave-html-system-help-location, idlwave-html-help-location)
3628 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
3629 (idlwave-help-browser-generic-args, idlwave-help-directory)
3630 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
3631 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
3632 (idlwave-online-help, idlwave-help-html-link)
3633 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
3634 Fix typos in docstrings.
3635 (idlwave-help-with-source, idlwave-help-find-routine-definition):
3636 Reflow docstrings.
3637 (idlwave-help-assistant-start): Fix typo in error message.
3638
3639 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
3640 (octave-electric-space): Fix typos in docstrings.
3641
3642 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
3643
3644 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
3645
3646 2010-01-01 Juri Linkov <juri@jurta.org>
3647
3648 * comint.el (comint-input-ring-size): Make it a defcustom and
3649 increase the default to 500 (Bug#5148).
3650
3651 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
3652
3653 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
3654 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
3655 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
3656
3657 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
3658
3659 Show working revision correctly for mercurial.
3660 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
3661 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
3662
3663 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
3664
3665 Declare some functions for the byte-compiler.
3666 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
3667 (speedbar-timer-fn, speedbar-change-expand-button-char)
3668 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
3669
3670 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
3671
3672 This changeset reverts GDB Graphical Interface to use annotations.
3673 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
3674
3675 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
3676
3677 Make vc-dir work on subdirectories of the bzr root.
3678 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
3679 file names relative to it.
3680 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
3681 relative directory to vc-bzr-after-dir-status.
3682
3683 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
3684
3685 * font-lock.el (font-lock-refresh-defaults): New function, which
3686 can be used to let font-lock react to external changes in
3687 variables like font-lock-defaults and keywords.
3688 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
3689
3690 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
3691
3692 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
3693
3694 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
3695
3696 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
3697
3698 Supersede color.diff settings in git log (bug#5211).
3699
3700 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
3701 escape chars in its output when the user has color.diff set to `always'.
3702 This fix works on git 1.4.2 and newer (released on 2006-08-13).
3703
3704 2009-12-26 Kevin Ryde <user42@zip.com.au>
3705
3706 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
3707 node. Keep previous "Index" name to work with past coreutils too.
3708
3709 * man.el (man): Revise docstring a bit to show -a and -l as
3710 examples. Add -k description since support for it has otherwise
3711 been a secret. (Further to bug#3717.)
3712 (Man-bgproc-sentinel): When "-k foo" produces no output show error
3713 "no matches" rather than "Can't find manpage", as the latter reads
3714 like -k was interpreted as a page name, which is not so. (Bug#5431)
3715
3716 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
3717
3718 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
3719 switches. Check also for //SUBDIRED// line.
3720
3721 2009-12-25 Kenichi Handa <handa@m17n.org>
3722
3723 * language/indian.el (devanagari-composable-pattern): Fixed to
3724 handle ZWNJ and ZWJ. Use it in composition-function-table for
3725 Devanagari.
3726 (malayalam-composable-pattern): Fix previous change.
3727
3728 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3729
3730 * ps-print.el (ps-face-attributes): It was not returning the
3731 attribute face for faces specified as string. Reported by harven
3732 <harven@free.fr>.
3733 (ps-print-version): New version 7.3.5.
3734
3735 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
3736
3737 * calendar/icalendar.el (icalendar--convert-tz-offset):
3738 Fix timezone names.
3739 (icalendar--convert-tz-offset): Fix the "last-day-problem".
3740 (icalendar--add-diary-entry): Remove the trailing blank that
3741 diary-make-entry inserts.
3742
3743 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
3744
3745 Make `file-expand-wildcards' work for remote files.
3746
3747 * files.el (file-expand-wildcards): In case of remote files, check
3748 only local file name part for wildcards. Provide feature 'files
3749 and subfeature 'remote-wildcards. (Bug#5198)
3750
3751 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
3752 if there is already an established connection.
3753 (tramp-advice-file-expand-wildcards): Remove it.
3754
3755 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
3756 (tramp-advice-file-expand-wildcards): Move from tramp.el.
3757 Activate advice for older GNU Emacs versions. (Bug#5237)
3758
3759 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
3760
3761 Some doc fixes (more needed).
3762
3763 * find-cmd.el (find-constituents): Reflow docstring.
3764 (find-cmd, find-prune, find-command): Fix typos in docstrings.
3765 (find-generic): Doc fix.
3766
3767 2009-12-17 Juri Linkov <juri@jurta.org>
3768
3769 Fix regression from 23.1 to allow multiple modes in Local Variables.
3770
3771 * files.el (hack-local-variables-filter): While ignoring duplicates,
3772 don't take `mode' into account.
3773 (hack-local-variables-filter, hack-dir-local-variables):
3774 Don't remove duplicate `mode' from local-variables-alist (like `eval').
3775
3776 2009-12-17 Juri Linkov <juri@jurta.org>
3777
3778 Make `dired-diff' safer. (Bug#5225)
3779
3780 * dired-aux.el (dired-diff): Signal an error when `file' equals to
3781 `current' or when `file' is a directory of the `current' file.
3782
3783 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
3784
3785 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
3786 unconditionally preloaded files.
3787
3788 2009-12-16 Juri Linkov <juri@jurta.org>
3789
3790 Revert to old 23.1 logic of using the file at the mark as default.
3791 * dired-aux.el (dired-diff): Use the file at the mark as default
3792 if it's not the same as the current file, and the target dir is
3793 the current dir or the mark is active. Add the current file
3794 as the arg of `dired-dwim-target-defaults'. Use the default file
3795 in the prompt. (Bug#5225)
3796
3797 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
3798
3799 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
3800 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
3801 (tramp-check-for-regexp): Check also, when an echoing shell stops
3802 to echo sent commands.
3803
3804 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3805
3806 * Makefile.in: Revert last change (Bug#5191).
3807
3808 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
3809
3810 * vc-hg.el (vc-hg-print-log): Fix argument order.
3811 (vc-hg-working-revision): Make sure the command is executed in a
3812 known environment so that we can parse the output. (Bug#4417)
3813
3814 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3815
3816 * progmodes/python.el (python-symbol-completions): Remove text
3817 properties from symbol string before calling python-send-receive.
3818
3819 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
3820
3821 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
3822 when there are values for both file and line. (Bug#5060)
3823
3824 2009-12-14 Juri Linkov <juri@jurta.org>
3825
3826 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
3827 whitespace after the file name of the first line of unified format,
3828 because git-diff doesn't output whitespace and file modification time
3829 after the file name.
3830
3831 2009-12-14 David Kastrup <dak@gnu.org>
3832
3833 * info.el (Info-hide-cookies-node): Before hiding a cookie,
3834 check if it already has the `display' property added by
3835 `Info-display-images-node', and not put the `invisible' property
3836 in this case.
3837
3838 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3839
3840 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
3841 (semantic-mru-bookmark-mode): Doc fixes.
3842
3843 * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
3844 of assert.
3845
3846 2009-12-13 Glenn Morris <rgm@gnu.org>
3847
3848 * mail/emacsbug.el (message-sort-headers): Define for compiler.
3849 (report-emacs-bug): In message-mode, sort manually before storing
3850 original report text. (Bug#5178)
3851 Remove superfluous save-excursion.
3852
3853 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
3854
3855 * net/dbus.el (dbus-property-handler): Filter lambda forms out
3856 when responding to "GetAll" properties.
3857
3858 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
3859
3860 * simple.el (compose-mail): Remove mail-setup-with-from from
3861 customization checks.
3862
3863 2009-12-12 Eli Zaretskii <eliz@gnu.org>
3864
3865 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
3866 RAR archives created on Unix systems.
3867
3868 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3869
3870 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
3871 the varalias that was accidentally removed by the 2009-11-19 change
3872 (bug#5186).
3873
3874 2009-12-12 Kenichi Handa <handa@m17n.org>
3875
3876 * language/indian.el (indian-compose-regexp): New function.
3877 (malayalam-composable-pattern): Fix the pattern.
3878 (composition-function-table): Set malayalam-composable-pattern for
3879 Malayalam characters.
3880
3881 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
3882
3883 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
3884 rather than down-mouse-1, based on follow-link conventions.
3885
3886 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
3887 are compiled.
3888
3889 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
3890
3891 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
3892 (verilog-vmm-statement-re, verilog-ovm-statement-re)
3893 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
3894 (verilog-leap-to-head, verilog-backward-token):
3895 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
3896
3897 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
3898
3899 * progmodes/verilog-mode.el (verilog-auto-lineup)
3900 (verilog-nameable-item-re): Cleanup user-visible spelling and
3901 documentation errors. One reported by Gary Delp.
3902 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
3903 (verilog-read-decls): Fix AUTOWIRE with types declared in a
3904 package, bug195. Reported by Pierre-David Pfister.
3905
3906 2009-12-11 Glenn Morris <rgm@gnu.org>
3907
3908 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
3909
3910 * mail/emacsbug.el: No longer require sendmail.
3911 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
3912 (report-emacs-bug-orig-text): Doc fix.
3913 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
3914 New local variables, to adapt to different mail-user-agents.
3915 (report-emacs-bug): Fix test for a gnu.org address.
3916 Use overlays for emphasis, since font-lock defeats 'face property.
3917 Pretest bugs also end up at the newsgroup these days.
3918 Stop message-mode stripping text properties.
3919 Set and use the new buffer-local variables.
3920 (report-emacs-bug-hook): Add doc-string.
3921 Remove some unnecessary save-excursions and simplify.
3922 Use the appropriate hook and send-command.
3923
3924 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
3925 capitalization of some menu entries.
3926
3927 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3928
3929 * whitespace.el (whitespace-display-char-on): Ensure
3930 `buffer-display-table' is unique when two or more windows are
3931 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
3932 New version 12.1.
3933
3934 2009-12-10 Eli Zaretskii <eliz@gnu.org>
3935
3936 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
3937 characters in the Attribute field.
3938
3939 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
3940
3941 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
3942
3943 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3944
3945 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
3946 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3947 Disregard autoload-excludes.
3948 (update-directory-autoloads): Obey autoload-excludes here instead.
3949 But don't store its contents in no-autoloads and remove entries that
3950 refer to excludes files.
3951
3952 2009-12-10 Glenn Morris <rgm@gnu.org>
3953
3954 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
3955 (expand-mail-aliases): Define for compiler.
3956
3957 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
3958 Define for compiler.
3959
3960 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
3961 appropriate for the mail-user-agent in use.
3962
3963 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
3964
3965 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
3966
3967 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
3968
3969 Fix short log parsing and fontification.
3970 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
3971 Fix fontification for the [merge] label.
3972
3973 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
3974
3975 Drop some properties to avoid surprises (bug#5002).
3976 * htmlfontify.el (hfy-ignored-properties): New defcustom.
3977 (hfy-fontify-buffer): Use it.
3978
3979 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
3980
3981 Minor cleanup.
3982 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
3983 Adjust all callers.
3984 (ffap-locate-file): Remove unused arg `dir-ok' and make other
3985 args compulsory. Adjust callers.
3986 (ffap-gopher-at-point): Remove unused var `name'.
3987
3988 Get rid of the ELCFILES abomination.
3989 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
3990 (compile-elcfiles): New phony target.
3991 (compile-main): Compute ELCFILES dynamically.
3992 (compile-clean): New target to remove left-over elc files.
3993 (compile, all): Use it.
3994
3995 2009-12-09 Kenichi Handa <handa@etlken>
3996
3997 * international/mule-diag.el: Require help-mode instead of help-fns.
3998
3999 2009-12-09 Kenichi Handa <handa@m17n.org>
4000
4001 * international/mule-cmds.el (ucs-names): Supply sufficiently
4002 fine ranges instead of pre-calculating accurate ranges.
4003 Iterate with bigger gc-cons-threshold.
4004
4005 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
4006
4007 Add support for stashing a snapshot of the current tree.
4008 * vc-git.el (vc-git-stash-snapshot): New function.
4009 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
4010
4011 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
4012
4013 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
4014 instead of `(beginning|end)-of-line'.
4015
4016 2009-12-08 Glenn Morris <rgm@gnu.org>
4017
4018 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
4019
4020 * Makefile.in (ELCFILES): Regenerate.
4021
4022 2009-12-07 Juri Linkov <juri@jurta.org>
4023
4024 Don't lazy-highlight the comint output in history Isearch mode.
4025
4026 * comint.el (comint-history-isearch-search): Instead of
4027 `comint-line-beginning-position', use `comint-after-pmark-p'
4028 to check if point if before the process mark, and go to
4029 `process-mark' in this case.
4030
4031 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
4032
4033 * textmodes/tex-mode.el (latex-complete)
4034 (latex-indent-or-complete): Remove.
4035 (latex-mode): Set completion-at-point-functions instead.
4036
4037 Provide a standard completion command and hook it into TAB.
4038 * minibuffer.el (completion-at-point-functions): New var.
4039 (completion-at-point): New command.
4040 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
4041 * progmodes/python.el (python-mode-map): Use completion-at-point.
4042 (python-completion-at-point): Rename from python-partial-symbol and
4043 adjust for use in completion-at-point-functions.
4044 (python-mode): Setup completion-at-point for Python completion.
4045 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
4046 extracted from lisp-complete-symbol.
4047 (lisp-complete-symbol): Use it.
4048 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
4049 setup completion-at-point for Elisp completion.
4050 (emacs-lisp-mode-map, lisp-interaction-mode-map):
4051 Use completion-at-point.
4052 * ielm.el (ielm-map): Use completion-at-point.
4053 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
4054 * progmodes/sym-comp.el: Move to...
4055 * obsolete/sym-comp.el: Move from progmodes.
4056
4057 2009-12-07 Eli Zaretskii <eliz@gnu.org>
4058
4059 Prevent save-buffer in Rmail buffers from using the coding-system
4060 of the current message, and from clobbering the encoding mnemonics
4061 in the mode line (Bug#4623).
4062
4063 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
4064 flag, too.
4065 (rmail-message-encoding): New variable.
4066 (rmail-write-region-annotate): Record the encoding of the current
4067 message in rmail-message-encoding.
4068 (rmail-after-save-hook): New function, restores the encoding of
4069 the current message after the message collection is saved.
4070
4071 2009-12-07 Juri Linkov <juri@jurta.org>
4072
4073 * progmodes/grep.el (grep-read-files): Use `completing-read'
4074 instead of `read-string'. Set its `collection' arg to
4075 `read-file-name-internal'. (Bug#4301)
4076
4077 2009-12-07 Juri Linkov <juri@jurta.org>
4078
4079 Correctly restore original Isearch point. (Bug#4994)
4080
4081 * isearch.el (isearch-mode): Move `isearch-push-state' after
4082 `(run-hooks 'isearch-mode-hook)'.
4083 (isearch-cancel): When `isearch-push-state-function' is defined,
4084 let-bind `isearch-cmds' to the first state (the last element of
4085 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
4086 function and restores the original point). Otherwise, move point
4087 to `isearch-opoint'.
4088
4089 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
4090
4091 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
4092 chars that don't have names, so the table can be built much faster at
4093 run-time.
4094
4095 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
4096
4097 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
4098 change. Suggested by David Kastrup.
4099
4100 * simple.el (compose-mail): Check for incompatibilities and warn.
4101 (compose-mail-user-agent-warnings): New option.
4102
4103 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
4104
4105 Support showing a single log entry from vc-annotate.
4106 * vc.el (print-log): Add a new argument: START-REVISION.
4107 (vc-print-log-internal): Add a new optional argument and
4108 pass it to the backend.
4109 (vc-print-log, vc-print-root-log): Adjust callers.
4110 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
4111 buffer already displays the requested log entry, use it.
4112 Otherwise display only the log entry in question.
4113 * vc-svn.el (vc-svn-print-log):
4114 * vc-mtn.el (vc-mtn-print-log):
4115 * vc-hg.el (vc-hg-state):
4116 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
4117 (vc-git-show-log-entry): Return t on success.
4118 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
4119 (vc-bzr-show-log-entry): Return t on success.
4120 * vc-rcs.el (vc-rcs-print-log):
4121 * vc-sccs.el (vc-sccs-print-log):
4122 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
4123
4124 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
4125
4126 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
4127 Add menus to the meta mode. (Bug#5043)
4128
4129 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
4130
4131 * ediff-init.el (ediff-event-key): Use event-to-character instead of
4132 event-key.
4133
4134 * ediff.el (ediff-buffers-internal): Add unwind-protect.
4135
4136 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
4137
4138 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
4139 Berbain <raphael.berbain@gmail.com>.
4140
4141 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
4142 characters.
4143 (tramp-initial-end-of-output): New defconst.
4144 (tramp-methods, tramp-find-shell)
4145 (tramp-open-connection-setup-interactive-shell)
4146 (tramp-maybe-open-connection): Use it.
4147 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
4148 existence of `#' and `$'.
4149
4150 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
4151 `tramp-initial-end-of-output'.
4152
4153 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
4154
4155 Get the background mode from the terminal for xterm, and set
4156 faces accordingly.
4157 * term/xterm.el (xterm-set-background-mode): New function.
4158 (terminal-init-xterm): Use it in case xterm supports background
4159 color queries. Recompute faces after getting the background
4160 color.
4161
4162 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
4163
4164 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
4165 number comment back on its own line, for easier parsing.
4166
4167 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
4168
4169 Make it work for non-file buffers (bug#5102).
4170 * doc-view.el (doc-view-current-cache-dir):
4171 Use doc-view-buffer-file-name rather than buffer-file-name.
4172 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
4173
4174 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
4175
4176 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
4177 author field is too short.
4178
4179 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
4180
4181 * vc-git.el (vc-git-print-log): Handle a limit argument.
4182 Display the short log in graph form and with labels.
4183 (vc-git-log-view-mode): Handle labels.
4184
4185 Make vc-revert change VC state from 'added to 'unregistered.
4186 * vc-git.el (vc-git-revert): Call git reset first.
4187
4188 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
4189
4190 * net/newst-backend.el, net/newst-plainview.el:
4191 * net/newst-reader.el, net/newst-ticker.el:
4192 * net/newst-treeview.el, net/newsticker.el:
4193 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
4194
4195 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
4196
4197 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
4198
4199 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
4200 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
4201 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
4202 Update annotation regexp.
4203
4204 * simple.el (beginning-of-visual-line): Constrain to field
4205 boundaries (Bug#5106).
4206
4207 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
4208
4209 * xml.el (xml-substitute-numeric-entities): Move
4210 newsticker--decode-numeric-entities in newst-backend.el to
4211 xml-substitute-numeric-entities in xml.el. (Bug#5008)
4212 * net/newst-backend.el (newsticker--parse-generic-feed)
4213 (newsticker--parse-generic-items)
4214 (newsticker--decode-numeric-entities): Move
4215 newsticker--decode-numeric-entities in newst-backend.el to
4216 xml-substitute-numeric-entities in xml.el. (Bug#5008)
4217
4218 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
4219
4220 * progmodes/js.el (js--js-not): Add null to the list of values.
4221
4222 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
4223
4224 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
4225
4226 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4227
4228 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
4229 delimiter if it is at the end of the current line.
4230 (bibtex-generate-url-list): Fix docstring.
4231
4232 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4233
4234 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
4235 minibuffer's content with itself.
4236 Fold the confirm-after-completion case into the `confirm' case.
4237 (completion-pcm-word-delimiters): Add : and / to the delimiters.
4238
4239 2009-12-06 Kevin Ryde <user42@zip.com.au>
4240
4241 * ffap.el (ffap-rfc-path): Make this a defcustom since
4242 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
4243
4244 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
4245 manuals, similar to existing setup for help-mode. (Bug#3913.)
4246
4247 2009-12-05 Juri Linkov <juri@jurta.org>
4248
4249 Save and restore dired buffer's point positions too. (Bug#4880)
4250
4251 * dired.el (dired-save-positions): Return in the first element
4252 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
4253 Doc fix.
4254 (dired-restore-positions): First restore buffer's position.
4255 While restoring window's positions, check if window still displays
4256 the original buffer.
4257
4258 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
4259
4260 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
4261 if possible.
4262
4263 * cedet/semantic/ia.el (semantic-ia-complete-symbol):
4264 Make argument optional.
4265
4266 * shell.el (shell): Require ansi-color (Bug#5113).
4267
4268 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
4269
4270 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
4271
4272 2009-12-05 Alan Mackenzie <acm@muc.de>
4273
4274 * progmodes/cc-mode.el (c-before-hack-hook)
4275 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
4276 `c-file-style' to work again. This reversion restores the current
4277 software to its state in Emacs 23.1. (Bug#4146)
4278
4279 2009-12-05 Kevin Ryde <user42@zip.com.au>
4280
4281 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
4282 comment-start-skip to comment-end-skip as comment (Bug#4781).
4283
4284 2009-12-05 Juri Linkov <juri@jurta.org>
4285
4286 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
4287 for virtual nodes. (Bug#4147)
4288 (Info-find-node-2): Set `Info-current-node-virtual' to nil
4289 when moving from a virtual node.
4290 (Info-mode-menu): Add `Info-virtual-index' to the menu.
4291 (Info-mode): Add `Info-virtual-index' to the docstring.
4292
4293 2009-12-05 Eric Ludlam <zappo@gnu.org>
4294
4295 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
4296 Describe project macro symbols.
4297
4298 * cedet/semantic/complete.el (semantic-complete-do-completion):
4299 Don't call semantic-collector-current-exact-match.
4300
4301 * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
4302 ede-objects as targets.
4303
4304 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
4305 a target's object list even if compiler vars are already in the
4306 Makefile.
4307
4308 * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
4309 list of headers producing necessary macros.
4310
4311 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4312
4313 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
4314 track of the buffer position of the end of a BibTeX entry as this
4315 position may change during reformatting.
4316 (bibtex-format-entry): Remove whitespace before processing
4317 numerical fields so that we recognize the latter properly.
4318 (bibtex-reformat): Do not use push which changes the global value
4319 of bibtex-entry-format.
4320 (bibtex-field-braces-alist, bibtex-field-strings-alist)
4321 (bibtex-field-re-init): Replace only space characters by regexp
4322 for whitespace.
4323 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
4324 (bibtex-initialize): Also update bibtex-strings.
4325 (bibtex-kill-field): Preserve white space at end of entry.
4326 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
4327 Update bibtex-reference-keys.
4328
4329 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
4330
4331 * minibuffer.el (completion-pcm--merge-try): Also consider placing
4332 point after a star, if that's the only place where modifications can
4333 make progress.
4334
4335 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
4336
4337 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
4338 in docstrings.
4339
4340 2009-12-04 Juri Linkov <juri@jurta.org>
4341
4342 * proced.el (proced): Call `(proced-update t)' to update process
4343 information instead of only running proced-post-display-hook.
4344 (proced-send-signal): Add a leading space to the buffer name
4345 " *Marked Processes*" to make this buffer ephemeral.
4346
4347 2009-12-04 Juri Linkov <juri@jurta.org>
4348
4349 * dired.el (dired-auto-revert-buffer): New defcustom.
4350 (dired-internal-noselect): Use it.
4351
4352 2009-12-04 Juri Linkov <juri@jurta.org>
4353
4354 Change roles of modes and functions in image-mode.el (Bug#5062).
4355
4356 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
4357 in `auto-mode-alist'.
4358 (image-mode-previous-major-mode): New variable.
4359 (image-minor-mode-map): Rename from `image-mode-text-map'.
4360 (image-mode): Move graceful error-handling code from
4361 `image-minor-mode' to here. On errors call `image-mode-as-text'.
4362 (image-minor-mode): Remove all image-handling code.
4363 Replace `image-mode-text-map' with `image-minor-mode-map'.
4364 Check for `image-type' in mode-line format string.
4365 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
4366 (image-mode-as-text): New function with most code from
4367 `image-mode-maybe'.
4368 (image-toggle-display-text): Move code that removes image
4369 properties from `image-toggle-display' to here.
4370 (image-toggle-display-image): New function with code that adds
4371 image properties copied from `image-toggle-display'.
4372 (image-toggle-display): Remove most code with leaving only code
4373 that toggles between `image-mode-as-text' and `image-mode'.
4374
4375 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
4376
4377 * net/newst-treeview.el
4378 (newsticker--treeview-list-highlight-start): Restored call to
4379 save-excursion: Selected item was stuck.
4380 (newsticker--treeview-list-select): New.
4381 (newsticker--treeview-item-show-text)
4382 (newsticker--treeview-item-show)
4383 (newsticker--treeview-item-update): Use new
4384 newsticker-treeview-item-mode.
4385 (newsticker-treeview-update): Keep current item.
4386 (newsticker-treeview-next-new-or-immortal-item): Doc change.
4387 (newsticker--treeview-first-feed): Doc change.
4388 (newsticker-treeview-list-menu)
4389 (newsticker-treeview-item-menu): Added menu entries.
4390 (newsticker-treeview-item-mode): New.
4391
4392 * net/newst-backend.el (newsticker-customize): Delete other
4393 windows.
4394
4395 2009-12-04 Sam Steingold <sds@gnu.org>
4396
4397 * log-view.el (log-view-mode-map): "q" calls quit-window,
4398 like in all the other non-self-insert buffers.
4399
4400 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
4401
4402 Minor cleanup.
4403 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
4404 key decoding rather than do it manually via last-input-event +
4405 ascii-character.
4406 (term-exec): Use delete-and-extract-region.
4407 (term-handle-ansi-terminal-messages): Remove unused var `end'.
4408 (term-process-pager): Remove unused var `i'.
4409 (term-dynamic-simple-complete): Make obsolete.
4410 (serial-update-config-menu): Remove unused vars `y' and `str'.
4411 (term-update-mode-line): Remove unused var `temp'.
4412
4413 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4414
4415 Limit the number of log entries displayed by default.
4416 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
4417 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
4418 using a prefix argument.
4419
4420 2009-12-03 Glenn Morris <rgm@gnu.org>
4421
4422 * progmodes/idlwave.el (class): Restore still useful declaration.
4423
4424 2009-12-03 Alan Mackenzie <acm@muc.de>
4425
4426 Enhance `c-parse-state' to run efficiently in "brace deserts".
4427
4428 * progmodes/cc-mode.el (c-basic-common-init):
4429 Call c-state-cache-init.
4430 (c-neutralize-syntax-in-and-mark-CPP): Rename from
4431 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
4432 placing `category' properties value 'c-cpp-delimiter at its boundaries.
4433
4434 * progmodes/cc-langs.el (c-before-font-lock-function):
4435 c-extend-and-neutralize-syntax-in-CPP has been renamed
4436 c-neutralize-syntax-in-and-mark-CPP.
4437
4438 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
4439 with `category' properties now, not `syntax-table' ones.
4440
4441 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
4442 enhanced (but slower) version of c-end-of-macro that won't land
4443 inside a literal or on another awkward character.
4444 (c-state-cache-too-far, c-state-cache-start)
4445 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
4446 (c-state-nonlit-pos-cache-limit, c-state-point-min)
4447 (c-state-point-min-lit-type, c-state-point-min-lit-start)
4448 (c-state-min-scan-pos, c-state-brace-pair-desert)
4449 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
4450 buffer local variables.
4451 (c-state-literal-at, c-state-lit-beg)
4452 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
4453 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
4454 (c-state-cache-top-paren, c-state-cache-after-top-paren)
4455 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
4456 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
4457 (c-renarrow-state-cache)
4458 (c-append-lower-brace-pair-to-state-cache)
4459 (c-state-push-any-brace-pair, c-append-to-state-cache)
4460 (c-remove-stale-state-cache)
4461 (c-remove-stale-state-cache-backwards, c-state-cache-init)
4462 (c-invalidate-state-cache-1, c-parse-state-1)
4463 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
4464 (c-parse-state): Enhance and refactor.
4465 (c-debug-parse-state): Amend to deal with all the new variables.
4466
4467 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
4468 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
4469 modify to use category text properties rather than syntax-table ones.
4470 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
4471 to switch off/on the syntactic paren property of C++ template
4472 delimiters using the category property.
4473 (c-with-<->-as-parens-suppressed): Macro to invoke code with
4474 template delims suppressed.
4475 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
4476 New constant/macros which apply category properties to the start
4477 and end of preprocessor constructs.
4478 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
4479 "comment out" the syntactic value of characters in preprocessor
4480 constructs.
4481 (c-with-cpps-commented-out)
4482 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
4483 with characters in all or all but one preprocessor constructs
4484 "commented out".
4485
4486 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4487
4488 * proced.el (proced-filter-alist): Use regexp-quote.
4489
4490 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
4491
4492 Cleanup.
4493 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
4494 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
4495 arguments. Expand `default-directory'.
4496
4497 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
4498 the benefit of returning an expanded localname.
4499 (tramp-tramp-file-p): Handle the case NAME is not a string.
4500
4501 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4502
4503 Add support for bzr shelve/unshelve.
4504 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
4505 (vc-bzr-extra-menu-map): New variables.
4506 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
4507 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
4508 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
4509 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
4510 (vc-bzr-dir-extra-headers): Display shelves.
4511
4512 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
4513
4514 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4515
4516 * textmodes/bibtex.el (bibtex-complete-internal):
4517 Use completion-in-region.
4518 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
4519
4520 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4521
4522 Support applying stashes. Improve UI.
4523 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
4524 (vc-git-stash-apply, vc-git-stash-pop)
4525 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
4526 (vc-git-stash-menu): New functions.
4527 (vc-git-stash-menu-map): New variable.
4528 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
4529
4530 2009-12-03 Glenn Morris <rgm@gnu.org>
4531
4532 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
4533 (vc-print-log-internal): Fix previous change.
4534 (vc-revert): Correct pluralization.
4535
4536 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4537
4538 * progmodes/make-mode.el (makefile-special-targets-list): No need for
4539 it to be an alist any more.
4540 (makefile-complete): Use completion-in-region.
4541
4542 * progmodes/octave-mod.el (octave-complete-symbol):
4543 Use completion-in-region.
4544
4545 Misc cleanup.
4546 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
4547 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
4548 (idlwave-complete-class): Don't quote lambda.
4549 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
4550 (idlwave-mode-map): Move initialization into declaration.
4551 (idlwave-action-and-binding): Use backquotes.
4552 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
4553 Simplify.
4554 (idlwave-is-pointer-dereference): Remove unused var `pos'.
4555 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
4556 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
4557 `parts', and `all-parts'.
4558 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
4559 (idlwave-convert-xml-system-routine-info): Remove unused string
4560 `version-string'.
4561 (idlwave-display-user-catalog-widget): Use dolist.
4562 (idlwave-scanning-lib): Declare dynamically-scoped var.
4563 (idlwave-scan-library-catalogs): Remove unused var `flags'.
4564 (completion-highlight-first-word-only): Declare to silence bytecomp.
4565 (idlwave-popup-select): Tighten scope of `resp'.
4566 (idlwave-find-struct-tag): Remove unused var `beg'.
4567 (idlwave-after-load-rinfo-hook): Declare.
4568 (idlwave-sintern-class-info): Remove unused var `taglist'.
4569 (idlwave-find-class-definition): Remove unused var `list'.
4570 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
4571 (idlwave-what-module-find-class): Remove unused var `classes'.
4572
4573 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
4574
4575 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
4576
4577 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4578
4579 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
4580 buffers visited. Remove redundant current-buffer-saving.
4581
4582 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4583
4584 Use completion-in-buffer and remove uses of dynamic scoping.
4585 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
4586 (pascal-buffer-to-use, pascal-flag): Don't declare.
4587 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
4588 (pascal-get-completion-decl, pascal-keyword-completion):
4589 Add `pascal-str' argument, save-excursion,
4590 return the found completions, and don't filter with pascal-pred.
4591 (pascal-completion-cache): New var.
4592 (pascal-completion): Don't switch buffer any more (it was never
4593 necessary). Don't save-excursion any more (it's done by the called
4594 subroutines). Use a cache to avoid redundant computations.
4595 Use complete-with-action rather than pascal-completion-response and
4596 let it apply the predicate as well.
4597 (pascal-complete-word): Use completion-in-buffer when
4598 pascal-toggle-completions is nil.
4599 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
4600 not used any more.
4601 (pascal-comp-defun): Don't change buffer any more.
4602 Use complete-with-action rather than pascal-completion-response and
4603 let it apply the predicate as well.
4604 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
4605 when neded.
4606
4607 2009-12-02 Kenichi Handa <handa@m17n.org>
4608
4609 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
4610 shape for all Indic scripts.
4611
4612 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4613
4614 Use completion-in-buffer.
4615 * wid-edit.el (widget-field-text-end): New function.
4616 (widget-field-value-get): Use it.
4617 (widget-string-complete, widget-file-complete)
4618 (widget-color-complete): Use it and completion-in-region.
4619 (widget-complete): Don't narrow the buffer.
4620
4621 2009-12-02 Glenn Morris <rgm@gnu.org>
4622
4623 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
4624 (rmail-select-summary): Use rmail-pop-to-buffer.
4625 * mail/rmailsum.el: Replace all pop-to-buffer calls with
4626 rmail-pop-to-buffer, to prevent horizontal splits.
4627
4628 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
4629 save-excursion with save-current-buffer.
4630 Widen before searching. (Bug#5093)
4631 (diary-list-sexp-entries): Remove superfluous save-excursion.
4632
4633 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
4634
4635 * woman.el (woman-make-bufname): Handle man-pages with "." in the
4636 name. (Bug#5038)
4637
4638 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
4639
4640 * ido.el (ido-file-internal): Handle filenames at point that do
4641 not have a directory part. (Bug#5049)
4642
4643 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
4644
4645 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
4646 (mpc-songs-jump-to, mpc-resume): Doc fixes.
4647
4648 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
4649
4650 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
4651 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
4652 any more.
4653
4654 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4655
4656 * comint.el (comint-insert-input): Ignore clicks to the right of
4657 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
4658
4659 * vc.el (vc-print-log-internal): Don't wait for the process to
4660 terminate before setting up the major mode.
4661
4662 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
4663 in case.
4664
4665 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
4666 the last element.
4667
4668 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
4669
4670 2009-12-01 Glenn Morris <rgm@gnu.org>
4671
4672 * window.el (window--display-buffer-2): Fix previous changes.
4673
4674 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
4675
4676 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
4677
4678 2009-12-01 Glenn Morris <rgm@gnu.org>
4679
4680 * Makefile.in (ELCFILES): Add mpc.elc.
4681
4682 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4683
4684 * mpc.el: New file.
4685
4686 2009-12-01 Glenn Morris <rgm@gnu.org>
4687
4688 * window.el (window-to-use): Define for compiler.
4689
4690 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
4691 consistent with others (no final period).
4692
4693 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
4694 (rmail-mime-show): Downcase the encoding. (Bug#5070)
4695
4696 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
4697
4698 Make vc-print-log buttons work.
4699 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
4700
4701 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
4702
4703 * savehist.el (savehist-autosave-interval): Allow setting to nil
4704 through customize. (Bug#5056)
4705
4706 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
4707
4708 Fix references to jit-lock properties.
4709 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4710 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
4711 (perl-font-lock-special-syntactic-constructs):
4712 Quote jit-lock-defer-multiline property.
4713
4714 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
4715
4716 * vc-git.el (vc-git-registered): Call vc-git-root only once.
4717
4718 2009-11-30 Juri Linkov <juri@jurta.org>
4719
4720 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
4721 value `buffer' of `multi-isearch-next-buffer-current-function'.
4722 Use `(current-buffer)' when `buffer' is nil.
4723 (multi-isearch-next-buffer-from-list): Don't fallback to
4724 `(current-buffer)' when `buffer' is nil. (Bug#4947)
4725
4726 2009-11-30 Juri Linkov <juri@jurta.org>
4727
4728 * misearch.el (multi-isearch-read-buffers): Move canonicalization
4729 of buffers with `get-buffer' to `multi-isearch-buffers'.
4730 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4731 Canonicalize BUFFERS with `get-buffer'. Doc fix.
4732 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
4733 FILES with `expand-file-name' converting relative file names
4734 to absolute. Doc fix. (Bug#4727)
4735
4736 2009-11-30 Juri Linkov <juri@jurta.org>
4737
4738 * misearch.el (multi-isearch-read-buffers)
4739 (multi-isearch-read-matching-buffers): New functions.
4740 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4741 Use them in the `interactive' spec. Doc fix.
4742 (multi-isearch-read-files, multi-isearch-read-matching-files):
4743 New functions.
4744 (multi-isearch-files, multi-isearch-files-regexp):
4745 Use them in the `interactive' spec. Doc fix. (Bug#4725)
4746
4747 2009-11-30 Juri Linkov <juri@jurta.org>
4748
4749 * doc-view.el (doc-view-continuous):
4750 Rename from `doc-view-continuous-mode'.
4751 (doc-view-menu): Move "Toggle display" to the top.
4752 Add submenu "Continuous" with radio buttons "Off"/"On"
4753 and "Save as Default".
4754 (doc-view-scroll-up-or-next-page)
4755 (doc-view-scroll-down-or-previous-page)
4756 (doc-view-next-line-or-next-page)
4757 (doc-view-previous-line-or-previous-page): Rename
4758 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
4759
4760 2009-11-30 Juri Linkov <juri@jurta.org>
4761
4762 * comint.el (comint-mode-map): Rebind `M-r' from
4763 `comint-previous-matching-input' to
4764 `comint-history-isearch-backward-regexp'.
4765 Unbind `M-s' to allow global key binding `M-s'.
4766 Add menu items for `comint-history-isearch-backward' and
4767 `comint-history-isearch-backward-regexp'. (Bug#3746)
4768
4769 2009-11-30 Juri Linkov <juri@jurta.org>
4770
4771 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
4772 For def=recenter, replace `recenter' with `recenter-top-bottom'
4773 that is called with `this-command' and `last-command' let-bound
4774 to `recenter-top-bottom'. When the last `def' was not `recenter',
4775 set `recenter-last-op' to nil. (Bug#4981)
4776
4777 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
4778
4779 Minor cleanup and simplification.
4780 * filecache.el (file-cache-add-directory)
4781 (file-cache-add-directory-recursively)
4782 (file-cache-add-from-file-cache-buffer)
4783 (file-cache-delete-file-regexp, file-cache-delete-directory)
4784 (file-cache-files-matching-internal, file-cache-display): Use dolist.
4785 (file-cache-temp-minibuffer-message): Delete function.
4786 (file-cache-minibuffer-complete): Use minibuffer-message instead.
4787
4788 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
4789 Don't signal an error when bumping into EOB in tr, s, or y.
4790
4791 2009-11-29 Juri Linkov <juri@jurta.org>
4792
4793 * startup.el (fancy-about-text): Fix wording of Guided Tour.
4794 (Bug#4960)
4795
4796 * descr-text.el (describe-char-unidata-list): Use lowercase name
4797 for "Unicode name" like in other tags.
4798
4799 2009-11-29 Juri Linkov <juri@jurta.org>
4800
4801 * ediff-util.el (ediff-minibuffer-with-setup-hook):
4802 New compatibility macro.
4803 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
4804
4805 2009-11-29 Juri Linkov <juri@jurta.org>
4806
4807 Add defcustom to define the cycling order of `recenter-top-bottom'.
4808 (Bug#4981)
4809
4810 * window.el (recenter-last-op): Doc fix.
4811 (recenter-positions): New defcustom.
4812 (recenter-top-bottom): Rewrite to use `recenter-positions'.
4813 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
4814
4815 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
4816
4817 Improve integration of Tramp and ange-ftp in eshell.
4818
4819 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
4820 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
4821 (eshell/sudo): Flatten args. Let-bind `default-directory'.
4822
4823 * eshell/esh-util.el (top): Require also Tramp when compiling.
4824 (eshell-directory-files-and-attributes): Check for FTP remote
4825 connection.
4826 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
4827 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
4828 (eshell-file-attributes): Handle ".". Return `entry'.
4829
4830 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
4831 (ange-ftp-directory-files-and-attributes)
4832 (ange-ftp-real-directory-files-and-attributes): New defuns.
4833
4834 * net/tramp.el (tramp-maybe-open-connection): Open the remote
4835 shell with "exec" when possible. This prevents trailing prompts
4836 in `start-file-process'.
4837
4838 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4839
4840 Try and remove assumptions about point-min==1.
4841 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
4842 (rng-compute-mode-line-string): Show the validation percentage in
4843 terms of the narrowed text, not the widened text.
4844 (rng-do-some-validation): Don't catch internal errors when debugging.
4845 (rng-first-error): Simplify.
4846 (rng-after-change-function): Remove work around. AFAIK the bug has
4847 been fixed a while ago.
4848
4849 * image-mode.el (image-minor-mode): Exit more gracefully when the image
4850 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
4851
4852 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
4853
4854 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
4855 `cd' doesn't always do it for us (bug#5067).
4856
4857 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
4858 on 2009-10-25 as part of some other change (bug#5067).
4859
4860 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4861
4862 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4863 `suspicious'.
4864 (byte-compile-warnings): Use byte-compile-warning-types.
4865 (byte-compile-save-excursion): Warn about use of set-buffer right
4866 after save-excursion.
4867
4868 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
4869 the excursion as well.
4870
4871 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
4872
4873 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
4874 providing a Tramp related implementation of "su" and "sudo".
4875 (eshell-unix-initialize): Add "su" and "sudo".
4876
4877 2009-11-27 Daiki Ueno <ueno@unixuser.org>
4878
4879 * net/socks.el (socks-send-command): Convert binary request to
4880 unibyte before sending. This fixes mishandling of some port
4881 numbers such as 129.
4882
4883 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4884
4885 * help.el (describe-bindings-internal): Remove `interactive'.
4886
4887 * man.el (Man-completion-table): Trim a terminating "(".
4888 Remove the space between name page a section.
4889 Add the command's description on the `help-echo' property.
4890 Remove `process-connection-type' binding since it's unused by
4891 call-process.
4892 Provide completion for the "<section> <name>" format as well.
4893 (Man-default-man-entry): Remove spurious var shadowing the argument.
4894
4895 2009-11-26 Kevin Ryde <user42@zip.com.au>
4896
4897 * log-view.el: Add "Keywords: tools", since its other keywords
4898 aren't in finder-known-keywords, and following vc.el.
4899
4900 * sha1.el (sha1-string-external): default-directory "/" in case
4901 otherwise non-existent. process-connection-type pipe for touch of
4902 efficiency recommended by elisp manual. (An aside in Bug#3911.)
4903
4904 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4905
4906 Misc coding convention cleanups.
4907 * htmlfontify.el (hfy-init-kludge-hook): Rename from
4908 hfy-init-kludge-hooks.
4909 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
4910 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
4911 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
4912 and push.
4913 (hfy-slant, hfy-weight): Use tables rather than code.
4914 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
4915 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
4916 (hfy-face-attr-for-class): Initialize `face-spec' directly.
4917 (hfy-face-to-css): Remove `nconc' with single arg.
4918 (hfy-p-to-face-lennart): Use `or'.
4919 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
4920 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
4921 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
4922 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
4923 (hfy-force-fontification): Use run-hooks.
4924
4925 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
4926
4927 Various minor fixes.
4928 * htmlfontify.el (hfy-default-header): Add toggle_invis since
4929 Javascript belongs in the header, not the body.
4930 (hfy-javascript): Remove.
4931 (hfy-fontify-buffer): Don't insert it any more.
4932 (hfy-face-at): Handle (face0 face1 face2) style face properties.
4933 Fix bug in invis handling when there were no invis props in a chunk.
4934
4935 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4936
4937 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
4938
4939 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
4940
4941 * finder.el (finder-mode-map): Add a menu.
4942
4943 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
4944
4945 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
4946 "unsigned" structs.
4947
4948 (verilog-leap-to-head, verilog-backward-token): Handle "disable
4949 fork" statement better.
4950
4951 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
4952
4953 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
4954 (verilog-delete-auto, verilog-delete-empty-auto-pair)
4955 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
4956 Reported by Clay Douglass.
4957
4958 (verilog-auto-inst, verilog-auto-star-safe)
4959 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
4960 Fix removing "// Interfaces" when saving .* expansions. Reported by
4961 Pierre-David Pfister.
4962
4963 2009-11-26 Glenn Morris <rgm@gnu.org>
4964
4965 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
4966 the scope.
4967
4968 2009-11-25 Johan Bockgård <bojohan@gnu.org>
4969
4970 * vc-annotate.el (vc-annotate-revision-previous-to-line):
4971 Really use previous revision.
4972
4973 2009-11-25 Kevin Ryde <user42@zip.com.au>
4974
4975 * man.el (Man-completion-table): default-directory "/" in case
4976 doesn't otherwise exist. process-environment COLUMNS=999 so as
4977 not to truncate long names. process-connection-type pipe to avoid
4978 any chance of hitting the pseudo-tty TIOCGWINSZ.
4979 (man): completion-ignore-case t for friendliness and since man
4980 itself is case-insensitive on the command line.
4981 Further to Bug#3717.
4982
4983 * arc-mode.el: Add "Keywords: files", so the details in its
4984 commentary can be reached from finder-by-keyword.
4985 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
4986 editing mode, but it's comms related and sgml-mode.el has "comm"
4987 on that basis too.
4988 * textmodes/bibtex-style.el: Add "Keywords: tex".
4989 * international/isearch-x.el, international/ja-dic-cnv.el:
4990 * international/ja-dic-utl.el, international/kkc.el:
4991 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
4992
4993 2009-11-25 Juri Linkov <juri@jurta.org>
4994
4995 * man.el (Man-completion-table): Modify regexp to include
4996 section names to completion strings. (Bug#3717)
4997
4998 2009-11-25 Juri Linkov <juri@jurta.org>
4999
5000 Search recursively in gzipped files. (Bug#4982)
5001
5002 * progmodes/grep.el (grep-highlight-matches): Add new options
5003 `always' and `auto'. Doc fix.
5004 (grep-process-setup): Check `grep-highlight-matches' for
5005 `auto-detect' to determine the need to compute grep defaults.
5006 Move Windows/DOS specific --colors settings handling
5007 to `grep-compute-defaults'. Check `grep-highlight-matches'
5008 to get the value of "--color=".
5009 (grep-compute-defaults): Compute `grep-highlight-matches' when it
5010 has the value `auto-detect'. Move Windows/DOS specific settings
5011 from `grep-process-setup'.
5012 (zrgrep): New command with alias `rzgrep'.
5013
5014 2009-11-25 Juri Linkov <juri@jurta.org>
5015
5016 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
5017 to nil instead of switching off view-mode. (Bug#4896)
5018
5019 2009-11-25 Juri Linkov <juri@jurta.org>
5020
5021 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
5022
5023 * mwheel.el (mwheel-scroll-up-function)
5024 (mwheel-scroll-down-function): New defvars.
5025 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
5026 `scroll-up', and `mwheel-scroll-down-function' instead of
5027 `scroll-down'.
5028
5029 * doc-view.el (doc-view-scroll-up-or-next-page)
5030 (doc-view-scroll-down-or-previous-page): Add optional ARG.
5031 Use this ARG in the call to image-scroll-up/image-scroll-down.
5032 Change `interactive' spec to "P". Goto next/previous page only
5033 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
5034 SPC/DEL case). Doc fix.
5035 (doc-view-next-line-or-next-page)
5036 (doc-view-previous-line-or-previous-page): Rename arg to ARG
5037 for consistency.
5038 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
5039 `doc-view-scroll-up-or-next-page', and buffer-local
5040 `mwheel-scroll-down-function' to
5041 `doc-view-scroll-down-or-previous-page'.
5042
5043 2009-11-25 Juri Linkov <juri@jurta.org>
5044
5045 Provide additional default values (directories at other Dired
5046 windows) via M-n in the minibuffer of some Dired commands.
5047
5048 * dired-aux.el (dired-diff, dired-compare-directories)
5049 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
5050 `minibuffer-default' in `minibuffer-with-setup-hook'.
5051 (dired-dwim-target-directory): Find a window that displays Dired
5052 buffer instead of failing when the next window is not Dired.
5053 Use `get-window-with-predicate' to find for the next Dired window.
5054 (dired-dwim-target-defaults): New function.
5055
5056 * ediff-util.el (ediff-read-file-name):
5057 Use `dired-dwim-target-defaults' to set `minibuffer-default'
5058 in `minibuffer-with-setup-hook'.
5059
5060 2009-11-25 Juri Linkov <juri@jurta.org>
5061
5062 Provide additional default values (file name at point or at the
5063 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
5064
5065 * minibuffer.el (read-file-name-defaults): New function.
5066 (read-file-name): Reset `minibuffer-default' to nil when
5067 it duplicates initial input `insdef'.
5068 Bind `minibuffer-default-add-function' to lambda that
5069 calls `read-file-name-defaults' in `minibuffer-selected-window'.
5070 (minibuffer-insert-file-name-at-point): New command.
5071
5072 * files.el (file-name-at-point-functions): New defcustom.
5073 (find-file-default): Remove defvar.
5074 (find-file-read-args): Don't use `find-file-default'.
5075 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
5076 to `read-file-name'.
5077 (find-file-literally): Use `read-file-name' with
5078 `confirm-nonexistent-file-or-buffer'.
5079
5080 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
5081
5082 * dired.el (dired-read-dir-and-switches):
5083 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
5084 to `read-file-name'.
5085 (dired-file-name-at-point): New function.
5086 (dired-mode): Add hook `dired-file-name-at-point' to
5087 `file-name-at-point-functions'.
5088
5089 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
5090
5091 Really make the *Completions* window soft-dedicated (bug#5030).
5092 * window.el (window--display-buffer-2): Add `dedicated' argument.
5093 (display-buffer): Pass it when needed so the dedicated flag is set
5094 after calling set-window-buffer, which would otherwise reset it.
5095
5096 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
5097
5098 * progmodes/meta-mode.el (meta-complete-symbol):
5099 * progmodes/etags.el (complete-tag):
5100 * mail/mailabbrev.el (mail-abbrev-complete-alias):
5101 Use completion-in-region.
5102
5103 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
5104 (dabbrev-completion): Use completion-in-region.
5105 (dabbrev--abbrev-at-point): Simplify regexp.
5106
5107 * abbrev.el (abbrev--before-point): Use word-motion functions
5108 if :regexp is not specified (bug#5031).
5109
5110 * subr.el (string-prefix-p): New function.
5111
5112 * man.el (Man-completion-cache): New var.
5113 (Man-completion-table): Use it.
5114
5115 * vc.el (vc-print-log-internal): Make `limit' optional for better
5116 compatibility (e.g. with vc-annotate.el).
5117
5118 2009-11-24 Kevin Ryde <user42@zip.com.au>
5119
5120 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
5121 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
5122
5123 * emacs-lisp/elint.el (elint-add-required-env): Better error message
5124 when .el source file not found or other error.
5125
5126 2009-11-24 Markus Triska <markus.triska@gmx.at>
5127
5128 * linum.el (linum-update-window): Ignore intangible (bug#4996).
5129
5130 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
5131
5132 Handle the [back] button properly (bug#4979).
5133 * descr-text.el (describe-text-properties): Add a `buffer' argument.
5134 Use help-setup-xref, help-buffer, and with-help-window.
5135 (describe-char): Add `buffer' argument.
5136 Pass proper command to help-setup-xref. Don't meddle with
5137 help-xref-stack-item directly.
5138 (describe-text-category): Use with-help-window and help-buffer.
5139
5140 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
5141 for the displayed buffer (bug#4887).
5142
5143 * man.el (Man-completion-table): New function.
5144 (man): Use it.
5145
5146 2009-11-24 David Reitter <david.reitter@gmail.com>
5147
5148 * vc-git.el (vc-git-registered): Use checkout directory (where
5149 .git is) rather than the file's directory and a relative path spec
5150 to work around a bug in git.
5151
5152 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
5153
5154 Improve handling of processes on remote hosts.
5155
5156 * eshell/esh-util.el (eshell-path-env): New defvar.
5157 (eshell-parse-colon-path): New defun.
5158 (eshell-file-attributes): Use `eshell-parse-colon-path'.
5159
5160 * eshell/esh-ext.el (eshell-search-path):
5161 Use `eshell-parse-colon-path'.
5162 (eshell-remote-command): Remove argument HANDLER.
5163 (eshell-external-command): Check for FTP remote connection.
5164
5165 * eshell/esh-proc.el (eshell-gather-process-output):
5166 Use `file-truename', in order to start also symlinked files.
5167 Apply `start-file-process' instead of `start-process'.
5168 Shorten `command' to the local file name part.
5169
5170 * eshell/em-cmpl.el (eshell-complete-commands-list):
5171 Use `eshell-parse-colon-path'.
5172
5173 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
5174
5175 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
5176 to `eshell-directory-change-hook'.
5177
5178 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
5179
5180 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
5181 because it could be enabled automatically if view-read-only is non-nil.
5182
5183 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
5184
5185 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
5186 made on 2009-11-22.
5187
5188 2009-11-24 Glenn Morris <rgm@gnu.org>
5189
5190 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
5191 deleted variable bookmark-bmenu-bookmark-column.
5192
5193 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
5194 Move after definition of global-semantic-idle-tag-highlight-mode.
5195
5196 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
5197
5198 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
5199
5200 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
5201
5202 * net/browse-url.el (browse-url-filename-alist): On Windows, add
5203 two slashes to the "file:" prefix.
5204 (browse-url-file-url): De-munge Cygwin filenames before passing
5205 them to Windows browser.
5206 (browse-url-default-windows-browser): Use call-process.
5207
5208 2009-11-23 Juri Linkov <juri@jurta.org>
5209
5210 Implement DocView Continuous mode. (Bug#4896)
5211 * doc-view.el (doc-view-continuous-mode): New defcustom.
5212 (doc-view-mode-map): Bind C-n/<down> to
5213 `doc-view-next-line-or-next-page', C-p/<up> to
5214 `doc-view-previous-line-or-previous-page'.
5215 (doc-view-next-line-or-next-page)
5216 (doc-view-previous-line-or-previous-page): New commands.
5217
5218 2009-11-23 Juri Linkov <juri@jurta.org>
5219
5220 Implement Isearch in comint input history. (Bug#3746)
5221 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
5222 `isearch-mode-hook'.
5223 (comint-history-isearch): New defcustom.
5224 (comint-history-isearch-backward)
5225 (comint-history-isearch-backward-regexp): New commands.
5226 (comint-history-isearch-message-overlay): New buffer-local variable.
5227 (comint-history-isearch-setup, comint-history-isearch-end)
5228 (comint-goto-input, comint-history-isearch-search)
5229 (comint-history-isearch-message, comint-history-isearch-wrap)
5230 (comint-history-isearch-push-state)
5231 (comint-history-isearch-pop-state): New functions.
5232
5233 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
5234
5235 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
5236 return.
5237 (tramp-handle-make-symbolic-link)
5238 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
5239 Quote file names.
5240 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
5241 (tramp-handle-process-file): Use it.
5242
5243 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
5244
5245 * window.el (move-to-window-line-last-op): Remove.
5246 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
5247
5248 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
5249
5250 Make M-r mirror the new cycling behavior of C-l.
5251 * window.el (move-to-window-line-last-op): New var.
5252 (move-to-window-line-top-bottom): New command.
5253 (global-map): Bind M-r move-to-window-line-top-bottom.
5254
5255 2009-11-23 Sven Joachim <svenjoac@gmx.de>
5256
5257 * dired-x.el (dired-guess-shell-alist-default):
5258 Support xz format. (Bug#4953)
5259
5260 2009-11-22 Chong Yidong <cyd@stupidchicken.com>
5261
5262 * cedet/srecode/map.el (srecode-get-maps):
5263 * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
5264 * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
5265 * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
5266 (semantic-toggle-decoration-style):
5267 * cedet/semantic/decorate/include.el
5268 (semantic-decoration-include-describe)
5269 (semantic-decoration-unknown-include-describe)
5270 (semantic-decoration-unparsed-include-describe)
5271 (semantic-decoration-all-include-summary):
5272 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
5273 * cedet/semantic/analyze/complete.el
5274 (semantic-analyze-possible-completions):
5275 * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
5276 (semantic-show-unmatched-syntax-mode)
5277 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
5278 (semantic-highlight-func-mode):
5279 * cedet/semantic/util.el (semantic-describe-buffer):
5280 * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
5281 (semantic-symref-find-tags-by-name)
5282 (semantic-symref-find-tags-by-regexp)
5283 (semantic-symref-find-tags-by-completion)
5284 (semantic-symref-find-file-references-by-name)
5285 (semantic-symref-find-text):
5286 * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
5287 (senator-yank-tag):
5288 * cedet/semantic/scope.el (semantic-calculate-scope):
5289 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
5290 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
5291 (define-semantic-idle-service):
5292 * cedet/semantic/complete.el (semantic-complete-analyze-inline)
5293 (semantic-complete-analyze-inline-idle):
5294 * cedet/semantic/analyze.el (semantic-analyze-current-context):
5295 * cedet/mode-local.el (describe-mode-local-bindings)
5296 (describe-mode-local-bindings-in-mode):
5297 * cedet/ede/make.el (ede-make-check-version):
5298 * cedet/ede/locate.el (ede-enable-locate-on-project):
5299 * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
5300 (cedet-idutils-version-check):
5301 * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
5302 (cedet-gnu-global-version-check):
5303 * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
5304 (cedet-cscope-version-check): Use called-interactively-p instead
5305 of interactive-p.
5306
5307 * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
5308 Use semantic-format-tag-prototype.
5309
5310 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
5311
5312 * emulation/viper-cmd.el: Use viper-last-command-char instead of
5313 last-command-char/last-command-event.
5314 (viper-prefix-arg-value): Do correct conversion of event-char for
5315 XEmacs.
5316
5317 * emulation/viper-util.el, emulation/viper.el:
5318 Use viper-last-command-char instead of
5319 last-command-char/last-command-event.
5320
5321 * ediff-init.el, ediff-mult.el, ediff-util.el:
5322 Replace last-command-char and last-command-event
5323 with (ediff-last-command-char) everywhere.
5324
5325 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
5326 created in fundamental mode.
5327
5328 * ediff.el (ediff-version): Revert the change of interactive-p to
5329 called-interactively-p.
5330
5331 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
5332
5333 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
5334 generation from word-movement command names.
5335
5336 2009-11-21 Chong Yidong <cyd@stupidchicken.com>
5337
5338 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
5339 (semantic-complete-jump-local, semantic-complete-jump):
5340 Improve prompt string.
5341
5342 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
5343
5344 * cus-start.el (all): Add native condition for font-use-system-font.
5345
5346 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
5347
5348 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
5349 Correct the patch from 2009-11-18. (Bug#3910)
5350
5351 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
5352
5353 * progmodes/subword.el: Rename from lisp/subword.el.
5354
5355 * subword.el: Rename to progmodes/subword.el.
5356
5357 * Makefile.in (ELCFILES): Adapt to subword.el move.
5358
5359 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5360 Stefan Monnier <monnier@iro.umontreal.ca>
5361
5362 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
5363 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
5364 (bookmark-bmenu-show-filenames): Use push.
5365 (bookmark-bmenu-hide-filenames): Use local var instead of
5366 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
5367 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
5368 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
5369 filenames now that the bookmark names are always available.
5370
5371 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
5372
5373 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
5374 (bookmark-search-pattern): Move and leave unbound.
5375 (bookmark-bmenu-mode-map): Change binding.
5376 (bookmark-read-search-input): Simplify.
5377 Don't use text-char-description. Don't error on non-char events.
5378 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
5379 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
5380 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
5381 Use a local var for the timer.
5382 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
5383 (i.e. bookmark-bmenu-search).
5384
5385 2009-11-21 Glenn Morris <rgm@gnu.org>
5386
5387 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
5388
5389 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
5390
5391 * net/browse-url.el (browse-url-default-windows-browser):
5392 Use cygstart for cygwin.
5393
5394 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
5395
5396 * bookmark.el: Formatting and doc fixes only:
5397 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
5398 (bookmark-bmenu-search): Wrap to fit within 80 columns.
5399 Minor grammar and punctuation fixes in doc string.
5400 (bookmark-read-search-input): Adjust to fit within 80 columns.
5401
5402 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
5403
5404 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
5405 (c-backward-into-nomenclature): Adapt to subword renaming.
5406
5407 * subword.el (subword-forward, subword-backward, subword-mark)
5408 (subword-kill, subword-backward-kill, subword-transpose)
5409 (subword-downcase, subword-upcase, subword-capitalize)
5410 (subword-forward-internal, subword-backward-internal):
5411 Rename from forward-subword, backward-subword, mark-subword,
5412 kill-subword, backward-kill-subword, transpose-subwords,
5413 downcase-subword, upcase-subword, capitalize-subword,
5414 forward-subword-internal, backward-subword-internal.
5415
5416 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5417
5418 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
5419 New options.
5420 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
5421 New vars.
5422 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
5423 (bookmark-bmenu-filter-alist-by-regexp)
5424 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
5425 (bookmark-bmenu-search): New command.
5426 (bookmark-bmenu-mode-map): Bind it.
5427
5428 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
5429
5430 * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
5431
5432 * cedet/semantic/idle.el (define-semantic-idle-service)
5433 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
5434
5435 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
5436
5437 * progmodes/cc-cmds.el: declare-functioned forward-subword and
5438 backward-subword to quit the byte-compiler.
5439
5440 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
5441
5442 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
5443
5444 * progmodes/cc-cmds.el (c-update-modeline)
5445 (c-forward-into-nomenclature, c-backward-into-nomenclature):
5446 Refer to subword.el functions instead of cc-subword.el.
5447
5448 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
5449 subword.el functions instead of cc-subword.el.
5450
5451 * progmodes/cc-subword.el: Rename to subword.el.
5452 * subword.el: Rename from progmodes/cc-subword.el.
5453 (subword-mode-map): Rename from c-subword-mode-map.
5454 (subword-mode): Rename from c-subword-mode.
5455 (global-subword-mode): New global minor mode.
5456 (forward-subword): Rename from c-forward-subword.
5457 (backward-subword): Rename from c-backward-subword.
5458 (mark-subword): Rename from c-mark-subword.
5459 (kill-subword): Rename from c-kill-subword.
5460 (backward-kill-subword): Rename from c-backward-kill-subword.
5461 (transpose-subwords): Rename from c-tranpose-subword.
5462 (downcase-subword): Rename from c-downcase-subword.
5463 (capitalize-subword): Rename from c-capitalize-subword.
5464 (forward-subword-internal): Rename from c-forward-subword-internal.
5465 (backward-subword-internal): Rename from c-backward-subword-internal.
5466
5467 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
5468
5469 * vc.el (vc-deduce-fileset): Allow non-state changing operations
5470 from a dired buffer.
5471 (vc-dired-deduce-fileset): New function.
5472 (vc-root-diff, vc-print-root-log): Use it.
5473
5474 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
5475 nil LIMIT argument to vc-print-log-internal.
5476
5477 2009-11-20 Glenn Morris <rgm@gnu.org>
5478
5479 * Makefile.in (ELCFILES): Regenerate.
5480
5481 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
5482
5483 * cedet/cedet.el (cedet-menu-map): Re-order menu items.
5484
5485 * cedet/semantic.el: Enable idle-mode menu items only if
5486 global-semantic-idle-scheduler-mode is enabled.
5487 (semantic-default-submodes): Doc fix.
5488
5489 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
5490 When turning off, disable other idle modes.
5491
5492 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
5493
5494 * calc/calc.el (calc-set-mode-line):
5495 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5496 (math-format-number): Rename `math-format-complement-signed' to
5497 `math-format-twos-complement'.
5498
5499 * calc/calc-bin.el (math-format-twos-complement): Rename from
5500 math-format-complement-signed.
5501 (calc-radix): Rename `calc-complement-signed-mode' to
5502 `calc-twos-complement-mode'.
5503 (calc-octal-radix, calc-hex-radix): Add an argument for
5504 two's complement.
5505
5506 * calc/calc-embed.el (calc-embedded-mode-vars):
5507 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5508
5509 * calc/calc-ext.el (calc-init-extensions):
5510 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5511 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
5512
5513 * calc/calc-units.el (math-build-units-table-buffer):
5514 Let `calc-twos-complement-mode' be nil.
5515
5516 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
5517 entries.
5518
5519 * calc/calc-vec.el (calcFunc-vunpack):
5520 * calc/calc-aent.el (calc-do-calc-eval):
5521 * calc/calc-forms.el (math-format-date):
5522 * calc/calc-graph.el (calc-graph-plot):
5523 * calc/calc-math.el (math-use-emacs-fn):
5524 * calc/calccomp.el (math-compose-expr):
5525 Let `calc-twos-complement-mode' be nil.
5526
5527 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5528
5529 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
5530 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
5531 * minibuffer.el (completion-in-region-functions): New hook.
5532 (completion-in-region): New function.
5533 * emacs-lisp/lisp.el (lisp-complete-symbol):
5534 * pcomplete.el (pcomplete-std-complete): Use it.
5535
5536 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5537
5538 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
5539 (latex-complete-alist): New vars.
5540 (latex-string-prefix-p, latex-complete-bibtex-keys)
5541 (latex-complete-envnames, latex-complete-refkeys)
5542 (latex-complete-data): New functions.
5543 (latex-complete, latex-indent-or-complete): New commands.
5544
5545 * window.el (display-buffer-mark-dedicated): New var.
5546 (display-buffer): Obey it.
5547 * minibuffer.el (minibuffer-completion-help): Use it.
5548
5549 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
5550
5551 * filecache.el (file-cache-add-file): Use push and cons.
5552 (file-cache-delete-file-regexp): Use push.
5553 (file-cache-complete): Use completion-in-region.
5554
5555 * simple.el (with-wrapper-hook): Fix thinko.
5556
5557 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
5558 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
5559 Use with-current-buffer and string-to-number.
5560 (hfy-fallback-colour-values): Use assoc-string.
5561 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
5562 (hfy-face-at): Remove unused var `found-face'.
5563 (hfy-compile-stylesheet): Remove unused var `css'.
5564 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
5565 and `orig-buffer'.
5566 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
5567 Use with-current-buffer.
5568 (hfy-text-p): Use expand-file-name and fewer setq.
5569
5570 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
5571
5572 * htmlfontify.el, hfy-cmap.el: New files.
5573
5574 2009-11-19 Juri Linkov <juri@jurta.org>
5575
5576 * minibuffer.el (completions-format): New defcustom.
5577 (completion--insert-strings): Implement vertical format.
5578
5579 * simple.el (switch-to-completions): Move point to the first
5580 completion when point was at the beginning of the buffer.
5581
5582 2009-11-19 Juri Linkov <juri@jurta.org>
5583
5584 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
5585
5586 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
5587
5588 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
5589
5590 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
5591 (mail-signature): Change default to t.
5592 (mail-from-style): Deprecate `system-default' value.
5593 (mail-insert-from-field): For default value of mail-from-style,
5594 default to `angles' unless `angles' needs quoting and `parens'
5595 does not.
5596 (mail-citation-prefix-regexp): Use citation regexp from
5597 message-mode.
5598
5599 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
5600
5601 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
5602 Set variables for computing the prompt for reading password.
5603
5604 2009-11-19 Glenn Morris <rgm@gnu.org>
5605
5606 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
5607
5608 * textmodes/flyspell.el (sgml-lexical-context): Declare.
5609
5610 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
5611 (newsticker-treeview-listwindow-height): Fix custom type.
5612
5613 2009-11-19 Kenichi Handa <handa@m17n.org>
5614
5615 * descr-text.el (describe-char-padded-string): Compose with TAB
5616 only if there's a font for CH.
5617 (describe-char): Fix the condition for detecting a trivial composition.
5618
5619 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
5620
5621 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
5622 more accurate version of the regexp. (Bug#3910)
5623
5624 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
5625
5626 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
5627
5628 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
5629
5630 * font-setting.el (font-use-system-font): Declare for byte-compiler.
5631 (font-setting-change-default-font): Fix typo in docstring.
5632
5633 2009-11-18 Alan Mackenzie <acm@muc.de>
5634
5635 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
5636
5637 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5638
5639 * font-setting.el (font-use-system-font): Move ...
5640
5641 * cus-start.el (all): ... to here.
5642
5643 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
5644
5645 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
5646 Don't set `ad-return-value' if `ad-do-it' doesn't.
5647
5648 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
5649 modification time.
5650
5651 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5652
5653 * menu-bar.el: Put "Use system font" in Option-menu.
5654 (menu-bar-options-save): Add font-use-system-font.
5655
5656 * loadup.el: If feature system-font-setting or font-render-setting is
5657 there, load font-setting.
5658
5659 * Makefile.in (ELCFILES): Add font-settings.el.
5660 * font-setting.el: New file.
5661
5662 2009-11-17 Glenn Morris <rgm@gnu.org>
5663
5664 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
5665
5666 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
5667 Preserve point in the list buffer. (Bug#4939)
5668 Use point-at-eol.
5669 (newsticker--treeview-list-update-highlight)
5670 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
5671
5672 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5673
5674 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
5675 Remove.
5676
5677 * calc/calc-ext.el (calc-init-extensions): Remove references to
5678 symclip.
5679
5680 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
5681
5682 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
5683 * calc/calc-help.el (calc-b-prefix-help): Remove references to
5684 `calc-symclip'.
5685
5686 2009-11-16 Kevin Ryde <user42@zip.com.au>
5687
5688 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
5689 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
5690
5691 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
5692 (lm-keywords-list): Allow comma-only separator like "foo,bar".
5693 Ignore trailing spaces by omit-nulls to split-string (fixing
5694 regression from Emacs 21 due to the incompatible split-string
5695 change). (Bug #4928.)
5696
5697 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
5698
5699 * vc.el (vc-log-show-limit): Default to 2000.
5700 (vc-print-log-internal): Insert buttons to request more entries
5701 when limiting the output.
5702
5703 * vc-sccs.el (vc-sccs-print-log):
5704 * vc-rcs.el (vc-rcs-print-log):
5705 * vc-cvs.el (vc-cvs-print-log):
5706 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
5707 LIMIT is non-nil.
5708
5709 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5710
5711 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
5712 error when `tramp-gvfs-dbus-event-vector' is set.
5713 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
5714
5715 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5716
5717 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
5718
5719 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5720
5721 * net/dbus.el (dbus-unregister-service): New defun.
5722 (dbus-register-property): Register the handlers of
5723 "org.freedesktop.DBus.Properties" for SERVICE.
5724 (dbus-property-handler): Fix docstring.
5725
5726 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5727
5728 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
5729 Quote doc string reference in defvaralias as it is not in special form.
5730 (byte-compile-output-docform): Doc fix.
5731
5732 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5733
5734 * calc/calc.el (math-2-word-size, math-half-2-word-size)
5735 (calc-complement-signed-mode): New variables.
5736 (calc-set-mode-line): Add indicator for twos-complements.
5737 (math-format-number): Format twos-complement notation.
5738
5739 * calc/calc-bin.el (calc-word-size): Reset the variables
5740 `math-2-word-size' and `math-half-2-word-size'.
5741 (math-format-complement-signed, math-symclip, calcFunc-symclip)
5742 (calc-symclip): New functions.
5743
5744 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
5745
5746 * calc/calc-embed.el (calc-embedded-mode-vars):
5747 Add `calc-complement-signed-mode' to the list of modes.
5748
5749 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
5750 (calc-b-oper-keys): Add `calc-symclip' to list.
5751
5752 * calc/calc-ext.el (math-read-number-fancy): Read complement
5753 signed numbers.
5754 (calc-init-extensions): Add binding for `calc-symclip'.
5755 Add autoload for `calcFunc-symclip' and `calc-symclip'.
5756
5757 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
5758 `calc-symclip'.
5759 (calc-modes-menu): Add item for twos complement mode.
5760
5761 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
5762
5763 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5764
5765 * register.el (jump-to-register, insert-register): Handle Semantic
5766 tags. From commented-out advice in semantic/senator.el.
5767
5768 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
5769
5770 * vc.el (vc-log-show-limit): New variable.
5771 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
5772 when using a prefix argument.
5773 (vc-print-log-internal): Add new argument LIMIT.
5774
5775 * vc-svn.el (vc-svn-print-log):
5776 * vc-mtn.el (vc-mtn-print-log):
5777 * vc-hg.el (vc-hg-print-log):
5778 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
5779 pass it to the log command when set. Make the BUFFER argument
5780 non-optional.
5781
5782 * vc-sccs.el (vc-sccs-print-log):
5783 * vc-rcs.el (vc-rcs-print-log):
5784 * vc-git.el (vc-git-print-log):
5785 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
5786 ignore it. Make the BUFFER argument non-optional
5787
5788 * bindings.el (mode-line-buffer-identification): Do not purecopy.
5789
5790 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5791
5792 * dired.el (dired-mode-map): Move encryption items to "Operate"
5793 menu (Bug#4703).
5794
5795 * strokes.el (strokes-update-window-configuration): Make strokes
5796 buffer current before erasing (Bug#4906).
5797
5798 * cedet/semantic/idle.el (semantic-idle-summary-mode)
5799 (semantic-idle-summary-mode): Define using define-minor-mode
5800 instead of define-semantic-idle-service.
5801 (semantic-idle-summary-mode): New function.
5802 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
5803 that mouse motion does not reset the echo area.
5804
5805 2009-11-15 Juri Linkov <juri@jurta.org>
5806
5807 * simple.el (set-mark-default-inactive): Add :type, :group
5808 and :version. (Bug#4876)
5809
5810 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
5811
5812 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
5813 (archive-unique-fname): ... here. (Bug#4929)
5814
5815 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
5816
5817 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
5818 with a real fix.
5819
5820 * novice.el (disabled-command-function): Add useful args.
5821 Setup the help buffer so that [back] works.
5822 Remove redundant call to help-mode.
5823 (disabled-command-function): Use `case'.
5824 (en/disable-command): New function extracted from enable-command.
5825 (enable-command, disable-command): Use it.
5826
5827 2009-11-14 Glenn Morris <rgm@gnu.org>
5828
5829 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
5830 constants. (Bug#4913)
5831
5832 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
5833
5834 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5835
5836 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
5837 defined in C that have no doc-strings. (Bug#1063)
5838
5839 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
5840
5841 * cus-edit.el (data, files):
5842 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
5843
5844 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
5845
5846 * simple.el (shell-command): Doc fix (Bug#4891).
5847
5848 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
5849
5850 2009-11-14 Glenn Morris <rgm@gnu.org>
5851
5852 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
5853 statements for vc-diff, emerge-quit, and rmail-cease-edit.
5854 If they are already loaded, eval-after-load will do the right thing.
5855
5856 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
5857 compiling.
5858
5859 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
5860
5861 * simple.el (x-selection-owner-p): Declare.
5862 (read-mail-command): Use custom radio type rather than choice.
5863 (completion-no-auto-exit): Doc fix.
5864
5865 * custom.el (defgroup):
5866 * epg-config.el (epg): Doc fixes.
5867
5868 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
5869
5870 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
5871 * international/ccl.el (define-ccl-program): Do not purecopy the
5872 docstring, defconst does it anyway.
5873
5874 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5875
5876 * add-log.el (add-change-log-entry): Avoid displaying the changelog
5877 a second time.
5878
5879 * x-dnd.el (x-dnd-maybe-call-test-function):
5880 * window.el (split-window-vertically):
5881 * whitespace.el (whitespace-help-on):
5882 * vc-rcs.el (vc-rcs-consult-headers):
5883 * userlock.el (ask-user-about-lock-help)
5884 (ask-user-about-supersession-help):
5885 * type-break.el (type-break-force-mode-line-update):
5886 * time-stamp.el (time-stamp-conv-warn):
5887 * terminal.el (te-set-output-log, te-more-break, te-filter)
5888 (te-sentinel, terminal-emulator):
5889 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
5890 (term-write-input-ring, term-check-source, term-start-output-log):
5891 (term-display-buffer-line, term-dynamic-list-completions):
5892 (term-ansi-make-term, serial-term):
5893 * subr.el (selective-display):
5894 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5895 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
5896 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
5897 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
5898 (speedbar-remove-localized-speedbar-support)
5899 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
5900 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
5901 (speedbar-buffers-line-directory):
5902 * simple.el (shell-command-on-region, append-to-buffer)
5903 (prepend-to-buffer):
5904 * shadowfile.el (shadow-save-todo-file):
5905 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
5906 (scroll-bar-maybe-set-window-start):
5907 * sb-image.el (speedbar-image-dump):
5908 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
5909 (load-save-place-alist-from-file):
5910 * ps-samp.el (ps-print-message-from-summary):
5911 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
5912 (ps-background-image, ps-begin-job, ps-do-despool):
5913 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
5914 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
5915 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
5916 (pr-call-process, pr-file-list, pr-interface-save):
5917 * novice.el (disabled-command-function)
5918 (enable-command, disable-command):
5919 * mouse.el (mouse-buffer-menu-alist):
5920 * mouse-copy.el (mouse-kill-preserving-secondary):
5921 * macros.el (kbd-macro-query):
5922 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
5923 * informat.el (batch-info-validate):
5924 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
5925 * hippie-exp.el (try-expand-dabbrev-visible):
5926 * help-mode.el (help-make-xrefs):
5927 * help-fns.el (describe-variable):
5928 * generic-x.el (bat-generic-mode-run-as-comint):
5929 * finder.el (finder-mouse-select):
5930 * find-dired.el (find-dired-sentinel):
5931 * filesets.el (filesets-file-close):
5932 * files.el (list-directory):
5933 * faces.el (list-faces-display, describe-face):
5934 * facemenu.el (list-colors-display):
5935 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
5936 * epg.el (epg--process-filter, epg-cancel):
5937 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
5938 (epa--read-signature-type):
5939 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
5940 (emerge-file-names):
5941 * ehelp.el (electric-helpify):
5942 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
5943 * ediff-vers.el (rcs-ediff-view-revision):
5944 * ediff-util.el (ediff-setup):
5945 * ediff-mult.el (ediff-append-custom-diff):
5946 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
5947 (ediff-wordify):
5948 * echistory.el (Electric-command-history-redo-expression):
5949 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
5950 * disp-table.el (describe-display-table):
5951 * dired.el (dired-find-buffer-nocreate):
5952 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
5953 * dabbrev.el (dabbrev--same-major-mode-p):
5954 * chistory.el (list-command-history):
5955 * apropos.el (apropos-documentation):
5956 * allout.el (allout-obtain-passphrase):
5957 (allout-copy-exposed-to-buffer):
5958 (allout-verify-passphrase): Use with-current-buffer.
5959
5960 2009-11-13 Glenn Morris <rgm@gnu.org>
5961
5962 * Makefile.in (ELCFILES): Regenerate.
5963
5964 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
5965
5966 * net/dbus.el (dbus-registered-objects-table): Rename from
5967 `dbus-registered-functions-table', because it contains also properties.
5968 (dbus-unregister-object): Unregister also properties.
5969 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5970 Use a timeout of 500 msec, in order to not block.
5971 (dbus-register-property, dbus-property-handler): New defuns.
5972
5973 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5974
5975 * simple.el (minibuffer-default-add-completions): Drop deprecated
5976 4th arg.
5977
5978 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
5979
5980 * textmodes/artist.el (artist-mouse-choose-operation):
5981 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5982 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
5983 (artist-compute-up-event-key): New function.
5984 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
5985
5986 2009-11-13 Kenichi Handa <handa@m17n.org>
5987
5988 * language/japan-util.el: Make sure that the value of jisx0208
5989 property is jisx0208 character.
5990
5991 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
5992
5993 * international/mule.el (auto-coding-regexp-alist): Only purecopy
5994 car or each item, not the whole list.
5995
5996 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
5997
5998 * minibuffer.el (minibuffer-completion-help):
5999 Use minibuffer-hide-completions.
6000
6001 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
6002
6003 * dired.el (dired-save-positions, dired-restore-positions): New funs.
6004 (dired-revert): Use them (bug#4880).
6005
6006 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
6007
6008 * tooltip.el (tooltip-frame-parameters): Undo previous change.
6009
6010 2009-11-12 Juri Linkov <juri@jurta.org>
6011
6012 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
6013 New functions.
6014 (find-file-literally-at-point): Alias of `ffap-literally'.
6015
6016 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
6017
6018 * textmodes/ispell.el (ispell-skip-region-alist):
6019 * textmodes/css-mode.el (auto-mode-alist):
6020 * progmodes/compile.el (auto-mode-alist):
6021 * international/mule.el (ctext-non-standard-encodings-alist)
6022 (ctext-non-standard-encodings-regexp):
6023 * simple.el (shell-command-switch, text-read-only):
6024 * replace.el (occur-mode-map):
6025 * paths.el (rmail-file-name):
6026 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
6027 * find-file.el (ff-special-constructs):
6028 * files.el (file-name-handler-alist):
6029 * composite.el: Purecopy strings.
6030
6031 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
6032
6033 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
6034
6035 * widget.el (define-widget): Purecopy the docstring.
6036 * international/mule-cmds.el (charset): Do not purecopy the
6037 docstring here, define-widget does it.
6038
6039 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
6040 * textmodes/bibtex-style.el (auto-mode-alist):
6041 * progmodes/inf-lisp.el (inferior-lisp-prompt):
6042 * progmodes/compile.el (compile-command):
6043 * language/korea-util.el (default-korean-keyboard):
6044 * international/mule-conf.el (file-coding-system-alist):
6045 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
6046 * tooltip.el (tooltip-frame-parameters):
6047 * newcomment.el (comment-end, comment-padding):
6048 * dired.el (dired-trivial-filenames):
6049 * comint.el (comint-file-name-prefix): Purecopy initial values.
6050
6051 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
6052
6053 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
6054 (tramp-advice-minibuffer-electric-tilde): Unload advices via
6055 `tramp-unload'.
6056 (tramp-advice-make-auto-save-file-name)
6057 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
6058 after removing the advice.
6059
6060 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
6061
6062 * progmodes/grep.el (grep-regexp-alist):
6063 * international/mule-cmds.el (iso-2022-control-alist):
6064 * emacs-lisp/timer.el (timer-duration-words):
6065 * subr.el (version-separator, version-regexp-alist):
6066 * minibuffer.el (completion-styles-alist):
6067 * faces.el (face-attribute-name-alist, list-faces-sample-text):
6068 Change defvars to defconsts.
6069
6070 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
6071 * loadup.el ("international/mule-conf"): Load the byte compiled version.
6072 * international/mule-conf.el: Allow to be byte compiled.
6073
6074 * international/mule.el (define-charset): Purecopy props.
6075 (load-with-code-conversion): Purecopy doc string and file name.
6076 (put-charset-property): Purecopy strings.
6077 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
6078
6079 * international/mule-cmds.el (register-input-method): Purecopy arguments.
6080 (define-char-code-property): Correctly purecopy the table.
6081
6082 * international/ccl.el (define-ccl-program): Purecopy the docstring.
6083
6084 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
6085
6086 * subr.el (add-hook): Purecopy strings.
6087 (eval-after-load): Purecopy load-history-regexp and the form.
6088
6089 * custom.el (custom-declare-group): Purecopy load-file-name.
6090
6091 * subr.el (menu-bar-separator): New defconst.
6092 * net/eudc.el (eudc-tools-menu):
6093 * international/mule-cmds.el (set-coding-system-map)
6094 (mule-menu-keymap):
6095 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6096 * vc-hooks.el (vc-menu-map):
6097 * replace.el (occur-mode-map):
6098 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
6099 (menu-bar-edit-menu, menu-bar-goto-menu)
6100 (menu-bar-custom-menu, menu-bar-showhide-menu)
6101 (menu-bar-options-menu, menu-bar-tools-menu)
6102 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
6103 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
6104 (menu-bar-help-menu):
6105 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
6106 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
6107
6108 * term/x-win.el (x-gtk-stock-map):
6109 * progmodes/vera-mode.el (auto-mode-alist):
6110 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
6111 (inferior-lisp-program, inferior-lisp-load-command):
6112 * progmodes/hideshow.el (hs-special-modes-alist):
6113 * progmodes/gud.el (same-window-regexps):
6114 * progmodes/grep.el (grep-program, find-program, xargs-program):
6115 * net/telnet.el (same-window-regexps):
6116 * net/rlogin.el (same-window-regexps):
6117 * language/ethiopic.el (font-ccl-encoder-alist):
6118 * vc-sccs.el (vc-sccs-master-templates):
6119 * vc-rcs.el (vc-rcs-master-templates):
6120 * subr.el (cl-assertion-failed):
6121 * simple.el (next-error-overlay-arrow-position):
6122 * lpr.el (lpr-command):
6123 * locate.el (locate-ls-subdir-switches):
6124 * info.el (same-window-regexps, info)
6125 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
6126 * image-mode.el (image-mode, auto-mode-alist):
6127 * hippie-exp.el (hippie-expand-ignore-buffers):
6128 * format.el (format-alist):
6129 * find-dired.el (find-ls-subdir-switches, find-grep-options)
6130 (find-name-arg):
6131 * facemenu.el (facemenu-keybindings):
6132 * dired.el (dired-listing-switches, dired-chown-program):
6133 * diff.el (diff-switches, diff-command):
6134 * cus-edit.el (same-window-regexps):
6135 * bindings.el (mode-line-mule-info)
6136 (mode-line-buffer-identification): Purecopy strings.
6137
6138 2009-11-11 Juri Linkov <juri@jurta.org>
6139
6140 * simple.el (dired-get-filename) <declare-function>:
6141 Tell the byte-compiler about dired-get-filename.
6142 (shell-command): In Dired mode, get filename from the current line
6143 as the default value.
6144
6145 2009-11-10 Glenn Morris <rgm@gnu.org>
6146
6147 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
6148 * calendar/holidays.el, progmodes/cperl-mode.el:
6149 Update x-popup-menu declarations.
6150
6151 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
6152 (list-load-path-shadows): Use dolist.
6153 (list-load-path-shadows): Use with-current-buffer.
6154
6155 2009-11-10 Juri Linkov <juri@jurta.org>
6156
6157 * minibuffer.el (read-file-name): Support a list of default values
6158 in `default-filename'. Use the first file name where only one
6159 element is required. Doc fix.
6160
6161 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
6162
6163 * net/dbus.el (dbus-unregister-object): Release service, if no
6164 other method is registered for it.
6165
6166 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
6167
6168 * bookmark.el (bookmark-completing-read): Sort bookmark names if
6169 bookmark-sort-flag is non-nil (Bug#4653).
6170
6171 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
6172
6173 * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
6174 the progress reporter entirely.
6175
6176 * emulation/cua-base.el: Add CUA property to some CC mode commands
6177 (Bug#4100).
6178
6179 2009-11-08 Kevin Ryde <user42@zip.com.au>
6180
6181 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
6182 at end of sentence (Bug#4818).
6183
6184 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
6185
6186 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6187 Handle "see declaration of" MSFT statements (Bug#4100).
6188
6189 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
6190
6191 * net/tramp.el (tramp-advice-make-auto-save-file-name)
6192 (tramp-advice-file-expand-wildcards): Unload via
6193 `ad-remove-advice'.
6194
6195 * net/trampver.el: Update release number.
6196
6197 2009-11-08 Kevin Ryde <user42@zip.com.au>
6198
6199 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
6200 `ad-do-it'.
6201
6202 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
6203
6204 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
6205 in order to keep context in SELinux.
6206
6207 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
6208
6209 * dired-aux.el (dired-query): Place cursor in echo area and allow
6210 C-g.
6211
6212 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
6213 menu item if not on a directory (Bug#4701).
6214
6215 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
6216
6217 Sync with Tramp 2.1.17.
6218
6219 * net/tramp.el (tramp-handle-copy-directory): Don't use
6220 `file-remote-p' (due to compatibility).
6221
6222 * net/tramp-compat.el (tramp-compat-copy-directory)
6223 (tramp-compat-delete-directory): New defuns.
6224
6225 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
6226 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
6227 `tramp-compat-delete-directory'.
6228
6229 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
6230 (tramp-smb-handle-delete-directory): Use
6231 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
6232
6233 * net/trampver.el: Update release number.
6234
6235 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
6236
6237 * tar-mode.el (tar-copy): Call write-region on the right buffer
6238 (Bug#4857).
6239
6240 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
6241 by hand, if necessary (Bug#4878).
6242
6243 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
6244
6245 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
6246 align size column (Bug#4839).
6247
6248 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
6249 statement.
6250
6251 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
6252
6253 * progmodes/ld-script.el (auto-mode-alist):
6254 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
6255
6256 * cus-face.el (custom-declare-face): Purecopy face spec.
6257
6258 2009-11-06 Kenichi Handa <handa@m17n.org>
6259
6260 * international/uni-bidi.el: Re-generated.
6261 * international/uni-category.el: Re-generated.
6262 * international/uni-combining.el: Re-generated.
6263 * international/uni-mirrored.el: Re-generated.
6264
6265 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
6266
6267 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
6268 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
6269 (tex-start-options, slitex-run-command, latex-run-command)
6270 (tex-run-command, tex-directory):
6271 * textmodes/ispell.el (ispell-html-skip-alists)
6272 (ispell-tex-skip-alists, ispell-tex-skip-alists):
6273 * textmodes/fill.el (adaptive-fill-first-line-regexp):
6274 (adaptive-fill-regexp):
6275 * textmodes/dns-mode.el (auto-mode-alist):
6276 * progmodes/python.el (interpreter-mode-alist):
6277 * progmodes/etags.el (tags-compression-info-list):
6278 * progmodes/etags.el (tags-file-name):
6279 * net/browse-url.el (browse-url-galeon-program)
6280 (browse-url-firefox-program):
6281 * mail/sendmail.el (mail-signature-file)
6282 (mail-citation-prefix-regexp):
6283 * international/mule-conf.el (eight-bit):
6284 * international/latexenc.el (latex-inputenc-coding-alist):
6285 * international/fontset.el (x-pixel-size-width-font-regexp):
6286 * emacs-lisp/warnings.el (warning-type-format):
6287 * emacs-lisp/trace.el (trace-buffer):
6288 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
6289 (emacs-lisp-mode-map):
6290 * calendar/holidays.el (holiday-solar-holidays)
6291 (holiday-bahai-holidays, holiday-islamic-holidays)
6292 (holiday-christian-holidays, holiday-hebrew-holidays)
6293 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
6294 (hebrew-holidays-1, holiday-oriental-holidays)
6295 (holiday-general-holidays):
6296 * x-dnd.el (x-dnd-known-types):
6297 * tool-bar.el (tool-bar):
6298 * startup.el (site-run-file):
6299 * shell.el (shell-dumb-shell-regexp):
6300 * rfn-eshadow.el (file-name-shadow-tty-properties)
6301 (file-name-shadow-properties):
6302 * paths.el (remote-shell-program, news-directory):
6303 * mouse.el ([C-down-mouse-3]):
6304 * menu-bar.el (menu-bar-tools-menu):
6305 * jka-cmpr-hook.el (jka-compr-load-suffixes)
6306 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
6307 (jka-compr-compression-info-list):
6308 * isearch.el (search-whitespace-regexp):
6309 * image-file.el (image-file-name-extensions):
6310 * find-dired.el (find-ls-option):
6311 * files.el (directory-listing-before-filename-regexp)
6312 (directory-free-space-args, insert-directory-program)
6313 (list-directory-brief-switches, magic-fallback-mode-alist)
6314 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
6315 (automount-dir-prefix):
6316 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
6317 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
6318 (face-font-registry-alternatives, face-font-registry-alternatives)
6319 (face-font-family-alternatives):
6320 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
6321 (facemenu-foreground-menu, facemenu-face-menu):
6322 * epa-hook.el (epa-file-name-regexp):
6323 * dnd.el (dnd-protocol-alist):
6324 * textmodes/rst.el (auto-mode-alist):
6325 * button.el (default-button): Purecopy strings.
6326
6327 2009-11-06 Glenn Morris <rgm@gnu.org>
6328
6329 * Makefile.in (ELCFILES): Update.
6330
6331 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
6332
6333 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
6334 * emacs-lisp/levents.el: Move to obsolete/levents.el.
6335
6336 * nxml/xsd-regexp.el (xsdre-gen-categories):
6337 * nxml/xmltok.el (xmltok-parse-entity):
6338 * nxml/rng-parse.el (rng-parse-validate-file):
6339 * nxml/rng-maint.el (rng-format-manual)
6340 (rng-manual-output-force-new-line):
6341 * nxml/rng-loc.el (rng-save-schema-location-1):
6342 * nxml/rng-cmpct.el (rng-c-parse-file):
6343 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
6344 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
6345
6346 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
6347
6348 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
6349 Remove extra save-excursions and make-variable-buffer-local's.
6350 Suggested by Stefan Monnier.
6351
6352 (verilog-getopt-file, verilog-module-inside-filename-p)
6353 (verilog-set-define): Merge GNU 1.35 and repair changes from
6354 switching to using with-current-buffer.
6355
6356 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
6357 being treated as a number and confusing AUTORESET.
6358 Reported by Dan Dever.
6359
6360 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
6361 Add verilog-auto-ignore-concat to fix backward compatibility with
6362 older verilog-modes. Reported by Dan Katz.
6363
6364 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
6365 containing closing anchors "...$".
6366
6367 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
6368 Reported by Wade Smith.
6369
6370 (verilog-batch-execute-func): Comment on function usage.
6371
6372 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
6373
6374 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
6375 for labels.
6376
6377 (verilog-label-re, verilog-calc-1): Support proper indent of named
6378 asserts.
6379
6380 (verilog-backward-token, verilog-basic-complete-re)
6381 (verilog-beg-of-statement, verilog-indent-re): Support proper
6382 indent of the assert statement at the beginning of a block of text.
6383
6384 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
6385 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
6386 tokens as begins.
6387
6388 2009-11-05 Glenn Morris <rgm@gnu.org>
6389
6390 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
6391 Emacs 19. (Bug#1531)
6392 (byte-compile-fix-header): Update for the above change.
6393 Drop test for epoch::version.
6394
6395 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
6396 * cus-dep.el (custom-make-dependencies):
6397 * finder.el (finder-compile-keywords):
6398 Use autoload-rubric's feature argument.
6399
6400 * calendar/diary-lib.el (top-level): Make load behave more like require.
6401
6402 * vc-git.el (vc-git-stash-map): Move definition before use.
6403
6404 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
6405
6406 * custom.el (custom-declare-group): Purecopy standard-value.
6407 (custom-declare-group): Purecopy custom-prefix.
6408
6409 * international/mule.el (load-with-code-conversion):
6410 Call do-after-load-evaluation unconditionally.
6411
6412 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
6413
6414 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6415
6416 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
6417
6418 2009-11-04 Glenn Morris <rgm@gnu.org>
6419
6420 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
6421 (byte-compile-compatibility): Remove option.
6422 (byte-compile-close-variables, byte-compile-fix-header)
6423 (byte-compile-insert-header, byte-compile-output-docform)
6424 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
6425 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
6426 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
6427 (byte-compile-insert, byte-compile-defun):
6428 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
6429 (byte-defop-compiler19): Remove.
6430 Without byte-compile-compatibility, the 'emacs19-opcode property is not
6431 used by anything. Replace all calls with byte-defop-compiler.
6432
6433 2009-11-04 Juri Linkov <juri@jurta.org>
6434
6435 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
6436 (menu-bar-options-menu): Don't quote the `prop' arg of
6437 `menu-bar-make-mm-toggle'.
6438
6439 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
6440
6441 * calendar/calendar.el (cal-loaddefs):
6442 * calendar/diary-lib.el (diary-loaddefs):
6443 * calendar/holidays.el (hol-loaddefs):
6444 * eshell/esh-module.el (esh-groups): Load rather than require.
6445
6446 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6447
6448 * calendar/todo-mode.el (todo-add-category): Don't hardcode
6449 point-min==1.
6450 (todo-top-priorities): Only display-buffer when called interactively.
6451 (todo-item-start): Don't save excursion point.
6452 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
6453 (todo-insert-item-here, todo-file-item, todo-remove-item):
6454 Adjust uses of todo-item-start and todo-item-end.
6455
6456 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
6457 (autoload-rubric): Don't use any more.
6458 * cedet/semantic/fw.el (semantic/loaddefs):
6459 * cedet/srecode.el (srecode/loaddefs):
6460 * cedet/ede.el (ede/loaddefs): Load rather than require.
6461 * cedet/ede/cpp-root.el:
6462 * cedet/ede/emacs.el:
6463 * cedet/ede/files.el:
6464 * cedet/ede/linux.el:
6465 * cedet/ede/locate.el:
6466 * cedet/ede/make.el:
6467 * cedet/ede/shell.el:
6468 * cedet/ede/speedbar.el:
6469 * cedet/ede/system.el:
6470 * cedet/ede/util.el:
6471 * cedet/semantic/analyze.el:
6472 * cedet/semantic/bovine.el:
6473 * cedet/semantic/complete.el:
6474 * cedet/semantic/ctxt.el:
6475 * cedet/semantic/db-file.el:
6476 * cedet/semantic/db-find.el:
6477 * cedet/semantic/db-global.el:
6478 * cedet/semantic/db-mode.el:
6479 * cedet/semantic/db-typecache.el:
6480 * cedet/semantic/db.el:
6481 * cedet/semantic/debug.el:
6482 * cedet/semantic/dep.el:
6483 * cedet/semantic/doc.el:
6484 * cedet/semantic/edit.el:
6485 * cedet/semantic/find.el:
6486 * cedet/semantic/format.el:
6487 * cedet/semantic/html.el:
6488 * cedet/semantic/ia-sb.el:
6489 * cedet/semantic/ia.el:
6490 * cedet/semantic/idle.el:
6491 * cedet/semantic/lex-spp.el:
6492 * cedet/semantic/lex.el:
6493 * cedet/semantic/mru-bookmark.el:
6494 * cedet/semantic/scope.el:
6495 * cedet/semantic/senator.el:
6496 * cedet/semantic/sort.el:
6497 * cedet/semantic/symref.el:
6498 * cedet/semantic/tag-file.el:
6499 * cedet/semantic/tag-ls.el:
6500 * cedet/semantic/tag-write.el:
6501 * cedet/semantic/tag.el:
6502 * cedet/semantic/util-modes.el:
6503 * cedet/semantic/analyze/complete.el:
6504 * cedet/semantic/analyze/refs.el:
6505 * cedet/semantic/bovine/c.el:
6506 * cedet/semantic/bovine/gcc.el:
6507 * cedet/semantic/bovine/make.el:
6508 * cedet/semantic/bovine/scm.el:
6509 * cedet/semantic/decorate/include.el:
6510 * cedet/semantic/decorate/mode.el:
6511 * cedet/semantic/symref/cscope.el:
6512 * cedet/semantic/symref/global.el:
6513 * cedet/semantic/symref/grep.el:
6514 * cedet/semantic/symref/idutils.el:
6515 * cedet/semantic/symref/list.el:
6516 * cedet/semantic/wisent/java-tags.el:
6517 * cedet/semantic/wisent/javascript.el:
6518 * cedet/srecode/compile.el:
6519 * cedet/srecode/cpp.el:
6520 * cedet/srecode/document.el:
6521 * cedet/srecode/el.el:
6522 * cedet/srecode/expandproto.el:
6523 * cedet/srecode/getset.el:
6524 * cedet/srecode/insert.el:
6525 * cedet/srecode/java.el:
6526 * cedet/srecode/map.el:
6527 * cedet/srecode/mode.el:
6528 * cedet/srecode/template.el:
6529 * cedet/srecode/texi.el: Remove the file-local setting of
6530 generated-autoload-feature.
6531
6532 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
6533 and only put a prop if it is non-nil.
6534
6535 2009-11-03 Juri Linkov <juri@jurta.org>
6536
6537 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
6538 (menu-bar-options-menu): Fix list quoting (Bug#4429).
6539
6540 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
6541 and "Menu" to make top-level menu item visually one unit (like
6542 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
6543 multi-word menu items). Fix :help string for quit-window.
6544
6545 2009-11-03 Glenn Morris <rgm@gnu.org>
6546
6547 * cedet/mode-local.el (with-mode-local): Doc fix.
6548
6549 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
6550 (byte-compile-file-form-define-abbrev-table)
6551 (byte-compile-file-form-custom-declare-variable)
6552 (byte-compile-variable-ref, byte-compile-defvar):
6553 Whether or not a warning is enabled should only affect whether we issue
6554 the warning, not whether or not we collect the relevant data.
6555 Eg warnings can be turned on and off throughout the course of a file.
6556
6557 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
6558 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
6559
6560 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6561
6562 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
6563 * play/mpuz.el (mpuz-create-buffer):
6564 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
6565 (lm-print-y,s,noise, lm-print-w0, lm-init):
6566 * play/gomoku.el (gomoku-prompt-for-move):
6567 * play/fortune.el (fortune-in-buffer):
6568 * play/dissociate.el (dissociated-press):
6569 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
6570 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
6571 * mail/supercite.el (sc-eref-show):
6572 * mail/smtpmail.el (smtpmail-send-it):
6573 * mail/rmailsum.el (rmail-summary-next-labeled-message)
6574 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
6575 (rmail-summary-undelete-many, rmail-summary-rmail-update)
6576 (rmail-summary-goto-msg, rmail-summary-expunge)
6577 (rmail-summary-get-new-mail, rmail-summary-search-backward)
6578 (rmail-summary-add-label, rmail-summary-output-menu)
6579 (rmail-summary-output-body):
6580 * mail/rfc822.el (rfc822-addresses):
6581 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
6582 * mail/mailpost.el (post-mail-send-it):
6583 * mail/hashcash.el (hashcash-generate-payment):
6584 * mail/feedmail.el (feedmail-run-the-queue)
6585 (feedmail-queue-send-edit-prompt-help-first)
6586 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
6587 (feedmail-deduce-address-list):
6588 * eshell/esh-ext.el (eshell-remote-command):
6589 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
6590 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
6591 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
6592 (viper-save-string-in-file, viper-valid-marker):
6593 * emulation/viper-keym.el (viper-toggle-key):
6594 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
6595 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
6596 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
6597 * emulation/viper-cmd.el (viper-exec-form-in-vi)
6598 (viper-exec-form-in-emacs, viper-brac-function):
6599 * emulation/viper.el (viper-delocalize-var):
6600 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
6601 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
6602 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
6603 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
6604 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
6605 * emulation/edt.el (edt-electric-helpify):
6606 * emulation/cua-rect.el (cua--rectangle-aux-replace):
6607 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
6608 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
6609 (cua-indent-to-global-mark-column):
6610 * calendar/diary-lib.el (calendar-mark-1):
6611 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
6612 Use with-current-buffer.
6613 * emulation/viper.el (viper-delocalize-var): Use dolist.
6614
6615 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
6616
6617 * comint.el (comint-replace-by-expanded-history-before-point):
6618 Replace !! with the previous input string literally (Bug#1795).
6619
6620 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
6621
6622 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
6623 to be made up of whitespace.
6624
6625 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
6626
6627 * minibuffer.el (read-file-name): Don't use file dialogs for
6628 remote directories (Bug#99).
6629
6630 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
6631
6632 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
6633
6634 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
6635
6636 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
6637 instead of deleting the window or frame.
6638
6639 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
6640
6641 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
6642 Support face colors.
6643
6644 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
6645 New function. Support face colors (Bug#1168).
6646 (tex-common-initialization): Use it.
6647
6648 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
6649 mode allows it (Bug#1168).
6650
6651 2009-10-31 Juri Linkov <juri@jurta.org>
6652
6653 * facemenu.el (list-colors-display): Don't mark buffer as
6654 modified (Bug#3948).
6655
6656 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
6657
6658 * international/mule-diag.el (list-character-sets-1): Minor
6659 message fix (Bug#3526).
6660
6661 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
6662 face property (Bug#4834).
6663 (etags-list-tags, etags-tags-apropos-additional)
6664 (etags-tags-apropos, tags-select-tags-table): Add follow-link
6665 property.
6666
6667 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
6668 items.
6669
6670 * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
6671 items.
6672
6673 * cedet/ede.el (ede-minor-mode):
6674 * cedet/semantic.el (semantic-mode): Toggle menu separators.
6675
6676 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
6677
6678 * textmodes/two-column.el (2C-split):
6679 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
6680 * textmodes/tex-mode.el (tex-set-buffer-directory):
6681 * textmodes/spell.el (spell-region, spell-string):
6682 * textmodes/reftex.el (reftex-erase-buffer):
6683 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
6684 * textmodes/reftex-toc.el (reftex-toc-promote-action):
6685 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
6686 (reftex-select-item):
6687 * textmodes/reftex-ref.el (reftex-label-info-update)
6688 (reftex-offer-label-menu):
6689 * textmodes/reftex-index.el (reftex-index-change-entry)
6690 (reftex-index-phrases-info):
6691 * textmodes/reftex-global.el (reftex-create-tags-file)
6692 (reftex-save-all-document-buffers, reftex-ensure-write-access):
6693 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
6694 (reftex-view-crossref-from-bibtex):
6695 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
6696 (reftex-extract-bib-entries-from-thebibliography)
6697 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
6698 * textmodes/refbib.el (r2b-capitalize-title):
6699 (r2b-convert-buffer, r2b-help):
6700 * textmodes/page-ext.el (pages-directory)
6701 (pages-directory-goto-with-mouse):
6702 * textmodes/bibtex.el (bibtex-validate-globally):
6703 * textmodes/bib-mode.el (bib-capitalize-title):
6704 * textmodes/artist.el (artist-clear-buffer, artist-system):
6705 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
6706 (local-set-scheme-interaction-buffer, xscheme-process-filter)
6707 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
6708 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
6709 (xscheme-send-control-g-interrupt, xscheme-start-process)
6710 (xscheme-process-sentinel, xscheme-cd):
6711 * progmodes/verilog-mode.el (verilog-read-always-signals)
6712 (verilog-set-define, verilog-getopt-file)
6713 (verilog-module-inside-filename-p):
6714 * progmodes/sh-script.el:
6715 * progmodes/python.el (python-pdbtrack-get-source-buffer)
6716 (python-pdbtrack-grub-for-buffer, python-execute-file):
6717 * progmodes/octave-inf.el (inferior-octave):
6718 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6719 (idlwave-shell-compile-helper-routines, idlwave-set-local)
6720 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
6721 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
6722 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
6723 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
6724 (idlwave-shell-filter, idlwave-shell-examine-highlight)
6725 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
6726 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
6727 (idlwave-shell-examine-display, idlwave-shell-run-region)
6728 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
6729 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
6730 * progmodes/idlw-help.el (idlwave-help-get-special-help)
6731 (idlwave-help-get-help-buffer):
6732 * progmodes/gud.el (gud-basic-call, gud-find-class)
6733 (gud-tooltip-activate-mouse-motions-if-enabled):
6734 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
6735 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
6736 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
6737 (ebrowse-tags-next-file):
6738 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
6739 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
6740 (ebnf-eps-finish-and-write):
6741 * progmodes/cpp.el (cpp-edit-save):
6742 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
6743 * progmodes/cc-defs.el (c-emacs-features):
6744 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
6745 (antlr-directory-dependencies):
6746 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
6747 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
6748 (ada-find-any-references, ada-make-filename-from-adaname)
6749 (ada-make-body-gnatstub):
6750 * obsolete/rnews.el (news-list-news-groups):
6751 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
6752 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
6753 * net/rcirc.el (rcirc-debug):
6754 * net/newst-treeview.el (newsticker--treeview-list-add-item)
6755 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
6756 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
6757 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
6758 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
6759 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
6760 (newsticker--treeview-list-clear-highlight)
6761 (newsticker--treeview-list-update-highlight)
6762 (newsticker--treeview-list-highlight-start)
6763 (newsticker--treeview-tree-update-highlight)
6764 (newsticker--treeview-get-selected-item)
6765 (newsticker-treeview-mark-list-items-old)
6766 (newsticker--treeview-set-current-node):
6767 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
6768 * net/newst-backend.el (newsticker--get-news-by-funcall)
6769 (newsticker--get-news-by-wget, newsticker--image-get)
6770 (newsticker--image-sentinel):
6771 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
6772 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
6773 (eudc-ph-close-session):
6774 * net/eudc.el (eudc-save-options):
6775 * language/thai-word.el (thai-update-word-table):
6776 * language/japan-util.el (japanese-string-conversion):
6777 * international/titdic-cnv.el (tsang-quick-converter)
6778 (ziranma-converter, ctlau-converter):
6779 * international/mule-cmds.el (describe-language-environment):
6780 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
6781 (skkdic-convert-postfix, skkdic-convert-prefix):
6782 (skkdic-convert-okuri-nasi, skkdic-convert):
6783 * emacs-lisp/re-builder.el (reb-update-overlays):
6784 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
6785 * emacs-lisp/gulp.el (gulp-send-requests):
6786 * emacs-lisp/find-gc.el (trace-call-tree):
6787 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
6788 (eieio-describe-generic):
6789 * emacs-lisp/eieio-base.el (eieio-persistent-read):
6790 * emacs-lisp/edebug.el (edebug-outside-excursion):
6791 * emacs-lisp/debug.el (debugger-make-xrefs):
6792 * emacs-lisp/cust-print.el (custom-prin1-to-string):
6793 * emacs-lisp/chart.el (chart-new-buffer):
6794 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
6795 Use with-current-buffer.
6796 * textmodes/artist.el (artist-system): Don't call
6797 copy-sequence on a fresh string.
6798 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
6799
6800 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
6801
6802 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
6803 is no item to edit. (Bug#4820)
6804 (todo-top-priorities): Restore point and restore narrowing in Todo
6805 buffer. (Bug#4820)
6806
6807 2009-10-31 Glenn Morris <rgm@gnu.org>
6808
6809 * net/ange-ftp.el (top-level): Don't require dired when compiling.
6810 (comint-last-output-start, comint-last-input-start)
6811 (comint-last-input-end): Don't defvar when compiling.
6812 (ange-ftp-process-file): Use bound-and-true-p.
6813
6814 * pcmpl-rpm.el (top-level): Move provide statement to end.
6815 (pcmpl-rpm): Remove unused custom group.
6816
6817 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
6818
6819 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
6820
6821 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
6822 (byte-compile-warnings): Add `constants' as an option.
6823 (byte-compile-callargs-warn, byte-compile-arglist-warn)
6824 (display-call-tree): Update for byte-compile-fdefinition possibly
6825 returning `(macro lambda ...)'. (Bug#4778)
6826 (byte-compile-variable-ref, byte-compile-setq-default):
6827 Respect `constants' member of byte-compile-warnings.
6828
6829 * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
6830 Use mapc rather than mapcar because the return value is never used.
6831
6832 * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
6833 * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
6834 * cedet/semantic/html.el:
6835 Suppress harmless warnings about setting up semantic-imenu (not
6836 part of Emacs) variables.
6837
6838 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6839
6840 * vc-bzr.el (vc-bzr-revision-keywords): New var.
6841 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
6842 to "submit:".
6843
6844 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
6845 * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
6846 * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
6847 * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
6848 * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
6849 * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
6850 (semantic-analyzer-debug-global-symbol)
6851 (semantic-analyzer-debug-missing-innertype)
6852 (semantic-analyzer-debug-insert-include-summary):
6853 * cedet/semantic/util.el (semantic-file-tag-table):
6854 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
6855 (semantic-recursive-find-nonterminal-by-name):
6856 * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
6857 * cedet/semantic/tag-file.el (semantic-prototype-file):
6858 * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
6859 * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
6860 * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
6861 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
6862 (semantic-idle-summary-maybe-highlight):
6863 * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
6864 (semantic-ia-sb-tag-info):
6865 * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
6866 * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
6867 * cedet/semantic/ede-grammar.el (project-compile-target):
6868 (ede-proj-makefile-insert-variables):
6869 * cedet/semantic/debug.el (semantic-debug-set-parser-location):
6870 (semantic-debug-set-source-location, semantic-debug-interface-layout)
6871 (semantic-debug-mode, semantic-debug):
6872 * cedet/semantic/db.el (semanticdb-needs-refresh-p):
6873 * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
6874 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
6875 * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
6876 (semanticdb-find-translate-path-includes--internal)
6877 (semanticdb-reset-log, semanticdb-find-log-activity):
6878 * cedet/semantic/db-file.el (object-write):
6879 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
6880 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
6881 (semanticdb-create-ebrowse-database):
6882 * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
6883 * cedet/semantic/complete.el (semantic-displayor-focus-request)
6884 (semantic-collector-calculate-completions-raw)
6885 (semantic-complete-read-tag-analyzer):
6886 * cedet/semantic/analyze.el (semantic-analyze-pulse):
6887 * cedet/ede/util.el (ede-update-version-in-source):
6888 * cedet/ede/proj.el (project-delete-target):
6889 * cedet/ede/proj-elisp.el (ede-update-version-in-source)
6890 (ede-proj-flush-autoconf):
6891 * cedet/ede/pconf.el (ede-proj-configure-synchronize)
6892 (ede-proj-configure-synchronize):
6893 * cedet/ede/locate.el (ede-locate-file-in-project-impl):
6894 * cedet/ede/linux.el (ede-linux-version):
6895 * cedet/ede/emacs.el (ede-emacs-version):
6896 * cedet/ede/dired.el (ede-dired-add-to-target):
6897 * cedet/ede.el (ede-buffer-header-file, ede-find-target)
6898 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
6899 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
6900 * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
6901 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
6902 (cedet-idutils-version-check):
6903 * cedet/cedet-global.el (cedet-gnu-global-call):
6904 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
6905 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
6906 * cedet/cedet-cscope.el (cedet-cscope-call)
6907 (cedet-cscope-expand-filename, cedet-cscope-version-check):
6908 Use with-current-buffer.
6909 * cedet/ede.el (ede-make-project-local-variable)
6910 (ede-set-project-variables, ede-set): Use dolist.
6911
6912 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
6913
6914 * textmodes/ispell.el (ispell-skip-region-alist):
6915 * international/mule-conf.el (eight-bit):
6916 * international/fontset.el (font-encoding-alist):
6917 * startup.el (pure-space-overflow-message):
6918 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
6919 * paths.el (gnus-nntp-service, rmail-spool-directory)
6920 (term-file-prefix):
6921 * files.el (save-some-buffers-action-alist):
6922 * cmuscheme.el (same-window-buffer-names):
6923 * ielm.el (same-window-buffer-names):
6924 * shell.el (same-window-buffer-names):
6925 * mail/sendmail.el (same-window-buffer-names):
6926 * progmodes/inf-lisp.el (same-window-buffer-names):
6927 * bindings.el (mode-line-client)
6928 (mode-line-column-line-number-mode-map):
6929 * language/tibetan.el (tibetan-precomposition-rule-regexp)
6930 (tibetan-precomposed-regexp): Purecopy string arguments.
6931
6932 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6933
6934 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
6935 (calcDigit-nondigit):
6936 * calc/calc-yank.el (calc-copy-to-buffer):
6937 * calc/calc-units.el (calc-invalidate-units-table):
6938 * calc/calc-trail.el (calc-trail-yank):
6939 * calc/calc-store.el (calc-insert-variables):
6940 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
6941 * calc/calc-prog.el (calc-read-parse-table):
6942 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
6943 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
6944 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
6945 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
6946 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
6947 (calc-graph-name, calc-graph-find-command, calc-graph-view)
6948 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
6949 * calc/calc-ext.el (calc-realign):
6950 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
6951 (calc-embedded-finish-edit, calc-embedded-make-info)
6952 (calc-embedded-finish-command, calc-embedded-stack-change):
6953 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
6954
6955 * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
6956 (overload-docstring-extension): Use that info.
6957 * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
6958 * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
6959 * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
6960 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
6961 (semantic-nonterminal-full-name): Add the new `when' info.
6962 * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
6963 `assert'.
6964
6965 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
6966 shell-dynamic-complete-filename in preference to
6967 comint-dynamic-complete-filename.
6968
6969 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
6970 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
6971 Don't consider whether the display supports colors.
6972 (bookmark-import-new-list): Use dolist.
6973 (bookmark-bmenu-mode-map): Move initialization into declaration.
6974 (bookmark-bmenu-list): Use dolist, simplify.
6975 (bookmark-show-all-annotations): Use save-selected-window and dolist.
6976 (menu-bar-final-items): Use push.
6977
6978 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
6979
6980 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
6981 it works on remote files.
6982 (vc-hg-diff): Don't pass any `--cwd' argument.
6983
6984 2009-10-27 Kevin Ryde <user42@zip.com.au>
6985
6986 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6987 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
6988 (Further to Bug#3921).
6989
6990 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
6991
6992 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
6993 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
6994 calling `tramp-imap-put-file'. Add file size to the call.
6995 (tramp-imap-get-file-entries): Compute also user name, file size,
6996 and date.
6997 (tramp-imap-handle-insert-directory): Insert uid and gid.
6998 (tramp-imap-handle-file-attributes): Transform uid and gid
6999 according to `id-format'.
7000 (tramp-imap-put-file): New optional parameter SIZE. Encode file
7001 size in header X-Size.
7002
7003 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
7004
7005 * simple.el (transpose-subr): Give clearer error when the mark
7006 is not set. (Bug#4807)
7007
7008 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
7009
7010 * net/tramp.el (tramp-perl-file-truename): New defconst.
7011 Perl code contributed by yary <not.com@gmail.com> (tiny change).
7012 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
7013 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
7014 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
7015
7016 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
7017 Ignore `dired-call-process'.
7018 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
7019
7020 2009-10-26 Julian Scheid <julians37@gmail.com>
7021
7022 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
7023 (tramp-get-remote-readlink): New defun.
7024 (tramp-handle-file-truename): Use it.
7025 (tramp-handle-file-exists-p): Check file-attributes cache, assume
7026 file exists if cache value present.
7027 (tramp-check-cached-permissions): New defun.
7028 (tramp-handle-file-readable-p): Use it.
7029 (tramp-handle-file-writable-p): Likewise.
7030 (tramp-handle-file-executable-p): Likewise.
7031 (tramp-handle-file-name-all-completions): Try using Perl to get
7032 partial completions. When perl not available, combine `cd' and
7033 `ls' into single remote operation and use shell expansion to get
7034 partial remote directory contents. Set `file-exists-p' cache for
7035 directory and any files returned by ls. Change cache handling to
7036 support partial directory contents. Use error message emitted by
7037 remote `cd' or Perl code for local tramp-error.
7038 (tramp-do-copy-or-rename-file-directly): Avoid separate
7039 tramp-send-command-and-check call.
7040 (tramp-handle-process-file): Merge three remote ops into one.
7041 Do not flush all caches when `process-file-side-effects' is set.
7042 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
7043 file-attributes shows uid/gid to be set already.
7044
7045 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
7046
7047 * textmodes/tex-mode.el (tex-dvi-view-command)
7048 (tex-show-queue-command, tex-open-quote):
7049 * progmodes/ruby-mode.el (auto-mode-alist)
7050 (interpreter-mode-alist): Purecopy strings.
7051
7052 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
7053
7054 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
7055 string for the hook, keymap and abbrev table.
7056
7057 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
7058
7059 * x-dnd.el (x-dnd-xdnd-to-action):
7060 * startup.el (fancy-startup-text, fancy-about-text): Change to
7061 defconst from defvar.
7062
7063 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
7064
7065 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
7066 Purecopy initialization strings.
7067
7068 * mail/sendmail.el (mail-header-separator)
7069 (mail-personal-alias-file):
7070 * mail/rmail.el (rmail-default-dont-reply-to-names)
7071 (rmail-ignored-headers, rmail-retry-ignored-headers)
7072 (rmail-highlighted-headers, rmail-secondary-file-directory)
7073 (rmail-secondary-file-regexp):
7074 * files.el (null-device, file-name-invalid-regexp)
7075 (locate-dominating-stop-dir-regexp)
7076 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
7077 (interpreter-mode-alist): Use mapcar instead of mapc.
7078
7079 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
7080
7081 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
7082 (completion-ignored-extensions):
7083 (debug-ignored-errors): Purecopy strings.
7084
7085 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7086
7087 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
7088 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
7089 (pcomplete--here): Use push.
7090
7091 * subr.el (all-completions): Declare the 4th arg obsolete.
7092
7093 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7094
7095 * pcomplete.el (pcomplete-unquote-argument-function): New var.
7096 (pcomplete-unquote-argument): New function.
7097 (pcomplete--common-suffix): Always pay attention to case.
7098 (pcomplete--table-subvert): Quote and unquote the text.
7099 (pcomplete--common-quoted-suffix): New function.
7100 (pcomplete-std-complete): Use it and pcomplete-begin.
7101
7102 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
7103 we're inside a dedicated or minibuffer window.
7104
7105 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7106
7107 * cedet/semantic/fw.el (semantic-alias-obsolete)
7108 (semantic-varalias-obsolete): Make the `when' arg mandatory.
7109 (define-mode-overload-implementation):
7110 * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
7111 * cedet/semantic/wisent.el (wisent-lex-make-token-table):
7112 * cedet/semantic/util.el (semantic-file-token-stream)
7113 (semantic-something-to-stream):
7114 * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
7115 (semantic-expand-nonterminal):
7116 * cedet/semantic/tag-file.el (semantic-find-nonterminal)
7117 (semantic-find-dependency, semantic-find-nonterminal)
7118 (semantic-find-dependency):
7119 * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
7120 (semantic-flex-text, semantic-flex-make-keyword-table)
7121 (semantic-flex-keyword-p, semantic-flex-keyword-put)
7122 (semantic-flex-keyword-get, semantic-flex-map-keywords)
7123 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
7124 * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
7125 * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
7126 (semantic-after-idle-scheduler-reparse-hooks):
7127 * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
7128 * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
7129 * cedet/semantic.el (semantic-toplevel-bovine-table)
7130 (semantic-toplevel-bovine-cache)
7131 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
7132 (semantic-init-mode-hooks, semantic-init-db-hooks)
7133 (semantic-bovination-working-type): Provide the `when' arg.
7134
7135 2009-10-24 Karl Fogel <kfogel@red-bean.com>
7136
7137 * bookmark.el: Update documentation, especially documentation
7138 of `bookmark-alist' and of the bookmark file format.
7139 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
7140
7141 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
7142
7143 * mail/emacsbug.el (report-emacs-bug): Clarify that the
7144 keybindings apply to the mail buffer (Bug#4003). Shrink help
7145 window to buffer.
7146
7147 * whitespace.el (whitespace-mode, whitespace-newline-mode)
7148 (global-whitespace-mode, global-whitespace-newline-mode)
7149 (whitespace-toggle-options, global-whitespace-toggle-options):
7150 Doc fix (Bug#3660).
7151
7152 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
7153 of xmltok-start before the end tag was inserted (Bug#2840).
7154
7155 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
7156 patterns that are preceded by an open-paren (Bug#1320).
7157
7158 2009-10-24 Sven Joachim <svenjoac@gmx.de>
7159
7160 * files.el (delete-directory): Delete symlinks to directories with
7161 delete-file (Bug#4739).
7162
7163 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
7164
7165 * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
7166 * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
7167 argument to make-obsolete.
7168
7169 * cedet/semantic/fw.el (semantic-alias-obsolete)
7170 (semantic-varalias-obsolete): Add optional WHEN argument.
7171
7172 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
7173
7174 * vc.el (vc-backend-for-registration): Rename from
7175 vc-get-backend-for-registration. Update callers.
7176
7177 * international/mule-cmds.el (set-language-info-alist):
7178 Purecopy lang-env.
7179 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
7180 (charset): Purecopy the name.
7181 (define-char-code-property): Purecopy string arguments.
7182
7183 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
7184 Purecopy string arguments.
7185
7186 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
7187 * ediff-hook.el (menu-bar-ediff-menu):
7188 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
7189 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
7190
7191 2009-10-24 Glenn Morris <rgm@gnu.org>
7192
7193 * comint.el (comint-dynamic-list-completions):
7194 * term.el (term-dynamic-list-completions): Use choose-completion rather
7195 than obsolete alias mouse-choose-completion.
7196
7197 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
7198 file-cache-choose-completion.
7199 (file-cache-choose-completion): Handle an optional event argument.
7200 (file-cache-mouse-choose-completion): Make it an obsolete alias.
7201
7202 * progmodes/octave-mod.el (octave-complete-symbol):
7203 Use choose-completion if mouse-choose-completion is ever removed.
7204
7205 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
7206 use.
7207
7208 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
7209 compiler.
7210
7211 * vc-hooks.el (vc-responsible-backend): Fix declaration.
7212
7213 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7214
7215 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
7216 Ignore `pred' now that we receive one.
7217 Handle test-completion specially.
7218
7219 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
7220
7221 * vc.el (vc-responsible-backend): Throw an error if not backend is
7222 found. Remove the REGISTER argument. Move the code dealing with
7223 REGISTER ...
7224 (vc-get-backend-for-registration): ... here. New function.
7225 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
7226 of vc-responsible-backend, pass the file name instead of the
7227 directory name.
7228
7229 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
7230
7231 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
7232 New funs.
7233 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
7234 (pcomplete-comint-setup): Don't modify a global var via
7235 accidental side-effects.
7236 (pcomplete-shell-setup): Adjust call accordingly.
7237 (pcomplete-parse-comint-arguments): Use push.
7238
7239 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
7240
7241 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
7242 Allow uncapitalized info node names (Bug#3921).
7243
7244 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
7245 to the DEBUG file (Bug#3781).
7246
7247 2009-10-23 Jari Aalto <jari.aalto@cante.net>
7248
7249 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
7250 dictionary entry (Bug#4579).
7251
7252 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
7253
7254 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
7255 from `rfn-eshadow-update-overlay-hook' when unloading.
7256 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
7257 "rsyncc". Adjust doc string.
7258 (tramp-temp-buffer-file-name): New buffer-local defvar.
7259 (tramp-handle-insert-file-contents, tramp-handle-write-region):
7260 Keep temporary file when indicated by method ("rsync" and
7261 "rsyncc").
7262 (tramp-handle-write-region): Handle APPEND.
7263 (tramp-delete-temp-file-function): New defun. Added to
7264 `kill-buffer-hook'.
7265
7266 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
7267
7268 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
7269
7270 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
7271
7272 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
7273 (color-name-rgb-alist, tty-standard-colors)
7274 (tty-color-mode-alist): Change to defconst.
7275
7276 * simple.el (mark-inactive): Purecopy message.
7277
7278 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
7279 (global-map, yank-menu):
7280 * textmodes/ispell.el (ispell-menu-map):
7281 * net/eudc.el (eudc-tools-menu):
7282 * international/mule-cmds.el (describe-language-environment-map)
7283 (setup-language-environment-map, set-coding-system-map)
7284 (mule-menu-keymap):
7285 * vc-hooks.el (vc-menu-entry, vc-menu-map):
7286 * replace.el (occur-mode-map):
7287 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
7288
7289 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
7290
7291 * calc/calc.el (math-read-number, math-read-number-simple): Use
7292 `save-match-data'.
7293
7294 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
7295
7296 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
7297 rather than fiddling with global-map bindings, since it should only
7298 affect per-terminal settings.
7299 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
7300
7301 * minibuffer.el (completion-table-with-terminator): Allow to specify
7302 the terminator-regexp.
7303
7304 * simple.el (switch-to-completions): Look for *Completions* in other
7305 frames as well.
7306
7307 * pcomplete.el: Allow the use of completion-tables.
7308 (pcomplete-std-complete): New command.
7309 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
7310 (pcomplete--here): Use a function for `form' rather than an expression,
7311 so it can be byte-compiled.
7312 (pcomplete-here, pcomplete-here*): Adjust accordingly.
7313 Add edebug declaration.
7314 (pcomplete-show-completions): Remove unused var `curbuf'.
7315 (pcomplete-do-complete, pcomplete-stub):
7316 Don't assume `completions' is a list of strings any more.
7317
7318 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
7319
7320 * find-dired.el (find-name-arg): Fix typo in docstring.
7321
7322 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
7323
7324 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
7325 (pcmpl-linux-fs-types): Same, and update to new modules layout.
7326
7327 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
7328 pcomplete-entries.
7329
7330 * comint.el (comint-read-input-ring, comint-write-input-ring)
7331 (comint-substitute-in-file-name)
7332 (comint-dynamic-complete-as-filename)
7333 (comint-dynamic-simple-complete)
7334 (comint-dynamic-list-filename-completions)
7335 (comint-dynamic-list-completions)
7336 (comint-redirect-results-list-from-process): Minor simplifications.
7337
7338 2009-10-21 Kevin Ryde <user42@zip.com.au>
7339
7340 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
7341 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
7342 the first form. And insert a blank line after ";;; Code" since
7343 that's usual style. (Bug#4612)
7344
7345 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
7346
7347 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
7348
7349 * minibuffer.el (completion-table-with-terminator): Properly implement
7350 boundaries, in case `terminator' appears in the suffix.
7351 (completion--embedded-envvar-table): Don't return boundaries if
7352 there's no valid completion. Simplify.
7353 (completion-file-name-table): New completion table extracted from
7354 completion--file-name-table.
7355 (completion--file-name-table): Use it.
7356 (read-file-name-predicate): Declare obsolete.
7357 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
7358 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
7359 completion-file-name-table, and use the `pred' argument.
7360 * files.el (locate-file-completion-table): Use the `pred' arg rather
7361 than read-file-name-predicate.
7362 (abbreviate-file-name): Use \` rather than ^ for BOS.
7363
7364 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
7365
7366 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
7367 vc-responsible-backend to register, it causes problems.
7368
7369 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
7370
7371 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
7372
7373 2009-10-21 Eric Ludlam <zappo@gnu.org>
7374
7375 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
7376 (semantic-c-debug-mode-init-pch): New functions.
7377 (semantic-c-debug-mode-init-last-mode): New var.
7378 (semantic-c-parse-lexical-token): Use them.
7379
7380 * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
7381 When extracting the argument list, limit only by point-max.
7382
7383 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
7384
7385 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
7386 (tramp-smb-handle-file-attributes): Use it.
7387 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
7388 (tramp-smb-handle-insert-directory): Use `mapc' rather than
7389 `mapcar'. Use `tramp-smb-get-stat-capability'.
7390 Add `dired-filename' text properties.
7391 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
7392 (tramp-smb-maybe-open-connection): Simplify check for smbclient
7393 version.
7394
7395 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7396
7397 * subr.el (read-key-delay): Reduce to 0.01.
7398 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
7399 (bug#4751).
7400
7401 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7402
7403 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
7404
7405 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
7406 (Info-menu): Remove unused vars `last' and `completions'.
7407 (Info-index-nodes): Remove unused var `node'.
7408
7409 * info.el (Info-complete-menu-item): Use complete-with-action.
7410
7411 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
7412
7413 Make vc-annotate work through copies and renames.
7414 * vc-annotate.el (vc-annotate-extract-revision-at-line):
7415 Return the file name too.
7416 (vc-annotate-revision-at-line)
7417 (vc-annotate-find-revision-at-line)
7418 (vc-annotate-revision-previous-to-line)
7419 (vc-annotate-show-log-revision-at-line): Update to get the file
7420 name from vc-annotate-extract-revision-at-line.
7421 (vc-annotate-show-diff-revision-at-line-internal): Change the
7422 argument to mean whether to show a file diff or not. Get the file
7423 name from vc-annotate-extract-revision-at-line.
7424 (vc-annotate-show-diff-revision-at-line):
7425 Update vc-annotate-show-diff-revision-at-line call.
7426 (vc-annotate-warp-revision): Add an optional file argument.
7427
7428 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
7429 (vc-git-annotate-extract-revision-at-line): Also return the file
7430 name if found.
7431
7432 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
7433 command. Remove unused code.
7434 (vc-hg-annotate-re): Update to match --follow output.
7435 (vc-hg-annotate-extract-revision-at-line): Also return the file
7436 name if found.
7437
7438 * vc.el: Update annotate-extract-revision-at-line documentation.
7439
7440 2009-10-18 Kevin Ryde <user42@zip.com.au>
7441
7442 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
7443 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
7444
7445 * net/browse-url.el (browse-url): Identify alist with "consp and
7446 not functionp" and let all other things go down the `apply' leg,
7447 as suggested by Stefan. (Further to bug#4531.)
7448
7449 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
7450
7451 * minibuffer.el (read-file-name): Check for repeat before putting
7452 a default argument in file-name-history (Bug#4657).
7453
7454 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
7455 read syntax (Bug#4737).
7456
7457 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
7458
7459 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7460
7461 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
7462 (html-tag-alist, html-tag-help): Add descriptions for undocumented
7463 entries and make note of obsolete tags.
7464
7465 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
7466
7467 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
7468
7469 2009-10-18 Glenn Morris <rgm@gnu.org>
7470
7471 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
7472 grep, so that binary files (eg international/uni-bidi.el) can match.
7473 Remove test for "UnicodeData" files, since it is hopefully unnecessary
7474 now, and in any case the file header format has changed.
7475
7476 2009-10-17 Glenn Morris <rgm@gnu.org>
7477
7478 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
7479 (flyspell-get-word, flyspell-large-region)
7480 (flyspell-auto-correct-previous-word): Doc/error message fixes.
7481
7482 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
7483
7484 * Makefile.in (ELCFILES): Add ede/shell.
7485
7486 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
7487
7488 * term/common-win.el (x-colors): Purecopy it.
7489
7490 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7491
7492 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
7493 permissive for when the buffer is empty.
7494 (tar-header-block-tokenize): Decode the username and groupname.
7495 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
7496
7497 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
7498
7499 * cedet/srecode/srt.el:
7500 * cedet/srecode/compile.el:
7501 * cedet/semantic/mru-bookmark.el:
7502 * cedet/semantic/debug.el:
7503 * cedet/semantic/complete.el:
7504 * cedet/semantic/analyze.el: Require CL when compiling.
7505
7506 2009-10-17 Eric Ludlam <zappo@gnu.org>
7507
7508 * cedet/semantic/scope.el
7509 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
7510 tmpscope so that the regular scope will continue to work.
7511
7512 * cedet/semantic/idle.el (semantic-idle-tag-highlight):
7513 Use semantic-idle-summary-highlight-face as the highlighting.
7514
7515 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
7516 contains multibyte characters, choose first applicable coding
7517 system automatically.
7518
7519 * cedet/ede/project-am.el (project-run-target): New method.
7520 (project-run-target): New method.
7521
7522 * cedet/ede.el (ede-target): Add run target menu item.
7523 (ede-project, ede-minor-keymap): Add ede-run-target binding.
7524 (ede-run-target): New function.
7525 (ede-target::project-run-target): New method.
7526
7527 * cedet/ede/proj.el (project-run-target): New method.
7528
7529 * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
7530 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
7531 Add :rules.
7532 (ede-proj-target-makefile-shared-object): Only libtool compilers
7533 now available. Add linkers for libtool.
7534 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
7535 (ede-proj-makefile-target-name): Always use .la extension.
7536
7537 * cedet/ede/proj-prog.el (project-run-target): New method.
7538
7539 * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
7540 (ede-g++-linker): Change Change link lines.
7541
7542 * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
7543 When searching for old variables, go to the end of the buffer and
7544 search backward from there.
7545 (ede-proj-makefile-automake-insert-subdirs)
7546 (ede-proj-makefile-automake-insert-extradist): New methods.
7547 (ede-proj-makefile-create): Use them.
7548
7549 * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
7550 Force FILE to expand to the current target. Use file-exists-p to
7551 check that it exists.
7552
7553 * cedet/ede/linux.el (ede-linux-version): Don't call "head".
7554 (ede-linux-load): Wrap dir in file-name-as-directory.
7555 Set :version slot.
7556
7557 * cedet/ede/files.el (ede-get-locator-object): When enabling
7558 locate, do so on "top".
7559
7560 * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
7561 file-name-as-directory during compare.
7562 (ede-emacs-version): Return Emacs/XEmacs differentiator.
7563 Get version number from different places. Don't call egrep.
7564 (ede-emacs-load): Set :version slot. Call file-name-as-directory
7565 to set the directory.
7566
7567 * cedet/ede/shell.el: New file.
7568
7569 * cedet/inversion.el (inversion-decoders): Allow for stray . in
7570 alpha/beta variants.
7571
7572 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7573
7574 * international/mule-cmds.el (select-safe-coding-system): If the file
7575 has a coding cookie, use it regardless of any other setting (bug#4712).
7576
7577 2009-10-17 Glenn Morris <rgm@gnu.org>
7578
7579 * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
7580 All errors should have messages.
7581
7582 * foldout.el (foldout-mouse-swallow-events):
7583 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
7584
7585 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
7586 (dired-keep-marker-copy, dired-keep-marker-hardlink)
7587 (dired-keep-marker-symlink, dired-dwim-target)
7588 (dired-copy-preserve-time): Do not autoload these defcustoms.
7589
7590 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
7591 messages from messing up the file coding. (Bug#4623)
7592
7593 2009-10-17 Jari Aalto <jari.aalto@cante.net>
7594
7595 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
7596 if no match is found for the current dictionary. (Bug#4578)
7597
7598 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
7599 optional, since that is how it is documented, and this is often called
7600 with a nil argument. (Bug#4577)
7601 (flyspell-external-point-words, flyspell-auto-correct-word)
7602 (flyspell-correct-word-before-point, flyspell-word-search-forward)
7603 (flyspell-word-search-backward): Remove nil argument in calls to
7604 flyspell-get-word, since it is not needed now.
7605
7606 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
7607
7608 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
7609
7610 2009-10-16 Glenn Morris <rgm@gnu.org>
7611
7612 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
7613
7614 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
7615
7616 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
7617 (ange-ftp-file-size): New function.
7618 (ange-ftp-file-attributes): Use it.
7619
7620 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
7621
7622 * net/tramp-smb.el (tramp-smb-version): New defvar.
7623 (tramp-smb-maybe-open-connection): Use it, in order to avoid
7624 repeated checks.
7625
7626 2009-10-16 Glenn Morris <rgm@gnu.org>
7627
7628 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
7629 Maybe copy some custom properties from old to new name. (Bug#4706)
7630
7631 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
7632
7633 * subr.el (error, sit-for, start-process-shell-command)
7634 (start-file-process-shell-command): Set the calling convention
7635 after the function definition.
7636
7637 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
7638
7639 * subr.el (error, sit-for, start-process-shell-command)
7640 (start-file-process-shell-command): Use the new
7641 set-advertised-calling-convention feature.
7642
7643 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
7644
7645 * international/ucs-normalize.el (ucs-normalize-version):
7646 Change to 1.2.
7647 (check-range): Adjust for Unicode 5.2.
7648
7649 2009-10-15 Juri Linkov <juri@jurta.org>
7650
7651 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
7652 to the `menu-item' format.
7653
7654 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
7655
7656 * net/tramp.el (tramp-replace-environment-variables): Do not fail
7657 if the environment variable does not exist.
7658
7659 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7660 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
7661 parameter.
7662 (tramp-smb-handle-add-name-to-file)
7663 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
7664 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
7665 (tramp-smb-handle-file-attributes)
7666 (tramp-smb-do-file-attributes-with-stat)
7667 (tramp-smb-handle-file-local-copy)
7668 (tramp-smb-handle-insert-directory)
7669 (tramp-smb-handle-make-directory)
7670 (tramp-smb-handle-make-directory-internal)
7671 (tramp-smb-handle-make-symbolic-link)
7672 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
7673 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
7674 (tramp-smb-maybe-open-connection): Apply the changed parameters.
7675 (tramp-smb-read-file-entry): Read Disk names in compressed format.
7676 Handle long file names.
7677 (tramp-smb-get-cifs-capabilities): Check, whether the connection
7678 process is running.
7679 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
7680 Read share names with "-g" option.
7681
7682 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
7683
7684 * net/rcirc.el (rcirc-view-log-file): New command.
7685 (rcirc-track-minor-mode-map): Remove C-c ` binding.
7686 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
7687 specified.
7688
7689 2009-10-15 Glenn Morris <rgm@gnu.org>
7690
7691 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
7692 from the second command-line argument.
7693 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
7694 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
7695 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
7696 w32-batch-update-autoloads.
7697 * emacs-lisp/autoload.el (autoload-make-program): New variable.
7698 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
7699
7700 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
7701 the headers cannot be located. Simplify, subtracting superflous
7702 save-excursions.
7703
7704 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
7705
7706 Replace completion-base-size by completion-base-position to fix bugs
7707 such as (bug#4699).
7708 * simple.el (completion-base-position): New var.
7709 (completion-base-size): Mark as obsolete.
7710 (choose-completion): Make it work for mouse events as well.
7711 Pass the new base-position to choose-completion-string.
7712 (choose-completion-guess-base-position): New function, extracted from
7713 choose-completion-delete-max-match.
7714 (choose-completion-delete-max-match): Use it. Make obsolete.
7715 (choose-completion-string): Use the new base-position info.
7716 (completion-root-regexp): Delete.
7717 (completion-setup-function): Preserve completion-base-position.
7718 Eliminate obsolete base-size manipulation.
7719 * minibuffer.el (display-completion-list): Don't mess with base-size.
7720 (minibuffer-completion-help): Set completion-base-position instead.
7721 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
7722 choose-completion.
7723 * textmodes/bibtex.el (bibtex-complete):
7724 * emacs-lisp/crm.el (crm--choose-completion-string):
7725 Adjust to new calling convention.
7726 * complete.el (partial-completion-mode): Use minibufferp to avoid
7727 bumping into incompatible change to choose-completion-string-functions.
7728 * ido.el (ido-choose-completion-string): Make its calling convention
7729 more permissive.
7730 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
7731 base-size manipulation.
7732 (comint-dynamic-list-input-ring): Use dotimes and push.
7733 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
7734 fundamental-mode. Use `or'.
7735
7736 2009-10-14 Juri Linkov <juri@jurta.org>
7737
7738 * misearch.el (multi-isearch-next-buffer-from-list)
7739 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
7740
7741 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7742
7743 * Makefile.in (compile-onefile): Load `bytecomp' rather than
7744 `bytecomp.el'.
7745
7746 * minibuffer.el (completion-pcm--merge-completions): Make sure the
7747 string we return is all made up of text from the completions rather
7748 than part from the completions and part from the input (bug#4219).
7749
7750 * ido.el (ido-everywhere): Use define-minor-mode.
7751
7752 * buff-menu.el (list-buffers, ctl-x-map):
7753 Mark the entry points with ;;;###autoload cookies.
7754
7755 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
7756
7757 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
7758 correctly in the detached head case.
7759 (vc-git-print-log): Remove unused binding.
7760
7761 * vc.el (vc-responsible-backend): When a directory is passed for
7762 for registration create a VC repository if no backend is
7763 responsible for the directory argument.
7764 (vc-deduce-fileset): Tell vc-responsible-backend to register.
7765
7766 * vc.el: Move comments about RCS and SCCS ...
7767 * vc-rcs.el:
7768 * vc-sccs.el: ... here, respectively.
7769
7770 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7771
7772 * minibuffer.el (completion--file-name-table): Return nil if there's
7773 no file completion, even if substitute-in-file-name changed
7774 the string (bug#4708).
7775
7776 2009-10-13 Juri Linkov <juri@jurta.org>
7777
7778 * files-x.el (read-file-local-variable-value): Don't filter out
7779 minor modes from mode name completion (bug#4664).
7780
7781 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
7782
7783 * international/mule-cmds.el (ucs-names): Remove exclusion of
7784 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
7785
7786 2009-10-13 Kenichi Handa <handa@m17n.org>
7787
7788 * international/uni-name.el: Regenerated.
7789
7790 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
7791
7792 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
7793 should be automatically buffer-local, but isn't.)
7794
7795 2009-10-12 Sam Steingold <sds@gnu.org>
7796
7797 * progmodes/compile.el (compilation-next-error-function): Fix the
7798 timestamps if the buffer has been visited before.
7799 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
7800 non-anchored patterns, like the perl one (bug#3928).
7801
7802 2009-10-12 Glenn Morris <rgm@gnu.org>
7803
7804 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
7805 Let-bind `size'.
7806
7807 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
7808
7809 * proced.el (proced-unload-function): New function.
7810
7811 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
7812 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
7813 Doc fix.
7814
7815 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
7816
7817 2009-10-11 Juri Linkov <juri@jurta.org>
7818
7819 * files-x.el (read-file-local-variable-value):
7820 Provide default value only for bound variables (bug#4664).
7821
7822 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
7823
7824 * net/tramp.el (tramp-local-host-p): Function shall return nil for
7825 connection methods like smb.
7826
7827 * net/tramp-cache.el (tramp-flush-connection-property): The hash
7828 can be empty.
7829
7830 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7831 (tramp-smb-file-name-handler-alist): Add handlers for
7832 `add-name-to-file', `make-symbolic-link'.
7833 (tramp-smb-handle-add-name-to-file)
7834 (tramp-smb-do-file-attributes-with-stat)
7835 (tramp-smb-handle-make-symbolic-link)
7836 (tramp-smb-get-cifs-capabilities): New defuns.
7837 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
7838 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
7839 (tramp-smb-handle-file-local-copy)
7840 (tramp-smb-handle-make-directory-internal)
7841 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
7842 The file name syntax depends on cifs capabilities.
7843 (tramp-smb-handle-file-attributes):
7844 Call `tramp-smb-do-file-attributes-with-stat' if possible.
7845 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
7846 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
7847
7848 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
7849
7850 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
7851 (eieio-defclass): Apply deftype handler and setf-method properties
7852 directly.
7853 (eieio-add-new-slot): Avoid union function from cl library.
7854 (eieio--typep): New function.
7855 (eieio-perform-slot-validation): Use it.
7856
7857 2009-10-10 Karl Fogel <kfogel@red-bean.com>
7858
7859 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
7860 Update documentation to refer to the variables documented in r1.135.
7861 (Bug#4188)
7862
7863 2009-10-10 Karl Fogel <kfogel@red-bean.com>
7864
7865 * bookmark.el (Info-suffix-list): Remove this unused variable.
7866 (bookmark-current-point): Remove this obsolete variable.
7867 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
7868 Adjust for removal of bookmark-current-point.
7869
7870 (bookmarks-already-loaded, bookmark-current-buffer)
7871 (bookmark-yank-point): Document. (Bug#4188)
7872
7873 2009-10-10 Glenn Morris <rgm@gnu.org>
7874
7875 * frame.el (frame-height): Doc fix.
7876
7877 * calendar/calendar.el (calendar-split-width-threshold): New option.
7878 (calendar-basic-setup): Use calendar-split-width-threshold.
7879
7880 2009-10-10 Sascha Wilde <wilde@sha-bang.de>
7881
7882 * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
7883 Use .la for Automake.
7884
7885 2009-10-09 Chong Yidong <cyd@stupidchicken.com>
7886
7887 * cedet/ede/pconf.el (ede-proj-configure-synchronize):
7888 Use "autoreconf -i". Suggested by Andreas Schwab.
7889
7890 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
7891
7892 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
7893 Ideographic Supplement" range (U+1F200..U+1F2FF).
7894
7895 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7896
7897 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
7898 since the list will have been rebuilt anyway. (Bug#4349)
7899
7900 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7901
7902 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
7903 (bookmark-bmenu-execute-deletions): Don't save here, as
7904 bookmark-delete will now do so if necessary.
7905 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
7906 (Bug#4348)
7907
7908 2009-10-09 Glenn Morris <rgm@gnu.org>
7909
7910 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
7911
7912 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7913
7914 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
7915 (bookmark-jump-other-window): Just invoke bookmark-jump with new
7916 argument now, so the two function's behaviors will match. (Bug#3645)
7917
7918 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
7919
7920 * cedet/ede/proj.el (project-make-dist, project-compile-project):
7921 Fix filename test.
7922 (ede-proj-dist-makefile): Use expand-file-name instead of concat
7923 to expand file names.
7924
7925 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
7926
7927 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
7928 (tramp-file-name-real-host, tramp-file-name-port):
7929 Apply `save-match-data'.
7930
7931 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
7932 case both directories are remote.
7933 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
7934 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
7935
7936 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
7937
7938 * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
7939 (ede-proj-target-makefile-objectcode): Use it.
7940
7941 * cedet/ede/source.el (ede-want-any-source-files-p)
7942 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
7943 Return search result. This error was introduced while merging.
7944
7945 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
7946
7947 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
7948
7949 2009-10-07 Glenn Morris <rgm@gnu.org>
7950
7951 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
7952 of concat.
7953
7954 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7955
7956 * files-x.el (read-file-local-variable): Include some
7957 non-user-variables in the completion table (bug#4664).
7958
7959 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
7960
7961 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
7962 message.
7963
7964 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7965 (tramp-smb-file-name-handler-alist): Add handler for
7966 `copy-directory', `expand-file-name', `set-file-modes'.
7967 (tramp-smb-handle-copy-directory)
7968 (tramp-smb-handle-expand-file-name)
7969 (tramp-smb-handle-set-file-modes): New defuns.
7970 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
7971 (tramp-smb-handle-file-attributes): Simplify check for retrieving
7972 entry.
7973 (tramp-smb-handle-insert-directory): Don't flush the cache.
7974 (tramp-smb-maybe-open-connection): Check for samba client and
7975 server versions.
7976
7977 2009-10-07 Eli Zaretskii <eliz@gnu.org>
7978
7979 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
7980 to not error out of search for "^lisp=" fails.
7981
7982 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
7983
7984 * makefile.w32-in (WINS_UPDATES): New macro.
7985 (custom-deps, finder-data, autoloads): Use it.
7986
7987 2009-10-07 Glenn Morris <rgm@gnu.org>
7988
7989 * Makefile.in (autoloads): Revert previous change.
7990 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
7991 the list of preloaded files passed on the command-line, get
7992 it from src/Makefile.
7993
7994 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
7995 show the original buffer rather than a random one.
7996
7997 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
7998
7999 * help.el (describe-no-warranty): Place point in a slightly better
8000 position in the GPLv3 text.
8001
8002 2009-10-06 Sam Steingold <sds@gnu.org>
8003
8004 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
8005 the comm attribute is present before calling regexp-quote.
8006
8007 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
8008
8009 * play/animate.el (animate-string): For good effect, make sure
8010 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
8011
8012 * play/animate.el (animate-sequence, animate-birthday-present):
8013 * misc.el (butterfly): Don't set `indent-tabs-mode'.
8014
8015 2009-10-06 Glenn Morris <rgm@gnu.org>
8016
8017 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
8018
8019 * emacs-lisp/autoload.el (autoload-excludes): New variable.
8020 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
8021 (batch-update-autoloads): Process a string value of autoload-excludes,
8022 set during the build process.
8023 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
8024
8025 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
8026 inside with-parsed... macro so that `v' is defined.
8027
8028 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
8029 * progmodes/fortran.el (fortran-end-of-block)
8030 (fortran-beginning-of-block):
8031 Also push mark in the macro case.
8032
8033 * emerge.el (emerge-show-file-name):
8034 * calc/calc.el (calc-quit):
8035 * calc/calc-misc.el (calc-big-or-small):
8036 * calc/calc-graph.el (calc-graph-view):
8037 * calc/calc-ext.el (calc-reset):
8038 * calendar/calendar.el (calendar-basic-setup):
8039 Use window-full-height-p.
8040
8041 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
8042 header we don't understand, don't insert another. (Bug#4624)
8043 If changing mime charset, insert the new one in the right place.
8044
8045 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
8046
8047 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
8048 (cal-tex-cursor-month): Correctly increment the end date for diary and
8049 holiday listing. (Bug#4626)
8050
8051 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8052
8053 * help-fns.el (describe-function-1): Don't burp if the function is not
8054 a symbol.
8055
8056 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
8057
8058 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
8059 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
8060 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
8061 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
8062
8063 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
8064 (eieio-default-superclass): Reflow docstrings.
8065 (this, class-option-assoc, defclass, eieio-class-un-autoload)
8066 (eieio-unbind-method-implementations, defmethod)
8067 (eieio-validate-slot-value, eieio-validate-class-slot-value)
8068 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
8069 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
8070 (eieio-slot-originating-class-p, eieio-slot-name-index)
8071 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
8072 (constructor, initialize-instance, no-next-method, object-print)
8073 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
8074 Fix typos in docstrings.
8075 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
8076 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
8077 (next-method-p): Doc fixes.
8078 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
8079 Fix typos in error messages.
8080 (eieio-defmethod): Fix typo in description of generic method.
8081
8082 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
8083 (eieio-persistent-save-interactive, slot-missing):
8084 Fix typos in docstrings.
8085 (eieio-instance-inheritor-slot-boundp): Doc fix.
8086
8087 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
8088 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
8089
8090 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
8091 (eieio-custom-object-apply-reset):
8092 Fix typos in docstrings and error messages.
8093
8094 * emacs-lisp/eieio-datadebug.el (data-debug-show):
8095 Fix typo in docstring.
8096
8097 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
8098 (eieio-browse-tree): Doc fix.
8099 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
8100 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
8101 Fix typos in docstrings.
8102
8103 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
8104 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
8105 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
8106 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
8107 Reflow docstrings.
8108
8109 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
8110
8111 * vc-hg.el (log-view-vc-backend): Declare for compiler.
8112 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
8113 Set log-view-vc-backend so that diff can work.
8114
8115 * log-view.el (log-view-diff): Use vc-diff-internal instead of
8116 vc-version-diff.
8117 (vc-diff-internal): Autoload this instead of vc-version-diff.
8118
8119 2009-10-05 Eli Zaretskii <eliz@gnu.org>
8120
8121 * simple.el (eval-expression): Doc fix.
8122
8123 * progmodes/cwarn.el (cwarn-mode): Doc fix.
8124
8125 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
8126
8127 * files.el (directory-files-no-dot-files-regexp): New defconst.
8128 (delete-directory): Use it.
8129 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
8130
8131 * net/tramp.el (tramp-verbose): Fix docstring.
8132 (tramp-methods): Add recursive option to `tramp-copy-args'.
8133 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
8134 "scp1_old", "scp2_old", "rsync", "rsyncc".
8135 (tramp-default-method): Check also for `auth-source-user-or-password'.
8136 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
8137 Add handler for `copy-directory'.
8138 (tramp-handle-copy-directory): New defun.
8139 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
8140 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
8141 Optimize sent command.
8142
8143 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8144
8145 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
8146 window if necessary.
8147
8148 * calendar/calendar.el (calendar-basic-setup): Don't call
8149 switch-to-buffer in a dedicated window.
8150
8151 2009-10-05 Karl Fogel <kfogel@red-bean.com>
8152
8153 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
8154 don't do anything related to relocating, just return nil.
8155 (bookmark-error-no-filename): New error.
8156 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
8157 bookmark has no file. Don't even attempt to handle things that
8158 are not files; the whole point of custom handlers is to keep that
8159 knowledge elsewhere anyway. Tighten some comments.
8160 (bookmark-file-or-variation-thereof): Remove now-unused function.
8161 (bookmark-location): Doc string fix.
8162 (Bug#4250)
8163
8164 2009-10-04 Karl Fogel <kfogel@red-bean.com>
8165
8166 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
8167 don't use a file dialog, because they usually don't know how to read
8168 a directory target from the user. (Bug#4230)
8169 Also, make sure the prompt can display directories as well as files.
8170
8171 2009-10-04 Karl Fogel <kfogel@red-bean.com>
8172
8173 * bookmark.el (bookmark-set, bookmark-buffer-name):
8174 Improve doc strings. (Bug#1193)
8175
8176 2009-10-04 Karl Fogel <kfogel@red-bean.com>
8177
8178 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
8179 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
8180 (bookmark-get-annotation, bookmark-set-annotation)
8181 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
8182 (bookmark-set-position, bookmark-get-front-context-string)
8183 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
8184 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
8185 (bookmark-jump-other-window, bookmark-handle-bookmark)
8186 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
8187 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
8188 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
8189 Improve doc strings to say whether bookmark can be a string or
8190 a record or both, and make other consistency and clarity fixes.
8191 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
8192 (bookmark-default-annotation-text, bookmark-yank-word)
8193 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
8194 (bookmark-import-new-list, bookmark-maybe-rename)
8195 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
8196 (bookmark-bmenu-bookmark): Give these doc strings.
8197 (bookmark-bmenu-check-position): Give this a doc string, but also
8198 add a FIXME comment about how the function may be pointless.
8199 (bookmark-default-handler): Rework doc string and change a
8200 parameter name, to clarify that this takes a bookmark record
8201 not a bookmark name.
8202 (bookmark-set): Change a parameter name to indicate its meaning,
8203 and improve the doc string a bit.
8204 (Bug#4188)
8205
8206 2009-10-04 Karl Fogel <kfogel@red-bean.com>
8207
8208 * bookmark.el (bookmark-alist): Document the new `handler' element
8209 in the param alist.
8210 (bookmark-make-record-function): Adjust documentation for above.
8211 (Bug#4193)
8212
8213 2009-10-04 Karl Fogel <kfogel@red-bean.com>
8214
8215 * info.el (Info-bookmark-make-record): Document this function.
8216 (Info-bookmark-jump): Document with a doc string, not just a comment.
8217 (Bug#4203)
8218
8219 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
8220
8221 * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
8222 (semantic-new-buffer-fcn): Call parser setup functions here.
8223 (semantic-mode): Don't call parser setup functions here, it's done
8224 in semantic-new-buffer-fcn now.
8225 (semantic-mode): Parse all existing buffers when enabled.
8226
8227 * cedet/srecode/compile.el (srecode-compile-file):
8228 Call semantic-new-buffer-fcn if the buffer has not been parsed.
8229
8230 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
8231
8232 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
8233
8234 * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
8235 (proj-comp-insert-variable-once): New macro, renamed from
8236 ede-pmake-insert-variable-once in ede/pmake.edl.
8237 (ede-proj-makefile-insert-variables): Use it.
8238
8239 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
8240
8241 * files.el (copy-directory): New defun.
8242
8243 * dired-aux.el (dired-copy-file-recursive): Use it.
8244
8245 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
8246
8247 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
8248 (makefile-end-of-command):
8249 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
8250 (semantic-end-of-context): Fix previous change. Doc fixes.
8251
8252 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
8253
8254 * files-x.el (modify-dir-local-variable)
8255 (copy-dir-locals-to-file-locals-prop-line):
8256 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
8257 (makefile-end-of-command):
8258 * cedet/semantic/lex.el (semantic-lex-token):
8259 * cedet/semantic/analyze/fcn.el
8260 (semantic-analyze-dereference-metatype-1):
8261 * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
8262 (semantic-lex-cpp-undef):
8263 * cedet/semantic/wisent/wisent.el (wisent-skip-block):
8264 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
8265 (semantic-end-of-context): Fix typos in docstrings.
8266
8267 * recentf.el (recentf-unload-function): New function.
8268
8269 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
8270
8271 * cedet/ede.el (ede-project-placeholder-cache-file):
8272 * cedet/semantic/db-file.el (semanticdb-default-save-directory):
8273 * cedet/srecode/map.el (srecode-map-save-file):
8274 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
8275
8276 2009-10-04 Glenn Morris <rgm@gnu.org>
8277
8278 * window.el (window-full-height-p): Add doc string.
8279
8280 2009-10-04 Martin Rudalics <rudalics@gmx.at>
8281
8282 * window.el (window-full-height-p): New function. (Bug#4543)
8283
8284 2009-10-03 Chong Yidong <cyd@stupidchicken.com>
8285
8286 * cedet/srecode/insert.el: Require srecode/args.
8287
8288 * cedet/srecode/args.el: Require srecode/dictionary instead of
8289 srecode/insert.
8290
8291 * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
8292
8293 * files.el (auto-mode-alist): Add .srt and Project.ede.
8294
8295 * cedet/semantic.el (semantic-mode):
8296 Handle srecode-template-mode-hook as well.
8297 (semantic-mode): Use js-mode-hook for Javascript hook.
8298
8299 * cedet/srecode/template.el: Remove hook variable.
8300
8301 * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
8302
8303 * cedet/ede.el (ede-target-forms-menu): Don't enable if no
8304 projects exist.
8305 (ede-project-placeholder-cache-file): Default to a file in
8306 user-emacs-directory.
8307
8308 * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
8309 templates in data-directory.
8310 (srecode-map-save-file): Default to a file in user-emacs-directory.
8311
8312 * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
8313 directory.
8314
8315 2009-09-30 Eric Ludlam <zappo@gnu.org>
8316
8317 * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
8318 Doc fix.
8319
8320 * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
8321 Only insert each variable once.
8322
8323 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
8324 (ede-pmake-insert-variable-shared): Use it.
8325
8326 * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
8327 for lexical table iff table is nil.
8328
8329 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
8330
8331 * vc.el: Remove commented out code.
8332 (vc-derived-from-dir-mode): Remove, unused.
8333 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
8334
8335 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
8336
8337 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
8338 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
8339 there could be recursive loading when `default-directory' is a
8340 remote file name. (Bug#4614)
8341
8342 2009-10-03 Glenn Morris <rgm@gnu.org>
8343
8344 * calendar/calendar.el (calendar-basic-setup): Handle the case where
8345 the frame is wide.
8346 (calendar-generate-window): Test for shrinkability rather than width.
8347
8348 * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
8349 declaration, currently false.
8350
8351 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
8352 reusing existing buffers, in case we happen to visit two files with the
8353 same basename. (Bug#4593)
8354
8355 2009-10-02 Eli Zaretskii <eliz@gnu.org>
8356
8357 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
8358 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
8359 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
8360 subdirs of cedet as well.
8361 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
8362
8363 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8364
8365 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
8366 Obey advertised-signature-table.
8367
8368 * help-fns.el (help-function-arglist): Don't check
8369 advertised-signature-table.
8370 (describe-function-1): Do it here instead so it also applies to subrs.
8371
8372 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
8373
8374 * simple.el (start-file-process): Say in the doc-string, that file
8375 handlers might not support pty association, if PROGRAM is nil.
8376
8377 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
8378 HOST and USER are strings. They are nil, when there are
8379 incomplete entries in ~/.netrc, for example.
8380 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
8381 root directory ("device busy" error otherwise).
8382
8383 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
8384 Flush file properties of created directory.
8385
8386 2009-10-02 Eli Zaretskii <eliz@gnu.org>
8387
8388 * makefile.w32-in (WINS_BASIC): Remove cedet.
8389 (WINS_CEDET): Add cedet.
8390 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
8391
8392 2009-10-02 Kevin Ryde <user42@zip.com.au>
8393
8394 * net/browse-url.el (browse-url): Pass any symbol in
8395 browse-url-browser-function to `apply', since if you've mistakenly put
8396 an unbound symbol then the error is clearer. (Bug#4531)
8397
8398 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
8399
8400 * allout.el (allout-init, allout-back-to-current-heading)
8401 (allout-beginning-of-current-entry, allout-ascend-to-depth)
8402 (allout-ascend, allout-up-current-level, allout-end-of-level)
8403 (allout-previous-visible-heading, allout-forward-current-level)
8404 (allout-backward-current-level, allout-show-children):
8405 * apropos.el (apropos-describe-plist):
8406 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
8407 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
8408 * completion.el (add-completion, add-permanent-completion):
8409 * descr-text.el (describe-text-category, describe-char):
8410 * desktop.el (desktop-lazy-abort):
8411 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
8412 * dired.el (dired-build-subdir-alist):
8413 * ediff.el (ediff-version):
8414 * elide-head.el (elide-head, elide-head-show):
8415 * emerge.el (emerge-version):
8416 * env.el (getenv):
8417 * face-remap.el (variable-pitch-mode):
8418 * faces.el (describe-face):
8419 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
8420 (dired-at-point):
8421 * files.el (find-file-existing, auto-save-mode):
8422 * font-lock.el (font-lock-fontify-buffer):
8423 * help-fns.el (describe-function, describe-variable)
8424 (describe-syntax, describe-categories):
8425 * help.el (view-lossage, describe-bindings, describe-key)
8426 (describe-mode):
8427 * hexl.el (hexl-current-address):
8428 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
8429 * info.el (Info-goto-emacs-key-command-node):
8430 * log-edit.el (log-edit-insert-cvs-template)
8431 (log-edit-insert-cvs-rcstemplate):
8432 * menu-bar.el (menu-bar-mode):
8433 * mouse.el (mouse-appearance-menu):
8434 * newcomment.el (comment-indent-new-line):
8435 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
8436 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
8437 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
8438 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
8439 * recentf.el (recentf-mode):
8440 * savehist.el (savehist-mode, savehist-save):
8441 * shadowfile.el (shadow-copy-files):
8442 * simple.el (kill-ring-save, next-line, previous-line)
8443 (normal-erase-is-backspace-mode):
8444 * strokes.el (strokes-update-window-configuration)
8445 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
8446 (strokes-xpm-for-stroke):
8447 * time.el (emacs-uptime, emacs-init-time):
8448 * tutorial.el (tutorial--describe-nonstandard-key)
8449 (tutorial--detailed-help):
8450 * type-break.el (type-break-mode)
8451 (type-break-mode-line-message-mode, type-break-query-mode)
8452 (type-break-guesstimate-keystroke-threshold):
8453 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
8454 * version.el (emacs-version):
8455 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
8456 * winner.el (winner-mode):
8457 * calendar/timeclock.el (timeclock-in, timeclock-out)
8458 (timeclock-status-string, timeclock-change)
8459 (timeclock-workday-remaining-string)
8460 (timeclock-workday-elapsed-string)
8461 (timeclock-when-to-leave-string):
8462 * calendar/todo-mode.el (todo-add-category):
8463 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
8464 * emacs-lisp/autoload.el (update-file-autoloads):
8465 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
8466 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
8467 (checkdoc-message-text, checkdoc-defun):
8468 * emacs-lisp/debug.el (debugger-list-functions):
8469 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8470 * emacs-lisp/eieio-opt.el (eieio-describe-class)
8471 (eieio-describe-generic):
8472 * emacs-lisp/lisp-mnt.el (lm-synopsis):
8473 * emacs-lisp/shadow.el (list-load-path-shadows):
8474 * emulation/cua-base.el (cua-mode):
8475 * emulation/edt.el (edt-set-scroll-margins):
8476 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
8477 (tpu-toggle-regexp, tpu-toggle-search-direction)
8478 (tpu-toggle-rectangle, tpu-toggle-control-keys):
8479 * emulation/tpu-extras.el (tpu-set-scroll-margins):
8480 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
8481 (viper-set-parsing-style-toggling-macro)
8482 (viper-set-emacs-state-searchstyle-macros):
8483 * emulation/viper.el (viper-set-hooks):
8484 * eshell/esh-mode.el (eshell-truncate-buffer):
8485 * international/mule-cmds.el (prefer-coding-system)
8486 (describe-input-method, describe-language-environment):
8487 * international/mule-diag.el (list-character-sets)
8488 (describe-character-set, describe-coding-system)
8489 (describe-fontset, list-fontsets, list-input-methods):
8490 * mail/sendmail.el (mail-signature):
8491 * net/ange-ftp.el (ange-ftp-copy-file):
8492 * net/browse-url.el (browse-url):
8493 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
8494 * net/quickurl.el (quickurl-add-url):
8495 * net/rcirc.el (names, topic):
8496 * net/xesam.el (xesam-mode):
8497 * play/5x5.el (5x5-new-game):
8498 * play/yow.el (apropos-zippy):
8499 * progmodes/ada-mode.el (ada-mode-version):
8500 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
8501 (f90-end-of-block)
8502 (f90-beginning-of-block):
8503 * progmodes/fortran.el (fortran-end-of-block)
8504 (fortran-beginning-of-block):
8505 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
8506 * progmodes/python.el (python-describe-symbol, python-shell):
8507 * term/ns-win.el (ns-print-buffer):
8508 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
8509 * textmodes/flyspell.el (flyspell-mode-on):
8510 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
8511 (pages-directory-for-addresses):
8512 * textmodes/table.el (table-recognize-cell)
8513 (table-query-dimension, table-generate-source)
8514 (table-insert-sequence, table--warn-incompatibility):
8515 * textmodes/tex-mode.el (tex-validate-buffer):
8516 * textmodes/texinfmt.el (texinfmt-version)
8517 (texinfo-format-buffer):
8518 Use `called-interactively-p' instead of `interactive-p'.
8519
8520 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
8521
8522 * image-mode.el (image-toggle-display):
8523 * emacs-lisp/elp.el (elp-instrument-function):
8524 * emacs-lisp/advice.el (ad-make-advised-definition):
8525 * emacs-lisp/easy-mmode.el (define-minor-mode):
8526 * net/browse-url.el (browse-url-maybe-new-window):
8527 * progmodes/sh-script.el (sh-learn-buffer-indent):
8528 Pass new argument 'any to `called-interactively-p'.
8529
8530 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
8531
8532 * international/uni-bidi.el:
8533 * international/uni-category.el:
8534 * international/uni-combining.el:
8535 * international/uni-comment.el:
8536 * international/uni-decimal.el:
8537 * international/uni-decomposition.el:
8538 * international/uni-digit.el:
8539 * international/uni-lowercase.el:
8540 * international/uni-mirrored.el:
8541 * international/uni-name.el:
8542 * international/uni-numeric.el:
8543 * international/uni-old-name.el:
8544 * international/uni-titlecase.el:
8545 * international/uni-uppercase.el:
8546 Regenerate from Unicode 5.2.0 data.
8547
8548 2009-10-01 Glenn Morris <rgm@gnu.org>
8549
8550 * Makefile.in (ELCFILES): Regenerate.
8551
8552 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8553
8554 * subr.el (interactive-p): Mark obsolete.
8555 (called-interactively-p): Make the optional-ness of `kind' obsolete.
8556 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
8557 advertised-signature-table for subroutines as well.
8558
8559 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
8560 (set-advertised-calling-convention): New function.
8561 (make-obsolete, define-obsolete-function-alias)
8562 (make-obsolete-variable, define-obsolete-variable-alias):
8563 Make the optional-ness of `when' obsolete.
8564 (define-obsolete-face-alias): Make `when' non-optional.
8565 * help-fns.el (help-function-arglist):
8566 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
8567 Use advertised-signature-table.
8568
8569 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
8570
8571 * files.el (delete-directory): New defun. The original function
8572 in fileio.c has been renamed to `delete-directory-internal'.
8573
8574 * dired.el (dired-delete-file): Call `delete-directory' with
8575 RECURSIVE parameter.
8576
8577 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
8578 parameter RECURSIVE. Implementation is missing.
8579
8580 * net/tramp.el (tramp-handle-make-directory): Flush upper
8581 directory's file properties.
8582 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
8583 (tramp-handle-dired-recursive-delete-directory): Flush directory
8584 properties after the remove command only.
8585
8586 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
8587 Handle optional parameter RECURSIVE.
8588
8589 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
8590 Handle optional parameter RECURSIVE.
8591
8592 * net/tramp-smb.el (tramp-smb-errors): Add error message for
8593 connection timeout.
8594 (tramp-smb-handle-delete-directory): Handle optional parameter
8595 RECURSIVE.
8596
8597 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8598
8599 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
8600 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
8601 (byte-compile-defmacro): Use backquotes.
8602
8603 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
8604
8605 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
8606 has no associated file.
8607 (vc-resynch-buffer): Use vc-dir-buffers.
8608
8609 2009-10-01 Glenn Morris <rgm@gnu.org>
8610
8611 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
8612 (chart-file-count):
8613 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
8614 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
8615 * emacs-lisp/eieio-opt.el (eieio-describe-class):
8616 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
8617 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
8618 (eieio-copy-parents-into-subclass, make-instance, class-children)
8619 (eieio-generic-form):
8620 * cedet/cedet-files.el (cedet-directory-name-to-file-name):
8621 * cedet/cedet-idutils.el (cedet-idutils-search)
8622 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
8623 (cedet-idutils-version-check):
8624 * cedet/cedet.el (cedet-version):
8625 * cedet/data-debug.el (data-debug-insert-overlay-button)
8626 (data-debug-insert-overlay-list-button)
8627 (data-debug-insert-buffer-button)
8628 (data-debug-insert-buffer-list-button)
8629 (data-debug-insert-process-button, data-debug-insert-ring-button)
8630 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
8631 (data-debug-insert-stuff-vector-button)
8632 (data-debug-insert-symbol-button, data-debug-insert-string)
8633 (data-debug-insert-number, data-debug-insert-lambda-expression)
8634 (data-debug-insert-nil, data-debug-insert-simple-thing)
8635 (data-debug-insert-custom, data-debug-edebug-expr):
8636 * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
8637 (global-ede-mode-map, ede-new, ede-debug-target)
8638 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
8639 * cedet/semantic.el (semantic-minimum-working-buffer-size)
8640 (semantic-fetch-tags, semantic-submode-list)
8641 (semantic-default-submodes):
8642 * cedet/ede/source.el (ede-source-match):
8643 * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
8644 (project-am-package-info):
8645 * cedet/ede/proj.el (ede-proj-target, project-new-target):
8646 * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
8647 * cedet/ede/proj-comp.el (ede-current-build-list):
8648 * cedet/ede/makefile-edit.el (makefile-move-to-macro):
8649 * cedet/ede/files.el (ede-toplevel-project-or-nil):
8650 * cedet/ede/cpp-root.el (initialize-instance):
8651 * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
8652 (autoconf-parameter-strip, autoconf-insert-new-macro):
8653 * cedet/semantic/wisent.el (wisent-lex-eoi):
8654 * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
8655 (semantic-show-parser-state-mode):
8656 * cedet/semantic/texi.el (semantic-texi-environment-regexp):
8657 * cedet/semantic/tag.el (semantic-tag-new-variable)
8658 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
8659 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
8660 (semantic--tag-deep-copy-tag-list)
8661 (semantic-tag-components-with-overlays-default):
8662 * cedet/semantic/symref.el (semantic-symref-find-text):
8663 * cedet/semantic/senator.el (senator-yank-tag)
8664 (senator-transpose-tags-up):
8665 * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
8666 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
8667 * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
8668 * cedet/semantic/lex.el (semantic-lex-comment-regex)
8669 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
8670 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
8671 * cedet/semantic/lex-spp.el
8672 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
8673 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
8674 * cedet/semantic/idle.el
8675 (semantic-idle-summary-current-symbol-info-brutish)
8676 (semantic-idle-summary-current-symbol-info-default):
8677 * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
8678 (semantic--grammar-macro-compl-dict):
8679 * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
8680 * cedet/semantic/format.el (semantic-format-tag-custom-list)
8681 (semantic-format-tag-canonical-name-default):
8682 * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
8683 (semantic-find-tags-for-completion)
8684 (semantic-find-tags-by-scope-protection-default)
8685 (semantic-deep-find-tags-for-completion):
8686 * cedet/semantic/edit.el
8687 (semantic-edits-incremental-reparse-failed-hook)
8688 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
8689 (semantic-edits-splice-remove, semantic-edits-splice-replace):
8690 * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
8691 * cedet/semantic/dep.el (semantic-dependency-include-path):
8692 * cedet/semantic/db.el (semanticdb-default-find-index-class)
8693 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
8694 (semanticdb-project-roots):
8695 * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
8696 (semanticdb-find-adebug-insert-scanned-tag-cons)
8697 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
8698 (semanticdb-brute-deep-find-tags-for-completion):
8699 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
8700 * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
8701 (semantic-end-of-context-default)
8702 (semantic-ctxt-current-function-default)
8703 (semantic-ctxt-scoped-types-default):
8704 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
8705 (semantic-complete-inline-tag-engine)
8706 (semantic-complete-inline-custom-type)
8707 (semantic-complete-read-tag-analyzer):
8708 * cedet/semantic/chart.el (semantic-chart-tags-by-class)
8709 (semantic-chart-database-size):
8710 * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
8711 (semantic-analyze-current-context):
8712 * cedet/semantic/symref/list.el (semantic-symref)
8713 (semantic-symref-hide-buffer, semantic-symref-symbol):
8714 * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
8715 * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
8716 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
8717 * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
8718 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
8719 (semantic-c-dereference-template):
8720 * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
8721 (semantic--analyze-refs-full-lookup-with-parents)
8722 (semantic--analyze-refs-full-lookup-simple):
8723 * cedet/semantic/analyze/complete.el
8724 (semantic-analyze-possible-completions):
8725 * cedet/srecode/table.el (srecode-mode-table-new):
8726 * cedet/srecode/srt.el (srecode-read-variable-name):
8727 * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
8728 * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
8729 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
8730 * cedet/srecode/map.el (srecode-current-map):
8731 * cedet/srecode/insert.el (srecode-insert)
8732 (srecode-insert-variable-secondname-handler, srecode-insert-method)
8733 (srecode-template-inserter-point-override)
8734 (srecode-insert-include-lookup):
8735 * cedet/srecode/getset.el (srecode-auto-choose-class):
8736 * cedet/srecode/extract.el (srecode-inserter-extract):
8737 * cedet/srecode/document.el
8738 (srecode-document-autocomment-return-last-alist)
8739 (srecode-document-autocomment-param-type-alist)
8740 (srecode-document-insert-function-comment)
8741 (srecode-document-insert-variable-one-line-comment)
8742 (srecode-document-function-name-comment):
8743 * cedet/srecode/dictionary.el (srecode-create-dictionary)
8744 (srecode-compound-toString):
8745 * cedet/srecode/compile.el (srecode-flush-active-templates):
8746 * cedet/srecode/args.el (srecode-semantic-handle-:blank):
8747 Doc/message fixes.
8748
8749 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
8750 match-data. (Bug#4555).
8751
8752 * cedet/semantic/bovine/gcc.el
8753 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
8754 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
8755
8756 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
8757 rather than parsing it as a regexp. This relaxes the layout
8758 requirements and makes errors easier to detect.
8759 (check-declare-verify): Check file is regular.
8760 (check-declare-directory): Doc fix.
8761 * subr.el (declare-function): Doc fix.
8762
8763 * ibuffer.el (ibuffer-format-qualifier):
8764 * isearch.el (hi-lock-regexp-okay):
8765 * calc/calc.el (math-zerop):
8766 * mail/uce.el (rmail-msgbeg, rmail-msgend):
8767 * term/w32-win.el (setup-default-fontset, set-fontset-font):
8768 Remove unused declarations.
8769
8770 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
8771
8772 * cedet/semantic/wisent/javat-wy.el
8773 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
8774
8775 2009-09-30 Juanma Barranquero <lekktu@gmail.com>
8776
8777 * cedet/srecode/expandproto.el: Fix provide statement.
8778
8779 2009-09-30 Eric Ludlam <zappo@gnu.org>
8780
8781 * emacs-lisp/eieio.el (boolean-p): Delete.
8782
8783 2009-09-30 Sascha Wilde <wilde@sha-bang.de>
8784
8785 * cedet/ede/srecode.el: Fix provide statement.
8786
8787 2009-09-30 Glenn Morris <rgm@gnu.org>
8788
8789 * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
8790 * cedet/ede/proj-aux.el (ede-aux-source):
8791 * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
8792 (ede-misc-source):
8793 * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
8794 (semantic-mrub-switch-tags): Fix doc typos.
8795
8796 * cedet/semantic/db-global.el (data-debug-new-buffer)
8797 (data-debug-insert-thing): Remove unneeded declarations (one broken).
8798 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
8799
8800 * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
8801
8802 * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
8803 use of CL function `remove-if-not'.
8804
8805 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
8806
8807 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
8808 filename is not a string.
8809
8810 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
8811
8812 * files.el (safe-local-eval-forms): Fix typo.
8813
8814 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
8815
8816 * vc-hooks.el (vc-dir-buffers): New var.
8817 (vc-state-refresh): New function.
8818 (vc-state): Use it.
8819 (vc-after-save): Always ask the backend to recompute the new state.
8820 Always call vc-dir if necessary, using vc-dir-buffers.
8821 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
8822 Use vc-dir-buffers.
8823 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
8824 (vc-dir-prepare-status-buffer, vc-dir-update)
8825 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
8826 Don't call expand-file-name on default-directory.
8827
8828 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
8829
8830 * speedbar.el (speedbar-item-delete):
8831 * calc/calc-prog.el (calc-kbd-if):
8832 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
8833
8834 * epa.el (epa-key-list-mode-map):
8835 * hi-lock.el (hi-lock-menu): Fix typos in menus.
8836
8837 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
8838 (hs-show-hook): Fix typo in docstring.
8839
8840 2009-09-29 Glenn Morris <rgm@gnu.org>
8841
8842 * cedet/semantic/symref/idutils.el:
8843 * cedet/semantic/symref/list.el: Relicense under GPLv3+.
8844
8845 * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
8846
8847 * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
8848 * cedet/semantic/tag-file.el (semanticdb-table-child-p):
8849 * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
8850 Mark declarations not understood by check-declare.
8851
8852 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
8853 file-name-nondirectory call preventing location of cedet files.
8854 (check-declare-verify): Use literal search rather than re-search.
8855 Add basic defmethod and defclass, and define-overloadable-function.
8856
8857 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
8858 Use tramp-compat-file-attributes rather than nonexistent
8859 tramp-compat-handle-file-attributes.
8860
8861 * Makefile.in (lisptagsfiles4): New.
8862 (AUTOGENEL): Add cedet loaddefs files.
8863 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
8864 (update-elclist, compile-always, backup-compiled-files)
8865 (bootstrap-clean): Add yet another directory level.
8866 (update-elclist): Use LC_COLLATE rather than COLLATE.
8867 (ELCFILES): Update, via `make update-elclist'.
8868
8869 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
8870
8871 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
8872 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
8873 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
8874
8875 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
8876
8877 * Makefile.in (lisptagsfiles3): Define.
8878 (TAGS, TAGS-LISP): Use it.
8879 (update-elclist): Add third directory level to look for elc files.
8880 (compile-always): Likewise.
8881 (backup-compiled-files): Likewise.
8882 (bootstrap-clean): Likewise.
8883 (ELCFILES): Update.
8884
8885 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
8886
8887 * Makefile.in (ELCFILES): Add CEDET files.
8888
8889 2009-09-28 Eric Ludlam <zappo@gnu.org>
8890
8891 CEDET (development tools) package merged.
8892
8893 * cedet/*.el:
8894 * cedet/ede/*.el:
8895 * cedet/semantic/*.el:
8896 * cedet/srecode/*.el: New files.
8897
8898 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
8899
8900 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
8901
8902 * net/tramp.el (top): Require tramp-imap.
8903
8904 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
8905 Use `tramp-compat-handle-file-attributes'.
8906
8907 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
8908
8909 * net/tramp-imap.el: New package.
8910
8911 2009-09-28 Eric Ludlam <zappo@gnu.org>
8912
8913 * emacs-lisp/chart.el:
8914 * emacs-lisp/eieio-base.el:
8915 * emacs-lisp/eieio-comp.el:
8916 * emacs-lisp/eieio-custom.el:
8917 * emacs-lisp/eieio-datadebug.el:
8918 * emacs-lisp/eieio-opt.el:
8919 * emacs-lisp/eieio-speedbar.el:
8920 * emacs-lisp/eieio.el: New files.
8921
8922 * cedet/cedet-cscope.el:
8923 * cedet/cedet-files.el:
8924 * cedet/cedet-global.el:
8925 * cedet/cedet-idutils.el:
8926 * cedet/data-debug.el:
8927 * cedet/inversion.el:
8928 * cedet/mode-local.el:
8929 * cedet/pulse.el: New files.
8930
8931 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8932
8933 * whitespace.el (whitespace-trailing-regexp)
8934 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
8935 Fix doc string.
8936
8937 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
8938
8939 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
8940 menu.
8941
8942 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
8943 menu-bar-ediff-menu.
8944
8945 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
8946 define-overloadable-function.
8947
8948 * progmodes/autoconf.el: Provide autoconf as well, so that this
8949 file can be `require'd.
8950
8951 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
8952
8953 * emacs-lisp/autoload.el (generated-autoload-feature)
8954 (generated-autoload-load-name): New vars.
8955 (autoload-rubric, autoload-generate-file-autoloads): Use them.
8956 (make-autoload): Recognize define-overloadable-function and
8957 defclass forms (for EIEIO).
8958
8959 * Makefile.in (update-subdirs): Exclude cedet directory.
8960
8961 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8962
8963 * term/ns-win.el: Don't set the region face background. (Bug#4381)
8964
8965 * faces.el: Default light-background background for region face to
8966 ns_selection_color under NS.
8967
8968 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
8969
8970 * net/imap-hash.el: New library, see NEWS.
8971
8972 * Makefile.in (ELCFILES): Add imap-hash.el.
8973
8974 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
8975
8976 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
8977 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
8978 * help-macro.el (make-help-screen): Avoid using an ambiguous function
8979 definition where the docstring could be taken for the return value.
8980
8981 2009-09-26 Glenn Morris <rgm@gnu.org>
8982
8983 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
8984 Add option to only show images below a certain size.
8985 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
8986 save-excursion calls.
8987
8988 2009-09-26 Eli Zaretskii <eliz@gnu.org>
8989
8990 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
8991 subdirectories) and eieio.
8992
8993 2009-09-26 Alan Mackenzie <acm@muc.de>
8994
8995 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
8996 buggy bracketing. (Bug#4289)
8997
8998 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
8999 character constants (as case labels). (Bug#4289)
9000
9001 2009-09-25 Juri Linkov <juri@jurta.org>
9002
9003 * files.el (safe-local-eval-forms): Allow time-stamp in
9004 before-save-hook (Bug#4554).
9005
9006 2009-09-25 Drew Adams <drew.adams@oracle.com>
9007
9008 * menu-bar.el (list-buffers-directory): Doc fix.
9009
9010 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
9011
9012 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
9013 Try and avoid copying twice the same paragraph.
9014 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
9015 Remove save-excursion.
9016 (log-edit-changelog-entry): Do it here instead.
9017
9018 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
9019
9020 * bs.el (bs--get-file-name): Use `list-buffers-directory'
9021 when available, instead of hardcoding mode names. Doc fix.
9022
9023 * menu-bar.el (list-buffers-directory): Add docstring.
9024 Make automatically buffer-local.
9025
9026 * dired.el (dired-mode):
9027 * files.el (cd-absolute):
9028 * pcvs.el (cvs-temp-buffer):
9029 * pcvs-util.el (cvs-get-buffer-create):
9030 * shell.el (shell-mode):
9031 * vc-dir.el (vc-dir-mode):
9032 Don't make `list-buffers-directory' buffer local.
9033
9034 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
9035
9036 * comint.el (comint-exec, comint-run, make-comint):
9037 Doc fixes (Bug#4542).
9038
9039 2009-09-25 Glenn Morris <rgm@gnu.org>
9040
9041 * mail/rmailmm.el (rmail-mime): New custom group.
9042 Move all defcustoms in this file into this group.
9043 (rmail-mime-media-type-handlers-alist): Revert previous change.
9044 (rmail-mime-show-images): New option.
9045 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
9046 references to it, since it wasn't actually used for anything.
9047 (rmail-mime-insert-image): New function.
9048 (rmail-mime-image): Use rmail-mime-insert-image.
9049 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
9050 obey the value of `rmail-mime-show-images' option. Print the size of
9051 attachments.
9052
9053 2009-09-25 David Engster <deng@randomsample.de>
9054
9055 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
9056
9057 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9058
9059 * whitespace.el: Does not highlight trailing spaces While point is
9060 at end of line. Does not highligt spaces at beginning of buffer
9061 while point is at beginning of buffer. Does not highlight spaces
9062 at end of buffer while point is at end of buffer. (Bug#4177)
9063 New version 12.0.
9064 (whitespace-display-mappings): Adjust initialization.
9065 (whitespace-point, whitespace-font-lock-refontify): New vars.
9066 (whitespace-color-on, whitespace-color-off): Adjust code.
9067 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
9068 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
9069 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
9070
9071 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
9072
9073 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
9074
9075 * textmodes/sgml-mode.el: Remove xml-mode alias.
9076
9077 * files.el (auto-mode-alist, conf-mode-maybe)
9078 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
9079
9080 2009-09-24 Alan Mackenzie <acm@muc.de>
9081
9082 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
9083 c-forward-conditionals, but it doesn't move point and doesn't set
9084 the mark.
9085 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
9086 (c-down-conditional-with-else, c-backward-conditional)
9087 (c-forward-conditional): Refactor to use c-scan-conditionals.
9088
9089 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
9090
9091 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
9092 (help-default-arg-highlight): Remove.
9093 (help-highlight-arg): New function.
9094 (help-do-arg-highlight): Use it.
9095 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
9096
9097 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
9098
9099 * term.el (term-set-scroll-region, term-handle-ansi-escape):
9100 Undo last change, which didn't fix the problem and introduced others.
9101
9102 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
9103
9104 * progmodes/gdb-mi.el: Don't require speedbar.
9105 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
9106
9107 2009-09-24 Glenn Morris <rgm@gnu.org>
9108
9109 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
9110
9111 * term/ns-win.el (ns-reg-to-script): Define for compiler.
9112
9113 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
9114 there is no newline after the final mime boundary. (Bug#4539)
9115 Move markers on insertion so that any buttons inserted don't end up in
9116 the next part of a multipart message.
9117 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
9118 (rmail-mime-bulk-handler): Optionally handle images.
9119 (rmail-mime-image): New button action.
9120 (rmail-mime-image-handler): New function.
9121 (rmail-mime-mode): New mode.
9122 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
9123
9124 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
9125
9126 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
9127 than just dropping elements from it (bug#4504).
9128
9129 * term.el (term-set-scroll-region): Don't move cursor any more.
9130 (term-handle-ansi-escape): Call term-goto here instead.
9131 Suggested by Ivan Kanis <apple@kanis.eu>.
9132
9133 * term.el: Require CL.
9134 (term-ansi-reset): New function.
9135 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
9136 (term-handle-colors-array): Simplify.
9137
9138 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
9139
9140 * allout.el (allout-overlay-interior-modification-handler)
9141 (allout-obtain-passphrase):
9142 * epa-file.el (epa-file-write-region):
9143 * ps-print.el (ps-begin-job):
9144 * vc-hooks.el (vc-toggle-read-only):
9145 * vc-rcs.el (vc-rcs-rollback):
9146 * vc-sccs.el (vc-sccs-rollback):
9147 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
9148 (vc-version-diff, vc-revert, vc-rollback):
9149 * wdired.el (wdired-check-kill-buffer):
9150 * emacs-lisp/authors.el (authors):
9151 * net/socks.el (socks-open-connection):
9152 * net/zeroconf.el (zeroconf-service-add-hook):
9153 * obsolete/vc-mcvs.el (vc-mcvs-register):
9154 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
9155 (gdb-select-frame):
9156 * progmodes/grep.el (lgrep, rgrep):
9157 * progmodes/idlw-help.el (idlwave-help-check-locations)
9158 (idlwave-help-html-link, idlwave-help-assistant-open-link):
9159 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
9160 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
9161 (reftex-toc-rename-label): Fix typos in error messages.
9162
9163 * dired-aux.el (dired-do-shell-command): Reflow docstring.
9164 (dired-copy-how-to-fn): Doc fix.
9165 (dired-files-attributes, dired-read-shell-command):
9166 Fix typos in docstrings.
9167
9168 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
9169 (dired-x-find-file-other-window): Reflow docstrings.
9170 (dired-omit-marker-char, dired-read-shell-command)
9171 (dired-x-submit-report): Fix typos in docstrings.
9172
9173 * shell.el (shell-mode-hook):
9174 * view.el (View-scroll-line-forward):
9175 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
9176 Fix typos in docstrings.
9177
9178 * net/dig.el (dig-invoke): Fix typo in docstring.
9179 (query-dig): Reflow docstring.
9180
9181 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
9182 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
9183 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
9184 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
9185 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
9186 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
9187 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
9188 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
9189 (idlwave-completion-map, idlwave-current-indent)
9190 (idlwave-custom-ampersand-surround, idlwave-customize)
9191 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
9192 (idlwave-define-abbrev, idlwave-determine-class-special)
9193 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
9194 (idlwave-end-block-reg, idlwave-end-of-statement)
9195 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
9196 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
9197 (idlwave-explicit-class-listed, idlwave-file-header)
9198 (idlwave-fill-paragraph, idlwave-find-class-definition)
9199 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
9200 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
9201 (idlwave-in-quote, idlwave-indent-action-table)
9202 (idlwave-indent-expand-table, idlwave-indent-line)
9203 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
9204 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
9205 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
9206 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
9207 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
9208 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
9209 (idlwave-outlawed-buffers, idlwave-popup-select)
9210 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
9211 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
9212 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
9213 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
9214 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
9215 (idlwave-statement-type, idlwave-struct-skip)
9216 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
9217 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
9218 (idlwave-what-module-find-class): Fix typos in docstrings.
9219 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
9220 (idlwave-calculate-cont-indent, idlwave-expand-equal)
9221 (idlwave-find-module, idlwave-find-structure-definition)
9222 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
9223 (idlwave-list-load-path-shadows, idlwave-next-statement)
9224 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
9225 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
9226 (idlwave-template): Reflow docstrings.
9227
9228 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
9229 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
9230 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
9231 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
9232 (idlwave-shell-display-line, idlwave-shell-display-wframe)
9233 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
9234 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
9235 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
9236 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
9237 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
9238 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
9239 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
9240 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
9241 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
9242 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
9243 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
9244 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
9245 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
9246 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
9247 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
9248 Fix typos in docstrings.
9249 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
9250 (idlwave-shell-hide-output, idlwave-shell-mode)
9251 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
9252 Reflow docstrings.
9253
9254 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
9255
9256 2009-09-24 Ivan Kanis <apple@kanis.eu>
9257
9258 * term.el (term-bold-attribute): New var.
9259 (term-handle-colors-array): Use it.
9260
9261 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
9262
9263 * progmodes/gdb-mi.el (gdb-version): New variable.
9264 (gdb-non-stop-handler): Set gdb-version.
9265 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
9266 Condition "--thread" option on gdb-version.
9267 (gdb-invalidate-threads): Remove unused argument.
9268
9269 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9270
9271 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
9272 to looking-back to avoid ridiculous slow down in large files (bug#4511).
9273
9274 2009-09-23 Glenn Morris <rgm@gnu.org>
9275
9276 * mail/rmail.el (rmail-reply): Don't try to add a References header when
9277 replying to mail without References or Message-Id. (Bug#4525)
9278
9279 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
9280
9281 * term/ns-win.el (ns-reg-to-script): New variable.
9282
9283 2009-09-23 Daiki Ueno <ueno@unixuser.org>
9284
9285 * epg.el (epg-wait-for-status): Preserve existing 'error results.
9286
9287 2009-09-22 Sam Steingold <sds@gnu.org>
9288
9289 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
9290 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
9291 to 1 because hg returns status 1 when nothing is found.
9292 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
9293
9294 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
9295
9296 * textmodes/fill.el: Convert to utf-8 encoding.
9297 (fill-french-nobreak-p): Remove redundant » and « inherited from our
9298 pre-unicode days.
9299
9300 * add-log.el (change-log-fill-forward-paragraph): New function.
9301 (change-log-mode): Use it so fill-region DTRT.
9302 Set fill-indent-according-to-mode here rather than in
9303 change-log-fill-paragraph.
9304 (change-log-fill-paragraph): Remove.
9305
9306 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
9307
9308 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
9309 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
9310
9311 2009-09-22 Glenn Morris <rgm@gnu.org>
9312
9313 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
9314 the scroll-bar scroll the calendar window rather than the buffer.
9315
9316 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
9317 commands that move point (as opposed to scrolling).
9318
9319 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
9320
9321 * emacs-lisp/elint.el (elint): New custom group.
9322 (elint-log-buffer): Make it a defcustom.
9323 (elint-scan-preloaded, elint-ignored-warnings)
9324 (elint-directory-skip-re): New options.
9325 (elint-builtin-variables): Doc fix.
9326 (elint-preloaded-env): New variable.
9327 (elint-unknown-builtin-args): Add an entry for encode-time.
9328 (elint-extra-errors): Make it a variable rather than a constant.
9329 (elint-preloaded-skip-re): New constant.
9330 (elint-directory): Skip files matching elint-directory-skip-re.
9331 (elint-features): New variable, local to linted buffers.
9332 (elint-update-env): Initialize elint-features. Possibly add
9333 elint-preloaded-env to the buffer's environment.
9334 (elint-get-top-forms): Bind elint-current-pos, for log messages.
9335 Skip quoted forms.
9336 (elint-init-form): New function, extracted from elint-init-env.
9337 Make non-list forms a warning rather than an error.
9338 Add the mode-map for define-derived-mode. Handle define-minor-mode,
9339 easy-menu-define, put that adds an error-condition, and provide.
9340 When requiring cl, also require cl-macs. Really require cl, to handle
9341 some cl macros. Store required libraries in the list elint-features,
9342 so as not to re-load them. Treat cc-require like require.
9343 (elint-init-env): Call elint-init-form to do the work.
9344 Handle eval-and-compile and such like.
9345 (elint-add-required-env): Do not clear messages.
9346 (elint-special-forms): Add handlers for function, defalias, if, when,
9347 unless, and, or.
9348 (elint-form): Add optional argument to ignore elint-special-forms,
9349 useful to prevent recursive calls from handlers. Doc fix.
9350 Respect elint-ignored-warnings.
9351 (elint-form): Respect elint-ignored-warnings.
9352 (elint-bound-variable, elint-bound-function): New variables.
9353 (elint-unbound-variable): Respect elint-bound-variable.
9354 (elint-get-args): Respect elint-bound-function.
9355 (elint-check-cond-form): Add some simple handling for (f)boundp and
9356 featurep tests.
9357 (elint-check-defalias-form): New handler.
9358 (elint-check-let-form): Make an empty let a warning rather than an
9359 error.
9360 (elint-check-setq-form): Make an empty setq a warning rather than an
9361 error. Respect elint-ignored-warnings.
9362 (elint-check-defvar-form): Accept null doc-strings.
9363 (elint-check-conditional-form): New handler. Does some simple-minded
9364 checking of featurep and (f)boundp tests.
9365 (elint-put-function-args): New function.
9366 (elint-initialize): Use elint-scan-doc-file rather than
9367 elint-find-builtin-variables. Use elint-put-function-args.
9368 Possibly scan preloaded-file-list.
9369 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
9370 extend to handle functions as well.
9371
9372 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
9373
9374 * linum.el (linum-delete-overlays, linum-update-window):
9375 Do not modify the right margin. (Bug#3971)
9376
9377 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
9378
9379 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
9380 nxml-mode instead of xml-mode.
9381
9382 2009-09-21 Kevin Ryde <user42@zip.com.au>
9383
9384 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
9385
9386 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9387
9388 * net/dig.el (dig-mode): Use define-derived-mode.
9389
9390 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
9391
9392 * vc-dispatcher.el (vc-do-command): Return the process object in
9393 the asynchronous case. Use when instead of if. Do not run
9394 vc-exec-after to display a message if not enabled. (Bug#4463)
9395
9396 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
9397 properties to the stash strings.
9398 (vc-git-stash-list): Return a list of strings.
9399 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
9400 (vc-git-stash-show-at-point): New functions.
9401 (vc-git-stash-map): New keymap.
9402
9403 * register.el (ctl-x-r-map): Define the keys here instead of
9404 using autoload.
9405
9406 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
9407
9408 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
9409 list, to workaround performance problem (bug#4485).
9410
9411 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
9412
9413 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
9414
9415 2009-09-20 Daiki Ueno <ueno@unixuser.org>
9416
9417 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
9418 Document that this option is not recommended to use.
9419
9420 2009-09-19 Glenn Morris <rgm@gnu.org>
9421
9422 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
9423 variable `var'.
9424
9425 * calc/calc-alg.el (var):
9426 * calc/calcalg2.el (var): Define for compiler.
9427
9428 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
9429
9430 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
9431 Doc fix (Bug#3932).
9432
9433 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
9434
9435 * time-stamp.el (time-stamp-month-dd-yyyy)
9436 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
9437 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
9438 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
9439 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
9440 Remove functions that have been obsolete since 1995 (Bug#4436).
9441
9442 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
9443 indent buffer only if called interactively (Bug#4452).
9444
9445 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
9446 Eli Zaretskii <eliz@gnu.org>
9447
9448 This fixes bug#4197 (merged to bug#865, though not identical).
9449 * server.el (server-auth-dir): Add docstring note about FAT32.
9450 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
9451 but warn against using them.
9452
9453 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
9454
9455 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
9456 older GDB where there is no has_more field.
9457
9458 2009-09-19 Glenn Morris <rgm@gnu.org>
9459
9460 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
9461
9462 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
9463
9464 * files.el (auto-mode-alist): Change default for XML files to nXML
9465 mode (Bug#4169).
9466
9467 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
9468
9469 * server.el (server-ensure-safe-dir): Pass 'integer
9470 to `file-attributes', as suggested.
9471
9472 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
9473
9474 * dired-aux.el (dired-query-alist): Remove spurious backslash.
9475 (dired-query): Use read-key.
9476
9477 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
9478
9479 * cus-start.el (ns-use-qd-smoothing): Remove.
9480
9481 2009-09-18 Glenn Morris <rgm@gnu.org>
9482
9483 * allout.el (top-level): Remove unnecessary progn.
9484
9485 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
9486
9487 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
9488 definition of abbrev table.
9489
9490 * speedbar.el (speedbar-track-mouse):
9491 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
9492 * net/eudc.el (eudc-expand-inline):
9493 * net/newst-backend.el (newsticker--cache-read-feed):
9494 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
9495 condition-case handlers.
9496
9497 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
9498
9499 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
9500 (gdb-var-list): Add an element for has_more field.
9501 (gdb-non-stop-handler): Enable pretty printing for STL containers.
9502 (gdb-var-create-handler, gdb-var-list-children-handler-1)
9503 (gdb-var-update-handler-1): Parse output of dynamic variable
9504 objects (STL containers).
9505 (gdb-var-delete-1): Pass var1 as an explicit second argument.
9506 (gdb-get-field): Delete alias. Use bindat-get-field directly.
9507
9508 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
9509 gdb-var-list.
9510 (gud-speedbar-buttons): Make node expandable if expression "has more"
9511 children.
9512
9513 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
9514
9515 * startup.el (emacs-quick-startup): Remove variable and all uses.
9516 (command-line): Set `inhibit-x-resources' instead.
9517 (command-line-1): Use `inhibit-x-resources' instead.
9518
9519 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
9520
9521 * subr.el: Fix last change to avoid using the `unless' macro,
9522 which breaks bootstrapping.
9523
9524 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9525
9526 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
9527 extended definitions, in case we reload subr.el after having
9528 loaded CL.
9529 (eval-next-after-load): Mark as obsolete.
9530
9531 2009-09-17 Juri Linkov <juri@jurta.org>
9532
9533 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
9534 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
9535 (menu-bar-showhide-menu, menu-bar-tools-menu)
9536 (menu-bar-describe-menu, menu-bar-help-menu)
9537 (minibuffer-local-completion-map, minibuffer-local-map):
9538 Fix list quoting.
9539
9540 2009-09-17 Glenn Morris <rgm@gnu.org>
9541
9542 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
9543 arguments, whether or not it has a handler.
9544
9545 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
9546
9547 * simple.el (hard-newline): Give it a doc-string.
9548
9549 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
9550 (lisp-mode-syntax-table): Give them doc-strings.
9551
9552 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
9553
9554 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
9555 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
9556 (menu-bar-options-menu, menu-bar-showhide-menu)
9557 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
9558 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
9559 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
9560 (menu-bar-options-menu, menu-bar-tools-menu)
9561 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
9562 (menu-bar-help-menu):
9563 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
9564 string arguments.
9565
9566 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
9567 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
9568 calls for the menu names and :help.
9569
9570 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9571
9572 * mouse.el (minor-mode-menu-from-indicator): Pay attention
9573 to :minor-mode-function (bug#4455).
9574
9575 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9576
9577 * startup.el (command-line): Initialize the window-system after
9578 processing the command-line.
9579
9580 * textmodes/page.el (what-page): Make sure we don't inf-loop if
9581 page-delimiter matches the empty string.
9582
9583 2009-09-16 Glenn Morris <rgm@gnu.org>
9584
9585 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
9586 byte-compile-not-obsolete-var. It's a list now.
9587 (byte-compile-not-obsolete-funcs): New variable.
9588 (byte-compile-warn-obsolete): Don't warn about functions if they are in
9589 byte-compile-not-obsolete-funcs.
9590 (byte-compile-variable-ref, byte-compile-defvar): Update for
9591 byte-compile-not-obsolete-vars name-change and list nature.
9592 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
9593 and variables behind (f)boundp tests.
9594 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
9595
9596 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
9597
9598 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
9599
9600 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
9601
9602 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
9603 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
9604 Don't autoload.
9605
9606 2009-09-15 Stephen Eglen <stephen@gnu.org>
9607
9608 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
9609 the virtual-buffers, use the name of the buffer specified by
9610 find-file-noselect, as the match may be a symlink. (This was a
9611 problem if the target and the symlink had different names.)
9612
9613 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
9614
9615 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
9616
9617 * desktop.el (desktop-path): Check user-emacs-directory.
9618
9619 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
9620
9621 * loadup.el: Use after-load-functions to GC after loading each file.
9622 Remove the explicit GC calls that used to be sprinkled around.
9623
9624 * subr.el (after-load-functions): New hook.
9625 (do-after-load-evaluation): Run it. Use string-match-p to detect
9626 `obsolete' packages, rather than painfully extracting the relevant
9627 directory name.
9628
9629 2009-09-15 Glenn Morris <rgm@gnu.org>
9630
9631 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
9632 free variable `doc'.
9633
9634 * dired.el (dired-mode-map): Add menu entry for async shell command.
9635
9636 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
9637 variables, also consider the .elc files, since the .el files are
9638 normally gzipped (subsequent code locates the .el.gz from the .elc).
9639
9640 * calc/calc-prog.el (arglist): Define for compiler.
9641
9642 * calendar/diary-lib.el (diary-display-function): Change the default to
9643 fancy display.
9644 (body): Define for compiler.
9645
9646 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
9647 (byte-compile-file-form, byte-compile-lambda)
9648 (byte-compile-top-level-body, byte-compile-form)
9649 (byte-compile-variable-ref, byte-compile-setq)
9650 (byte-compile-setq-default, byte-compile-body)
9651 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
9652 (batch-byte-compile): Give some more local variables with common names
9653 a "bytecomp-" prefix to avoid masking warnings about free variables.
9654
9655 * startup.el (command-line-1): Give local variables with common names a
9656 distinguishing prefix, so as not to hide free variable warnings during
9657 bootstrap.
9658
9659 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
9660 clever and add a suffix to make a unique name, just let the user decide
9661 whether or not to overwrite it. If the input is a directory, write the
9662 default filename to that directory. (Bug#4388)
9663 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
9664 is a filename-as-a-directory.
9665
9666 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
9667
9668 * textmodes/page.el (what-page): Don't move to beginning of line.
9669 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
9670
9671 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
9672
9673 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
9674
9675 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
9676
9677 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
9678 * help.el (help-for-help-internal): Add purecopy calls for text.
9679
9680 * vc.el (top): print-log method now takes an optional SHORTLOG
9681 argument. Add a new method: root.
9682 (vc-root-diff, vc-print-root-log): New functions.
9683 (vc-log-short-style): New variable.
9684 (vc-print-log-internal): Add support for showing short logs.
9685
9686 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
9687 vc-print-root-log and vc-print-root-diff.
9688
9689 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
9690 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
9691 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
9692 short logs.
9693
9694 * vc-cvs.el (vc-cvs-print-log):
9695 * vc-mtn.el (vc-mtn-print-log):
9696 * vc-rcs.el (vc-rcs-print-log):
9697 * vc-sccs.el (vc-sccs-print-log):
9698 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
9699 that is ignored for now.
9700
9701 * vc-mtn.el (vc-mtn-annotate-command):
9702 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
9703
9704 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
9705
9706 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
9707 to function-key-map, and give them ascii-character property.
9708 * term/x-win.el (x-alternatives-map):
9709 * term/ns-win.el (ns-alternatives-map):
9710 * term/internal.el (msdos-key-remapping-map):
9711 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
9712
9713 2009-09-14 Glenn Morris <rgm@gnu.org>
9714
9715 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
9716 temp-buffers (2009-09-12).
9717
9718 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9719
9720 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
9721 the new read-key function.
9722
9723 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
9724
9725 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
9726 is defined (Bug#4405).
9727
9728 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
9729
9730 * recentf.el (recentf-cleanup): Use a hash table to find
9731 duplicates (Bug#4407).
9732
9733 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
9734
9735 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
9736 kp-0 to ascii equivalents (Bug#4325).
9737
9738 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
9739
9740 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
9741
9742 * eshell/em-hist.el:
9743 * eshell/em-dirs.el (eshell-complete-user-reference):
9744 Declare pcomplete functions and variables to avoid compiler warnings.
9745
9746 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
9747
9748 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
9749 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
9750 * eshell/em-alias.el (eshell-aliases-file):
9751 * eshell/em-hist.el (eshell-history-file-name):
9752 Use expand-file-name instead of concat to make file names (Bug#4308).
9753
9754 2009-09-13 Glenn Morris <rgm@gnu.org>
9755
9756 * ediff-merg.el (ediff-do-merge):
9757 * filesets.el (filesets-run-cmd):
9758 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
9759 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
9760 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
9761 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
9762 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
9763 Replace empty `let's with `progn'.
9764
9765 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9766
9767 * mail/sendmail.el (send-mail-function):
9768 * tooltip.el (tooltip-mode):
9769 * simple.el (transient-mark-mode):
9770 * rfn-eshadow.el (file-name-shadow-mode):
9771 * frame.el (blink-cursor-mode):
9772 * font-core.el (global-font-lock-mode):
9773 * files.el (temporary-file-directory)
9774 (small-temporary-file-directory, auto-save-file-name-transforms):
9775 * epa-hook.el (auto-encryption-mode):
9776 * composite.el (global-auto-composition-mode):
9777 Use custom-initialize-delay.
9778 * startup.el (command-line): Don't explicitly call
9779 custom-reevaluate-setting for all the above vars.
9780 * custom.el (custom-initialize-safe-set)
9781 (custom-initialize-safe-default): Delete.
9782
9783 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9784
9785 * term/x-win.el (x-initialize-window-system):
9786 * term/w32-win.el (w32-initialize-window-system):
9787 * term/ns-win.el (ns-initialize-window-system): Don't call
9788 mouse-wheel-mode since it's enabled globally by default already.
9789
9790 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
9791 actually define the variable, but only silences the byte-compiler.
9792 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
9793 before looking it up.
9794 (mouse-wheel-scroll-amount): Also reset the bindings if this value
9795 is changed.
9796
9797 2009-09-12 Glenn Morris <rgm@gnu.org>
9798
9799 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
9800 1000.
9801 (elint-add-required-env): Don't beep on error.
9802 (elint-forms): In case of error, return ENV unchanged.
9803 (elint-init-env): Skip non-list forms.
9804 (elint-log): Handle unknown file positions.
9805
9806 2009-09-12 Daiki Ueno <ueno@unixuser.org>
9807
9808 * epg.el (epg-make-context): Add autoload cookie.
9809 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
9810 (epg-decrypt-string, epg-start-verify, epg-verify-file)
9811 (epg-verify-string, epg-start-sign, epg-sign-file)
9812 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
9813 (epg-encrypt-string, epg-start-export-keys)
9814 (epg-export-keys-to-file, epg-export-keys-to-string)
9815 (epg-start-import-keys, epg-import-keys-from-file)
9816 (epg-import-keys-from-string, epg-start-receive-keys)
9817 (epg-receive-keys, epg-import-keys-from-server)
9818 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
9819 (epg-sign-keys, epg-start-generate-key)
9820 (epg-generate-key-from-file, epg-generate-key-from-string):
9821 Remove autoload cookie.
9822
9823 2009-09-12 Eli Zaretskii <eliz@gnu.org>
9824
9825 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
9826 reevaluation of trash-directory.
9827
9828 * mwheel.el: Fix last change.
9829 (mouse-wheel-mode): New defvar.
9830 (mouse-wheel-mode): Remove autoload cookie.
9831
9832 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9833
9834 * mwheel.el (mwheel-installed-bindings): New var.
9835 (mouse-wheel-mode): Use it, so as to make sure we really remove all
9836 the bindings we set last time. Use custom-initialize-delay.
9837 * loadup.el: Load mwheel after term/*-win.el.
9838 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
9839 and mouse-wheel-up-event now that their first evaluation is done
9840 sufficiently late to be correct.
9841
9842 * startup.el (tutorial-directory): Make it a defcustom.
9843 Use custom-initialize-delay rather than eval-at-startup to set it.
9844 * image.el (image-load-path): Make it a defcustom.
9845 Use custom-initialize-delay rather than eval-at-startup to set it.
9846 * subr.el (eval-at-startup): Remove.
9847 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
9848
9849 * subr.el (do-after-load-evaluation): Warn the user after loading an
9850 obsolete package.
9851
9852 2009-09-12 Glenn Morris <rgm@gnu.org>
9853
9854 * proced.el (proced-mark-alt): Remove alias.
9855 (proced-mode-map): Remove proced-mark-alt.
9856
9857 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
9858 Elint file and directory. Remove initialization entry.
9859
9860 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
9861 commands.
9862 (elint-current-buffer): Set mode-line-process.
9863 (elint-init-env): Handle define-derived-mode.
9864 Fix declare-function with unspecified arglist. Guard against odd
9865 defalias statements (eg iso-insert's 8859-1-map).
9866 (elint-add-required-env): Use a temp buffer.
9867 (elint-form): Just print the function/macro name, not the whole form.
9868 Return env unchanged if we fail to parse a macro.
9869 (elint-forms): Guard against parse errors.
9870 (elint-output): New function, to handle batch mode.
9871 (elint-log-message): Add optional argument. Use elint-output.
9872 (elint-set-mode-line): New function.
9873
9874 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
9875
9876 * emacs-lisp/elp.el (elp-not-profilable): Add more
9877 functions (Bug#4233).
9878
9879 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
9880
9881 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
9882 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
9883
9884 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
9885
9886 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
9887 (gdb-var-list-children): Use json parsing.
9888
9889 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
9890
9891 * progmodes/js.el (js--proper-indentation): Handle the case where
9892 char-before is null. Reported by Deniz Dogan.
9893
9894 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
9895
9896 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
9897
9898 2009-09-11 Daiki Ueno <ueno@unixuser.org>
9899
9900 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
9901 (epg-digest-algorithm-alist): Add SHA224.
9902 (epg-context-set-passphrase-callback)
9903 (epg-context-set-progress-callback): Add description about
9904 callback function.
9905
9906 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9907
9908 * custom.el (custom-delayed-init-variables): New var.
9909 (custom-initialize-delay): New function.
9910 * startup.el (command-line): "Re"evaluate all vars in
9911 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
9912 explicitly any more.
9913 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
9914 to avoid creating a ~/.emacs.d at build-time (bug#4347).
9915
9916 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
9917
9918 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
9919
9920 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
9921 (gdb-var-update-handler): Use json parsing.
9922
9923 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
9924
9925 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
9926 decode annotated text, regardless of language environment. (Bug#2741)
9927
9928 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9929
9930 * Makefile.in (autoloads): Make rmail.el writable as well.
9931
9932 2009-09-11 Glenn Morris <rgm@gnu.org>
9933
9934 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
9935 loaddefs.el.
9936 * dired.el: Regenerate with extracted autoloads.
9937 * Makefile.in (autoloads): Make dired.el writable.
9938
9939 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
9940 * ibuffer.el: Regenerate with extracted autoloads.
9941 * Makefile.in (autoloads): Make ibuffer.el writable.
9942
9943 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
9944 * version.el (emacs-copyright, emacs-major-version)
9945 (emacs-minor-version): Reformat doc-strings for make-docfile.
9946
9947 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
9948 functions and variables, since they must be stuff specific to some other
9949 platform.
9950 (apropos-print): Make mouse-click message less specific about button.
9951
9952 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
9953 that records where a macro was defined.
9954 * help-fns.el (describe-function-1): Mention if a function has a
9955 compiler-macro.
9956 * help-mode.el (help-function-cmacro): New button.
9957
9958 * locate.el (top-level): Always require dired.
9959 (locate-mode-map): Initialize inside the defvar.
9960
9961 * net/ange-ftp.el (dired-compress-file): Declare.
9962 (ange-ftp-dired-compress-file): Add doc string.
9963
9964 * term/ns-win.el (x-display-name, x-setup-function-keys):
9965 Unify doc-strings with X versions.
9966
9967 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9968
9969 * emulation/crisp.el (crisp-mode-map): Move initialization
9970 into declaration.
9971 (crisp-mode): Use define-minor-mode.
9972
9973 * progmodes/xscheme.el (xscheme-evaluation-commands):
9974 Put a :advertised-binding property rather than using
9975 advertised-xscheme-send-previous-expression.
9976 (advertised-xscheme-send-previous-expression): Declare obsolete.
9977 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
9978 `advertised-undo'.
9979 (crisp-mode): Add corresponding bindings to
9980 undo's :advertised-binding instead.
9981 * dired.el (dired-mode-map): Put a :advertised-binding property rather
9982 than using dired-advertised-find-file.
9983 (dired-advertised-find-file):
9984 * simple.el (advertised-undo):
9985 * wid-edit.el (advertised-widget-backward): Declare obsolete.
9986 (widget-keymap): Put a :advertised-binding property rather
9987 than using advertised-widget-backward.
9988 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
9989 than using advertised-undo.
9990 * tutorial.el (tutorial--default-keys): Adjust accordingly.
9991
9992 2009-09-10 Simon South <ssouth@slowcomputing.org>
9993
9994 * progmodes/delphi.el (delphi-tab): Indent region when Transient
9995 Mark mode is enabled and region is active; otherwise indent or
9996 insert TAB as usual.
9997 (delphi-mode): Update description of TAB-key binding.
9998
9999 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
10000
10001 * subr.el (define-key-rebound-commands): Mark obsolete.
10002 * startup.el (precompute-menubar-bindings): Remove.
10003 (normal-top-level): Remove obsolete code that tried to precompute
10004 menubar bindings.
10005 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
10006 define-key-rebound-commands and precompute-menubar-bindings.
10007
10008 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
10009
10010 * net/imap.el (imap-interactive-login): Better messages.
10011 (imap-open): Fix bug with renamed buffer on reconnect.
10012 (imap-authenticate): Add buffer-local imap-last-authenticator variable
10013 for easier debugging and cleaner code. On successful (guessed based on
10014 server capabilities) secondary authentication, set imap-state
10015 correctly.
10016 (imap-last-authenticator): Define imap-last-authenticator as a variable
10017 to avoid warnings.
10018
10019 2009-09-10 Glenn Morris <rgm@gnu.org>
10020
10021 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
10022
10023 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
10024 (byte-compile-file-form-autoload): Don't warn about unknown functions
10025 where the autoload statement comes after the use.
10026 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
10027 that any handlers inside the body (eg require) are in turn respected.
10028
10029 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
10030 effects.
10031
10032 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
10033 and syntax and abbrev tables basic docs, if they don't have any.
10034
10035 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
10036
10037 * international/mule-cmds.el (top-level): Require cl when compiling.
10038 (view-hello-file): Use default-value rather than
10039 default-enable-multibyte-characters.
10040
10041 * progmodes/fortran.el: Move all safe and risky properties into the
10042 defcustoms.
10043
10044 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
10045 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
10046 * mail/undigest.el:
10047 Put autoloads in rmail.el rather than loaddefs.el.
10048 * mail/rmail.el: Regenerate with extracted autoloads.
10049
10050 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
10051 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
10052
10053 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
10054
10055 Reported in thread for Bug#4375.
10056 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
10057 "-data-evaluate-expression" instead of print.
10058 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
10059 (gdb-tooltip-print): Parse output from above MI command.
10060 (gdb): Revert 2009-08-11 change. User should detach inferior
10061 manually.
10062
10063 Remove the word "separate" from IO functions as inferior
10064 output is now never displayed in the GUD buffer.
10065
10066 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
10067
10068 * startup.el (command-line-normalize-file-name): On Windows and
10069 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
10070
10071 2009-09-10 Juri Linkov <juri@jurta.org>
10072
10073 * isearch.el (isearch-text-char-description): Propertize escape
10074 character sequences with the `escape-glyph' face. (Bug#4344)
10075
10076 * simple.el (shell-command): Set asynchronous process filter to
10077 `comint-output-filter'. (Bug#4343)
10078
10079 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
10080 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
10081 the list. Move "asm" to the bottom.
10082 (grep-find-ignored-directories): Add `choice' with nil value
10083 to empty the list easily.
10084 (grep-find-ignored-files): New option.
10085 (grep-files-history): Set to nil by default instead of '("ch" "el").
10086 (grep-compute-defaults): Add "<X>" to `grep-template'.
10087 (grep-read-files): Bind new local variables `default-alias' and
10088 `default-extension'. Use a list of default values for the file prompt.
10089 (lgrep): Add `--exclude=' command line options composed from
10090 `grep-find-ignored-files'.
10091 (rgrep): Add `-name' command line options composed from
10092 `grep-find-ignored-files'. (Bug#4301)
10093
10094 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
10095
10096 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
10097 (bug#4368).
10098
10099 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
10100
10101 * calendar/time-date.el (autoload):
10102 Expand define-obsolete-function-alias into defalias and make-obsolete
10103 for old Emacsen that Gnus supports.
10104 (with-no-warnings): Define it for old Emacsen.
10105 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
10106 is available.
10107 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
10108 float-time is available; suppress compile warning for time-to-seconds.
10109
10110 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
10111
10112 * net/imap.el (imap-message-map): Docstring fix.
10113
10114 2009-09-09 Glenn Morris <rgm@gnu.org>
10115
10116 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
10117 line numbers too. (Bug#4374)
10118
10119 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
10120
10121 * smerge-mode.el (smerge-remove-props, smerge-refine):
10122 Use with-silent-modifications (bug#4342).
10123
10124 * subr.el (with-silent-modifications): New macro.
10125
10126 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
10127
10128 * files.el (top-level): Require `cl' when compiling.
10129
10130 2009-09-07 Glenn Morris <rgm@gnu.org>
10131
10132 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
10133
10134 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
10135 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
10136
10137 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
10138
10139 * vc-git.el (vc-git-annotate-command): Use separator to parse
10140 arguments correctly.
10141
10142 2009-09-06 Eli Zaretskii <eliz@gnu.org>
10143
10144 * proced.el (proced-mode): Doc fix.
10145
10146 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
10147
10148 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
10149 lstat fails.
10150 (tramp-do-file-attributes-with-ls): Check for file existence at
10151 remote end.
10152 (tramp-do-file-attributes-with-stat): Likewise.
10153 (tramp-convert-file-attributes): Return nil when attr is nil.
10154
10155 2009-09-05 Glenn Morris <rgm@gnu.org>
10156
10157 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
10158 properties to this button.
10159 (diary-fancy-display): Don't extend the button to the final newline.
10160 (diary-fancy-display-mode): Continue to define "q" as a local key.
10161
10162 * calendar/cal-china.el (holiday-chinese): Make it slightly more
10163 efficient.
10164
10165 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
10166
10167 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
10168 (byte-compile-dest-file-function): New option.
10169 (byte-compile-dest-file): Doc fix.
10170 Obey byte-compile-dest-file-function.
10171 (byte-compile-cl-file-p): New function.
10172 (byte-compile-eval): Only suppress noruntime warnings about cl functions
10173 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
10174 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
10175 than for file being previously loaded.
10176 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
10177 (byte-compile-file-form-require): Handle the case where requiring a file
10178 indirectly causes CL to be loaded.
10179
10180 2009-09-05 Karl Fogel <kfogel@red-bean.com>
10181
10182 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
10183 before killing the old buffer, since by the time `kill-buffer' is
10184 run so many buffer variables have been set to nil that it may not
10185 behave as expected. (Bug#4061)
10186
10187 2009-09-05 Karl Fogel <kfogel@red-bean.com>
10188
10189 * files.el (find-alternate-file): If the old buffer is modified
10190 and visiting a file, behave similarly to `kill-buffer' when
10191 killing it, thus reverting to the pre-1.878 behavior; see
10192 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
10193 for discussion. Also, consult `buffer-file-name' as a variable
10194 not as a function, for consistency with the rest of the code.
10195
10196 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
10197
10198 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
10199 also when adding a new directory.
10200
10201 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
10202 defun.
10203
10204 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
10205
10206 * files.el (locate-file-completion-table): Make it provide boundary
10207 information, so partial-completion works better.
10208
10209 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
10210
10211 * mail/footnote.el (Footnote-text-under-cursor):
10212 Check footnote-text-marker-alist before using it (bug#4324).
10213
10214 2009-09-04 Glenn Morris <rgm@gnu.org>
10215
10216 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
10217 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
10218 * play/solitaire.el, play/tetris.el:
10219 Remove leading * from defcustom and defface docs.
10220
10221 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
10222 necessary.
10223 (diary-fancy-overriding-map): New variable.
10224 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
10225 Use view-mode.
10226
10227 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
10228 goto-line.
10229
10230 2009-09-03 Glenn Morris <rgm@gnu.org>
10231
10232 * arc-mode.el (archive-mode):
10233 * dos-fns.el (set-default-process-coding-system):
10234 * man.el (Man-getpage-in-background):
10235 * menu-bar.el (menu-bar-describe-menu):
10236 * server.el (server-process-filter):
10237 * startup.el (command-line):
10238 * tar-mode.el (tar-header-block-tokenize, tar-extract):
10239 * w32-fns.el (set-default-process-coding-system):
10240 * x-dnd.el (x-dnd-handle-file-name):
10241 * international/mule-cmds.el (mule-menu-keymap)
10242 (set-default-coding-systems, language-info-alist, set-language-info)
10243 (set-language-environment, standard-display-european-internal)
10244 (set-locale-environment):
10245 * international/mule-diag.el (mule-diag):
10246 * mail/emacsbug.el (report-emacs-bug):
10247 * mail/rmail.el (rmail-mode):
10248 * mail/sendmail.el (mail-setup):
10249 Use default-value rather than default-enable-multibyte-characters.
10250
10251 * progmodes/f90.el: Move all safe properties into the defcustoms.
10252 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
10253
10254 * calendar/appt.el (appt-check):
10255 * calendar/diary-lib.el (diary-set-header, diary-live-p)
10256 (diary-check-diary-file, diary-list-entries)
10257 (diary-include-other-diary-files, diary-simple-display)
10258 (diary-fancy-display, diary-print-entries)
10259 (diary-mark-included-diary-files, diary-make-entry):
10260 Don't call substitute-in-file-name on diary-file.
10261
10262 2009-09-03 Eduard Wiebe <usenet@pusto.de>
10263 Stefan Monnier <monnier@iro.umontreal.ca>
10264
10265 * mail/footnote.el (footnote-prefix): Make it a defcustom.
10266 (footnote-mode-map): Move initialization into the declaration.
10267 (footnote-minor-mode-map): Define it rather than changing global-map.
10268 (footnote-mode): Use define-minor-mode.
10269
10270 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
10271
10272 * net/tramp.el (tramp-handle-file-attributes-with-ls)
10273 (tramp-do-file-attributes-with-perl)
10274 (tramp-do-file-attributes-with-stat): Rename from
10275 `tramp-handle-file-attributes-with-*'.
10276 (tramp-handle-file-attributes): Use them.
10277 (tramp-do-directory-files-and-attributes-with-perl)
10278 (tramp-do-directory-files-and-attributes-with-stat): Rename from
10279 `tramp-handle-directory-files-and-attributes-with-*'.
10280 (tramp-handle-directory-files-and-attributes): Use them.
10281 (tramp-method-out-of-band-p): Additional parameter SIZE.
10282 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
10283 (tramp-handle-write-region): Use it.
10284 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
10285 (tramp-handle-vc-registered): Check, whether the first run did
10286 return files to be tested.
10287 (tramp-advice-make-auto-save-file-name): Do not call directly
10288 `tramp-handle-make-auto-save-file-name', because this would bypass
10289 the locking mechanism.
10290
10291 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
10292 (file-remote-p, process-file, start-file-process, set-file-times)
10293 (tramp-compat-file-attributes): Compatibility functions shall not
10294 call directly `tramp-handle-*', because this would bypass the
10295 locking mechanism.
10296 (tramp-compat-number-sequence): New defun.
10297
10298 2009-09-02 Glenn Morris <rgm@gnu.org>
10299
10300 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
10301 alias for float-time.
10302 (time-to-number-of-days): In Emacs, use float-time.
10303 * net/newst-backend.el (time-add): Suppress warnings from compat
10304 function.
10305 * time.el (emacs-uptime, emacs-init-time):
10306 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
10307 Use float-time rather than time-to-seconds.
10308
10309 * minibuffer.el (completion-initials-expand): Fix typo.
10310
10311 * faces.el (modeline, modeline-inactive, modeline-highlight)
10312 (modeline-buffer-id):
10313 * info.el (info-menu-5): Mark these face aliases as obsolete.
10314
10315 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
10316
10317 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
10318 space ...
10319 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
10320 no "--thread" option.
10321 (gdb-stopped): Don't print "Switched to thread" message when it is
10322 unchanged.
10323
10324 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
10325
10326 * minibuffer.el (completion-try-completion)
10327 (completion-all-completions): Remove ill-defined (and
10328 mistakenly installed and luckily never used nor documented)
10329 `completion-styles' property.
10330 (completion-initials-expand, completion-initials-all-completions)
10331 (completion-initials-try-completion): New functions.
10332 (completion-styles-alist): Add doc to each entry.
10333 Add new `initials' entry.
10334
10335 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
10336
10337 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
10338 MI command -var-evaluate-expression.
10339 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
10340 and tweak for case of string child.
10341 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
10342
10343 2009-09-01 Glenn Morris <rgm@gnu.org>
10344
10345 * add-log.el (change-log-date-face, change-log-name-face)
10346 (change-log-email-face, change-log-file-face, change-log-list-face)
10347 (change-log-conditionals-face, change-log-function-face)
10348 (change-log-acknowledgement-face):
10349 * cus-edit.el (custom-invalid-face, custom-rogue-face)
10350 (custom-modified-face, custom-set-face, custom-changed-face)
10351 (custom-saved-face, custom-button-face, custom-button-pressed-face)
10352 (custom-documentation-face, custom-state-face, custom-comment-face)
10353 (custom-comment-tag-face, custom-variable-tag-face)
10354 (custom-variable-button-face, custom-face-tag-face)
10355 (custom-group-tag-face-1, custom-group-tag-face):
10356 * diff-mode.el (diff-header-face, diff-file-header-face)
10357 (diff-index-face, diff-hunk-header-face, diff-removed-face)
10358 (diff-added-face, diff-changed-face, diff-function-face)
10359 (diff-context-face, diff-nonexistent-face):
10360 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
10361 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
10362 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
10363 (Info-title-4-face):
10364 * isearch.el (isearch-lazy-highlight-face):
10365 * log-view.el (log-view-file-face, log-view-message-face):
10366 * paren.el (show-paren-match-face, show-paren-mismatch-face):
10367 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
10368 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
10369 (cvs-msg-face):
10370 * smerge-mode.el (smerge-mine-face, smerge-other-face)
10371 (smerge-base-face, smerge-markers-face):
10372 * wid-edit.el (widget-documentation-face, widget-button-face)
10373 (widget-field-face, widget-single-line-field-face)
10374 (widget-inactive-face, widget-button-pressed-face):
10375 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
10376 (woman-addition-face):
10377 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
10378 (eshell-ls-executable-face, eshell-ls-readonly-face)
10379 (eshell-ls-unreadable-face, eshell-ls-special-face)
10380 (eshell-ls-missing-face, eshell-ls-archive-face)
10381 (eshell-ls-backup-face, eshell-ls-product-face)
10382 (eshell-ls-clutter-face):
10383 * eshell/em-prompt.el (eshell-prompt-face):
10384 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
10385 * obsolete/old-whitespace.el (whitespace-highlight-face):
10386 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
10387 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
10388 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
10389 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
10390 (antlr-font-lock-literal-face):
10391 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
10392 (ebrowse-root-class-face, ebrowse-file-name-face)
10393 (ebrowse-default-face, ebrowse-member-attribute-face)
10394 (ebrowse-member-class-face, ebrowse-progress-face):
10395 * progmodes/make-mode.el (makefile-space-face):
10396 * progmodes/sh-script.el (sh-heredoc-face):
10397 * textmodes/flyspell.el (flyspell-incorrect-face)
10398 (flyspell-duplicate-face):
10399 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
10400 * textmodes/texinfo.el (texinfo-heading-face):
10401 Mark face aliases with "-face" suffix as obsolete.
10402
10403 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
10404 compiler.
10405
10406 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
10407 (eudc-bob-sound-menu): Use defvar rather than defconst, since
10408 easy-menu-define wants to modify these.
10409
10410 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
10411
10412 * net/browse-url.el (browse-url-file-url):
10413 * term/internal.el (dos-codepage-setup):
10414 Use default-value rather than default-enable-multibyte-characters.
10415
10416 * progmodes/etags.el (etags-goto-tag-location):
10417 * progmodes/flymake.el (flymake-highlight-line)
10418 (flymake-goto-file-and-line, flymake-goto-line):
10419 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
10420 (gdb-goto-breakpoint):
10421 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
10422 * progmodes/python.el (python-find-function)
10423 (python-pdbtrack-track-stack-file):
10424 * progmodes/verilog-mode.el (verilog-surelint-off):
10425 * term/ns-win.el (ns-open-file-select-line):
10426 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
10427 Use forward-line rather than goto-line.
10428
10429 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
10430 * textmodes/reftex-index.el (reftex-display-index):
10431 * textmodes/reftex-ref.el (reftex-offer-label-menu):
10432 * textmodes/reftex-toc.el (reftex-toc):
10433 Remove unnecessary bindings of default-major-mode (all are followed by
10434 major-mode check and possible mode switch).
10435
10436 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
10437
10438 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10439 Handle watchpoints (bug#4282).
10440 (def-gdb-thread-buffer-command): Enable thread to be selected by
10441 clicking without selecting threads buffer first.
10442 (gdb-current-context-command): Use selected frame so that "up",
10443 "down" etc work in the GUD buffer.
10444 (gdb-update): Find selected frame before rendering stack buffer.
10445 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
10446
10447 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
10448
10449 * progmodes/sym-comp.el (displayed-completions): Remove.
10450 (symbol-complete): Use minibuffer-complete.
10451
10452 2009-08-31 Glenn Morris <rgm@gnu.org>
10453
10454 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
10455
10456 * apropos.el (apropos-symbols-internal):
10457 Handle (obsolete) face aliases.
10458
10459 * faces.el (describe-face): Adjust the output format to be more like
10460 describe-variable, and to mention (obsolete) face aliases.
10461 Adjust the whitespace so that help-setup-xref works.
10462
10463 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
10464 * calendar/diary-lib.el (diary-button-face):
10465 Mark these face aliases as obsolete.
10466
10467 * calendar/calendar.el (calendar-today): Doc fix.
10468
10469 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
10470
10471 * progmodes/gdb-mi.el (gdb-control-all-threads)
10472 (gdb-control-current-thread): Force tool bar update.
10473 (gdb-non-stop-handler): New function.
10474 (gdb-init-1): Use it to test if non-stop mode is supported.
10475 Remove unused gdbmi buffer type.
10476
10477 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
10478
10479 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
10480 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
10481
10482 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
10483
10484 * comint.el (comint-exec-1): Check command is non-null first.
10485 Part of gdb-mi.el change (2009-08-28).
10486
10487 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10488
10489 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
10490
10491 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
10492
10493 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
10494 instead of `dolist' to avoid a recursive require when bootstrapping.
10495
10496 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10497
10498 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
10499
10500 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
10501
10502 * net/imap.el (imap-send-command): Simplify.
10503 (imap-wait-for-tag): point-max -> buffer-size.
10504
10505 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
10506
10507 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
10508 with constant argument.
10509
10510 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
10511
10512 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
10513
10514 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
10515 Change default, since most of our files don't have a history.
10516 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
10517 the user.
10518
10519 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10520 Add comint-run.
10521
10522 * calc/calc.el: Improve commenting convention.
10523 (calc-digit-map, toplevel): Simplify.
10524
10525 * comint.el (comint-insert-input): Be careful to only set point if we
10526 don't delegate to some other command.
10527
10528 * proced.el (proced-signal-list): Make it an alist.
10529 (proced-grammar-alist): Capitalize names.
10530 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
10531 Disable undo manually and make it read-only.
10532 Use completion-annotate-function.
10533
10534 * minibuffer.el (minibuffer-message): If the current buffer is not
10535 a minibuffer, insert the message in the echo area rather than at the
10536 end of the buffer.
10537 (completion-annotate-function): New variable.
10538 (minibuffer-completion-help): Use it.
10539 (completion--embedded-envvar-table): Environment vars are
10540 always case-sensitive.
10541
10542 2009-08-30 Glenn Morris <rgm@gnu.org>
10543
10544 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
10545 from fortran-current-defun.
10546 (fortran-beginning-of-subprogram): Be more precise about finding the
10547 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
10548 (fortran-end-of-subprogram): Simplify.
10549 (fortran-current-defun): Use fortran-start-prog-re.
10550
10551 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
10552
10553 * subr.el (do-after-load-evaluation): Simplify.
10554
10555 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
10556
10557 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
10558
10559 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
10560 (vc-rcs-print-log): Use it.
10561
10562 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
10563
10564 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10565
10566 * paths.el (abbrev-file-name): Move to abbrev.el.
10567 * abbrev.el (abbrev-file-name): Move from paths.el.
10568 Obey user-emacs-directory.
10569 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
10570 user-emacs-directory.
10571 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
10572 abbrev-file-name and calc-settings-file any more.
10573 * startup.el (command-line): Recompute abbrev-file-name and
10574 abbreviated-home-dir.
10575 (normal-no-mouse-startup-screen): Improve the generic code and get rid
10576 of the special code for when C-h bindings haven't been changed.
10577 (display-startup-echo-area-message): Use with-current-buffer.
10578 (command-line-1): Use a list of strings, rather than a list of lists
10579 of strings for longopts.
10580
10581 * files.el (get-free-disk-space): Use / for default-directory.
10582
10583 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
10584 Use with-current-buffer.
10585
10586 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
10587 Recognize immutable variables like most-positive-fixnum.
10588 (byte-compile-setq-default): Check and warn if trying to assign
10589 to an immutable variable, or a non-variable.
10590
10591 * progmodes/cc-vars.el (c-comment-continuation-stars):
10592 * progmodes/cc-engine.el (c-looking-at-bos):
10593 * progmodes/cc-cmds.el (c-toggle-auto-state)
10594 (c-forward-into-nomenclature, c-backward-into-nomenclature)
10595 (c-comment-line-break-function): Add version of obsolescence.
10596
10597 2009-08-28 Juri Linkov <juri@jurta.org>
10598
10599 * files.el (magic-fallback-mode-alist): Add ZIP magic number
10600 associated with `archive-mode'.
10601
10602 * image.el (image-type-header-regexps): Use only JPEG magic number
10603 to determine JPEG images, and don't use `image-jpeg-p' because
10604 Emacs can display non-JFIF non-Exif JPEG images.
10605
10606 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
10607
10608 * arc-mode.el (archive-mode):
10609 * emacs-lisp/re-builder.el (re-builder-unload-function):
10610 Protect against the default value of `major-mode' being nil.
10611
10612 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
10613
10614 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
10615 Fix typos in docstrings.
10616
10617 * progmodes/js.el (js--macro-decl-re): Doc fix.
10618 (js--plain-method-re, js--split-name): Refloc docstring.
10619 (js--class-styles, js--make-merged-item, js--splice-into-items):
10620 Fix typos in docstrings; reflow docstrings.
10621 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
10622 (js--variable-decl-matcher, js--inside-pitem-p)
10623 (js--parse-state-at-point, js--get-all-known-symbols)
10624 (js--symbol-history, js-find-symbol, js--js-references)
10625 (js--moz-interactor, js--js-encode-value, js--read-tab):
10626 Fix typos in docstrings.
10627
10628 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10629
10630 * textmodes/reftex.el (reftex-get-file-buffer-force):
10631 * progmodes/verilog-mode.el (verilog-batch-execute-func):
10632 * emulation/viper.el (viper-go-away, viper-set-hooks):
10633 * emacs-lisp/re-builder.el (re-builder-unload-function):
10634 * emacs-lisp/bytecomp.el (byte-compile-file):
10635 * ses.el (ses-unload-function):
10636 * hexl.el (hexl-find-file):
10637 * files.el (normal-mode):
10638 * ehelp.el (with-electric-help):
10639 * autoinsert.el (auto-insert-alist):
10640 * arc-mode.el (archive-mode):
10641 Use (default-value 'major-mode) instead of default-major-mode.
10642
10643 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
10644 * international/mule.el (load-with-code-conversion):
10645 * emacs-lisp/debug.el (debug):
10646 * ediff-vers.el (ediff-rcs-get-output-buffer):
10647 * dired.el (dired-internal-noselect): Don't let-bind
10648 default-major-mode around code that doesn't use it.
10649 E.g. buffer creation via get-buffer-create doesn't use it.
10650
10651 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
10652
10653 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
10654 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
10655 when writing the temp file. Otherwise, epa-file gets confused.
10656 (tramp-register-file-name-handlers): Make it a defun. Move also
10657 `epa-file-handler' to the front of `file-name-handler-alist'.
10658
10659 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10660
10661 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
10662 start right after a ^M.
10663 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
10664 (tramp-completion-file-name-regexp-separate)
10665 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
10666 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
10667 Don't modify last-coding-system-used by accident.
10668 (tramp-completion-file-name-handler): Apply the checks here,
10669 instead during registration.
10670 (tramp-register-file-name-handlers): Renamed from
10671 `tramp-register-file-name-handler'. Register both
10672 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
10673 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
10674
10675 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
10676
10677 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
10678 Remove variable ...
10679 (gdb-init-1, gdb-display-separate-io-buffer)
10680 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
10681 references to it.
10682 (gdb-inferior-io-mode): Use make-comint-in-buffer.
10683 (gdb-inferior-filter): Use comint-output-filter to stop
10684 echoing and remove ^M characters.
10685
10686 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10687
10688 * emulation/viper-init.el (viper-restore-cursor-type):
10689 * emulation/cua-base.el (cua--update-indications):
10690 Replace default-cursor-type with (default-value 'cursor-type).
10691
10692 * mail/sendmail.el (mail-recover-1):
10693 * international/mule-diag.el (describe-current-coding-system-briefly)
10694 (describe-current-coding-system):
10695 * international/mule-cmds.el (select-safe-coding-system)
10696 (select-message-coding-system)
10697 (set-language-environment-coding-systems, set-locale-environment):
10698 * hexl.el (hexl-insert-multibyte-char):
10699 * dos-w32.el (find-buffer-file-type-coding-system):
10700 * simple.el (what-cursor-position):
10701 Replace uses of default-buffer-file-coding-system
10702 with (default-value 'buffer-file-coding-system).
10703
10704 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
10705 Replace uses of default-cursor-in-non-selected-windows
10706 with (default-value 'cursor-in-non-selected-windows).
10707 Use with-current-buffer.
10708
10709 * mail/feedmail.el: Use CL macros.
10710 (feedmail-run-the-queue, feedmail-send-it-immediately):
10711 * dos-w32.el (find-buffer-file-type): Replace uses of
10712 default-buffer-file-type with (default-value 'buffer-file-type).
10713
10714 2009-08-28 Glenn Morris <rgm@gnu.org>
10715
10716 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
10717 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
10718 Use default-value of major-mode rather than default-major-mode.
10719
10720 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10721
10722 * Makefile.in (update-elcfiles): Report left over elc files.
10723
10724 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
10725 expand-file-name and with-current-buffer.
10726 (mail-get-names, mail-directory): Use with-current-buffer.
10727
10728 * vc.el (vc-read-revision): New function.
10729 (vc-version-diff, vc-merge): Use it.
10730
10731 2009-08-27 Sam Steingold <sds@gnu.org>
10732
10733 * simple.el (kill-do-not-save-duplicates): New user option.
10734 (kill-new): When it is non-nil, and the new string is the same as
10735 the latest kill, set replace to t to avoid duplicates in kill-ring.
10736
10737 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
10738
10739 * net/tramp.el (tramp-handle-process-file): Do not flush all
10740 caches when `process-file-side-effects' is set.
10741 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
10742 instead of `tramp-find-file-exists-command'.
10743 Unset `process-file-side-effects'.
10744
10745 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
10746
10747 * net/tramp.el (tramp-methods): New method "rsyncc".
10748 (top): Add completion function for "rsyncc".
10749 (tramp-message-show-message): New defvar.
10750 (tramp-message, tramp-error): Use it.
10751 (tramp-do-copy-or-rename-file-directly): Extend check for direct
10752 remote copying.
10753 (tramp-do-copy-or-rename-file-out-of-band): Handle new
10754 `tramp-methods' entry `copy-env' of "rsyncc".
10755 (tramp-vc-registered-read-file-names): New defconst.
10756 (tramp-vc-registered-file-names): New defvar.
10757 (tramp-handle-vc-registered): Implement optimization strategy.
10758 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
10759 (tramp-vc-file-name-handler): New defun.
10760 (tramp-get-ls-command, tramp-get-test-command)
10761 (tramp-get-file-exists-command, tramp-get-remote-ln)
10762 (tramp-get-remote-perl, tramp-get-remote-stat)
10763 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
10764
10765 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
10766 (tramp-cache-inhibit-cache): Extend doc string. It allows also
10767 timestamps.
10768 (tramp-get-file-property): Check for timestamps in
10769 `tramp-cache-inhibit-cache'.
10770 (tramp-set-file-property): Write timestamp.
10771
10772 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
10773
10774 * language/japan-util.el (japanese-symbol-table): Add entries for
10775 cp932-2-byte.
10776
10777 * international/characters.el: Add category `j' to cp932-2-byte.
10778
10779 2009-08-27 Kenichi Handa <handa@m17n.org>
10780
10781 * international/fontset.el (build-default-fontset-data): New macro.
10782 (setup-default-fontset): Use build-default-fontset-data for CJK,
10783 tibetan, ethiopic, and ipa.
10784
10785 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10786
10787 * cus-start.el (default-major-mode): Customize `major-mode' instead.
10788 (enable-multibyte-characters): Not customizable any more.
10789
10790 * subr.el (default-mode-line-format, default-header-line-format)
10791 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
10792 (default-direction-reversed, default-truncate-lines)
10793 (default-left-margin, default-tab-width, default-case-fold-search)
10794 (default-left-margin-width, default-right-margin-width)
10795 (default-left-fringe-width, default-right-fringe-width)
10796 (default-fringes-outside-margins, default-scroll-bar-width)
10797 (default-vertical-scroll-bar, default-indicate-empty-lines)
10798 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
10799 (default-fringe-cursor-alist, default-scroll-up-aggressively)
10800 (default-scroll-down-aggressively, default-fill-column)
10801 (default-cursor-type, default-buffer-file-type)
10802 (default-cursor-in-non-selected-windows)
10803 (default-buffer-file-coding-system, default-major-mode)
10804 (default-enable-multibyte-characters): Mark as obsolete.
10805
10806 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
10807
10808 * vc-dir.el (vc-dir-update): Remove debug helper.
10809
10810 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
10811
10812 2009-08-26 Sam Steingold <sds@gnu.org>
10813
10814 * simple.el (save-interprogram-paste-before-kill): New user option.
10815 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
10816 save the interprogram-paste into kill-ring before overriding it
10817 with the Emacs kill.
10818
10819 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
10820
10821 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
10822 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
10823 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
10824 and move to vc-rcs.el.
10825 (vc-default-next-revision): Rename to vc-rcs-next-revision and
10826 move to vc-rcs.el.
10827 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
10828 (vc-rcs-update-changelog): Remove.
10829 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
10830 and move to vc-rcs.el.
10831
10832 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
10833 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
10834 renaming.
10835 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
10836 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
10837 vc.el, renamed to be RCS specific.
10838
10839 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
10840 New functions.
10841 (vc-cvs-update-changelog): Move here from vc.el.
10842
10843 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
10844 New functions.
10845
10846 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
10847
10848 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
10849
10850 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
10851
10852 * vc-git.el (vc-git-register): Use "git add" for directories.
10853 (vc-git-stash, vc-git-stash-show): New functions.
10854 (vc-git-extra-menu-map): Bind them.
10855
10856 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
10857 directory correctly in case the item is a directory itself.
10858
10859 * vc.el: Document the desired behavior for reverted files in the
10860 `added' state.
10861 (vc-default-prettify-state-info): Remove function, unused.
10862
10863 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
10864
10865 2009-08-26 Glenn Morris <rgm@gnu.org>
10866
10867 * bindings.el (standard-mode-line-format): Reposition dashes in
10868 which-func entry. (Bug#4217)
10869
10870 * files.el (enable-local-variables, enable-local-eval)
10871 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
10872 the defcustoms.
10873 (auto-mode-alist, ignored-local-variables)
10874 (save-some-buffers-action-alist): Move risky declarations to the
10875 definitions.
10876 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
10877 (font-lock-defaults, format-alist, imenu--index-alist)
10878 (imenu-generic-expression, input-method-alist, minor-mode-alist)
10879 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
10880 (mode-line-modified, mode-line-mule-info, mode-line-position)
10881 (mode-line-process, mode-line-remote, outline-level)
10882 (parse-time-rules, rmail-output-file-alist)
10883 (special-display-buffer-names, vc-mode):
10884 Move risky declarations to the relevant files.
10885 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
10886 (mode-line-modified, mode-line-process, mode-line-position)
10887 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
10888 * font-core.el (font-lock-defaults):
10889 * format.el (format-alist):
10890 * vc-hooks.el (vc-mode):
10891 * window.el (special-display-buffer-names):
10892 * international/mule-cmds.el (input-method-alist):
10893 Define riskiness here (dumped file) rather than in files.el.
10894 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
10895 * imenu.el (imenu-generic-expression, imenu--index-alist):
10896 * outline.el (outline-level):
10897 * time.el (display-time-string):
10898 * calendar/parse-time.el (parse-time-rules):
10899 * mail/rmailout.el (rmail-output-file-alist):
10900 Autoload riskiness here, rather than placing in files.el.
10901
10902 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
10903
10904 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
10905
10906 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
10907
10908 * simple.el (process-file-side-effects): New defvar.
10909
10910 * dired-aux.el (dired-show-file-type):
10911 * vc.el (vc-diff-internal):
10912 * vc-arch.el (vc-arch-diff):
10913 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
10914 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
10915 * vc-git.el (vc-git-registered, vc-git-working-revision)
10916 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
10917 (vc-git--empty-db-p):
10918 * vc-hooks.el (vc-user-login-name):
10919 * vc-svn.el (vc-svn-registered, vc-svn-state)
10920 (vc-svn-dir-extra-headers, vc-svn-find-revision):
10921 * progmodes/grep.el (grep-probe): Let-bind
10922 `process-file-side-effects' with nil.
10923
10924 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
10925
10926 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
10927 daemon. Replace ping by checking for running service for bluez
10928 and zeroconf. (Bug#4239)
10929
10930 2009-08-25 Kevin Ryde <user42@zip.com.au>
10931
10932 * net/dig.el (dig): Add autoload cookie.
10933
10934 2009-08-25 Glenn Morris <rgm@gnu.org>
10935
10936 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
10937 load-history for absolute file-names.
10938 (byte-compile-file-form-require): Warn about use of the cl package.
10939
10940 * format.el (format-alist): Doc fix.
10941
10942 * play/bubbles.el (top-level): Don't require cl at run-time.
10943
10944 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
10945 run-time cl).
10946
10947 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
10948
10949 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
10950 from cl package.
10951 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
10952
10953 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
10954
10955 * calc/calc-alg.el (math-trig-rewrite)
10956 (math-hyperbolic-trig-rewrite): New functions.
10957 (calc-simplify): Simplify trig functions when asked.
10958
10959 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
10960
10961 * diff-mode.el (diff-find-source-location): Avoid goto-line.
10962
10963 2009-08-24 Kenichi Handa <handa@m17n.org>
10964
10965 * language/ind-util.el (mapthread): Delete it.
10966 (combinatorial): New function.
10967 (indian--puthash-cv): Use combinatorial instead of mapthread.
10968
10969 2009-08-22 Kevin Ryde <user42@zip.com.au>
10970
10971 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
10972 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
10973 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
10974 Clarify docstring that the value is strings not symbols.
10975 (checkdoc-list-of-strings-p): New function.
10976
10977 2009-08-22 Glenn Morris <rgm@gnu.org>
10978
10979 * files.el (auto-mode-alist):
10980 * hippie-exp.el (he-concat-directory-file-name):
10981 * lpr.el (lpr-windows-system, printer-name):
10982 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
10983 * ps-print.el (ps-windows-system):
10984 * startup.el (command-line):
10985 * emulation/viper-ex.el (viper-glob-function):
10986 * international/mule-cmds.el (set-language-environment-coding-systems):
10987 * net/ange-ftp.el (ange-ftp-write-region):
10988 * obsolete/fast-lock.el (fast-lock-cache-name):
10989 Remove code for defunct system-types emx, macos, mswindows, next-mach,
10990 unisoft-unix, vax-vms, win32, w32.
10991
10992 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
10993 given name if the pattern is not more specific.
10994
10995 * calendar/lunar.el (lunar-phase-names): New option.
10996 (lunar-phase): Doc fix.
10997 (lunar-cycles-per-year): New constant.
10998 (lunar-index): New function.
10999 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
11000 (lunar-phase-name): Use lunar-phase-names.
11001 (calendar-lunar-phases): Use format.
11002 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
11003
11004 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
11005 Copy imenu-example--name-and-position function here for own use.
11006 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
11007
11008 * bs.el (bs--redisplay):
11009 * cus-edit.el (custom-redraw):
11010 * ibuffer.el (ibuffer-bury-buffer):
11011 * server.el (server-goto-line-column):
11012 * startup.el (command-line-1):
11013 * strokes.el (strokes-xpm-for-stroke):
11014 * term.el (term-display-buffer-line):
11015 * view.el (View-goto-line):
11016 * calc/calc.el (calc-do, calc-trail-buffer):
11017 * play/gamegrid.el (gamegrid-add-score-insecure):
11018 * progmodes/ada-mode.el (ada-compile-goto-error):
11019 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
11020 (ebrowse-select-1st-to-9nth):
11021 * progmodes/cperl-mode.el (cperl-time-fontification):
11022 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
11023 * progmodes/gud.el (gud-display-line):
11024 (idlwave-shell-display-line):
11025 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
11026 * progmodes/make-mode.el (makefile-browser-toggle):
11027 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
11028 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
11029 * textmodes/picture.el (picture-draw-rectangle):
11030 * textmodes/reftex-index.el (reftex-index-goto-letter):
11031 (reftex-select-jump-to-previous):
11032 * textmodes/reftex-sel.el (reftex-find-start-point)
11033 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
11034 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
11035 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
11036 * textmodes/tex-mode.el (tex-compilation-parse-errors):
11037 * textmodes/two-column.el (2C-associated-buffer):
11038 Use forward-line rather than goto-line.
11039
11040 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
11041 goto-line.
11042
11043 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
11044 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
11045 (quick-check-list-to-regexp): Declare.
11046
11047 * progmodes/make-mode.el (makefile-browser-insert-selection):
11048 Use goto-char rather than goto-line.
11049
11050 * progmodes/prolog.el (compilation-error-regexp-alist)
11051 (compilation-forget-errors): Declare.
11052
11053 2009-08-22 Juri Linkov <juri@jurta.org>
11054
11055 * progmodes/grep.el (lgrep, rgrep): At the beginning
11056 set `dir' to `default-directory' unless `dir' is a non-nil
11057 readable directory. (Bug#4052)
11058 (lgrep, rgrep): Change a weird way to report an error
11059 from using `read-string' to using `error'.
11060 Instead of using interactive arguments in the function body,
11061 add new argument `confirm'.
11062
11063 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 * textmodes/remember.el (remember-buffer):
11066 * progmodes/cperl-mode.el (cperl-vc-header-alist):
11067 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
11068 (icalendar-extract-ical-from-buffer):
11069 * net/newst-treeview.el (newsticker-groups-filename):
11070 * net/newst-backend.el (newsticker-cache-filename):
11071 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
11072 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
11073 (speedbar-add-ignored-path-regexp, speedbar-line-path)
11074 (speedbar-buffers-line-path, speedbar-path-line)
11075 (speedbar-buffers-line-path):
11076 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
11077 (epg-sign-keys):
11078 * epa.el (epa-display-verify-result):
11079 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
11080
11081 2009-08-21 Glenn Morris <rgm@gnu.org>
11082
11083 * progmodes/js.el (inferior-moz-process): Fix declaration.
11084
11085 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
11086
11087 * obsolete/rnewspost.el (news-mail-reply):
11088 Use goto-char rather than goto-line.
11089
11090 * term/ns-win.el (ns-open-file-select-line):
11091 Use line-beginning-position rather than goto-line.
11092
11093 * apropos.el (apropos-command):
11094 * ehelp.el (electric-helpify):
11095 * printing.el (pr-show-setup):
11096 * strokes.el (strokes-help):
11097 * tutorial.el (tutorial--describe-nonstandard-key)
11098 (tutorial--detailed-help):
11099 * woman.el (woman-mini-help, woman-display-extended-fonts):
11100 * calc/calc-help.el (calc-describe-key):
11101 * emulation/edt.el (edt-electric-helpify):
11102 * international/mule-diag.el (mule-diag):
11103 * play/yow.el (apropos-zippy):
11104 * progmodes/python.el (python-describe-symbol):
11105 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
11106 * textmodes/table.el (*table--cell-describe-mode)
11107 (*table--cell-describe-bindings):
11108 Use help-print-return-message rather than the now obsolete alias.
11109
11110 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
11111 (calendar-cursor-to-visible-date):
11112 * play/5x5.el (5x5-position-cursor):
11113 * play/decipher.el (decipher):
11114 * play/gomoku.el (gomoku-goto-xy):
11115 * play/landmark.el (lm-goto-xy):
11116 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
11117 (mpuz-paint-digit):
11118 Use forward-line, not goto-line.
11119
11120 * mail/rmail.el (rmail-obsolete): Delete custom group.
11121 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
11122 (rmail-remote-password, rmail-remote-password-required):
11123 Remove unneeded :set-after and :set properties.
11124
11125 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
11126
11127 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
11128
11129 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
11130
11131 * loadup.el: Remove leftover macos code.
11132
11133 * vc-git.el (vc-git-annotate-command): Run asynchronously.
11134 Explicitly pass the date format to git blame so that user local
11135 so that the output format can be parsed.
11136
11137 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
11138
11139 * net/dbus.el (top): Don't check for (getenv
11140 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
11141
11142 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
11143
11144 * log-edit.el (log-edit-strip-single-file-name): New var.
11145 (log-edit-insert-changelog): Use it. Bug#3571
11146
11147 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
11148
11149 * subr.el (read-passwd): Use read-key so keypad keys work as well.
11150 Bug#3287
11151
11152 * help.el (help-print-return-message): Rename from
11153 print-help-return-message.
11154
11155 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
11156 cvs-mode-map parent hack.
11157 (log-view-mode): Derive from special-mode.
11158
11159 * linum.el (linum-mode): window-size-change-functions is redundant.
11160 Adapt to new window-configuration-change-hook behavior.
11161 (linum-after-size, linum-after-config): Remove.
11162
11163 * imenu.el (imenu-example--name-and-position)
11164 (imenu-example--lisp-extract-index-name)
11165 (imenu-example--create-lisp-index, imenu-example--create-c-index):
11166 Mark as obsolete.
11167
11168 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
11169 (inferior-prolog-mode): Use it.
11170 (inferior-prolog-load-file): Reset list of errors.
11171
11172 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
11173
11174 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
11175
11176 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
11177
11178 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
11179
11180 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
11181 is running already.
11182
11183 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
11184
11185 * subr.el (listify-key-sequence-1): Use normal syntax since those
11186 integers are nowadays always represented by the same (positive) number
11187 on all platforms.
11188 (read-key-empty-map): New const.
11189 (read-key-delay): New var.
11190 (read-key): New function.
11191 (force-mode-line-update): Use with-current-buffer.
11192 (locate-user-emacs-file): Don't forget to abbreviate the file name.
11193 (start-process-shell-command, start-file-process-shell-command):
11194 Discourage the use of command-args.
11195
11196 2009-08-19 Glenn Morris <rgm@gnu.org>
11197
11198 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
11199
11200 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
11201
11202 * simple.el (choose-completion-string): Don't rely on
11203 minibuffer-completing-file-name and ad-hoc checks to decide whether
11204 to continue completion or not.
11205
11206 * minibuffer.el (minibuffer-hide-completions): New function.
11207 (completion--do-completion): Use it.
11208 (completions-annotations): New face.
11209 (completion--insert-strings): Use it.
11210 (completion-pcm--delim-wild-regex): Add docstring.
11211 (completion-pcm--string->pattern): Add support for 0-width delimiters
11212 in completion-pcm--delim-wild-regex.
11213
11214 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
11215
11216 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
11217 Remove unused var `buffer-modified-p'.
11218
11219 * minibuffer.el (completion--do-completion): Move point for the #b001
11220 case as well (bug#4176).
11221 (minibuffer-complete, minibuffer-complete-word): Don't move point.
11222
11223 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
11224
11225 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
11226 and :session buses.
11227
11228 2009-08-18 Kenichi Handa <handa@m17n.org>
11229
11230 * international/ucs-normalize.el (ucs-normalize-version):
11231 Change to 1.1.
11232 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
11233 (utf-8-hfs): Make it perform normalization on encoding too.
11234
11235 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
11236 (sentence-end-without-space): Delete duplicated chars.
11237 (sentence-end-base): Likewise.
11238
11239 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
11240 (html-mode): Delete duplicated chars from sentence-end-base.
11241
11242 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
11243 (texinfo-mode): Delete duplicated chars from sentence-end-base.
11244
11245 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
11246
11247 * files.el (hack-one-local-variable): If the mode function is for
11248 a minor mode, pass it an argument (Bug#4148).
11249
11250 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
11251
11252 * net/tramp.el (tramp-register-completion-file-name-handler):
11253 Check also for (member 'partial-completion completion-styles).
11254
11255 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
11256
11257 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
11258 abbrev (Bug#3943).
11259
11260 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
11261
11262 * progmodes/cperl-mode.el: Merge upstream 6.2.
11263 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
11264 (cperl-forward-re): Check cperl-brace-recursing.
11265 (cperl-highlight-charclass): New function.
11266 (cperl-find-pods-heres): Use it.
11267 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
11268 (cperl-beautify-regexp-piece): Fix column calculation.
11269 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
11270 (cperl-beautify-level): Don't process entire regexp.
11271 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
11272 calling man.
11273 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
11274 (cperl-init-faces): Build a list in the normal way.
11275
11276 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
11277
11278 * calendar/parse-time.el (parse-time-string-chars): Save match
11279 data.
11280
11281 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
11282
11283 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
11284 (sql-product): Use it.
11285 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
11286 (sql-set-product): Add completion.
11287 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
11288 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
11289 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
11290 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
11291 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
11292 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
11293 (sql-highlight-db2-keywords): Remove.
11294 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
11295 (sql-highlight-product): Use derived-mode-p.
11296 (sql-set-sqli-buffer): Use with-current-buffer.
11297 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
11298 Simplify.
11299
11300 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
11301
11302 * term.el: Fix commenting convention, turn comments into docstrings.
11303
11304 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
11305
11306 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
11307
11308 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
11309
11310 * calendar/parse-time.el (parse-time-string-chars): Compute using
11311 character classes, to handle non-ascii characters (Bug#3190).
11312
11313 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
11314
11315 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
11316 another heredoc if the user adds another < (Bug#3226).
11317
11318 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
11319 Don't initialize based on window-system (Bug#4124).
11320
11321 * facemenu.el (facemenu-read-color): Use a completion function
11322 that accepts any defined color, such as RGB triplets (Bug#3677).
11323
11324 * files.el (get-free-disk-space): Change fallback default
11325 directory to /. Expand DIR argument before switching to fallback.
11326 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
11327
11328 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
11329
11330 * files.el (load-library): Doc fix.
11331
11332 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
11333
11334 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
11335 (viper-if-string): Redefine C-s in the minibuffer to insert the last
11336 incremental search string.
11337
11338 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
11339 XEmacs.
11340
11341 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
11342 (ediff-merge-region-is-non-clash)
11343 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
11344 Also check if the job is really a merge job.
11345
11346 * ediff.el (ediff-current-file): New function.
11347
11348 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
11349
11350 * progmodes/js.el: Edit docstrings throughout to follow Emacs
11351 conventions.
11352 (js-insert-and-indent): Delete function.
11353 (js-mode-map): Don't bind keys to js-insert-and-indent.
11354 (js-beginning-of-defun): Rename from js--beginning-of-defun.
11355 (js-end-of-defun): Rename from js--end-of-defun.
11356 (js-auto-indent-flag): Delete variable.
11357
11358 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
11359
11360 * progmodes/js.el: Remove proclaim statement.
11361 Defvar which-func-imenu-joiner-function to silence compiler.
11362
11363 * files.el (auto-mode-alist): Use js-mode for .js files.
11364
11365 * progmodes/js2-mode.el: Remove file.
11366
11367 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
11368
11369 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
11370
11371 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
11372
11373 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
11374 Karl Landstrom <karl.landstrom@brgeight.se>
11375
11376 * progmodes/js.el: New file.
11377
11378 2009-08-14 Mark A. Hershberger <mah@everybody.org>
11379
11380 * timezone.el (timezone-parse-date): Add ability to understand ISO
11381 basic format (minimal separators) dates in addition to the
11382 already-supported extended format dates.
11383
11384 2009-08-14 Eli Zaretskii <eliz@gnu.org>
11385
11386 * international/ucs-normalize.el: Add a `coding' file variable.
11387
11388 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
11389
11390 2009-08-14 Sam Steingold <sds@gnu.org>
11391
11392 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
11393
11394 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
11395
11396 * faces.el (help-argument-name): Define it here instead of
11397 help-fns.el, because in daemon mode help-fns.el may be loaded when
11398 faces are still uninitialized (Bug#1078).
11399
11400 * help-fns.el (help-argument-name): Move defface to faces.el.
11401
11402 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
11403
11404 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
11405 create buffer with a pty but no process so that GDB can make the
11406 inferior the controlling process.
11407
11408 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
11409
11410 * international/ucs-normalize.el: New file.
11411
11412 2009-08-13 Richard Stallman <rms@gnu.org>
11413
11414 * mail/rmail.el (rmail-get-attr-names):
11415 Accept an attribute header that is too short.
11416
11417 * mail/rmail.el (rmail-forget-messages):
11418 Ignore nil elt in rmail-message-vector. Use dotimes.
11419
11420 * progmodes/compile.el (compilation-goto-locus):
11421 Use next-error-move-function.
11422
11423 * simple.el (next-error-move-function): New variable.
11424
11425 2009-08-12 Juri Linkov <juri@jurta.org>
11426
11427 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
11428 always non-nil. (Bug#4052)
11429
11430 * replace.el (read-regexp): Return empty string when
11431 `default-value' is nil.
11432 (keep-lines-read-args): Don't use empty string as the
11433 default value for `read-regexp'. (Bug#2495)
11434
11435 2009-08-12 Juri Linkov <juri@jurta.org>
11436
11437 * international/mule-cmds.el (ucs-insert): Change arguments
11438 from `arg' to `character', `count', `inherit' to be the same
11439 as in `insert-char'. Doc fix. (Bug#4039)
11440
11441 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
11442
11443 2009-08-12 Juri Linkov <juri@jurta.org>
11444
11445 * files-x.el: New file.
11446
11447 * files.el: Move code that deals with adding/deleting
11448 file/directory-local variables to files-x.el.
11449
11450 * Makefile.in (ELCFILES): Add files-x.elc.
11451
11452 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
11453
11454 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
11455 to use `goto-line'.
11456 (gdb-place-breakpoints, gdb-get-location): Rewritten without
11457 `goto-line'.
11458 (gdb-invalidate-disassembly): Do not refresh upon receiving
11459 'update signal. Instead, update all disassembly buffers only after
11460 threads list.
11461 (gdb): Send -target-detach when buffer is killed (Bug#3794).
11462 (gdb-starting): Moved -data-list-register-names...
11463 (gdb-stopped): ...here so it's sent when first thread stops.
11464 (gdb-registers-handler-custom): Do nothing if register names are
11465 unknown yet.
11466
11467 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
11468 from `gdb-mi.el' to avoid extra tangling.
11469
11470 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
11471 change which breaks `gud-def' definitions used in `gdb'.
11472 (gdb-update-gud-running): No extra fuss for updating frame number.
11473
11474 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11475
11476 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
11477 (describe-language-environment-map, setup-language-environment-map)
11478 (set-coding-system-map): Move initialization into declaration.
11479 (set-language-info-alist): Last arg to define-key-after can be skipped.
11480
11481 * international/quail.el (quail-completion-1): Simplify.
11482 (quail-define-rules): Use slightly more compact code.
11483 (quail-insert-decode-map): Propertize keys, compact columns.
11484
11485 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11486 Add goto-line.
11487
11488 2009-08-10 Miles Bader <miles@gnu.org>
11489
11490 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
11491 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
11492 (js2-instance-member, js2-private-member, js2-private-function-call)
11493 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
11494 (js2-magic-paren, js2-external-variable):
11495 Remove "-face" suffix from face names.
11496 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
11497 (js2-highlight-undeclared-vars, js2-peek-token)
11498 (js2-parse-function-params, js2-mode-show-errors)
11499 (js2-mode-show-warnings, js2-make-magic-delimiter)
11500 (js2-mode-highlight-magic-parens): Update to use new face names.
11501
11502 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
11503
11504 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
11505 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
11506
11507 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
11508
11509 * subr.el: Provide hashtable-print-readable.
11510
11511 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
11512 hs-c-like-adjust-block-beginning.
11513 (hs-hide-block-at-point): Stop hiding at the beginning of
11514 hs-block-end-regexp (Bug#700).
11515
11516 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
11517
11518 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
11519 a macro.
11520 (gdb-registers-handler-custom): Do not fail when register names
11521 are unavailable.
11522
11523 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
11524
11525 * progmodes/gdb-mi.el (gdb-control-all-threads)
11526 (gdb-control-current-thread): Interactive setters for
11527 `gdb-gud-control-all-threads' to use in menu.
11528 (gdb-show-run-p): Show «Go» when process is not active.
11529 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
11530 gud/thread.xpm and gud/all.xpm.
11531
11532 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
11533
11534 * net/net-utils.el (net-utils-font-lock-keywords): New var.
11535 (nslookup-font-lock-keywords): Make it a variable.
11536 (net-utils-mode): New mode for viewing diagnostic network output.
11537 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
11538 (net-utils-run-simple): New function.
11539 (ifconfig, iwconfig, netstat, arp, route): Use it.
11540
11541 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
11542
11543 * progmodes/gdb-mi.el (gdb-read-memory-custom)
11544 (gdb-memory-set-address, def-gdb-set-positive-number)
11545 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
11546 after changing settings.
11547 (gdb-invalidate-disassembly): Update when first shown.
11548 (gdb-edit-locals-value): Fixed.
11549 (gdb-registers-handler-custom): Print registers in right order and
11550 allow changing register values (only for current thread yet).
11551 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
11552 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
11553 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
11554 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
11555 info in mode name.
11556 (gdb-registers-mode-map): TAB to switch to locals.
11557
11558 2009-08-08 Eli Zaretskii <eliz@gnu.org>
11559
11560 * mail/rmail.el (rmail-add-mbox-headers)
11561 (rmail-set-message-counters-counter): Search for
11562 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
11563
11564 2009-08-08 Glenn Morris <rgm@gnu.org>
11565
11566 * Makefile.in (ELCFILES): Update.
11567
11568 2009-08-07 Eli Zaretskii <eliz@gnu.org>
11569
11570 * mail/sendmail.el (mail-yank-original): Set
11571 buffer-file-coding-system from the one used by the message whose
11572 text is yanked.
11573
11574 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
11575 to "windows" when "pgnuplot" is used.
11576 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
11577 call accept-process-output if "pgnuplot" is used.
11578 (calc-graph-init): Don't send -display and -geometry to
11579 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
11580 running "pgnuplot -V" with shell-command-to-string.
11581
11582 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
11583 the default.
11584
11585 2009-08-07 Eli Zaretskii <eliz@gnu.org>
11586
11587 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
11588 org/org-latex.elc.
11589
11590 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
11591
11592 * vc-dispatcher.el (vc-resynch-window): Update comment.
11593
11594 * term.el (term-handle-ansi-escape): Add comments with the
11595 terminfo capabilities implemented.
11596
11597 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
11598
11599 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
11600 (gdb-var-create-handler): Rewritten using JSON parser.
11601 (gdb-propertize-header): Moved earlier.
11602 (gdb-set-header): Removed to avoid duplication.
11603 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
11604 Refresh disassembly buffers only after threads list have been
11605 update.
11606 (gdb-threads-header, gdb-registers-header): Per-buffer header line
11607 variables.
11608
11609 2009-08-04 Juri Linkov <juri@jurta.org>
11610
11611 * files.el: Commands to add/delete file/directory-local variables.
11612 (read-file-local-variable, read-file-local-variable-value)
11613 (read-file-local-variable-mode, modify-file-local-variable)
11614 (modify-file-local-variable-prop-line)
11615 (modify-dir-local-variable): New functions.
11616 (add-file-local-variable, delete-file-local-variable)
11617 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
11618 (add-dir-local-variable, delete-dir-local-variable)
11619 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
11620 (copy-dir-locals-to-file-locals-prop-line): New commands.
11621
11622 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
11623
11624 * abbrev.el (insert-abbrev-table-description): Prettify output.
11625 Suggested by Karl Chen.
11626
11627 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
11628
11629 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
11630 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
11631 (gdb-overlay-arrow-position, gdb-thread-position)
11632 (gdb-disassembly-position): Declare variables.
11633 (gdb-wait-for-pending): Function now.
11634 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
11635 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
11636 compilation goes smoothly.
11637 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
11638 (gdb-non-stop-setting): New customization setting which replaces
11639 `gdb-non-stop' so changing it doesn't break active GDB session.
11640 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
11641 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
11642 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
11643 (gdb-show-threads-by-default): New customization options.
11644 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
11645 routines.
11646 (gdb-get-buffer-create): Send buffers update signal when they are
11647 created.
11648 (gdb-invalidate-locals, gdb-invalidate-registers)
11649 (gdb-invalidate-breakpoints)
11650 (gdb-invalidate-threads, gdb-invalidate-disassembly)
11651 (gdb-invalidate-memory): Accept update signal.
11652 (gdb-current-context-command): Use --frame option.
11653 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
11654 Implement `gdb-frame-number' selection logic.
11655 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
11656 whether to show GUD toolbar buttons.
11657 (gdb-thread-exited): Unselect current thread when it exits.
11658 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
11659 (gdb-mark-line): Routine which sets overlay arrow or inverses
11660 video on fringeless displays.
11661 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
11662 to build aligned columns of data in GDB buffers and set text
11663 properties line-by-line.
11664 (gdb-invalidate-breakpoints)
11665 (gdb-breakpoints-list-handler-custom)
11666 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
11667 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
11668 (gdb-registers-handler-custom): Align data columns.
11669 (gdb-locals-handler-custom): Now prints data like in variable
11670 declarations.
11671 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
11672 Removed confusing buttons.
11673 (gdb-invalidate-threads): Append --frame.
11674 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
11675 between breakpoints/threads buffers.
11676 (gdb-set-window-buffer): Now can ignore dedicated windows.
11677 (gdb-propertize-header): Use `gdb-set-window-buffer'.
11678 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
11679 (def-gdb-thread-buffer-gud-command): Replaces
11680 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
11681 for fine thread control.
11682 (gdb-preempt-existing-or-display-buffer): New function used to
11683 display bound buffers without breaking window layout.
11684 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
11685 (gdb-select-frame): New version of `gdb-frames-select' which now
11686 sets `gdb-frame-number' so commands may use --frame option instead
11687 of inner debugger state.
11688 (gdb-frame-handler): Do not set `gdb-frame-number'.
11689 (gdb-threads-mode-map): Select threads with mouse.
11690
11691 * progmodes/gud.el (gdb-gud-context-call): Declare function to
11692 avoid compilation warning.
11693 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
11694 `gdb-show-stop-p`.
11695
11696 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
11697 Argument `key' renamed to `buffer-type'.
11698 (gdb-current-context-buffer-name): Do not add thread info to
11699 buffer name when no thread is selected.
11700 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
11701 command (bug 3794).
11702 (gdb-thread-selected): Handle `=thread-selected' notification.
11703 (gdb-wait-for-pending): New macro to deal with congestion problems.
11704 (gdb-breakpoints-list-handler-custom): Don't fail on pending
11705 breakpoints.
11706 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
11707 This fixes problem similar to one described in bug 3947.
11708 (gud-menu-map): More menu items.
11709 (gdb-init-1): Reset `gdb-thread-number' to nil.
11710
11711 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
11712 non-stop settings.
11713
11714 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
11715 (gdb-current-context-command): Do not append --thread if
11716 `gdb-thread-number' is nil.
11717 (gdb-running-threads-count, gdb-stopped-threads-count): New
11718 variables.
11719 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
11720 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
11721 customization options.
11722 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
11723 GUD commands.
11724 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
11725 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
11726 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
11727 set `gdb-thread-number' and update `gud-running' properly.
11728 (gdb-running): Update threads list when new threads appear.
11729 (gdb-stopped): Support non-stop operation and new thread switching
11730 logic.
11731 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
11732 (gdb-json-partial-output): New set of JSON routines.
11733 (def-gdb-auto-update-trigger): New `signal-list' optional
11734 argument.
11735 (gdb-thread-list-handler-custom): Update `gud-running',
11736 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
11737 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
11738 (gdb-continue-thread, gdb-step-thread): New commands for fine
11739 thread execution control.
11740 (gud-menu-map): New menu items to switch non-stop options.
11741 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
11742 (gdb-send): Mimic RET properly (bug 3794).
11743
11744 * progmodes/gdb-mi.el (gdb-rules-name-maker)
11745 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
11746 gdb-buffer-rules.
11747 (def-gdb-auto-update-handler): New nopreserve optional argument.
11748 (gdb-stack-list-frames-custom): Print stack from top to bottom.
11749
11750 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
11751 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
11752 (gdb-parent-mode): New mode to derive other GDB modes from.
11753 (gdb-display-disassembly-for-thread)
11754 (gdb-frame-disassembly-for-thread): New commands for threads
11755 buffer.
11756
11757 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
11758 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
11759 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
11760 (gdb-update): We now store all GDB buffers in a list so that they
11761 can be updated by traversing a list instead of calling invalidate
11762 triggers explicitly.
11763 (def-gdb-trigger-and-handler): New macro to define trigger-handler
11764 pair for GDB buffer.
11765 (gdb-stack-buffer-name): Add thread information.
11766 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
11767 handle pending triggers.
11768 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
11769 (def-gdb-thread-buffer-simple-command)
11770 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
11771 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
11772 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
11773 New commands which show buffers bound to thread.
11774 (gdb-stack-list-locals-regexp): Removed unused regexp.
11775
11776 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
11777 (gdb-locals-buffer-name, gdb-registers-buffer-name)
11778 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
11779 to (gud-comint-buffer) in *-buffer-name functions
11780 because (gdb-get-target-string) already does that.
11781 (gdb-locals-handler-custom, gdb-registers-handler-custom)
11782 (gdb-changed-registers-handler): Rewritten without regexps.
11783
11784 * progmodes/gdb-mi.el: Basic thread selection support.
11785 (gdb-thread-number): New variable.
11786 (gdb-current-context-command): New macro which adds --thread
11787 option to command.
11788 (gdb-threads-mode-map): Select thread with SPC.
11789 (gdb-thread-list-handler-custom): Mark current thread with overlay
11790 arrow. Synchronize GDB thread and Emacs thread.
11791 (gdb-select-thread): New command which selects current thread.
11792 (gdb-invalidate-frames, gdb-invalidate-locals)
11793 (gdb-invalidate-registers): Use --thread option.
11794
11795 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
11796
11797 * net/tramp.el (top): Make check for tramp-gvfs loading more
11798 robust. (Bug#3977)
11799 (tramp-handle-insert-file-contents): `unwind-protect' must be
11800 inside `with-parsed-tramp-file-name'.
11801
11802 * net/tramp-gvfs.el (top): Remove superfluous message when loading
11803 fails.
11804
11805 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
11806
11807 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
11808 directory if CLASSPATH is not set.
11809
11810 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
11811
11812 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
11813 New defconst.
11814 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
11815
11816 2009-08-02 Kevin Ryde <user42@zip.com.au>
11817
11818 * net/newst-backend.el (newsticker--raw-url-list-defaults):
11819 Update freshmeat link. Delete newsforge.com as it seems gone.
11820
11821 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
11822
11823 * select.el (x-set-selection): Doc fix (Bug#4021).
11824
11825 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
11826
11827 * help-fns.el (describe-variable): Treat list return values from
11828 dir-locals-find-file properly (Bug#4005).
11829
11830 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
11831
11832 * net/tramp.el (tramp-debug-message): Print also microseconds.
11833
11834 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
11835
11836 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
11837 or END is non-nil.
11838 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
11839 (tramp-get-debug-buffer): Change `outline-regexp' according to new
11840 format.
11841
11842 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
11843 (tramp-get-file-property): Use it.
11844
11845 * autorevert.el (auto-revert-handler): Allow
11846 `auto-revert-tail-mode' for remote files.
11847
11848 2009-08-02 Jason Rumney <jasonr@gnu.org>
11849
11850 * minibuffer.el (read-file-name): Treat confirm options to
11851 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
11852
11853 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
11854
11855 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
11856 (font-lock-variable-name-face, font-lock-constant-face): Darken
11857 the colors for light backgrounds.
11858
11859 2009-08-01 Eli Zaretskii <eliz@gnu.org>
11860
11861 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
11862 month names. (Bug#3987)
11863
11864 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
11865
11866 * simple.el (line-move-finish): Pass whole number to
11867 line-move-to-column.
11868 (line-move-visual): Perform hscroll to the recorded position.
11869
11870 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
11871
11872 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
11873
11874 2009-07-29 Alan Mackenzie <acm@muc.de>
11875
11876 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
11877
11878 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
11879
11880 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
11881 (gdb-place-breakpoints): Use full path when setting breakpoints.
11882
11883 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
11884
11885 * calc/calc.el (calc-mode-map): Add keybinding for
11886 `calc-transpose-lines'.
11887
11888 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
11889
11890 * calc/calc-misc.el (calc-transpose-lines): New function.
11891
11892 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
11893
11894 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
11895 Simplify check for out-of-band methods.
11896 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
11897 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
11898
11899 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
11900
11901 * vc-git.el (vc-git-checkin): Fix typo.
11902
11903 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
11904
11905 * progmodes/js2-mode.el: New file.
11906
11907 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
11908
11909 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
11910 (gud-menu-map): Adjust tooltip accordingly.
11911
11912 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
11913
11914 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
11915 (vc-bzr-log-view-mode): Adjust log-view-file-re.
11916
11917 * add-log.el (change-log-mode-map): Add a menu.
11918
11919 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
11920
11921 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
11922 function returns nil.
11923 (dbus-handle-event): Handle special return value :ignore.
11924 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
11925
11926 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
11927
11928 * view.el (view-mode-enable): Don't define Helper-return-blurb if
11929 it's not needed.
11930
11931 2009-07-25 Eli Zaretskii <eliz@gnu.org>
11932
11933 Fix Bug#3888:
11934
11935 * w32-vars.el (x-select-enable-clipboard): Doc fix.
11936
11937 * term/pc-win.el (x-display-name, x-colors)
11938 (x-select-enable-clipboard, x-select-text): Doc fix.
11939
11940 * term/common-win.el (x-display-name, x-colors): Doc fix.
11941
11942 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
11943 (xw-defined-colors): Doc fix.
11944
11945 * w32-fns.el (x-select-text, x-setup-function-keys)
11946 (x-get-selection, x-set-selection): Doc fix.
11947
11948 * term/x-win.el (x-select-text, x-setup-function-keys)
11949 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
11950
11951 * select.el (x-set-selection): Doc fix.
11952
11953 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
11954
11955 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
11956 instead of "IsNSSSupportAvailable". Avahi ought to work also when
11957 "IsNSSSupportAvailable" method is not available. Reported by
11958 Steve Youngs <steve@sxemacs.org>.
11959
11960 2009-07-24 Kenichi Handa <handa@m17n.org>
11961
11962 * international/characters.el: Fix setting of category ?C, ?|, ?K,
11963 and ?H. Fix setting of case for Latin Extended and Greek Extended.
11964 (build-unicode-category-table): Fix range checks.
11965
11966 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
11967
11968 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
11969 the buffer we try to sync is current when calling
11970 vc-resynch-buffer.
11971
11972 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
11973 not show up to date files.
11974
11975 2009-07-24 Glenn Morris <rgm@gnu.org>
11976
11977 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
11978 Add autoload cookies. If necessary, initialize.
11979 (elint-log): Handle non-file buffers.
11980 (elint-initialize): Add optional argument to reinitialize.
11981 (elint-find-builtin-variables): Save excursion.
11982
11983 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
11984
11985 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
11986 for Lint.
11987
11988 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
11989
11990 * vc.el (vc-print-log-internal): New function, split out from ...
11991 (vc-print-log): ... here.
11992 (vc-dir-move-to-goal-column): Declare.
11993
11994 * vc-git.el (vc-git-add-signoff): New variable.
11995 (vc-git-checkin): Use it.
11996 (vc-git-toggle-signoff): New function.
11997 (vc-git-extra-menu-map): Bind it to menu.
11998 (vc-git--run-command-string): Accept a nil FILE argument.
11999 (vc-git-stash-list): New function.
12000 (vc-git-dir-extra-headers): Use it.
12001
12002 2009-07-23 Glenn Morris <rgm@gnu.org>
12003
12004 * help-fns.el (describe-variable): Describe ignored and risky local
12005 variables in a similar way to that in which we describe safe ones.
12006
12007 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
12008 (byte-compile-output-file-form, byte-compile-output-docform)
12009 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
12010 Give some more local variables with common names a "bytecomp-" prefix,
12011 so as not to shadow things during compilation.
12012 * emacs-lisp/cl-macs.el (load-time-value)
12013 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
12014 `outbuffer' to `bytecomp-outbuffer'.
12015
12016 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
12017 since the next two variables cover them automatically now.
12018 (elint-builtin-variables, elint-autoloaded-variables): New.
12019 (elint-unknown-builtin-args): Remove all members, since they can be
12020 parsed automatically now.
12021 (elint-extra-errors): New.
12022 (elint-env-add-env, elint-env-add-macro): Use cadr.
12023 (elint-current-buffer): Use or. Change final message.
12024 (elint-get-top-forms): Use line-end-position.
12025 (elint-init-env): Use cadr. Handle autoload, declare-function,
12026 and defalias.
12027 (elint-add-required-env): Doc fix. Use or. Standardize error.
12028 (regexp-assoc): Remove unused function.
12029 (elint-top-form): Set elint-current-pos, to record the start of the
12030 top-level form, for compilation-mode.
12031 (elint-form): Trap errors in macro expansion. Use dolist.
12032 (elint-unbound-variable): Use elint-builtin-variables and
12033 elint-autoloaded-variables.
12034 (elint-get-args): Use cadr, or.
12035 (elint-check-cond-form): Use dolist, cadr.
12036 (elint-check-condition-case-form): Doc fix. Use cadr.
12037 Use elint-extra-errors.
12038 (elint-log): New function.
12039 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
12040 Distinguish errors and warnings.
12041 (elint-log-message): Use with-current-buffer. Inhibit read-only.
12042 Use a bytecomp-style format.
12043 (elint-clear-log): Preserve default-directory. Inhibit read-only.
12044 (elint-get-log-buffer): Use compilation mode. Disable undo.
12045 Don't truncate lines.
12046 (elint-initialize): Set builtin and autoloaded variable lists.
12047 Only process elint-unknown-builtin-args if non-nil.
12048 (elint-find-builtin-variables, elint-find-autoloaded-variables):
12049 New functions.
12050 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
12051
12052 2009-07-22 Kevin Ryde <user42@zip.com.au>
12053
12054 * net/newst-backend.el (newsticker--parse-atom-1.0)
12055 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
12056 (newsticker--parse-rss-1.0):
12057 * progmodes/idlwave.el (idlwave-mode):
12058 * progmodes/idlw-shell.el (idlwave-shell-mode):
12059 * progmodes/vera-mode.el (vera-mode):
12060 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
12061 * progmodes/vhdl-mode.el (vhdl-mode):
12062 * textmodes/table.el (table-generate-source)
12063 (table--warn-incompatibility):
12064 Hyperlink urls in docstrings with URL `...'.
12065
12066 2009-07-22 Glenn Morris <rgm@gnu.org>
12067
12068 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
12069 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
12070 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
12071 Remove leading * from defcustom docs.
12072
12073 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
12074
12075 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
12076 defcustom doc.
12077 (list-load-path-shadows): Optionally, just return shadows as a string.
12078
12079 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
12080
12081 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
12082
12083 * mail/rmailedit.el (rmail-edit-mode): Use
12084 auto-save-include-big-deletions.
12085
12086 * mail/rmail.el (rmail-variables): Use
12087 auto-save-include-big-deletions.
12088
12089 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
12090 changes.
12091
12092 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
12093
12094 * calc/calc.el (calc-undo-length): New variable.
12095 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
12096
12097 2009-07-21 Richard Stallman <rms@gnu.org>
12098
12099 * files.el (auto-save-mode): Handle buffer-save-size = -2
12100 for toggling mode.
12101
12102 2009-07-21 Glenn Morris <rgm@gnu.org>
12103
12104 * textmodes/ispell.el (ispell-looking-back): Update declaration.
12105
12106 * calendar/todo-mode.el (calendar-current-date): Update declaration.
12107
12108 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
12109 silence compiler. Instead...
12110 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
12111 (ps-print-ensure-fontified): Update for above function name changes.
12112
12113 * printing.el (pr-mh-get-msg-num, pr-mh-show)
12114 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
12115 silence compiler. Instead...
12116 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
12117 (mh-show-buffer): Only define for compiler.
12118 (pr-mh-current-message): Update for above function name changes.
12119
12120 * files.el (abort-if-file-too-large): Explicitly pass `filename'
12121 as an argument.
12122 (find-file-noselect, insert-file-1): Update for above change.
12123
12124 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
12125
12126 * mail/mailclient.el (mailclient-send-it): Fix message.
12127
12128 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
12129 (edebug-eval): Check cl-debug-env is bound.
12130 (print-level, print-circle): Don't redefine built-in variables.
12131
12132 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
12133 (custom-print-vectors): Remove old comments from doc.
12134
12135 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
12136 (emerge-version): Make the variable an obsolete alias for the
12137 emacs-version variable. Make the function obsolete.
12138 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
12139 Emerge options, rather than merging in into the main Options menu.
12140 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
12141 and auto advance modes. Disable edit/fast items when not relevant.
12142
12143 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
12144
12145 * term/vt420.el (terminal-init-vt420): Fix typo.
12146
12147 2009-07-20 Sam Steingold <sds@gnu.org>
12148
12149 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
12150 variable (removed from compile.el on 2004-03-11).
12151
12152 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
12153
12154 * files.el (hack-local-variables-filter): Fix last change.
12155
12156 2009-07-19 Juri Linkov <juri@jurta.org>
12157
12158 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
12159 (dir-local-variables-alist): New buffer-local variable.
12160 (hack-local-variables-filter): If variable is not dir-local,
12161 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
12162 because file-local overrides dir-local.
12163 (c-postprocess-file-styles) <declare-function>:
12164 Remove obsolete declaration.
12165 (hack-dir-local-variables): Add dir-local variable/value pair to
12166 `dir-local-variables-alist' and remove duplicates. Doc fix.
12167
12168 * help-fns.el (describe-variable): Add information about
12169 file-local and dir-local variables.
12170
12171 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
12172
12173 * files.el (hack-local-variables-filter): Rewrite.
12174
12175 2009-07-19 Glenn Morris <rgm@gnu.org>
12176
12177 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
12178 Silence compiler by only defining on XEmacs.
12179
12180 * international/mule.el (auto-coding-regexp-alist): Only match
12181 BABYL... at the start of buffer, not of lines. (Bug#3790)
12182
12183 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
12184 non-calendar buffers (Bug#3862). Restore "not on a date" message.
12185 (cal-menu-context-mouse-menu): Doc fix.
12186
12187 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
12188
12189 * simple.el (mail-user-agent): Doc fix. Set :version tag.
12190
12191 2009-07-18 Juri Linkov <juri@jurta.org>
12192
12193 * info.el: Virtual Info keyword finder.
12194 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
12195 (Info-finder-file): New variable.
12196 (Info-finder-find-file): New function.
12197 (finder-known-keywords, finder-package-info)
12198 (find-library-name, lm-commentary): Use defvar and
12199 declare-function to silence compiler warnings.
12200 (Info-finder-find-node): New function.
12201 (info-finder): New command.
12202
12203 * subr.el (process-kill-buffer-query-function): New function.
12204 (add-hook)<kill-buffer-query-functions>: Add hook
12205 `process-kill-buffer-query-function'.
12206
12207 2009-07-18 Alan Mackenzie <acm@muc.de>
12208
12209 * progmodes/cc-mode.el (c-before-hack-hook)
12210 (c-postprocess-file-styles): Give invocation of `c-set-style'
12211 DONT-OVERRIDE parameter of t. Already set style variables will
12212 thus not be overridden by style settings given by `c-file-syle'.
12213
12214 * files.el (hack-local-variables-filter): Remove entries with
12215 duplicate keys from `file-local-variables-alist'.
12216
12217 2009-07-18 Eli Zaretskii <eliz@gnu.org>
12218
12219 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
12220 x-set-selection if display-selections-p returns nil for the
12221 current frame.
12222
12223 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
12224
12225 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
12226
12227 2009-07-18 Eli Zaretskii <eliz@gnu.org>
12228
12229 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
12230 Accept nil in addition to a regexp.
12231 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
12232 Accept nil in addition to a regexp.
12233 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
12234 buffers that have an associated file. Handle nil values of
12235 desktop-buffers-not-to-save and desktop-files-not-to-save.
12236 (Bug#3833)
12237
12238 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
12239 (x-disown-selection-internal): New functions.
12240
12241 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
12242
12243 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
12244 warning.
12245 (gdb-breakpoints-header): Move forward to avoid compiler warning.
12246 (gdb-make-header-line-mouse-map): Remove duplicate definition.
12247
12248 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
12249
12250 * simple.el (set-mark): Revert last change.
12251
12252 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
12253
12254 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
12255 rendering of pngs is not possible instead of messaging a long
12256 description.
12257
12258 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
12259
12260 * w32-fns.el (x-selection-owner-p): New function.
12261
12262 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
12263 (mouse-yank-at-click, mouse-yank-primary): If
12264 select-active-regions is non-nil, deactivate the mark before
12265 insertion.
12266
12267 * simple.el (deactivate-mark, set-mark): Only save selection if we
12268 own it.
12269
12270 2009-07-17 Kenichi Handa <handa@m17n.org>
12271
12272 * case-table.el (describe-buffer-case-table): Fix for the case
12273 that KEY is a cons.
12274
12275 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
12276
12277 * vc-rcs.el (vc-rcs-find-file-hook):
12278 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
12279
12280 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
12281
12282 * net/tramp.el (tramp-wait-for-output): Handle the case when
12283 commands do not return a newline but a null byte before the shell
12284 prompt. (Bug#3858)
12285
12286 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12287
12288 * term/ns-win.el (ns-set-alpha): Don't declare.
12289 (ns-set-background-alpha): Remove function.
12290
12291 2009-07-16 Kevin Ryde <user42@zip.com.au>
12292
12293 * emacs-lisp/copyright.el (copyright-update): Save match-data across
12294 y-or-n-p, for safety.
12295
12296 2009-07-16 Richard Stallman <rms@gnu.org>
12297
12298 * files.el (auto-save-mode): If buffer-saved-size is -2,
12299 don't clobber it.
12300
12301 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
12302 (rmail-retry-ignored-headers): Add more uninteresting fields.
12303
12304 2009-07-15 Jari Aalto <jari.aalto@cante.net>
12305
12306 * net/rcirc.el (rcirc): Use history variables.
12307 (rcirc-server-name-history, rcirc-nick-name-history)
12308 (rcirc-server-port-history): New variables.
12309
12310 2009-07-15 Kenichi Handa <handa@m17n.org>
12311
12312 * international/mule-cmds.el (set-language-environment-charset):
12313 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
12314 ignore them.
12315
12316 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
12317 Delete unibyte-display.
12318
12319 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
12320
12321 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
12322
12323 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
12324
12325 * simple.el (deactivate-mark): Optional argument FORCE.
12326 (set-mark): Use deactivate-mark.
12327
12328 * info.el (Info-search): No need to check transient-mark-mode
12329 before calling deactivate-mark.
12330
12331 * select.el (x-set-selection): Doc fix.
12332 (x-valid-simple-selection-p): Allow buffer values.
12333 (xselect--selection-bounds): Handle buffer values. Suggested by
12334 David De La Harpe Golden.
12335
12336 * mouse.el (mouse-set-region, mouse-drag-track): Call
12337 copy-region-as-kill before setting the mark, to let
12338 select-active-regions work.
12339
12340 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
12341
12342 * simple.el (deactivate-mark): If select-active-regions is
12343 non-nil, copy the selection data into a string.
12344 (activate-mark): If select-active-regions is non-nil, set the
12345 selection to the current buffer.
12346 (set-mark): Update selection if select-active-regions is non-nil.
12347
12348 * select.el (x-valid-simple-selection-p): Allow buffer values.
12349
12350 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
12351
12352 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
12353 and more featureful message-mode.
12354
12355 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
12356
12357 * select.el (x-set-selection): Doc fix.
12358 (x-valid-simple-selection-p): Disallow selection data consisting
12359 of a list or cons of integers, since that is not used.
12360 (xselect--selection-bounds, xselect--int-to-cons): New functions.
12361 (xselect-convert-to-string, xselect-convert-to-length)
12362 (xselect-convert-to-filename, xselect-convert-to-charpos)
12363 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
12364
12365 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
12366
12367 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
12368 output in -break-info command (Emacs bug #3794).
12369
12370 2009-07-14 Glenn Morris <rgm@gnu.org>
12371
12372 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
12373 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
12374 (edebug-print-length, edebug-print-level, edebug-print-circle)
12375 (edebug-sit-for-seconds, edebug-view-outside)
12376 (edebug-bounce-point, edebug-set-global-break-condition)
12377 (edebug-Go-nonstop-mode, edebug-trace-mode)
12378 (edebug-Trace-fast-mode, edebug-continue-mode)
12379 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
12380 (edebug-visit-eval-list): Doc fixes.
12381
12382 * subr.el (def-edebug-spec): Doc fix.
12383
12384 2009-07-14 Kenichi Handa <handa@m17n.org>
12385
12386 * international/characters.el: Fix setting of category ?C.
12387
12388 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
12389
12390 * term/ns-win.el (x-select-font): defalias x-select-font to
12391 ns-popup-font-panel instead of generate-fontset-menu.
12392
12393 2009-07-12 Eli Zaretskii <eliz@gnu.org>
12394
12395 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
12396
12397 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
12398
12399 * arc-mode.el (archive-find-type): Allow for a PK00 string before
12400 the PK\003\004 header (Bug#3770).
12401
12402 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
12403
12404 * pcomplete.el (pcomplete-comint-setup): Check for
12405 shell-dynamic-complete-filename too.
12406
12407 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
12408
12409 * simple.el (temporary-goal-column): Change the value for
12410 line-move-visual to a cons cell.
12411 (line-move-visual): Record or set the window hscroll, if
12412 necessary (Bug#3494).
12413 (line-move-1): Handle cons value of temporary-goal-column.
12414
12415 2009-07-11 Kenichi Handa <handa@m17n.org>
12416
12417 * international/mule-diag.el (describe-character-set): Don't show
12418 width.
12419
12420 2009-07-10 Sam Steingold <sds@gnu.org>
12421
12422 * progmodes/compile.el (compilation-mode-font-lock-keywords):
12423 Omake sometimes indents the errors it prints, so allow all
12424 regexps to start with spaces.
12425
12426 2009-07-10 Eli Zaretskii <eliz@gnu.org>
12427
12428 * cus-edit.el (customize-changed-options-previous-release):
12429 Bump value to 22.1. (Bug#3804)
12430
12431 2009-07-08 Sam Steingold <sds@gnu.org>
12432
12433 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
12434 to be a cons cell (test . ignored-directory) to selectively ignore
12435 some directories depending on the location of the search.
12436
12437 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
12438
12439 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
12440 remote user is root, on the local host.
12441 (tramp-local-host-p): Either the local user or the remote user
12442 must be root. (Bug#3771)
12443
12444 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
12445
12446 * progmodes/gdb-mi.el (gdb): Remove description of
12447 gdb-use-separate-io-buffer.
12448 (menu): Don't allow toggling of or enable
12449 gdb-use-separate-io-buffer from menubar.
12450
12451 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
12452
12453 * mail/unrmail.el (unrmail): Make sure the message ends with two
12454 newlines (Bug#3769).
12455
12456 2009-07-08 Glenn Morris <rgm@gnu.org>
12457
12458 * calendar/calendar.el (calendar-current-date): Rework previous change.
12459
12460 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
12461
12462 * calendar/calendar.el (calendar-current-date):
12463 Add an optional argument giving an offset from today.
12464
12465 2009-07-08 Glenn Morris <rgm@gnu.org>
12466
12467 * tutorial.el (tutorial--describe-nonstandard-key):
12468 Adjust the message for when a key has been unbound.
12469 (help-with-tutorial): Hide the arch-tag.
12470
12471 2009-07-08 Kenichi Handa <handa@m17n.org>
12472
12473 * international/fontset.el (setup-default-fontset): For each
12474 script, append (not set) font-specs.
12475
12476 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
12477 docstring.
12478
12479 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
12480
12481 * progmodes/gdb-mi.el (gdb-init-1): Move sending
12482 -data-list-register-names to ...
12483 (gdb-starting): ... here because GDB 7.0 requires execution to
12484 have started when using this MI command.
12485 (gdb-set-header): New function to distinguish select and
12486 unselected tabs in gdb buffers.
12487 (gdb-propertize-header): New macro that uses gdb-set-header.
12488 (gdb-breakpoints-header, gdb-locals-header): Use it.
12489 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
12490
12491 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
12492
12493 * Makefile.in (ELCFILES): Remove fadr.elc.
12494
12495 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
12496
12497 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
12498 may contain frame information, so `string-match' should be used.
12499 (gdb-update): Disassembly is invalidated through
12500 `gdb-get-selected-frame'.
12501 (gdb-pad-string): New function to pad string with spaces.
12502 (gdb-invalidate-disassembly): Invalidate only if the buffer
12503 exists.
12504 (gdb-disassembly-handler-custom): Column alignment.
12505 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
12506 placing new ones.
12507 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
12508 end of line, too.
12509 (gdb-frame-handler): Match convention to for disassembly buffer
12510 mode name.
12511 (gdb-stack-list-frames-handler): Rewritten without regexps.
12512 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
12513 not highlight breakpoints without line information.
12514 (gdb-input): Add trailing newline to command.
12515
12516 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
12517 buffer properly.
12518 (gdb-breakpoints-list-handler-custom): Replacement for
12519 `gdb-break-list-handler'. Using real parser instead of regexps
12520 now.
12521 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
12522 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
12523 to place breakpoints.
12524 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
12525 functions.
12526 (gdb-disassembly-handler-custom): Show overlay arrow.
12527 (gdb-disassembly-place-breakpoints): Show breakpoints in
12528 disassembly buffer.
12529 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
12530 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
12531 instead of parsing breakpoints buffer. Fixed old menu references
12532 in `gud-menu-map'.
12533
12534 * fadr.el: Remove.
12535
12536 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
12537 (gdb-memory-address): New variable which holds top address of
12538 memory page shown in memory buffer.
12539 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
12540 customization variables.
12541 New functions:
12542 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
12543 display the memory buffer.
12544 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
12545 buffer display parameters.
12546 (def-gdb-memory-format, gdb-memory-format-binary)
12547 (gdb-memory-format-octal, gdb-memory-format-unsigned)
12548 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
12549 Functions for setting memory buffer format.
12550 (gdb-memory-unit-word, gdb-memory-unit-halfword)
12551 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
12552 unit size used in memory buffer.
12553 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
12554 to next/previous page of memory buffer.
12555 Now using (bindat-get-field) instead of fadr functions.
12556
12557 2009-07-07 Sam Steingold <sds@gnu.org>
12558
12559 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
12560 non-top-level files.
12561
12562 2009-07-07 Kenichi Handa <handa@m17n.org>
12563
12564 * international/mule-cmds.el (reset-language-environment): Put
12565 the highset priority to the charset iso-8859-1.
12566
12567 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
12568
12569 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
12570 to the end of the line when locating the block (Bug#700).
12571
12572 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
12573
12574 * net/tramp.el (tramp-handle-write-region): Flush file properties
12575 in case of short track.
12576
12577 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
12578
12579 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
12580 Coded custom representation of verilog error regular expressions
12581 to work with Emacs-22's new format.
12582 (verilog-error-regexp-xemacs-alist): Coded custom representation
12583 of verilog error regular expressions to work with XEmacs format.
12584 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
12585 error recognition into XEmacs.
12586 (verilog-error-regexp-add-emacs): Hook routine to install verilog
12587 error recognition into Emacs-22.
12588
12589 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
12590
12591 * woman.el: Remove stand-alone closing parentheses.
12592 (woman-file-name, woman2-format-paragraphs)
12593 (woman-leave-blank-lines): Code cleanup.
12594 (woman-use-own-frame): Change default to nil.
12595 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
12596 defaults to inherit from default faces.
12597 (woman2-process-escapes): Consume the newline after a stand-alone
12598 filler character (Bug#3651).
12599
12600 2009-07-06 Glenn Morris <rgm@gnu.org>
12601
12602 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
12603 (top-level): Move provide to the end.
12604 (ffap): Remove defunct URL from custom group.
12605
12606 * subr.el (eval-after-load): Doc fix.
12607
12608 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
12609
12610 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
12611 `calc-embedded-word' is called twice.
12612
12613 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12614
12615 * files.el (find-alternate-file-other-window, find-alternate-file):
12616 Obey confirm-nonexistent-file-or-buffer.
12617
12618 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
12619
12620 * dired-aux.el (dired-show-file-type): Handle remote files.
12621
12622 2009-07-05 Jari Aalto <jari.aalto@cante.net>
12623
12624 * desktop.el (desktop-globals-to-save):
12625 Add file-name-history (Bug#2750).
12626
12627 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
12628
12629 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
12630
12631 2009-07-04 Johan Bockgård <bojohan@gnu.org>
12632
12633 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
12634 property on entire argument since this is what eshell-lisp-command
12635 expects.
12636
12637 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
12638
12639 * net/tramp-gvfs.el (tramp-gvfs-methods)
12640 (tramp-gvfs-zeroconf-domain)
12641 (tramp-bluez-discover-devices-timeout): Add version flag.
12642 (tramp-gvfs-handler-mounted-unmounted)
12643 (tramp-gvfs-connection-mounted-p): Polish handling of
12644 incompatibilities between GVFS 0.2 and 1.0.
12645
12646 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
12647
12648 * cus-start.el (all): Add make-pointer-invisible.
12649
12650 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
12651
12652 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
12653 formatted correctly.
12654
12655 2009-07-02 Juri Linkov <juri@jurta.org>
12656
12657 * info.el: Virtual Info files and nodes.
12658 (Info-virtual-files, Info-virtual-nodes): New variables.
12659 (Info-current-node-virtual): New variable.
12660 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
12661 New functions.
12662 (Info-file-supports-index-cookies): Use Info-virtual-file-p
12663 to check for a virtual file instead of checking a fixed list
12664 of node names.
12665 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
12666 instead of ad-hoc processing of "dir" and (apropos history toc).
12667 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
12668 instead of ad-hoc processing of "dir" and (apropos history toc).
12669 Reread a file when moving from a virtual node.
12670 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
12671 (Info-directory-toc-nodes, Info-directory-find-file)
12672 (Info-directory-find-node): New functions.
12673 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
12674 (Info-history): Move part of code to
12675 `Info-history-find-node'.
12676 (Info-history-toc-nodes, Info-history-find-file)
12677 (Info-history-find-node): New functions.
12678 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
12679 (Info-toc): Move part of code to `Info-toc-find-node'.
12680 (Info-toc-find-node): New function.
12681 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
12682 the current Info file name to references because now the node
12683 "*TOC*" belongs to the same Info manual.
12684 (Info-toc-build): Rename from `Info-build-toc'.
12685 (Info-toc-nodes): Rename input argument `file' to `filename'.
12686 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
12687 instead of ad-hoc processing of ("dir" apropos history toc).
12688 (Info-index-nodes): Use Info-virtual-file-p
12689 to check for a virtual file instead of checking a fixed list
12690 of node names.
12691 (Info-index-node): Add check for `Info-current-node-virtual'.
12692 Raise `save-match-data' higher up the tree to contain
12693 `search-forward' too (bug fix).
12694 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
12695 (Info-virtual-index-nodes): New variable.
12696 (Info-virtual-index-find-node, Info-virtual-index): New functions.
12697 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
12698 (Info-apropos-file, Info-apropos-nodes): New variables.
12699 (Info-apropos-toc-nodes, Info-apropos-find-file)
12700 (Info-apropos-find-node, Info-apropos-matches): New functions.
12701 (info-apropos): Move part of code to `Info-apropos-find-node' and
12702 `Info-apropos-matches'.
12703 (Info-mode-map): Bind "I" to `Info-virtual-index'.
12704 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
12705 for a virtual file instead of checking a fixed list of node names.
12706
12707 * simple.el (async-shell-command): New command.
12708
12709 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
12710
12711 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
12712 instead of `mount-info'.
12713
12714 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
12715
12716 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
12717 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
12718
12719 2009-07-02 Kenichi Handa <handa@m17n.org>
12720
12721 * international/mule.el (set-keyboard-coding-system): Force *-unix
12722 coding-system to avoid eol conversion.
12723
12724 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
12725
12726 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12727 Add handler for `process-file', `shell-command' and
12728 `start-file-process'.
12729 (tramp-gvfs-handle-shell-command)
12730 (tramp-gvfs-handle-start-file-process)
12731 (tramp-gvfs-handle-process-file): New defuns.
12732 (tramp-synce-list-devices): Simplify check for existence of property.
12733
12734 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
12735
12736 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
12737
12738 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
12739
12740 * language/korean.el (set-language-info-alist): Add korean-cp949,
12741 cp949 to spec.
12742
12743 2009-07-01 Kenichi Handa <handa@m17n.org>
12744
12745 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
12746
12747 * international/encoded-kb.el: Deleted.
12748
12749 * international/mule.el (set-keyboard-coding-system): Perform the
12750 necessary setup here instead of calling encoded-kbd-setup-display.
12751
12752 2009-07-01 Glenn Morris <rgm@gnu.org>
12753
12754 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
12755
12756 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
12757
12758 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
12759
12760 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
12761
12762 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
12763 Handle also the 'rename case, when setting file modes. (Bug#3712)
12764 (tramp-default-file-modes): Remove execute permissions.
12765
12766 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
12767 (top): Add a default for "synce" in `tramp-default-user-alist'.
12768 Add completion function for "synce" method.
12769 (tramp-hal-service, tramp-hal-path-manager)
12770 (tramp-hal-interface-manager, tramp-hal-interface-device):
12771 New defconst.
12772 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
12773 (tramp-synce-list-devices, tramp-synce-parse-device-names):
12774 New defuns.
12775
12776 * net/trampver.el: Update release number.
12777
12778 2009-06-30 Kenichi Handa <handa@m17n.org>
12779
12780 * international/fontset.el (setup-default-fontset): Add CJK fonts
12781 for symbols and the other miscellaneous characters.
12782
12783 * language/korea-util.el (setup-korean-environment-internal):
12784 Make char-width-table suitable for Korean environments.
12785 (exit-korean-environment): Cancel above.
12786
12787 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
12788 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
12789 setup-function to make char-width-table suitable for respective
12790 environments, and an exit-function to cancel that.
12791
12792 * language/japan-util.el (setup-japanese-environment-internal):
12793 Call use-cjk-char-width-table with arg `ja_JP'.
12794
12795 * international/characters.el (cjk-char-width-table): Delete it.
12796 (cjk-char-width-table-list): New variable.
12797 (use-cjk-char-width-table): New arg local-name.
12798 (use-default-char-width-table): Fix for the case that Emacs is
12799 already using the default char-width-table.
12800
12801 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
12802
12803 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
12804 modes mandatory. (Bug#3712)
12805
12806 2009-06-29 Alan Mackenzie <acm@muc.de>
12807
12808 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
12809 correction between the visible width of TABs and their number of bytes.
12810
12811 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
12812
12813 * server.el (server-buffer-done): Prevent kill-buffer from
12814 prompting by clearing the buffer modification flag (Bug#3696).
12815
12816 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
12817
12818 * progmodes/verilog-mode.el (verilog-beg-of-statement)
12819 (verilog-endcomment-reason-re): Support unique case and priority case.
12820 (verilog-basic-complete-re): Support localparam lineup.
12821 (verilog-beg-of-statement-1): Fix for robustness, unique case.
12822 (verilog-set-auto-endcomments): Fix for unique case, always_comb
12823 commenting.
12824 (verilog-leap-to-case-head): Now support *nested* unique &
12825 priority case statements.
12826 (verilog-auto-lineup): Make just declarations the default (as it
12827 had been).
12828 (verilog-leap-to-case-head): Support priority/unique case statements.
12829 (verilog-auto-lineup): Rework to give users radio buttons to
12830 select the various styles of automatic lineup.
12831 (verilog-error-regexp-alist): Rework to support the XEmacs style
12832 of error regular expressions from compilers, lint tools &
12833 simulators. Note that GNU Emacs has made it impossible for a mode
12834 to load such things.
12835 (electric-verilog-terminate-line, verilog-indent-declaration)
12836 (verilog-auto-wiure): Rework for radio button selection of
12837 auto-lineup selection of specification of auto lineup.
12838 (verilog-beg-of-statement-1): Redesign to support proper operation
12839 in additional code, based on testing with auto-lineup.
12840 (verilog-calculate-indent, assignments & declarations)
12841 (verilog-backward-token): Enhance to support auto-lineup of
12842 assignments & declarations.
12843 (verilog-in-directive-p, verilog-at-struct-p): New function for
12844 easy test of whether we are.
12845 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
12846 to support safe execution at almost anyline.
12847 (verilog-calc-1): Properly support indenting deep inside generate
12848 blocks.
12849 (verilog-init-font): Remove definition & use of verilog-init-font,
12850 as it is redundant with font-lock-defaults.
12851 (verilog-mode): Alter the definition of verilog-font-lock-defaults
12852 to avoid circular calls if syntax-ppss is a function (as is the
12853 case now in 22.x GNU Emacs) as that function would sometimes call
12854 itself, leading to (nearly) infinite recursion.
12855 (verilog-ovm-begin-re, verilog-ovm-end-re)
12856 (verilog-ovm-statement-re, verilog-leap-to-head)
12857 (verilog-backward-token): Add support for OVM macros. Some are
12858 complete statements, and others open and close scopes like begin
12859 and end.
12860 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
12861 (verilog-defun-level-generate-only-re): Really fix the defun-list
12862 compilation issue.
12863 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
12864 coverpoint, constraint and cross statements.
12865 (verilog-defun-level-list, verilog-generate-defun-level-list)
12866 (verilog-all-defun-level-list): Redo these specifications - it is
12867 too hard to support eval-when compile aggregation of lists also
12868 built at when-compile time.
12869 (verilog-defun-level-list): Place defconsts of variables used in
12870 building regular expressions which are built in eval-when-compile
12871 bodies in the same eval-when-compile body to facilitate compile
12872 without load.
12873 (verilog-beg-block-re-ordered): Support indenting
12874 virtual/protected tasks and functions.
12875 (verilog-defun-level-list, verilog-in-generate-region-p)
12876 (verilog-backward-ws&directives, verilog-calc-1): Speed up
12877 indentation of some module items (generate items).
12878 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
12879 across virtual/protected tasks and functions.
12880
12881 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
12882
12883 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
12884 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
12885 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
12886 in concatenations. Reported by Yishay Belkind.
12887 (verilog-auto-ascii-enum): Support one-hot state machines in
12888 AUTOASCIIENUM. Suggested by Lloyd Gomez.
12889 (verilog-auto-inst, verilog-auto-inst-port): Include interface
12890 modport in AUTOINST and add vl-modport for users. Reported by
12891 David Rogoff.
12892 (verilog-auto-inout-module, verilog-auto-inst)
12893 (verilog-decls-get-interfaces, verilog-insert-definition)
12894 (verilog-insert-one-definition, verilog-read-decls)
12895 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
12896 (verilog-sig-modport, verilog-signals-combine-bus)
12897 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
12898 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
12899 Suggested by David Rogoff.
12900 (verilog-repair-open-comma): Fix non-insertion of comma when
12901 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
12902 (verilog-make-width-expression): Simplify [A-1:0] expression
12903 widths to just {A{1'b0}}.
12904 (verilog-mode): Cleanup checkdoc warnings.
12905 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
12906 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
12907 inputs/outputs or data type. Suggested by Vasu Kandadi.
12908 (next-error-last-buffer): Fix byte-compiler warning.
12909 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
12910 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
12911 or shell command text during AUTO expansion. Suggested by Tad Truex.
12912 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
12913 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
12914 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
12915 in AUTOINOUT. Reported by Matthew Lovell.
12916 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
12917 causing use of <= assignments. Reported by Alex Reed.
12918 (verilog-read-decls): Fix triand, trior, wand, wor to be
12919 recognized by AUTOWIRE. Reported by Spencer Isaacson.
12920 (verilog-extended-complete-re): Support import "DPI-C" functions.
12921 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
12922 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
12923 (verilog-insert-date, verilog-insert-year)
12924 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
12925 Windows systems. Reported by Michael Potts.
12926 (verilog-read-module-name): Fix AUTOINST when the child module
12927 declaration's name is a tick define. Reported by Elliot Mednick.
12928 (verilog-read-decls): Fix V2K parameter bit subscripts getting
12929 passed to next parameter's definition. Reported by Bruce T.
12930 (verilog-read-decls): Fix detecting "parameter int" when using
12931 AUTOINSTPARAM. Reported by Bruce T.
12932 (verilog-goto-defun): Fix goto not finding modules unless first
12933 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
12934 (verilog-mode): Expand -f flag arguments on entry to mode so
12935 verilog-goto-defun will work. Reported by Lawrence Butcher.
12936 (verilog-getopt): Expand environment variables in -f file
12937 arguments. Suggested by Lawrence Butcher.
12938 (verilog-set-define): Fix "Symbol's value as variable is void"
12939 when reading enumerations.
12940 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
12941 Suggested by Stephen Peltan.
12942 (verilog-read-defines): Fix reading of enumerations in include
12943 files. Reported by Steve Peltan.
12944
12945 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
12946
12947 * files.el (trash-directory): Fix defcustom type.
12948
12949 2009-06-28 Juri Linkov <juri@jurta.org>
12950
12951 * help-fns.el (describe-function-1): Correctly locate adviced
12952 functions in hyperlink (Bug#2438).
12953
12954 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
12955
12956 * files.el (trash-directory): Change default to nil.
12957 (move-file-to-trash): If trash-directory is nil and
12958 system-move-file-to-trash is unbound, perform freedesktop-style
12959 trashing.
12960
12961 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
12962
12963 * files.el (move-file-to-trash): Add freedesktop trash
12964 support (Bug#973).
12965
12966 2009-06-28 Glenn Morris <rgm@gnu.org>
12967
12968 * autorevert.el (global-auto-revert-non-file-buffers)
12969 (global-auto-revert-mode): Doc fixes.
12970
12971 2009-06-27 Johan Bockgård <bojohan@gnu.org>
12972
12973 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
12974
12975 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
12976
12977 * faces.el (x-handle-named-frame-geometry): Ensure that we have
12978 opened an X connection before calling x-get-resource (Bug#3194).
12979
12980 * play/doctor.el: Remove reference to obsolete website.
12981 (make-doctor-variables): Correct grammar mistake (Bug#2633).
12982
12983 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
12984
12985 Remove find-file-not-found-hook VC method. (Bug#2757)
12986 * vc-hooks.el (vc-file-not-found-hook)
12987 (vc-default-find-file-not-found-hook): Remove functions.
12988 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
12989 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
12990 * vc.el:
12991 * vc-hg.el:
12992 * vc-git.el: Do not mention find-file-not-found-hook VC method.
12993
12994 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
12995
12996 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
12997 compatibility function for `looking-back'.
12998
12999 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
13000 Use `ispell-looking-back'.
13001
13002 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
13003
13004 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
13005 rather than `filename'.
13006
13007 2009-06-23 Miles Bader <miles@gnu.org>
13008
13009 * face-remap.el (text-scale-set): New function.
13010
13011 2009-06-23 Glenn Morris <rgm@gnu.org>
13012
13013 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
13014
13015 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
13016
13017 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
13018
13019 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
13020
13021 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
13022 Simplify Persian conditionals.
13023
13024 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
13025 variable `filename'.
13026
13027 * comint.el (comint-insert-input): Doc fix.
13028
13029 * Makefile.in (ELCFILES): Fix typo in previous change.
13030
13031 2009-06-23 Miles Bader <miles@gnu.org>
13032
13033 * cus-start.el: Add entry for `recenter-redisplay'.
13034
13035 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
13036
13037 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
13038 Add an optional argument for the backend, use it instead of
13039 calling vc-backend.
13040 (vc-mode-line): Add an optional argument for the backend.
13041 Pass the backend to vc-state and vc-working-revision. Move code for
13042 special handling for vc-state being a buffer to ...
13043
13044 * vc-rcs.el (vc-rcs-find-file-hook):
13045 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
13046
13047 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
13048 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
13049 vc-stay-local-p and vc-mode-line calls.
13050
13051 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
13052 (vc-cvs-diff, vc-cvs-annotate-command)
13053 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
13054 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
13055 vc-mode-line calls.
13056
13057 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
13058 direct comparison.
13059 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
13060 backend when calling vc-mode-line.
13061 (vc-register): Do not create a closure for calling the vc register
13062 function, call it directly.
13063
13064 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
13065
13066 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
13067 to make it obvious item can be clicked.
13068
13069 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
13070
13071 2009-06-23 Kenichi Handa <handa@m17n.org>
13072
13073 * language/korea-util.el (korean-key-bindings): Change the binding
13074 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
13075 same command.
13076
13077 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
13078
13079 Sync with Tramp 2.1.16.
13080
13081 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
13082
13083 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
13084 when a loading of a package fails. Completion function for rsync
13085 is `tramp-completion-function-alist-ssh'.
13086 (all): Replace all calls of `split-string' and
13087 `tramp-split-string' by `tramp-compat-split-string'.
13088 (tramp-default-method): Use `tramp-compat-process-running-p'.
13089 (tramp-default-proxies-alist): Allow also Lisp forms.
13090 (tramp-remote-path): Add choice "Private Directories".
13091 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
13092 (tramp-domain-regexp): Allow also "-", "_" and ".".
13093 (tramp-end-of-output): Remove newlines, and add "$" at the end.
13094 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
13095 (tramp-debug-message): Insert header line in debug buffer.
13096 (tramp-handle-directory-files-and-attributes-with-stat):
13097 Care about filenames with spaces, or starting with "-".
13098 (tramp-handle-dired-uncache): New defun.
13099 (tramp-handle-insert-directory): Don't flush the directory from
13100 cache, this is handled by `dired-uncache' now.
13101 (tramp-handle-insert-file-contents): Improve error handling.
13102 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
13103 Quote `tramp-end-of-output'.
13104 (tramp-action-password): Improve trace message.
13105 (tramp-check-for-regexp): Both echoes must be present, before removing.
13106 (tramp-open-connection-setup-interactive-shell): Trace coding system.
13107 (tramp-compute-multi-hops): Eval cons cells of
13108 `tramp-default-proxies-alist'.
13109 (tramp-maybe-open-connection): Use the same command pattern for
13110 first hop and further hops.
13111 (tramp-wait-for-output): Remove handling of newlines.
13112 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
13113 (tramp-split-string): Remove function. It is handled in
13114 tramp-compat now.
13115
13116 * net/tramp-cmds.el (tramp-bug):
13117 Recommend `tramp-cleanup-all-connections' in the bug mail.
13118
13119 * net/tramp-compat.el (tramp-compat-split-string)
13120 (tramp-compat-process-running-p): New defuns.
13121
13122 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
13123 for `dired-uncache'.
13124
13125 * net/tramp-gvfs.el: New package.
13126
13127 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
13128 Add handler for `dired-uncache'.
13129 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
13130
13131 * net/trampver.el: Update release number. Make version check fit
13132 for SXEmacs 22.
13133
13134 2009-06-22 Jim Meyering <meyering@redhat.com>
13135
13136 Automatically handle .xz suffix (XZ-compressed files), too.
13137 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
13138 XZ is the successor to LZMA: <http://tukaani.org/xz/>
13139
13140 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
13141 Nick Roberts <nickrob@snap.net.nz>
13142
13143 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
13144 repository (http://sphinx.net.ru/hg/gdb-mi/).
13145
13146 2009-06-22 Glenn Morris <rgm@gnu.org>
13147
13148 * files.el (dir-locals-collect-mode-variables): Allow for any number of
13149 `mode' and `eval' entries. (Bug#3430)
13150
13151 * Makefile.in (ELCFILES): Add fadr.elc.
13152
13153 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
13154 differing behavior of \n and ^ in strings. (Bug#3385)
13155
13156 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
13157
13158 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
13159 property.
13160 (lisp-indent-function): Make it a defcustom.
13161
13162 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
13163
13164 * progmodes/gdb-ui.el: Replace with ...
13165 * progmodes/gdb-mi.el: ... this file.
13166 * progmodes/gud.el: Modify for gdb-mi.el.
13167
13168 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
13169
13170 * fadr.el: New file.
13171
13172 See ChangeLog.14 for earlier changes.
13173
13174 ;; Local Variables:
13175 ;; coding: utf-8
13176 ;; End:
13177
13178 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
13179
13180 This file is part of GNU Emacs.
13181
13182 GNU Emacs is free software: you can redistribute it and/or modify
13183 it under the terms of the GNU General Public License as published by
13184 the Free Software Foundation, either version 3 of the License, or
13185 (at your option) any later version.
13186
13187 GNU Emacs is distributed in the hope that it will be useful,
13188 but WITHOUT ANY WARRANTY; without even the implied warranty of
13189 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13190 GNU General Public License for more details.
13191
13192 You should have received a copy of the GNU General Public License
13193 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
13194
13195 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1