merge emacs-23
[bpt/emacs.git] / lisp / ChangeLog
1 2010-10-15 Kenichi Handa <handa@m17n.org>
2
3 * international/characters.el: Add category '|' (word breakable)
4 to fullwidth characters.
5
6 2010-10-14 Kenichi Handa <handa@m17n.org>
7
8 * mail/rmail.el (rmail-show-message-1): Catch an error of
9 base64-decode-region and just show an error message (bug#7165).
10
11 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used
12 anymore.
13 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
14 a font-spec (bug#7197).
15
16 2010-10-13 Glenn Morris <rgm@gnu.org>
17
18 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
19
20 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
21
22 * international/mule.el (define-coding-system):
23 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
24 * composite.el (compose-region): Fix typo in docstring.
25
26 2010-10-10 Jan Djärv <jan.h.d@swipnet.se>
27
28 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
29 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
30 (mac-right-option-modifier): New alias for ns-right-option-modifier.
31
32 * cus-start.el (all): ns-right-alternate-modifier is new.
33
34 2010-10-10 Andreas Schwab <schwab@linux-m68k.org>
35
36 * Makefile.in (ELCFILES): Update.
37
38 2010-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
39
40 * emacs-lisp/lisp.el (lisp-completion-at-point):
41 Use emacs-lisp-mode-syntax-table for the whole function.
42
43 2010-10-09 Richard Sharman <richard_sharman@mitel.com> (tiny change)
44
45 * progmodes/gdb-ui.el (gdb-mouse-toggle-breakpoint-margin)
46 (gdb-mouse-toggle-breakpoint-fringe): Correct regexp to
47 work when breakpoint number exceeds nine.
48
49 2010-10-05 David Koppelman <koppel@ece.lsu.edu>
50
51 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
52 instead of font-lock-mode before adding keywords.
53 Remove hi-lock-mode off code. Remove inhibit hack.
54 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
55 non-nil; removed hook inhibit hack.
56
57 2010-10-09 Glenn Morris <rgm@gnu.org>
58
59 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
60 (load-path-shadows-find): ... to this.
61 (list-load-path-shadows): Update for above change.
62
63 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
64
65 2010-10-08 Glenn Morris <rgm@gnu.org>
66
67 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
68
69 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
70 (shadows-compare-text-p): Make it an obsolete alias for...
71 (load-path-shadows-compare-text): ... new name.
72 (find-emacs-lisp-shadows): Update for above name change.
73 (load-path-shadows-same-file-or-nonexistent): New name for the old
74 shadow-same-file-or-nonexistent.
75
76 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
77
78 * minibuffer.el (completion--some, completion--do-completion)
79 (minibuffer-complete-and-exit, minibuffer-completion-help)
80 (completion-basic-try-completion)
81 (completion-basic-all-completions)
82 (completion-pcm--find-all-completions): Use lexical-let to
83 avoid some false matches in variable completion (Bug#7056)
84
85 2010-10-03 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
86
87 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
88
89 2010-10-03 Leo <sdl.web@gmail.com>
90
91 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
92 return non-nil if the file exists (Bug#7090).
93
94 2010-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
95
96 * minibuffer.el (completion--replace):
97 Better preserve markers (bug#7138).
98
99 2010-09-29 Juanma Barranquero <lekktu@gmail.com>
100
101 * server.el (server-process-filter): Doc fix.
102
103 2010-09-27 Drew Adams <drew.adams@oracle.com>
104
105 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
106
107 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
108
109 * Makefile.in (ELCFILES): Update.
110
111 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
112 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
113
114 2010-09-27 Kenichi Handa <handa@m17n.org>
115
116 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
117 "ustar" format.
118
119 2010-09-27 Kenichi Handa <handa@m17n.org>
120
121 * international/mule.el (define-coding-system): Docstring fixed.
122
123 * international/mule-diag.el (describe-character-set): Use princ
124 with proper print-length and print-level instead of insert.
125
126 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
127
128 * window.el (walk-windows): Doc fix (bug#7105).
129
130 2010-09-23 Glenn Morris <rgm@gnu.org>
131
132 * isearch.el (isearch-lazy-highlight-cleanup)
133 (isearch-lazy-highlight-initial-delay)
134 (isearch-lazy-highlight-interval)
135 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
136 * net/net-utils.el (ipconfig-program-options):
137 Move aliases to options before the associated definitions.
138
139 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
140
141 * newcomment.el (comment-normalize-vars): Better test validity of
142 comment-end-skip.
143
144 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
145
146 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
147 (float-e): New name for `e'.
148 (degrees-to-radians, radians-to-degrees):
149 * calendar/solar.el (solar-longitude):
150 * calculator.el (calculator-registers, calculator-funcall):
151 * textmodes/artist.el (artist-spray-random-points):
152 * play/bubbles.el (bubbles--initialize-images): Use new names.
153
154 2010-09-19 Eric M. Ludlam <zappo@gnu.org>
155
156 Update to CEDET 1.0's version of EIEIO.
157
158 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
159 New function.
160 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
161 (eieio-default-eval-maybe): Eval val instead of unquoting only.
162 (class-precedence-list): If class is nil, return nil.
163 (eieio-generic-call): If class of first input arg is nil, don't
164 look up static methods, and do check for primary methods.
165 (initialize-instance): See if the default needs to be evaluated
166 during the constructor.
167 (eieio-perform-slot-validation-for-default): Don't do the check
168 for values that will eventually be evaluated.
169 (eieio-eval-default-p): New function.
170 (eieio-default-eval-maybe): Use it.
171
172 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
173
174 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
175 method-invocation-order.
176 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
177 (eieio-class-precedence-dfs): Compute class precedence list using
178 dfs algorithm.
179 (eieio-class-precedence-bfs): Compute class precedence list using
180 bfs algorithm.
181 (eieio-class-precedence-c3): Compute class precedence list using
182 c3 algorithm.
183 (class-precedence-list): New function.
184 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
185 (inconsistent-class-hierarchy): New error symbol.
186 (call-next-method): Stow the replacement argument list for future
187 call-next-method invocations.
188
189 2010-09-15 Glenn Morris <rgm@gnu.org>
190
191 * calendar/appt.el (appt-check): If not displaying the diary,
192 use (diary 1) to only get the entries we need.
193 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
194 that it is in day order. (Bug#7019)
195
196 * calendar/appt.el (appt-check): Rather than showing the diary,
197 just turn off invisible display, and only if needed.
198
199 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
200
201 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
202
203 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
204 Add `when' argument. Update callers.
205
206 * subr.el (unintern): Declare the obarray arg mandatory.
207
208 2010-09-14 Glenn Morris <rgm@gnu.org>
209
210 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
211 Doc fixes.
212
213 * calendar/diary-lib.el (diary-included-files): New variable.
214 (diary-list-entries): Maybe initialize diary-included-files.
215 (diary-include-other-diary-files): Append to diary-included-files.
216 * calendar/appt.el (appt-update-list): Also check the members of
217 diary-included-files. (Bug#6999)
218 (appt-check): Doc fix.
219
220 2010-09-12 David Reitter <david.reitter@gmail.com>
221
222 * simple.el (line-move-visual): Do not truncate goal column to
223 integer size. (Bug#7020)
224
225 2010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
226
227 * repeat.el (repeat): Allow repeating when the last event is a click.
228 Suggested by Drew Adams (bug#6256).
229
230 2010-09-11 Sascha Wilde <wilde@sha-bang.de>
231
232 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
233 Replace setting HGRCPATH to "" by some less invasive --config options.
234
235 2010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
236
237 * font-lock.el (font-lock-beginning-of-syntax-function):
238 Mark as obsolete.
239
240 2010-09-10 Glenn Morris <rgm@gnu.org>
241
242 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
243 and tool-bar modes. (Bug#6211)
244 (menu-bar-mode): Move setting of standard-value after the
245 minor-mode definition, otherwise it seems to have no effect.
246
247 2010-09-08 Masatake YAMATO <yamato@redhat.com>
248
249 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
250 Fix typo. (Bug#6976)
251
252 2010-09-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
253
254 * whitespace.el: Allow cleaning up blanks without blank
255 visualization (Bug#6651). Adjust help window for
256 whitespace-toggle-options (Bug#6479). Allow to use fill-column
257 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
258 (whitespace-style): Add new value 'face. Adjust docstring.
259 (whitespace-space, whitespace-hspace, whitespace-tab):
260 Adjust foreground property face.
261 (whitespace-line-column): Adjust docstring and type declaration.
262 (whitespace-style-value-list, whitespace-toggle-option-alist)
263 (whitespace-help-text): Adjust const initialization.
264 (whitespace-toggle-options, global-whitespace-toggle-options):
265 Adjust docstring.
266 (whitespace-display-window, whitespace-interactive-char)
267 (whitespace-style-face-p, whitespace-color-on): Adjust code.
268 (whitespace-help-scroll): New fun.
269
270 2010-09-05 Alexander Klimov <alserkli@inbox.ru> (tiny change)
271
272 * files.el (directory-abbrev-alist): Use \` as default regexp.
273
274 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
275 chars like - or ] (bug#6984).
276 (rx-any-condense-range): Explode 2-char ranges.
277
278 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
279
280 * textmodes/bibtex.el:
281 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
282
283 2010-09-02 Glenn Morris <rgm@gnu.org>
284
285 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
286
287 2010-08-31 Kenichi Handa <handa@m17n.org>
288
289 * international/mule-cmds.el (standard-display-european-internal):
290 Setup standard-display-table for 8-bit characters by storing 8-bit
291 characters in the element vector.
292
293 * disp-table.el (standard-display-8bit):
294 Setup standard-display-table for 8-bit characters by storing 8-bit
295 characters in the element vector.
296 (standard-display-european): Likewise.
297
298 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
299
300 Sync with Tramp 2.1.19.
301
302 * net/tramp-cmds.el (tramp-cleanup-all-connections)
303 (tramp-reporter-dump-variable, tramp-load-report-modules)
304 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
305 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
306
307 * net/tramp-compat.el (top): Do not autoload
308 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
309 only when `start-file-process' is not bound.
310 (byte-compile-not-obsolete-vars): Define if not bound.
311 (tramp-compat-funcall): New defmacro.
312 (tramp-compat-line-beginning-position)
313 (tramp-compat-line-end-position)
314 (tramp-compat-temporary-file-directory)
315 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
316 (tramp-compat-copy-file, tramp-compat-copy-directory)
317 (tramp-compat-delete-file, tramp-compat-delete-directory)
318 (tramp-compat-number-sequence, tramp-compat-process-running-p):
319 Use it.
320 (tramp-advice-file-expand-wildcards): Do not use
321 `tramp-handle-file-remote-p'.
322 (tramp-compat-make-temp-file): Simplify fallback implementation.
323 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
324 (tramp-compat-copy-tree): Remove function.
325 (tramp-compat-delete-file): New defun.
326 (tramp-compat-delete-directory): Provide implementation for older
327 Emacsen.
328 (tramp-compat-file-attributes): Handle only
329 `wrong-number-of-arguments' error.
330
331 * net/tramp-fish.el (tramp-fish-handle-copy-file):
332 Add PRESERVE_SELINUX_CONTEXT.
333 (tramp-fish-handle-delete-file): Add TRASH arg.
334 (tramp-fish-handle-directory-files-and-attributes):
335 Do not use `tramp-fish-handle-file-attributes.
336 (tramp-fish-handle-file-local-copy)
337 (tramp-fish-handle-insert-file-contents)
338 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
339
340 * net/tramp-gvfs.el (top): Require url-util.
341 (tramp-gvfs-mount-point): Remove.
342 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
343 and `set-file-selinux-context'.
344 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
345 (tramp-gvfs-handle-file-selinux-context)
346 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
347 (with-tramp-dbus-call-method): Format trace message.
348 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
349 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
350 Implement backup call, when operation on local files fails.
351 Use progress reporter. Flush properties of changed files.
352 (tramp-gvfs-handle-delete-file): Add TRASH arg.
353 Use `tramp-compat-delete-file'.
354 (tramp-gvfs-handle-expand-file-name): Expand "~/".
355 (tramp-gvfs-handle-make-directory): Make more traces.
356 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
357 (tramp-gvfs-url-file-name): Hexify file name in url.
358 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
359 into account for the resulting file name.
360 (tramp-gvfs-handler-askquestion): Preserve current message, in
361 order to let progress reporter continue afterwards. (Bug#6257)
362 Return dummy mountpoint, when the answer is "no".
363 See `tramp-gvfs-maybe-open-connection'.
364 (tramp-gvfs-handler-mounted-unmounted)
365 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
366 attribute "default_location". Set "prefix" property.
367 Handle default-location.
368 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
369 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
370 exists. Raise an error, if not (due to a corresponding answer
371 "no" in interactive questions, for example).
372 Use `tramp-compat-funcall'.
373
374 * net/tramp-imap.el (top): Autoload `epg-make-context'.
375 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
376 (tramp-imap-do-copy-or-rename-file)
377 (tramp-imap-handle-insert-file-contents)
378 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
379 (tramp-imap-handle-delete-file): Add TRASH arg.
380
381 * net/tramp-smb.el (tramp-smb-handle-copy-file):
382 Add PRESERVE-SELINUX-CONTEXT.
383 (tramp-smb-handle-copy-file)
384 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
385 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
386 Use `with-progress-reporter'.
387 (tramp-smb-handle-delete-file): Add TRASH arg.
388
389 * net/tramp.el (tramp-methods): Move hostname to the end in all
390 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
391 appropriate.
392 (tramp-verbose): Describe verbose level 9.
393 (tramp-completion-function-alist)
394 (tramp-file-name-regexp, tramp-chunksize)
395 (tramp-local-coding-commands, tramp-remote-coding-commands)
396 (with-connection-property, tramp-completion-mode-p)
397 (tramp-action-process-alive, tramp-action-out-of-band)
398 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
399 (tramp-exists-file-name-handler): Fix docstring.
400 (tramp-remote-process-environment): Use `format' instead of
401 `concat'. Protect version string by apostroph.
402 (tramp-shell-prompt-pattern): Do not use a shy group in case of
403 XEmacs.
404 (tramp-file-name-regexp-unified)
405 (tramp-completion-file-name-regexp-unified): On W32 systems, do
406 not regard the volume letter as remote filename. (Bug#5447)
407 (tramp-perl-file-attributes)
408 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
409 (tramp-vc-registered-read-file-names): Read input as
410 here-document, otherwise the command could exceed maximum length
411 of command line.
412 (tramp-file-name-handler-alist): Add `file-selinux-context' and
413 `set-file-selinux-context'.
414 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
415 backtrace functions.
416 (tramp-error-with-buffer): Don't show the connection buffer when
417 we are in completion mode.
418 (tramp-progress-reporter-update, tramp-remote-selinux-p)
419 (tramp-handle-file-selinux-context)
420 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
421 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
422 New defuns.
423 (with-progress-reporter): New defmacro.
424 (tramp-debug-outline-regexp): New defconst.
425 (top, tramp-rfn-eshadow-setup-minibuffer)
426 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
427 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
428 (tramp-completion-mode-p, tramp-check-for-regexp)
429 (tramp-open-connection-setup-interactive-shell)
430 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
431 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
432 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
433 Use `tramp-compat-funcall'.
434 (tramp-handle-make-symbolic-link): Flush file properties.
435 (tramp-handle-load, tramp-handle-file-local-copy)
436 (tramp-handle-insert-file-contents, tramp-handle-write-region)
437 (tramp-handle-vc-registered, tramp-maybe-send-script)
438 (tramp-find-shell): Use `with-progress-reporter'.
439 (tramp-do-file-attributes-with-stat): Add space in format string,
440 in order to work around a bug in pdksh. Reported by Gilles Pion
441 <gpion@lfdj.com>.
442 (tramp-handle-verify-visited-file-modtime): Do not send a command
443 when the connection is not established.
444 (tramp-handle-set-file-times): Simplify the check for utc.
445 (tramp-handle-directory-files-and-attributes)
446 (tramp-get-remote-path): Use `copy-tree'.
447 (tramp-completion-handle-file-name-all-completions): Ensure, that
448 non remote files are still checked. Oops.
449 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
450 Handle PRESERVE-SELINUX-CONTEXT.
451 (tramp-do-copy-or-rename-file): Add progress reporter.
452 (tramp-do-copy-or-rename-file-directly): Do not use
453 `tramp-handle-file-remote-p'.
454 (tramp-do-copy-or-rename-file-out-of-band):
455 Use `tramp-compat-delete-directory'.
456 (tramp-do-copy-or-rename-file-out-of-band)
457 (tramp-compute-multi-hops, tramp-maybe-open-connection):
458 Use `format-spec-make'.
459 (tramp-handle-delete-file): Add TRASH arg.
460 (tramp-handle-dired-uncache): Flush directory cache, not only file
461 cache.
462 (tramp-handle-expand-file-name)
463 (tramp-completion-handle-file-name-all-completions)
464 (tramp-completion-handle-file-name-completion):
465 Use `tramp-connectable-p'.
466 (tramp-handle-start-file-process): Set connection property "vec".
467 Use it, in order to invalidate file caches. Check only for
468 `remote-tty' process property.
469 Implement tty setting. (Bug#4604, Bug#6360)
470 (tramp-file-name-for-operation): Add `call-process-region' and
471 `set-file-selinux-context'.
472 (tramp-find-foreign-file-name-handler)
473 (tramp-advice-make-auto-save-file-name)
474 (tramp-set-auto-save-file-modes): Remove superfluous check for
475 `stringp'. This is done inside `tramp-tramp-file-p'.
476 (tramp-file-name-handler): Trace 'quit. Catch the error for some
477 operations when we are in completion mode. This gives the user
478 the chance to correct the file name in the minibuffer.
479 (tramp-completion-mode-p): Use `non-essential'.
480 (tramp-handle-file-name-all-completions): Backward/ XEmacs
481 compatibility: Use `completion-ignore-case' if
482 `read-file-name-completion-ignore-case' does not exist.
483 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
484 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
485 `tramp-open-shell'.
486 (tramp-action-password): Hide password prompt before next run.
487 (tramp-process-actions): Widen connection buffer for the trace.
488 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
489 process property. Trace stty settings if `tramp-verbose' >= 9.
490 Apply workaround for IRIX64 bug. Move argument of last
491 `tramp-send-command' where it belongs to.
492 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
493 front of `login-args'.
494 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
495 on "/dev/null" instead of "/".
496 (tramp-get-ls-command-with-dired): Make test for "--dired"
497 stronger.
498 (tramp-set-auto-save-file-modes): Adapt version check.
499 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
500 (tramp-handle-process-file): Call the program in a subshell, in
501 order to preserve working directory.
502 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
503 `tramp-remote-sh' from `tramp-methods'.
504 (tramp-get-ls-command): Make test for "--color=never" stronger.
505 (tramp-check-for-regexp): Use (forward-line 1).
506
507 * net/trampver.el: Update release number.
508
509 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
510
511 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
512 empty argument to gvfs-copy.
513
514 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
515
516 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
517 handle new TRASH arg of `delete-file'.
518
519 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
520
521 * net/tramp.el (tramp-handle-insert-directory): Don't use
522 `forward-word', its default syntax could be changed.
523
524 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
525 Michael Albinus <michael.albinus@gmx.de>
526
527 Implement compression for inline methods.
528
529 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
530 (tramp-copy-size-limit): Allow also nil.
531 (tramp-inline-compress-commands): New defconst.
532 (tramp-find-inline-compress, tramp-get-inline-compress)
533 (tramp-get-inline-coding): New defuns.
534 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
535 replaced by `tramp-get-inline-coding'.
536 (tramp-handle-file-local-copy, tramp-handle-write-region)
537 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
538
539 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
540
541 Detect ssh 'ControlMaster' argument automatically in some cases.
542
543 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
544 (tramp-default-method): Use it.
545
546 2010-08-26 Karel Klíč <kklic@redhat.com>
547
548 * net/tramp.el (tramp-file-name-for-operation):
549 Add file-selinux-context.
550
551 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
552
553 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
554
555 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
556
557 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
558 (Bug#6907).
559
560 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
561
562 * progmodes/python.el (python-block-pairs): Allow use of "finally"
563 with "else" (Bug#3991).
564
565 2010-08-22 Leo <sdl.web@gmail.com>
566
567 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
568 (ignore, bright, dim, keyword): Split list of nicknames before
569 passing to rcirc-add-or-remove (Bug#6894).
570
571 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
572
573 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
574
575 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
576
577 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
578 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
579 New version 13.0.
580 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
581 Adjust initialization.
582 (whitespace-bob-marker, whitespace-eob-marker)
583 (whitespace-buffer-changed): New vars.
584 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
585 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
586 (whitespace-post-command-hook, whitespace-display-char-on):
587 Adjust code.
588 (whitespace-looking-back, whitespace-buffer-changed): New funs.
589 (whitespace-space-regexp, whitespace-tab-regexp): Eliminate funs.
590
591 2010-08-21 Leo <sdl.web@gmail.com>
592
593 Fix buffer-list rename&refresh after killing a buffer in ido.
594 * lisp/ido.el: Revert Óscar's.
595 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
596 Remember the buffers at head, rather than their name.
597 * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
598
599 2010-08-21 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
600 Stefan Monnier <monnier@iro.umontreal.ca>
601
602 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
603 extra backslash added to each line (bug#6890).
604
605 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
606
607 * subr.el (read-key): Don't echo keystrokes (bug#6883).
608
609 2010-08-21 Glenn Morris <rgm@gnu.org>
610
611 * menu-bar.el (menu-bar-games-menu): Add landmark.
612
613 2010-08-20 Glenn Morris <rgm@gnu.org>
614
615 * align.el (align-regexp): Make group and spacing arguments
616 use the interactive defaults when non-interactive. (Bug#6698)
617
618 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
619 expansion, so as not to need sendmail.
620 (mail-text-start): Remove declaration.
621 (rmail-retry-failure): Require sendmail.
622
623 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
624
625 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
626
627 2010-08-18 Michael Albinus <michael.albinus@gmx.de>
628
629 * progmodes/flymake.el (flymake-start-syntax-check-process):
630 Use `start-file-process' in order to let it run also on remote hosts.
631
632 2010-08-18 Kenichi Handa <handa@m17n.org>
633
634 * files.el: Add `word-wrap' as safe local variable.
635
636 2010-08-18 Glenn Morris <rgm@gnu.org>
637
638 * woman.el (woman-translate): Case matters. (Bug#6849)
639
640 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
641
642 * simple.el (kill-region): Doc fix (Bug#6787).
643
644 2010-08-14 Glenn Morris <rgm@gnu.org>
645
646 * calendar/diary-lib.el (diary-header-line-format):
647 Fit it to the window, not the frame.
648
649 2010-08-11 Andreas Schwab <schwab@linux-m68k.org>
650
651 * subr.el (ignore-errors): Add debug declaration.
652
653 2010-08-09 Geoff Gole <geoffgole@gmail.com> (tiny change)
654
655 * whitespace.el (whitespace-color-off): Remove post-command-hook
656 locally.
657
658 2010-08-08 Johan Bockgård <bojohan@gnu.org>
659
660 * replace.el (replace-highlight): Bind isearch-forward and
661 isearch-error, ensuring that highlighting is updated if the user
662 switches the search direction (Bug#6808).
663
664 * isearch.el (isearch-lazy-highlight-forward): New var.
665 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
666 (isearch-lazy-highlight-update): Use it.
667
668 2010-08-06 Kenichi Handa <handa@m17n.org>
669
670 * international/mule.el (define-charset): Store NAME as :base property.
671 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
672 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
673 current priority. Force using the designation of the specific
674 charset by adding `charset' text property. Improve the whole
675 algorithm.
676
677 2010-08-05 Juanma Barranquero <lekktu@gmail.com>
678
679 * emulation/pc-select.el (pc-selection-mode-hook)
680 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
681 (pc-selection-mode): Fix typos in docstrings.
682
683 2010-08-04 Kenichi Handa <handa@m17n.org>
684
685 * language/cyrillic.el: Don't add "microsoft-cp1251" to
686 ctext-non-standard-encodings-alist here.
687
688 * international/mule.el (ctext-non-standard-encodings-alist):
689 Add "koi8-r" and "microsoft-cp1251".
690 (ctext-standard-encodings): New variable.
691 (ctext-non-standard-encodings-table): List only elements for
692 non-standard encodings.
693 (ctext-pre-write-conversion): Adjust for the above change.
694 Check ctext-standard-encodings.
695
696 * international/mule-conf.el (compound-text): Doc fix.
697 (ctext-no-compositions): Doc fix.
698 (compound-text-with-extensions): Doc fix.
699
700 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
701
702 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
703
704 2010-08-03 Juanma Barranquero <lekktu@gmail.com>
705
706 * progmodes/which-func.el (which-func-format): Split help-echo text
707 into lines, like other mode-line tooltips.
708
709 * server.el (server-start): When using TCP sockets, force IPv4
710 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
711
712 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
713
714 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
715
716 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
717
718 * term.el (term-delimiter-argument-list): Reflow docstring.
719 (term-read-input-ring, term-write-input-ring, term-send-input)
720 (term-bol, term-erase-in-display, serial-supported-or-barf):
721 Fix typos in docstrings.
722
723 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
724
725 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
726
727 2010-08-01 Juanma Barranquero <lekktu@gmail.com>
728
729 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
730
731 2010-08-01 MON KEY <monkey@sandpframing.com> (tiny change)
732
733 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
734 Fix typo in docstring (bug#6747).
735
736 2010-07-30 Leo <sdl.web@gmail.com>
737
738 * eshell/esh-io.el (eshell-get-target): Better detection of
739 read-only file (Bug#6762).
740
741 2010-07-30 Juanma Barranquero <lekktu@gmail.com>
742
743 * align.el (align-default-spacing): Doc fix.
744 (align-region-heuristic, align-regexp): Fix typos in docstrings.
745
746 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
747
748 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
749
750 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
751
752 * time.el (display-time-day-and-date): Remove spurious * in docstring.
753 (display-time-world-buffer-name, display-time-world-mode-map):
754 Fix typos in docstrings.
755
756 2010-07-17 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
757
758 * image-mode.el (image-display-size): New function.
759 (image-forward-hscroll, image-next-line, image-eol, image-eob)
760 (image-mode-fit-frame): Use it (Bug#6639).
761
762 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
763
764 * dired.el (dired-buffers-for-dir): Handle list values of
765 dired-directory (Bug#6636).
766
767 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
768
769 * vc.el (vc-coding-system-inherit-eol): New defvar.
770 (vc-coding-system-for-diff): Use it to decide whether to inherit
771 from the file the EOL format for reading the diffs of that file.
772 (Bug#4451)
773
774 2010-07-16 Eli Zaretskii <eliz@gnu.org>
775
776 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
777 unibyte, so compressed attachments are not compressed again.
778
779 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
780
781 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
782 now that unicode is used (Bug#6594).
783
784 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
785
786 * simple.el (push-mark-command): Set the selection if
787 select-active-regions is non-nil.
788
789 2010-07-10 Glenn Morris <rgm@gnu.org>
790
791 * calendar/calendar.el (calendar-week-end-day): New function.
792 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
793 Respect calendar-week-start-day. (Bug#6606)
794 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
795 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
796 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
797 respect calendar-week-start-day.
798
799 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
800
801 * simple.el (use-region-p): Doc fix (Bug#6607).
802
803 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
804
805 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
806 builtins (BufferError, BytesWarning, WindowsError; callables
807 bin, bytearray, bytes, format, memoryview, next, print; __package__).
808
809 2010-07-07 Glenn Morris <rgm@gnu.org>
810
811 * play/zone.el (zone-fall-through-ws): Fix next-line ->
812 forward-line fallout.
813
814 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
815
816 * mouse.el (mouse-appearance-menu): Add docstring.
817
818 * help.el (describe-key): Print up-event using key-description.
819
820 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
821
822 * net/zeroconf.el (zeroconf-resolve-service)
823 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
824 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
825
826 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
827
828 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
829
830 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
831
832 Avoid displaying files with a nil state in vc-dir.
833 * vc-dir.el (vc-dir-update): Obey the noinsert argument in all
834 cases that cause insertion.
835 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
836 with a nil state.
837
838 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
839
840 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
841
842 2010-06-29 Leo <sdl.web@gmail.com>
843
844 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
845
846 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
847
848 * generic-x.el (bat-generic-mode): Fix regexp for command line
849 switches (Bug#5719).
850
851 2010-06-27 Masatake YAMATO <yamato@redhat.com>
852
853 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
854 of nconc to avoid pure storage error (Bug#6239).
855
856 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
857
858 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
859 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
860 bindings of bookmark-automatically-show-annotations (Bug#6515).
861
862 2010-06-25 Eli Zaretskii <eliz@gnu.org>
863
864 * arc-mode.el (archive-zip-extract): Don't quote the file name on
865 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
866
867 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
868
869 * comint.el (make-comint, make-comint-in-buffer): Mention return
870 value in the docstrings. (Bug#6498)
871
872 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
873
874 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
875 since it is not present when using some non-default switches.
876
877 2010-06-23 Karl Fogel <kfogel@red-bean.com>
878
879 * simple.el (compose-mail): Fix doc string to refer to
880 `compose-mail-user-agent-warnings', instead of to the
881 nonexistent `compose-mail-check-user-agent'.
882
883 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
884
885 Fix vc-annotate for renamed files when using Git.
886 * vc-git.el (vc-git-find-revision): Deal with empty results from
887 ls-files. Doe not pass the object as a file name to cat-file, it
888 is not a file name.
889 (vc-git-annotate-command): Pass the file name using -- to avoid
890 ambiguity with the revision.
891 (vc-git-previous-revision): Pass a relative file name.
892
893 2010-06-22 Glenn Morris <rgm@gnu.org>
894
895 * progmodes/js.el (js-mode-map): Use standard capitalization and
896 ellipses for menu entries.
897
898 * wid-edit.el (widget-complete): Doc fix.
899
900 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
901
902 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
903
904 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
905
906 Fix annotating other revisions for renamed files in vc-annotate.
907 * vc-annotate.el (vc-annotate): Add an optional argument for the
908 VC backend. Use it when non-nil.
909 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate. (Bug#6487)
910
911 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
912 * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
913 Do not pass the file name to the 'previous-revision call when we
914 don't want a file diff. (Bug#6489)
915
916 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
917
918 Fix finding revisions for renamed files in vc-annotate.
919 * vc.el (vc-find-revision): Add an optional argument for
920 the VC backend. Use it when non-nil.
921 * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
922 backend to vc-find-revision. (Bug#6487)
923
924 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
925
926 Fix reading file names in Git annotate buffers.
927 * vc-git.el (vc-git-annotate-extract-revision-at-line):
928 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
929
930 2010-06-20 Alan Mackenzie <acm@muc.de>
931
932 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
933 in file local variables, set it first.
934
935 2010-06-19 Glenn Morris <rgm@gnu.org>
936
937 * descr-text.el (describe-char-unicode-data): Insert separating
938 space when needed. (Bug#6422)
939
940 * progmodes/idlwave.el (idlwave-action-and-binding):
941 Fix typo in 2009-12-03 change. (Bug#6450)
942
943 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
944
945 * subr.el (read-quoted-char): Fix up last change (bug#6290).
946
947 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
948
949 * font-lock.el (font-lock-major-mode): Rename from
950 font-lock-mode-major-mode to distinguish it from
951 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
952 (font-lock-set-defaults):
953 * font-core.el (font-lock-default-function): Adjust users.
954 (font-lock-mode): Don't set it at all.
955
956 2010-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
957
958 * vc-annotate.el (vc-annotate): Use vc-read-revision.
959
960 2010-06-15 Glenn Morris <rgm@gnu.org>
961
962 * calendar/appt.el (appt-time-msg-list): Doc fix.
963 (appt-check): Let-bind appt-warn-time.
964 (appt-add): Make the 3rd argument optional.
965 Simplify argument names. Doc fix. Check for integer WARNTIME.
966 Only add WARNTIME to the output list if non-nil.
967
968 2010-06-15 Ivan Kanis <apple@kanis.eu>
969
970 * calendar/appt.el (appt-check): Let the 3rd element of
971 appt-time-msg-list specify the warning time.
972 (appt-add): Add new argument with the warning time. (Bug#5176)
973
974 2010-06-12 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
975
976 * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
977 older than version 1.6. (Bug#6361)
978
979 2010-06-12 Helmut Eller <eller.helmut@gmail.com>
980
981 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
982 used by cl-do-arglist. (Bug#6408)
983
984 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
985
986 * emacs-lisp/advice.el (ad-compile-function):
987 Define warning-suppress-types before we let-bind it (bug#6275).
988
989 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
990 declare it, make it buffer-local and permanent-local (bug#6324).
991 (vc-resynch-window): Adjust name.
992 * vc-hooks.el (vc-find-file-hook): Adjust name.
993
994 2010-06-07 Jonathan Rockway <jon@jrock.us>
995
996 * net/rcirc.el: Add support for password authentication.
997 (rcirc-server-alist): Add :password keyword.
998 (rcirc): Ask for a password, or get it from the server's alist.
999 (rcirc-connect): Add password argument. Pass it to server.
1000
1001 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
1002
1003 * net/dbus.el (dbus-register-method): Declare function.
1004 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
1005 (dbus-introspect): Doc fix.
1006 (dbus-event-bus-name, dbus-introspect-get-interface)
1007 (dbus-introspect-get-argument): Reflow docstrings.
1008
1009 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
1010
1011 * term/common-win.el (x-colors): Add "dark green" and "dark
1012 turquoise" (Bug#6332).
1013
1014 2010-06-03 Glenn Morris <rgm@gnu.org>
1015
1016 * desktop.el (desktop-clear-preserve-buffers):
1017 Add "*Warnings*" buffer. (Bug#6336)
1018
1019 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
1020
1021 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
1022
1023 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1024
1025 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
1026 `file-directory-p' to the filename part rather than to the whole text.
1027
1028 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1029
1030 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
1031
1032 2010-05-31 Drew Adams <drew.adams@oracle.com>
1033
1034 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
1035
1036 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
1037
1038 * subr.el (momentary-string-display): Just use read-event to read
1039 the exit event (Bug#6238).
1040
1041 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
1042
1043 * ansi-color.el: Delete unused escape sequences (Bug#6085).
1044 (ansi-color-drop-regexp): New constant.
1045 (ansi-color-apply, ansi-color-filter-region)
1046 (ansi-color-apply-on-region): Delete unrecognized control sequences.
1047 (ansi-color-apply): Build string list before calling concat.
1048
1049 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
1050
1051 * progmodes/verilog-mode.el (verilog-type-font-keywords):
1052 Use font-lock-constant-face, not obsolete font-lock-reference-face.
1053
1054 2010-05-27 Masatake YAMATO <yamato@redhat.com>
1055
1056 * htmlfontify.el (hfy-face-resolve-face): New function.
1057 (hfy-face-to-style): Use it (Bug#6279).
1058
1059 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1060
1061 * epa.el (epa--select-keys): Don't explicitly delete the window since
1062 that can fail (e.g. sole window in frame). Use dedication instead.
1063
1064 2010-05-19 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
1065
1066 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
1067
1068 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1069
1070 * subr.el (read-quoted-char): Resolve modifiers after key
1071 remapping (bug#6212).
1072
1073 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1074
1075 * tmm.el (tmm-prompt): Don't try to precompute bindings.
1076 (tmm-get-keymap): Compute shortcuts (bug#6171).
1077
1078 2010-05-10 Glenn Morris <rgm@gnu.org>
1079
1080 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1081 all dired buffers, even tramp ones. (Bug#5755) [Backport from trunk]
1082
1083 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
1084
1085 * Version 23.2 released.
1086
1087 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
1088
1089 * international/mule.el (auto-coding-alist): Only purecopy
1090 car of each item, not the whole list (Bug#6083).
1091
1092 2010-05-02 Chong Yidong <cyd@stupidchicken.com>
1093
1094 * progmodes/js.el (js-mode): Make paragraph variables local before
1095 calling c-setup-paragraph-variables (Bug#6071).
1096
1097 2010-05-01 Eli Zaretskii <eliz@gnu.org>
1098
1099 * composite.el (compose-region, reference-point-alist): Fix typos
1100 in the doc strings.
1101
1102 2010-04-28 Alexander Klimov <alserkli@inbox.ru> (tiny change)
1103
1104 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
1105 gnuplot's "set" command.
1106
1107 2010-04-26 Juanma Barranquero <lekktu@gmail.com>
1108
1109 * abbrev.el (last-abbrev-text): Doc fix.
1110 (abbrev-prefix-mark): Don't escape parenthesis.
1111
1112 2010-04-24 Andreas Schwab <schwab@linux-m68k.org>
1113
1114 * composite.el (find-composition): Doc fix.
1115
1116 2010-04-24 Juanma Barranquero <lekktu@gmail.com>
1117
1118 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
1119 (sql-oracle-program, sql-sqlite-options)
1120 (sql-query-placeholders-and-send): Doc fixes.
1121 (sql-set-product, sql-interactive-mode): Reflow docstrings.
1122 (sql-imenu-generic-expression, sql-buffer)
1123 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
1124 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
1125 (sql-mode-sybase-font-lock-keywords)
1126 (sql-mode-informix-font-lock-keywords)
1127 (sql-mode-interbase-font-lock-keywords)
1128 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
1129 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
1130 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
1131 (sql-product-feature, sql-highlight-product)
1132 (comint-line-beginning-position, sql-rename-buffer)
1133 (sql-toggle-pop-to-buffer-after-send-region)
1134 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
1135 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
1136 Fix typos in docstrings.
1137
1138 2010-04-23 Juri Linkov <juri@jurta.org>
1139
1140 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
1141 property instead of `invisible' and `after-string' (bug#5998).
1142
1143 2010-04-23 Juri Linkov <juri@jurta.org>
1144
1145 * image-mode.el (image-mode-as-text): Fix typo in docstring.
1146
1147 2010-04-23 Juanma Barranquero <lekktu@gmail.com>
1148
1149 * filecache.el (file-cache-add-directory-list)
1150 (file-cache-add-directory-recursively): Fix typos in docstrings.
1151
1152 2010-04-22 Kenichi Handa <handa@m17n.org>
1153
1154 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
1155 (gujarati-composable-pattern): Fix typo.
1156
1157 2010-04-20 Kenichi Handa <handa@m17n.org>
1158
1159 * language/indian.el (oriya-composable-pattern)
1160 (tamil-composable-pattern, malayalam-composable-pattern):
1161 Add two-part vowels to "v" (vowel sign).
1162
1163 2010-04-20 Chong Yidong <cyd@stupidchicken.com>
1164
1165 * files.el (copy-directory): Handle symlinks (Bug#5982).
1166
1167 * progmodes/compile.el (compilation-next-error-function):
1168 Revert 2009-10-12 change (Bug#5983).
1169
1170 2010-04-20 Dan Nicolaescu <dann@ics.uci.edu>
1171
1172 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
1173 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
1174 (Bug#5846).
1175
1176 2010-04-20 Glenn Morris <rgm@gnu.org>
1177
1178 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
1179
1180 * minibuffer.el (completion-at-point): Doc fix.
1181
1182 2010-04-17 Dan Nicolaescu <dann@ics.uci.edu>
1183
1184 Fix the version number for added files.
1185 * vc-hg.el (vc-hg-working-revision): Check if the file is
1186 registered after hg parent fails (Bug#5961).
1187
1188 2010-04-17 Glenn Morris <rgm@gnu.org>
1189
1190 * htmlfontify.el (htmlfontify-buffer)
1191 (htmlfontify-copy-and-link-dir): Autoload entry points.
1192
1193 2010-04-17 Magnus Henoch <magnus.henoch@gmail.com>
1194
1195 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
1196 name relative to the project root (Bug#5960).
1197
1198 2010-04-16 Glenn Morris <rgm@gnu.org>
1199
1200 * vc-git.el (vc-git-print-log): Doc fix.
1201
1202 2010-04-14 Óscar Fuentes <ofv@wanadoo.es>
1203
1204 * ido.el (ido-file-internal): Fix 2009-12-02 change.
1205
1206 2010-04-14 Christoph <cschol2112@googlemail.com> (tiny change)
1207
1208 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
1209 default settings (Bug#5928).
1210
1211 2010-04-10 Glenn Morris <rgm@gnu.org>
1212
1213 * progmodes/fortran.el (fortran-match-and-skip-declaration):
1214 New function.
1215 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
1216
1217 2010-04-07 Kenichi Handa <handa@m17n.org>
1218
1219 * language/indian.el (malayalam-composable-pattern): Fix previous
1220 change (add U+0D4D "SIGN VIRAMA").
1221 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
1222 (tamil-composable-pattern): Fix typo in the regexp.
1223 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
1224 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
1225 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
1226
1227 2010-04-06 Chong Yidong <cyd@stupidchicken.com>
1228
1229 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
1230 paragraph-separate (Bug#5821).
1231
1232 2010-04-05 Juri Linkov <juri@jurta.org>
1233
1234 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
1235
1236 * info.el (Info-find-node-2): Comment out code that skips
1237 breadcrumbs line.
1238 (Info-mouse-follow-link): New command.
1239 (Info-link-keymap): New keymap.
1240 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
1241 Return a string with links instead of inserting breadcrumbs
1242 to the Info buffer.
1243 (Info-fontify-node): Comment out code that inserts breadcrumbs.
1244 Instead of putting the `invisible' text property over the Info
1245 header, make an overlay over the Info header with the `invisible'
1246 property and `after-string' set to the string returned by
1247 `Info-breadcrumbs'.
1248
1249 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
1250
1251 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
1252 Reported by monkey@sandpframing.com.
1253
1254 2010-03-30 Tomas Abrahamsson <tab@lysator.liu.se>
1255
1256 * textmodes/artist.el (artist-mode): Fix typo in docstring.
1257 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
1258
1259 2010-03-30 Kenichi Handa <handa@m17n.org>
1260
1261 * language/sinhala.el (composition-function-table): Fix regexp for
1262 the new Unicode specification.
1263
1264 * language/indian.el (devanagari-composable-pattern)
1265 (tamil-composable-pattern, kannada-composable-pattern)
1266 (malayalam-composable-pattern): Adjust for the new Unicode
1267 specification.
1268 (bengali-composable-pattern, gurmukhi-composable-pattern)
1269 (gujarati-composable-pattern, oriya-composable-pattern)
1270 (telugu-composable-pattern): New variables to cope with the new
1271 Unicode specification. Use them in composition-function-table.
1272
1273 2010-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
1274
1275 Make tmm-menubar work for the Buffers menu again (bug#5726).
1276 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1277 vectors rather than cons cells, as used in menu-bar-update-buffers.
1278
1279 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
1280
1281 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1282 (js-insert-and-indent): Revert 2009-08-15 change, restoring
1283 electric punctuation for "{}();,:" (Bug#5586).
1284
1285 * mail/sendmail.el (mail-default-directory): Doc fix.
1286
1287 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
1288
1289 * mail/sendmail.el (mail-default-directory): Doc fix.
1290
1291 2010-03-27 Eli Zaretskii <eliz@gnu.org>
1292
1293 * subr.el (version-regexp-alist, version-to-list)
1294 (version-list-<, version-list-=, version-list-<=)
1295 (version-list-not-zero, version<, version<=, version=): Doc fix.
1296 (Bug#5744).
1297
1298 2010-03-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1299 Nick Roberts <nickrob@snap.net.nz>
1300
1301 * progmodes/gdb-ui.el (gdb-apple-test): New function.
1302 (gdb-init-1): Use it.
1303
1304 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1305
1306 * vc.el (vc-root-diff): Doc fix.
1307
1308 2010-03-25 Chong Yidong <cyd@stupidchicken.com>
1309
1310 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1311
1312 * simple.el (append-to-buffer): Fix last change.
1313
1314 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
1315
1316 * simple.el (append-to-buffer): Ensure that point is preserved if
1317 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
1318 (Bug#5749)
1319
1320 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1321
1322 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1323 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1324 not be present any more.
1325
1326 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1327
1328 * faces.el (set-face-attribute): Fix typo in docstring.
1329 (face-valid-attribute-values): Reflow docstring.
1330
1331 2010-03-23 Glenn Morris <rgm@gnu.org>
1332
1333 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
1334
1335 2010-03-21 Chong Yidong <cyd@stupidchicken.com>
1336
1337 * indent.el (indent-for-tab-command): Doc fix.
1338
1339 2010-03-22 Juanma Barranquero <lekktu@gmail.com>
1340
1341 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
1342 (image-dired-read-comment): Doc fix.
1343
1344 * json.el (json-object-type, json-array-type, json-key-type)
1345 (json-false, json-null, json-read-number):
1346 * minibuffer.el (completion-in-region-functions):
1347 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
1348 (cal-tex-cursor-week):
1349 * emacs-lisp/trace.el (trace-function):
1350 * eshell/em-basic.el (eshell/printnl):
1351 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
1352 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
1353 * obsolete/levents.el (allocate-event, event-key, event-object)
1354 (event-point, event-process, event-timestamp, event-to-character)
1355 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
1356 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
1357 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
1358 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
1359 (reftex-highlight-selection): Fix typos in docstrings.
1360
1361 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
1362
1363 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
1364
1365 2010-03-18 Glenn Morris <rgm@gnu.org>
1366
1367 * mail/rmail.el (rmail-highlight-face): Restore option deleted
1368 2008-02-13 without comment; mark it obsolete.
1369 (rmail-highlight-headers): Use rmail-highlight-face once more.
1370
1371 2010-03-16 Chong Yidong <cyd@stupidchicken.com>
1372
1373 * woman.el (woman2-process-escapes): Only consume the newline if
1374 the filler character is on a line by itself (Bug#5729).
1375
1376 2010-03-16 Kenichi Handa <handa@m17n.org>
1377
1378 * language/indian.el (devanagari-composable-pattern): Add more
1379 consonants.
1380
1381 2010-03-14 Michael Albinus <michael.albinus@gmx.de>
1382
1383 * net/trampver.el: Update release number.
1384
1385 2010-03-13 Glenn Morris <rgm@gnu.org>
1386
1387 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
1388
1389 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
1390
1391 * net/tramp.el (tramp-find-executable):
1392 Use `tramp-get-connection-buffer'. Make the regexp for checking
1393 output of "wc -l" more robust.
1394 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
1395 (tramp-open-connection-setup-interactive-shell): Remove workaround
1396 for OpenSolaris bug, it is not needed anymore.
1397
1398 2010-03-12 Glenn Morris <rgm@gnu.org>
1399
1400 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
1401
1402 2010-03-11 Wilson Snyder <wsnyder@wsnyder.org>
1403
1404 * files.el (auto-mode-alist): Accept more verilog file patterns.
1405
1406 2010-03-09 Miles Bader <miles@gnu.org>
1407
1408 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
1409 instead of "format:"; this ensures that the output is
1410 newline-terminated.
1411
1412 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
1413
1414 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
1415 that all errors are caught, and that the return value is always a
1416 list (Bug#5692).
1417
1418 2010-03-08 Kenichi Handa <handa@m17n.org>
1419
1420 * language/misc-lang.el (windows-1256): New coding system.
1421 (cp1256): New alias of windows-1256 (bug#5690).
1422
1423 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
1424
1425 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
1426 call to rfc822-bad-address. (Bug#5692)
1427
1428 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
1429
1430 * vc-git.el (vc-git-annotate-extract-revision-at-line):
1431 Use vc-git-root as default directory for revision path (Bug#5657).
1432
1433 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
1434
1435 * calculator.el (calculator): Don't bind split-window-keep-point
1436 (Bug#5674).
1437
1438 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
1439
1440 * vc-git.el: Re-flow to fit into 80 columns.
1441 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
1442 Remove spurious `quote' element in each case alternative.
1443 (vc-git-show-log-entry): Use prog1.
1444 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
1445
1446 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
1447
1448 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
1449
1450 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
1451
1452 * macros.el (insert-kbd-macro): Look up keyboard macro using the
1453 definition, not the name (Bug#5481).
1454
1455 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
1456
1457 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
1458 argument with a local variable. (Bug#5670)
1459
1460 2010-03-02 Juri Linkov <juri@jurta.org>
1461
1462 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
1463
1464 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
1465
1466 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
1467 error when FILENAME and NEWNAME are existing remote directories.
1468
1469 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
1470 parameter DIR-FLAG.
1471
1472 2010-03-02 Glenn Morris <rgm@gnu.org>
1473
1474 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
1475 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
1476
1477 2010-03-01 Kenichi Handa <handa@m17n.org>
1478
1479 * language/burmese.el (burmese-composable-pattern): Rename from
1480 myanmar-composable-pattern.
1481
1482 * international/characters.el (script-list):
1483 * international/fontset.el (script-representative-chars):
1484 Change myanmar to burmese.
1485 (otf-script-alist): Likewise.
1486 (setup-default-fontset): Likewise. Re-fix :otf spec.
1487
1488 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
1489
1490 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
1491
1492 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
1493
1494 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
1495
1496 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1497
1498 * net/tramp.el (tramp-handle-write-region): START can be a string.
1499 Take care in the checks. Reported by Dan Davison
1500 <davison@stats.ox.ac.uk>.
1501
1502 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1503
1504 * net/dbus.el (dbus-introspect, dbus-get-property)
1505 (dbus-set-property, dbus-get-all-properties): Use
1506 `dbus-call-method' when noninteractive. (Bug#5645)
1507
1508 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
1509
1510 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1511 * emacs-lisp/elint.el (elint-add-required-env):
1512 * calendar/icalendar.el (icalendar--add-diary-entry):
1513 * calc/calcalg2.el (math-tracing-integral):
1514 * files.el (recover-session-finish): Use with-current-buffer
1515 instead of save-excursion.
1516
1517 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
1518
1519 Fix in-buffer completion when after-change-functions modify the buffer.
1520 * minibuffer.el (completion--replace): New function.
1521 (completion--do-completion): Use it and use relative movement.
1522
1523 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
1524
1525 * international/fontset.el (setup-default-fontset): Fix :otf spec.
1526
1527 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
1528
1529 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1530 Allow the characters _<> in the stack entry (Bug#5653).
1531
1532 2010-02-26 Kenichi Handa <handa@m17n.org>
1533
1534 * language/burmese.el: Fix entries in composition-function-table.
1535 (myanmar-composable-pattern): New variable.
1536
1537 * international/fontset.el (setup-default-fontset): Add an entry
1538 for myanmar.
1539
1540 * international/characters.el (script-list): Add Myanmar
1541 Extended-A.
1542
1543 2010-02-26 Glenn Morris <rgm@gnu.org>
1544
1545 * custom.el (custom-initialize-delay): Doc fix.
1546
1547 * mail/sendmail.el (send-mail-function): Autoload the call
1548 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
1549
1550 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
1551
1552 * files.el (hack-local-variables-filter): For eval forms, also
1553 check safe-local-variable-p (Bug#5636).
1554
1555 2010-02-24 Eduard Wiebe <usenet@pusto.de>
1556
1557 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
1558 and use c(ad)r of cddr (Bug#5640).
1559
1560 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
1561
1562 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
1563 setting the modes by `ignore-errors'. It might fail, for example
1564 if the file is not owned by the user but the group.
1565 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
1566
1567 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
1568
1569 * files.el (directory-listing-before-filename-regexp): Use
1570 stricter matching for iso-style dates, to avoid false matches with
1571 date-like filenames (Bug#5597).
1572
1573 * htmlfontify.el (htmlfontify): Doc fix.
1574
1575 * eshell/eshell.el (eshell): Doc fix.
1576
1577 * startup.el (fancy-about-screen): In mode-line, apply
1578 mode-line-buffer-id face only to the buffer name (Bug#5613).
1579
1580 2010-02-20 Kevin Ryde <user42@zip.com.au>
1581
1582 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1583 In `watcom' anchor regexp to start of line, to avoid slowness
1584 (Bug#5599).
1585
1586 2010-02-20 Eli Zaretskii <eliz@gnu.org>
1587
1588 * subr.el (remove-yank-excluded-properties): Explain in a comment
1589 why `category' property is removed.
1590
1591 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
1592
1593 * isearch.el (isearch-update-post-hook, isearch-update): Revert
1594 2010-02-17 change.
1595
1596 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
1597
1598 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
1599 (icalendar--convert-weekly-to-ical)
1600 (icalendar--convert-yearly-to-ical)
1601 (icalendar--convert-block-to-ical)
1602 (icalendar--convert-cyclic-to-ical)
1603 (icalendar--convert-anniversary-to-ical): Take care of time
1604 specifications where hour has 1-digit only (Bug#5549).
1605
1606 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
1607
1608 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
1609 of disassemble output in GDB 7.1.
1610
1611 2010-02-19 Glenn Morris <rgm@gnu.org>
1612
1613 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
1614 property. (Bug#5593)
1615
1616 2010-02-18 Sam Steingold <sds@gnu.org>
1617
1618 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
1619
1620 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1621
1622 Use abbreviated file names in bookmarks (bug#5591).
1623 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
1624 calls to expand-file-name.
1625 (bookmark-relocate): Use abbreviated file names in bookmarks.
1626 (bookmark-load): Use abbreviated file names in messages.
1627
1628 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
1629
1630 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
1631 expand "." and "..". Reported by Thierry Volpiatto
1632 <thierry.volpiatto@gmail.com>.
1633
1634 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
1635
1636 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
1637 permissions of the temporary file to "0600". In case the remote
1638 file has no read permissions for the owner, there might be
1639 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
1640
1641 22010-02-18 Glenn Morris <rgm@gnu.org>
1642
1643 * emacs-lisp/authors.el (authors-renamed-files-alist):
1644 Add entries for INSTALL.CVS.
1645
1646 2010-02-17 Mark A. Hershberger <mah@everybody.org>
1647
1648 * vc-bzr.el: Fix typo in Known Bugs section.
1649
1650 * isearch.el (isearch-update-post-hook): New hook.
1651 (isearch-update): Use the new hook.
1652
1653 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
1654
1655 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
1656 Fix errors in copying directories.
1657 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
1658 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
1659 (tramp-handle-delete-file)
1660 (tramp-handle-dired-recursive-delete-directory)
1661 (tramp-handle-write-region): Flush also the cache for the upper
1662 directory.
1663
1664 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
1665
1666 * simple.el (save-interprogram-paste-before-kill): Doc fix.
1667
1668 * cus-edit.el (hardware): Doc fix.
1669
1670 * man.el (man): Add to external custom group.
1671
1672 * delim-col.el (columns): Move to wp custom group.
1673
1674 * doc-view.el (doc-view): Add to data custom group.
1675
1676 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
1677
1678 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
1679 by ispell-parse-output (Bug#5575).
1680
1681 2010-02-16 Kenichi Handa <handa@m17n.org>
1682
1683 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
1684 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
1685 (skkdic-convert): Use `euc-japan' coding system for writing.
1686
1687 2010-02-16 Glenn Morris <rgm@gnu.org>
1688
1689 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
1690 tex-main-file before using it. (Bug#5562)
1691
1692 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1693
1694 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
1695 warnings, since it is annoying for the user to see them each time he
1696 runs the code.
1697
1698 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
1699
1700 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
1701 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
1702 instead of PROC for caching "first-password-request". Otherwise,
1703 new processes would not profit from passwords already entered.
1704
1705 * net/tramp-cache.el (tramp-dump-connection-properties):
1706 Don't save "first-password-request" property.
1707
1708 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
1709
1710 * outline.el (outline-head-from-level):
1711 * simple.el (with-wrapper-hook):
1712 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
1713 (elint-defun, elint-buffer-env, elint-top-form-logged)
1714 (elint-unbound-variable):
1715 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
1716 Fix typos in docstrings.
1717
1718 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
1719
1720 * files.el (insert-directory): When WILDCARD-REGEXP and
1721 FULL-DIRECTORY-P are nil, insert the file entry instead of the
1722 whole directory. (Bug#5551)
1723
1724 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
1725 dired's alignment sanity. (Bug#5516)
1726
1727 2010-02-14 Juri Linkov <juri@jurta.org>
1728
1729 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
1730 Remove remaining ^H with their preceding chars. (Bug#5566)
1731
1732 2010-02-13 Glenn Morris <rgm@gnu.org>
1733
1734 * simple.el (transpose-subr): Give it a doc-string.
1735
1736 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
1737 Doc fixes.
1738
1739 2010-02-12 Juri Linkov <juri@jurta.org>
1740
1741 * arc-mode.el (archive-unique-fname): Make directories for nested
1742 archives. (Bug#5540)
1743
1744 2010-02-12 Juri Linkov <juri@jurta.org>
1745
1746 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
1747
1748 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1749
1750 * subr.el (copy-overlay): Handle deleted overlays.
1751
1752 * man.el (Man-completion-table): Don't signal an error if we can't run
1753 manual-program (bug#4056).
1754
1755 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
1756
1757 * textmodes/artist.el (artist-mt): Fix typos in docstring.
1758
1759 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1760
1761 * info.el (Info-bookmark-jump): Simplify.
1762
1763 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
1764 (bookmark-default-handler): Accept new bookmark field `buffer'.
1765
1766 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
1767
1768 * iswitchb.el (iswitchb-completions): Revert last change.
1769
1770 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
1771
1772 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
1773 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
1774 This prevents file names like "~/" being listed literally.
1775
1776 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1777
1778 * term/xterm.el (xterm-maybe-set-dark-background-mode):
1779 Remove dead code. (Bug#5546)
1780
1781 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
1782
1783 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
1784 correctly (Bug#5548).
1785
1786 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
1787
1788 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
1789 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
1790
1791 2010-02-08 Kenichi Handa <handa@m17n.org>
1792
1793 * international/mule-util.el (with-coding-priority): Add autoload
1794 cookie for putting `lisp-indent-function'.
1795
1796 2010-02-07 Glenn Morris <rgm@gnu.org>
1797
1798 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
1799 Move F2003 named interfaces from keywords-2 to keywords-1, and
1800 use function-name-face rather than constant-face.
1801 Simplify "abstract interface" regexp.
1802
1803 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
1804
1805 * eshell/esh-util.el (eshell-file-attributes): New optional arg
1806 ID-FORMAT. Pass it to `file-attributes'.
1807
1808 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
1809
1810 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
1811
1812 * faces.el (set-face-attribute): Allow calling
1813 internal-set-lisp-face-attribute with 'unspecified family and
1814 foundry argument (Bug#5536).
1815
1816 2010-02-07 Glenn Morris <rgm@gnu.org>
1817
1818 * progmodes/f90.el (f90-font-lock-keywords-2)
1819 (f90-looking-at-type-like, f90-looking-at-program-block-end):
1820 Handle F2003 named interfaces.
1821
1822 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
1823
1824 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
1825 beg and end before calling c-get-state-before-change-functions.
1826
1827 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
1828
1829 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
1830
1831 2010-02-05 Juri Linkov <juri@jurta.org>
1832
1833 * doc-view.el (doc-view-mode):
1834 * image-mode.el (image-mode): Put property mode-class=special.
1835 (Bug#4896)
1836
1837 2010-02-05 Mark A. Hershberger <mah@everybody.org>
1838
1839 * vc-svn.el (vc-svn-revision-table): New function.
1840
1841 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
1842
1843 * net/ange-ftp.el (ange-ftp-insert-directory):
1844 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1845 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1846 Handle also directories. (Bug#5478)
1847
1848 2010-02-05 Glenn Morris <rgm@gnu.org>
1849
1850 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
1851
1852 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
1853
1854 * startup.el (command-line-1): Convert options beginning with a
1855 single dash as well (Bug#5519).
1856
1857 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1858
1859 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
1860 * minibuffer.el (completion-initials-expand): Only check the presence
1861 of delims *within* the boundaries, since otherwise the / delim is
1862 always found for files.
1863
1864 Fix up various corner case problems.
1865 * doc-view.el (doc-view-last-page-number): New function.
1866 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
1867 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
1868 (doc-view-kill-proc): Avoid inf-loop in freak cases.
1869 (doc-view-reconvert-doc): Use the new recursive delete-directory.
1870 (doc-view-convert-current-doc): Don't create the resolution.el file
1871 here any more.
1872 (doc-view-pdf/ps->png): Do it here instead.
1873 (doc-view-already-converted-p): Check that resolution.el is present.
1874 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
1875 windows that are not yet showing images.
1876
1877 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
1878
1879 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
1880 `dired-uncache' for every elemnt which is an absolute file name.
1881
1882 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
1883 directory, handle its directory component.
1884 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
1885 function is called permanently and creates noise, otherwise.
1886
1887 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1888 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1889 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
1890
1891 2010-02-04 David Burger <dburger@google.com> (tiny change)
1892
1893 * macros.el (apply-macro-to-region-lines):
1894 Minor simplification. (Bug#5485)
1895
1896 2010-02-04 Glenn Morris <rgm@gnu.org>
1897
1898 * mail/rmail.el (rmail-show-message-1): Handle malformed
1899 quoted-printable text. (Bug#5441)
1900
1901 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
1902
1903 * simple.el (visual-line-mode): Capitalize lighter.
1904
1905 2010-02-03 John Wiegley <jwiegley@gmail.com>
1906
1907 * iswitchb.el (iswitchb-completions): Add bookmark files to the
1908 list of files considered for "virtual buffer" completions.
1909
1910 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
1911
1912 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
1913 also in case of (and (not full) (not wildcard)). This is needed,
1914 when dired is called with a list of files, which are not in
1915 `default-directory'. (Bug#5478)
1916
1917 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
1918
1919 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
1920
1921 2010-02-02 Juri Linkov <juri@jurta.org>
1922
1923 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
1924 from unidiff to allow function-line after @@.
1925
1926 2010-02-02 Juri Linkov <juri@jurta.org>
1927
1928 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
1929 '(RCS SCCS) with inverted condition.
1930
1931 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
1932
1933 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
1934 messages.
1935
1936 2010-02-01 Juri Linkov <juri@jurta.org>
1937
1938 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
1939 compare with "pkunzip" and "pkzip" instead of only "pkzip".
1940 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
1941 only when (car archive-zip-extract) is "unzip". (Bug#5475)
1942
1943 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
1944
1945 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
1946 (doc-view-revert-buffer): New command.
1947 (doc-view-mode-map): Use it.
1948
1949 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
1950
1951 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
1952 pending merge is detected.
1953
1954 2010-01-31 Juri Linkov <juri@jurta.org>
1955
1956 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
1957 beginning of interactive spec like all other grep commands do.
1958 Put "all" in front of "gz". (Bug#5260)
1959
1960 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
1961
1962 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
1963
1964 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
1965
1966 * dirtrack.el (dirtrack): Warn instead of signalling error if the
1967 regexp is incorrect (Bug#5476).
1968
1969 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
1970
1971 * net/tramp.el (tramp-handle-insert-directory): Handle also
1972 symlinks, when FILENAME is not in `default-directory'.
1973
1974 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
1975
1976 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
1977 FILE is not in `default-directory'. (Bug#5478)
1978
1979 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
1980 of SWITCHES. Handle the case, FILENAME is not in
1981 `default-directory'. (Bug#5478)
1982 (tramp-register-file-name-handlers): Add safe-magic property.
1983
1984 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
1985
1986 * arc-mode.el (archive-zip-extract): Quote the argument passed to
1987 unzip (Bug#5475).
1988
1989 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
1990
1991 * progmodes/flymake.el (flymake-allowed-file-name-masks)
1992 (flymake-master-make-header-init): Add other C++ filename masks.
1993 (flymake-find-possible-master-files)
1994 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
1995
1996 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
1997
1998 Fix some busybox annoyances.
1999
2000 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
2001 not responding." string.
2002 (tramp-open-connection-setup-interactive-shell): Dump stty
2003 settings. Enable "neveropen" arg for all `tramp-send-command'
2004 calls. Handle "=" in variable values properly.
2005 (tramp-find-inline-encoding): Raise an error, when no encoding is
2006 found.
2007 (tramp-wait-for-output): Check, whether PROC buffer is available.
2008 Remove spurious " ^H" sequences, sent by busybox.
2009 (tramp-get-ls-command): Suppress coloring, if possible.
2010
2011 2010-01-28 Glenn Morris <rgm@gnu.org>
2012
2013 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
2014
2015 * log-edit.el (log-edit-strip-single-file-name): Add missing
2016 :safe, :group, and :version tags.
2017
2018 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
2019
2020 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
2021 buffers. (Bug#5477)
2022
2023 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2024
2025 * files.el (delete-directory): Handle moving to trash without
2026 first doing recursion (Bug#5436).
2027
2028 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
2029
2030 * vc-hooks.el (vc-path): Mark as obsolete.
2031
2032 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
2033
2034 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
2035 names too.
2036
2037 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
2038 for the short log.
2039 (vc-bzr-log-view-mode): Adjust regexp for the above change.
2040
2041 2010-01-25 Mark A. Hershberger <mah@everybody.org>
2042
2043 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
2044
2045 * vc-bzr.el (vc-bzr-revision-table): New function.
2046
2047 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
2048
2049 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
2050 diff-index command. This requires at least git-1.5.5. (Bug#1589).
2051
2052 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
2053
2054 Remove support for adding --signoff on commit.
2055 Future support will use an incompatible generic mechanism.
2056 * vc-git.el (vc-git-add-signoff): Remove variable.
2057 (vc-git-toggle-signoff): Remove function.
2058 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
2059
2060 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
2061 from xterm-set-background-mode. Return t if the background mode
2062 was set.
2063 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2064 earlier, call it again in case the background mode has changed.
2065
2066 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
2067
2068 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2069 (Bug#3541).
2070
2071 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
2072
2073 * emacs-lisp/assoc.el (aelement): Doc fix.
2074 (aput, adelete, amake): Use lexical-let (Bug#5450).
2075
2076 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
2077
2078 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2079 is the same as subprogram call, not declaration. (Bug#5435).
2080
2081 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
2082
2083 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2084 (tramp-smb-maybe-open-connection): Use it.
2085
2086 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
2087
2088 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
2089
2090 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2091
2092 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2093 just because we see "encoding: 8bit".
2094 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2095
2096 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
2097
2098 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2099
2100 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2101
2102 * jka-compr.el (jka-compr-load): If load-file is not in
2103 load-history, try its file-truename version. (bug#5447)
2104
2105 2010-01-21 Alan Mackenzie <acm@muc.de>
2106
2107 Fix a situation where deletion of a cpp construct throws an error.
2108 * progmodes/cc-engine.el (c-invalidate-state-cache): Before
2109 invoking c-with-all-but-one-cpps-commented-out, check that the
2110 special cpp construct is still in the buffer.
2111 (c-parse-state): Record the special cpp with markers, not numbers.
2112
2113 2010-01-21 Kenichi Handa <handa@m17n.org>
2114
2115 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
2116 process last-command-event, as it is now decoded first (Bug#5380).
2117
2118 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
2119
2120 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
2121
2122 2010-01-20 Glenn Morris <rgm@gnu.org>
2123
2124 * indent.el (tab-always-indent): Fix custom-type.
2125
2126 2010-01-19 Alan Mackenzie <acm@muc.de>
2127
2128 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
2129 buffer throws "args out of range".
2130 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
2131 playing the role of delimiter.
2132
2133 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
2134
2135 * progmodes/ada-mode.el: Fix bug#5400.
2136 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
2137 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
2138 changed. Delete RECURSIVE parameter; never used. Improve doc string.
2139 Improve comments in "is" portion. Handle null procedure declaration.
2140 (ada-move-to-end): Improve doc string.
2141
2142 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
2143
2144 * ido.el (ido-cur-list): Initialize to nil.
2145 Remove obsolete information from commentary.
2146 (ido-choice-list): Initialize to nil.
2147 (ido-get-bufname): Reject minibuffers.
2148 (ido-make-buffer-list): If "default" is a nonexistent
2149 buffer, ignore it, as per the function's comment.
2150 (ido-kill-buffer-internal): New function.
2151 (ido-kill-buffer-at-head): Use it.
2152 (ido-visit-buffer): Likewise.
2153
2154 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2155
2156 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
2157
2158 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
2159
2160 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2161 Fix typos in chart titles.
2162
2163 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2164 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2165 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2166 (describe-class, eieio-describe-generic, describe-generic):
2167 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2168 (eieio-speedbar-expand):
2169 * emulation/viper-cmd.el (viper-exec-form-in-vi)
2170 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2171 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2172 (viper-del-backward-char-in-replace, viper-backward-indent)
2173 (viper-brac-function, viper-register-to-point, viper-submit-report):
2174 * net/tramp.el (tramp-remote-coding-commands):
2175 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2176 Fix typos in docstrings.
2177
2178 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
2179
2180 * mail/sendmail.el (mail-yank-original): Set the mark if the
2181 specified function for yanking does not do it.
2182
2183 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
2184
2185 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
2186
2187 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2188 resyncing a directory.
2189
2190 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
2191
2192 * progmodes/ada-mode.el: Fix bug#1920.
2193 (ada-ident-re): Delete ., allow multibyte characters.
2194 (ada-goto-label-re): New; matches goto labels.
2195 (ada-block-label-re): New; matches block labels.
2196 (ada-label-re): New; matches both.
2197 (ada-named-block-re): Deleted; callers changed to use
2198 `ada-block-label-re' instead.
2199 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2200 Use `ada-block-label-re'.
2201 (ada-indent-on-previous-lines): Improve handling of goto labels.
2202 (ada-get-indent-block-start): Special-case block label.
2203 (ada-get-indent-label): Split into `ada-indent-block-label' and
2204 `ada-indent-goto-label'.
2205 (ada-goto-stmt-start, ada-goto-next-non-ws):
2206 Optionally ignore goto labels.
2207 (ada-goto-next-word): Simplify.
2208 (ada-indent-newline-indent-conditional): Insert newline before
2209 trying to fix indentation; doc fix.
2210
2211 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
2212
2213 * calc/calc.el (calc-command-flags): Give it an initial value.
2214
2215 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
2216
2217 * files.el (minibuffer-with-setup-hook):
2218 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2219 (artist-key-draw-continously, artist-key-do-continously-continously)
2220 (artist-key-set-point-continously, artist-mouse-draw-continously):
2221 Fix typos in docstrings.
2222
2223 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
2224
2225 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
2226 return t (Bug#3898).
2227
2228 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
2229
2230 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2231 can parse the output of the external commands (Bug#5279).
2232
2233 2010-01-16 Jari Aalto <jari.aalto@cante.net>
2234
2235 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2236
2237 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2238
2239 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2240
2241 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2242
2243 * startup.el (command-line): Remove unused --icon-type arg.
2244 Handle --display arg, passing it to command-line-1 (Bug#5392).
2245
2246 2010-01-16 Mario Lang <mlang@delysid.org>
2247
2248 * emacs-lisp/chart.el (chart-translate-namezone):
2249 * textmodes/artist.el (artist-compute-popup-menu-table):
2250 Remove duplicated words in doc-strings.
2251
2252 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
2253
2254 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2255 to mairix-search to suppress threading (Bug#5342).
2256
2257 2010-01-15 Kenichi Handa <handa@m17n.org>
2258
2259 * international/mule-cmds.el (canonicalize-coding-system-name):
2260 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2261
2262 2010-01-15 Glenn Morris <rgm@gnu.org>
2263
2264 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
2265
2266 * wid-edit.el (widget-keymap): Doc fix.
2267
2268 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2269 former seems to be more widely accepted by various svn versions.
2270
2271 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2272
2273 * find-cmd.el (find-constituents):
2274 * vc-arch.el (vc-arch-root):
2275 * window.el (window-body-height, pop-up-frames):
2276 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2277 * progmodes/ada-stmt.el (ada-if):
2278 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2279 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2280 (ispell-encoding8-command, ispell-aspell-supports-utf8)
2281 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2282
2283 * progmodes/flymake.el (flymake-post-syntax-check):
2284 Fix typo in error message.
2285
2286 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2287
2288 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2289 which is always a string. (Bug#5313)
2290
2291 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2292
2293 * progmodes/ada-xref.el (ada-default-prj-properties):
2294 Simplify previous change.
2295
2296 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2297
2298 * progmodes/ada-xref.el (ada-default-prj-properties):
2299 Default ada_project_path to $ADA_PROJECT_PATH.
2300
2301 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2302
2303 * progmodes/ada-mode.el (ada-create-keymap):
2304 Override `narrow-to-defun' with `ada-narrow-to-defun'.
2305
2306 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2307
2308 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2309 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2310 (ada-get-current-indent, ada-imenu-generic-expression)
2311 (ada-which-function): Check for it.
2312
2313 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2314
2315 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2316 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2317
2318 2010-01-14 Glenn Morris <rgm@gnu.org>
2319
2320 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
2321
2322 2010-01-14 Kenichi Handa <handa@m17n.org>
2323
2324 * composite.el (auto-composition-mode): Make it a buffer local
2325 variable (permanent-local).
2326 (auto-composition-function): Set the default value to
2327 auto-compose-chars.
2328 (auto-composition-mode): Make it a simple function, not a minor mode.
2329 (global-auto-composition-mode): Likewise.
2330 (turn-on-auto-composition-if-enabled): Delete it.
2331
2332 2010-01-13 Karl Fogel <kfogel@red-bean.com>
2333
2334 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
2335
2336 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
2337
2338 * files.el (copy-directory): Compute target for recursive
2339 directories with identical names. (Bug#5343)
2340
2341 2010-01-12 Glenn Morris <rgm@gnu.org>
2342
2343 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
2344 it to bug-gnu-emacs rather than emacs-pretest-bug.
2345
2346 2010-01-11 Sam Steingold <sds@gnu.org>
2347
2348 * imenu.el (imenu-default-create-index-function): Detect infinite
2349 loops caused by imenu-prev-index-position-function.
2350
2351 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2352
2353 * htmlfontify.el (htmlfontify-load-rgb-file)
2354 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2355 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2356 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2357 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2358 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2359 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2360 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2361 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2362 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2363 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2364 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2365 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2366 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2367 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2368 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2369 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2370 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2371 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2372 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2373 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2374 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2375 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2376 backslash-quoting from parentheses, etc.
2377
2378 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
2379
2380 * progmodes/js.el: Autoload javascript-mode alias.
2381
2382 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2383
2384 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2385 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2386 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2387 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2388 Fix typos in docstrings.
2389 (ffap-url-regexp): Doc fix.
2390 (ffap-at-mouse): Fix typo in message.
2391
2392 2010-01-11 Glenn Morris <rgm@gnu.org>
2393
2394 * version.el (emacs-copyright): Set copyright year to 2010.
2395
2396 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2397
2398 * format.el (format-annotate-function): Only set
2399 write-region-post-annotation-function after running to-fn so as not to
2400 affect nested write-region calls (bug#5273).
2401
2402 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
2403
2404 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2405 wisent/python.el.
2406
2407 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2408
2409 * man.el (Man-goto-section): Signal error if the section is not
2410 found (Bug#5317).
2411
2412 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
2413
2414 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
2415 URLs with a leading triple slash in the file: scheme. (Bug#5345)
2416
2417 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2418
2419 * progmodes/compile.el: Don't treat compile-command as safe if
2420 compilation-read-command might be nil (Bug#4218).
2421
2422 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
2423
2424 * startup.el (command-line-1): Use orig-argi to check for ignored X and
2425 NS options.
2426
2427 2010-01-08 Kenichi Handa <handa@m17n.org>
2428
2429 * international/fontset.el (build-default-fontset-data):
2430 Exclude characters in scripts kana, hangul, han, or cjk-misc.
2431
2432 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
2433
2434 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2435 to `create-file-buffer' as it expects, not just a buffer name.
2436 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2437 to help uniquify. (Bug#3224)
2438
2439 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
2440
2441 * font-setting.el (font-setting-change-default-font): Use user-spec
2442 instead of name.
2443
2444 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
2445
2446 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2447
2448 2010-01-05 Tom Tromey <tromey@redhat.com>
2449
2450 * progmodes/python.el (python-font-lock-keywords):
2451 Handle qualified decorators (Bug#881).
2452
2453 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2454
2455 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2456 in a lightweight checkout.
2457
2458 2010-01-05 Kenichi Handa <handa@m17n.org>
2459
2460 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2461
2462 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2463
2464 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2465
2466 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
2467
2468 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2469 checkouts. (Bug#618)
2470 (vc-bzr-log-view-mode): Also highlight the author.
2471 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2472 (vc-bzr-shelve-menu-map):
2473 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2474 (vc-bzr-shelve-apply): Make prompt more explicit.
2475
2476 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
2477
2478 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2479 They are valid characters in URL paths (rfc3986), and at least
2480 Firefox does not understand the encoded version (Bug#3166).
2481
2482 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
2483
2484 * progmodes/octave-mod.el (octave-end-keywords)
2485 (octave-block-begin-or-end-regexp, octave-block-match-alist):
2486 Add "end" keyword (Bug#3061).
2487 (octave-end-as-array-index-p): New function.
2488 (calculate-octave-indent): Use it.
2489
2490 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2491
2492 * bookmark.el: Consistently put the text property on the bookmark name.
2493 (bookmark-bmenu-marks-width): Bump back to 2, to include
2494 annotation marks.
2495 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2496 property on the bookmark name, instead of not putting it at all.
2497 (bookmark-bmenu-list): Fix where we put the text property.
2498
2499 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2500
2501 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2502 for showing buffer modified state (as added in the previous change).
2503
2504 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2505
2506 * bookmark.el: Show modified state of bookmark buffer more accurately.
2507 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2508 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2509 (with-buffer-modified-unmodified): New macro.
2510 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2511 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2512 Use new macro to preserve the buffer modified state.
2513
2514 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2515
2516 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2517 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2518 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2519 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2520 (bookmark-bmenu-rename, bookmark-bmenu-locate)
2521 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2522 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2523
2524 2010-01-02 Eli Zaretskii <eliz@gnu.org>
2525
2526 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2527 Make the lines in the generated doc string shorter. (Bug#4668)
2528
2529 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
2530
2531 * net/rcirc.el: Add follow-link binding (Bug#4738).
2532
2533 2010-01-02 Eli Zaretskii <eliz@gnu.org>
2534
2535 * Makefile.in (bzr-update): Rename from cvs-update.
2536 (cvs-update): New target for backward compatibility.
2537
2538 * makefile.w32-in (bzr-update): Rename from cvs-update.
2539 (cvs-update): New target for backward compatibility.
2540
2541 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2542
2543 * bookmark.el: Remove gratuitous gratitude.
2544
2545 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2546
2547 * bookmark.el (bookmark-bmenu-any-marks): New function
2548 (bookmark-bmenu-save): Clear buffer modification if no marks.
2549
2550 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2551
2552 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
2553 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
2554 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
2555 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
2556
2557 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
2558 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
2559 To: emacs-devel {_AT_} gnu.org
2560 Subject: bookmark.el bug report
2561 Date: Mon, 28 Dec 2009 14:19:16 +0800
2562 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
2563
2564 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2565
2566 * bookmark.el: Improvements suggested by Drew Adams:
2567 (bookmark-bmenu-ensure-position): New name for
2568 `bookmark-bmenu-check-position'. Just ensure the position,
2569 don't return any meaningful value.
2570 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
2571 New constants.
2572
2573 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
2574
2575 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
2576 (bookmark-yank-point, bookmark-bmenu-check-position):
2577 Fix typos in docstrings.
2578 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
2579 (bookmark-name-from-full-record, bookmark-get-position)
2580 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
2581 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
2582 Remove useless quoting of parenthesis, etc. in docstrings.
2583
2584 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
2585 (ediff-append-custom-diff): Fix typo in error message.
2586 (ediff-meta-mark-equal-files): Fix typos in messages.
2587
2588 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
2589
2590 * net/imap-hash.el (imap-hash-make): Doc fix.
2591 (imap-hash-test): Fix typo in error message; reflow docstring.
2592 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
2593 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
2594 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
2595 Fix typos in docstrings.
2596 (imap-hash-open-connection): Fix typo in error message.
2597
2598 * play/gomoku.el (gomoku): Fix typos in docstring.
2599
2600 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
2601 (gdb-jsonify-buffer): Fix typos in docstring.
2602 (gdb-goto-breakpoint): Fix typo in error message.
2603 ("Display Other Windows"): Fix typo in help message.
2604 (gdb-speedbar-expand-node): Fix typo in question.
2605
2606 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
2607 (idlwave-html-system-help-location, idlwave-html-help-location)
2608 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
2609 (idlwave-help-browser-generic-args, idlwave-help-directory)
2610 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
2611 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
2612 (idlwave-online-help, idlwave-help-html-link)
2613 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
2614 Fix typos in docstrings.
2615 (idlwave-help-with-source, idlwave-help-find-routine-definition):
2616 Reflow docstrings.
2617 (idlwave-help-assistant-start): Fix typo in error message.
2618
2619 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
2620 (octave-electric-space): Fix typos in docstrings.
2621
2622 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
2623
2624 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
2625
2626 2010-01-01 Juri Linkov <juri@jurta.org>
2627
2628 * comint.el (comint-input-ring-size): Make it a defcustom and
2629 increase the default to 500 (Bug#5148).
2630
2631 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
2632
2633 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
2634 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
2635 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
2636
2637 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
2638
2639 Show working revision correctly for mercurial.
2640 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
2641 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
2642
2643 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
2644
2645 Declare some functions for the byte-compiler.
2646 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
2647 (speedbar-timer-fn, speedbar-change-expand-button-char)
2648 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
2649
2650 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
2651
2652 This changeset reverts GDB Graphical Interface to use annotations.
2653 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
2654
2655 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
2656
2657 Make vc-dir work on subdirectories of the bzr root.
2658 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
2659 file names relative to it.
2660 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
2661 relative directory to vc-bzr-after-dir-status.
2662
2663 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
2664
2665 * font-lock.el (font-lock-refresh-defaults): New function, which
2666 can be used to let font-lock react to external changes in
2667 variables like font-lock-defaults and keywords.
2668 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
2669
2670 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
2671
2672 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
2673
2674 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
2675
2676 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
2677
2678 Supersede color.diff settings in git log (bug#5211).
2679
2680 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
2681 escape chars in its output when the user has color.diff set to `always'.
2682 This fix works on git 1.4.2 and newer (released on 2006-08-13).
2683
2684 2009-12-26 Kevin Ryde <user42@zip.com.au>
2685
2686 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
2687 node. Keep previous "Index" name to work with past coreutils too.
2688
2689 * man.el (man): Revise docstring a bit to show -a and -l as
2690 examples. Add -k description since support for it has otherwise
2691 been a secret. (Further to bug#3717.)
2692 (Man-bgproc-sentinel): When "-k foo" produces no output show error
2693 "no matches" rather than "Can't find manpage", as the latter reads
2694 like -k was interpreted as a page name, which is not so. (Bug#5431)
2695
2696 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
2697
2698 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
2699 switches. Check also for //SUBDIRED// line.
2700
2701 2009-12-25 Kenichi Handa <handa@m17n.org>
2702
2703 * language/indian.el (devanagari-composable-pattern): Fixed to
2704 handle ZWNJ and ZWJ. Use it in composition-function-table for
2705 Devanagari.
2706 (malayalam-composable-pattern): Fix previous change.
2707
2708 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2709
2710 * ps-print.el (ps-face-attributes): It was not returning the
2711 attribute face for faces specified as string. Reported by harven
2712 <harven@free.fr>. (Bug#5254)
2713 (ps-print-version): New version 7.3.5.
2714
2715 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
2716
2717 * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed
2718 timezone names.
2719 (icalendar--convert-tz-offset): Fixed the "last-day-problem".
2720 (icalendar--add-diary-entry): Remove the trailing blank that
2721 diary-make-entry inserts.
2722
2723 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
2724
2725 Make `file-expand-wildcards' work for remote files.
2726
2727 * files.el (file-expand-wildcards): In case of remote files, check
2728 only local file name part for wildcards. Provide feature 'files
2729 and subfeature 'remote-wildcards. (Bug#5198)
2730
2731 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
2732 if there is already an established connection.
2733 (tramp-advice-file-expand-wildcards): Remove it.
2734
2735 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
2736 (tramp-advice-file-expand-wildcards): Moved from tramp.el.
2737 Activate advice for older GNU Emacs versions. (Bug#5237)
2738
2739 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
2740
2741 Some doc fixes (more needed).
2742
2743 * find-cmd.el (find-constituents): Reflow docstring.
2744 (find-cmd, find-prune, find-command): Fix typos in docstrings.
2745 (find-generic): Doc fix.
2746
2747 2009-12-17 Juri Linkov <juri@jurta.org>
2748
2749 Fix regression from 23.1 to allow multiple modes in Local Variables.
2750
2751 * files.el (hack-local-variables-filter): While ignoring duplicates,
2752 don't take `mode' into account.
2753 (hack-local-variables-filter, hack-dir-local-variables): Don't
2754 remove duplicate `mode' from local-variables-alist (like `eval').
2755
2756 2009-12-17 Juri Linkov <juri@jurta.org>
2757
2758 Make `dired-diff' more safe. (Bug#5225)
2759
2760 * dired-aux.el (dired-diff): Signal an error when `file' equals to
2761 `current' or when `file' is a directory of the `current' file.
2762
2763 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
2764
2765 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
2766 unconditionally preloaded files.
2767
2768 2009-12-16 Juri Linkov <juri@jurta.org>
2769
2770 Revert to old 23.1 logic of using the file at the mark as default.
2771 * dired-aux.el (dired-diff): Use the file at the mark as default
2772 if it's not the same as the current file, and the target dir is
2773 the current dir or the mark is active. Add the current file
2774 as the arg of `dired-dwim-target-defaults'. Use the default file
2775 in the prompt. (Bug#5225)
2776
2777 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
2778
2779 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
2780 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
2781 (tramp-check-for-regexp): Check also, when an echoing shell stops
2782 to echo sent commands.
2783
2784 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
2785
2786 * Makefile.in: Revert last change (Bug#5191).
2787
2788 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
2789
2790 * vc-hg.el (vc-hg-print-log): Fix argument order.
2791 (vc-hg-working-revision): Make sure the command is executed in a
2792 known environment so that we can parse the output. (Bug#4417)
2793
2794 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
2795
2796 * progmodes/python.el (python-symbol-completions): Remove text
2797 properties from symbol string before calling python-send-receive.
2798
2799 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
2800
2801 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
2802 when there are values for both file and line. (Bug#5060)
2803
2804 2009-12-14 Juri Linkov <juri@jurta.org>
2805
2806 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
2807 whitespace after the file name of the first line of unified format,
2808 because git-diff doesn't output whitespace and file modification time
2809 after the file name.
2810
2811 2009-12-14 David Kastrup <dak@gnu.org>
2812
2813 * info.el (Info-hide-cookies-node): Before hiding a cookie,
2814 check if it already has the `display' property added by
2815 `Info-display-images-node', and not put the `invisible' property
2816 in this case.
2817
2818 2009-12-13 Glenn Morris <rgm@gnu.org>
2819
2820 * mail/emacsbug.el (message-sort-headers): Define for compiler.
2821 (report-emacs-bug): In message-mode, sort manually before storing
2822 original report text. (Bug#5178)
2823 Remove superfluous save-excursion.
2824
2825 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
2826
2827 * net/dbus.el (dbus-property-handler): Filter lambda forms out
2828 when responding to "GetAll" properties.
2829
2830 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
2831
2832 * simple.el (compose-mail): Remove mail-setup-with-from from
2833 customization checks.
2834
2835 2009-12-12 Eli Zaretskii <eliz@gnu.org>
2836
2837 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
2838 RAR archives created on Unix systems.
2839
2840 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
2841
2842 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
2843 the varalias that was accidentally removed by the 2009-11-19 change
2844 (bug#5186).
2845
2846 2009-12-12 Kenichi Handa <handa@m17n.org>
2847
2848 * language/indian.el (indian-compose-regexp): New function.
2849 (malayalam-composable-pattern): Fix the pattern.
2850 (composition-function-table): Set malayalam-composable-pattern for
2851 Malayalam characters.
2852
2853 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
2854
2855 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
2856 rather than down-mouse-1, based on follow-link conventions.
2857
2858 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
2859 are compiled.
2860
2861 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
2862
2863 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
2864 (verilog-vmm-statement-re, verilog-ovm-statement-re)
2865 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
2866 (verilog-leap-to-head, verilog-backward-token):
2867 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
2868
2869 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
2870
2871 * progmodes/verilog-mode.el (verilog-auto-lineup)
2872 (verilog-nameable-item-re): Cleanup user-visible spelling and
2873 documentation errors. One reported by Gary Delp.
2874 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
2875 (verilog-read-decls): Fix AUTOWIRE with types declared in a
2876 package, bug195. Reported by Pierre-David Pfister.
2877
2878 2009-12-11 Glenn Morris <rgm@gnu.org>
2879
2880 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
2881
2882 * mail/emacsbug.el: No longer require sendmail.
2883 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
2884 (report-emacs-bug-orig-text): Doc fix.
2885 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
2886 New local variables, to adapt to different mail-user-agents.
2887 (report-emacs-bug): Fix test for a gnu.org address.
2888 Use overlays for emphasis, since font-lock defeats 'face property.
2889 Pretest bugs also end up at the newsgroup these days.
2890 Stop message-mode stripping text properties.
2891 Set and use the new buffer-local variables.
2892 (report-emacs-bug-hook): Add doc-string.
2893 Remove some unnecessary save-excursions and simplify.
2894 Use the appropriate hook and send-command.
2895
2896 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
2897 capitalization of some menu entries.
2898
2899 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2900
2901 * whitespace.el (whitespace-display-char-on): Ensure
2902 `buffer-display-table' is unique when two or more windows are
2903 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
2904 New version 12.1.
2905
2906 2009-12-10 Eli Zaretskii <eliz@gnu.org>
2907
2908 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
2909 characters in the Attribute field.
2910
2911 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
2912
2913 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
2914
2915 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2916
2917 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
2918 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2919 Disregard autoload-excludes.
2920 (update-directory-autoloads): Obey autoload-excludes here instead.
2921 But don't store its contents in no-autoloads and remove entries that
2922 refer to excludes files.
2923
2924 2009-12-10 Glenn Morris <rgm@gnu.org>
2925
2926 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
2927 (expand-mail-aliases): Define for compiler.
2928
2929 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
2930 Define for compiler.
2931
2932 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
2933 appropriate for the mail-user-agent in use.
2934
2935 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
2936
2937 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
2938
2939 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
2940
2941 Fix short log parsing and fontification.
2942 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
2943 Fix fontification for the [merge] label.
2944
2945 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
2946
2947 Drop some properties to avoid surprises.
2948 * htmlfontify.el (hfy-ignored-properties): New defcustom.
2949 (hfy-fontify-buffer): Use it.
2950
2951 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
2952
2953 Minor cleanup.
2954 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
2955 Adjust all callers.
2956 (ffap-locate-file): Remove unused arg `dir-ok' and make other
2957 args compulsory. Adjust callers.
2958 (ffap-gopher-at-point): Remove unused var `name'.
2959
2960 Get rid of the ELCFILES abomination.
2961 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
2962 (compile-elcfiles): New phony target.
2963 (compile-main): Compute ELCFILES dynamically.
2964 (compile-clean): New target to remove left-over elc files.
2965 (compile, all): Use it.
2966
2967 2009-12-09 Kenichi Handa <handa@etlken>
2968
2969 * international/mule-diag.el: Require help-mode instead of help-fns.
2970
2971 2009-12-09 Kenichi Handa <handa@m17n.org>
2972
2973 * international/mule-cmds.el (ucs-names): Supply sufficiently
2974 fine ranges instead of pre-calculating accurate ranges.
2975 Iterate with bigger gc-cons-threshold.
2976
2977 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
2978
2979 Add support for stashing a snapshot of the current tree.
2980 * vc-git.el (vc-git-stash-snapshot): New function.
2981 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
2982
2983 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
2984
2985 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
2986 instead of `(beginning|end)-of-line'.
2987
2988 2009-12-08 Glenn Morris <rgm@gnu.org>
2989
2990 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
2991
2992 * Makefile.in (ELCFILES): Regenerate.
2993
2994 2009-12-07 Juri Linkov <juri@jurta.org>
2995
2996 Don't lazy-highlight the comint output in history Isearch mode.
2997
2998 * comint.el (comint-history-isearch-search): Instead of
2999 `comint-line-beginning-position', use `comint-after-pmark-p'
3000 to check if point if before the process mark, and go to
3001 `process-mark' in this case.
3002
3003 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3004
3005 * textmodes/tex-mode.el (latex-complete)
3006 (latex-indent-or-complete): Remove.
3007 (latex-mode): Set completion-at-point-functions instead.
3008
3009 Provide a standard completion command and hook it into TAB.
3010 * minibuffer.el (completion-at-point-functions): New var.
3011 (completion-at-point): New command.
3012 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
3013 * progmodes/python.el (python-mode-map): Use completion-at-point.
3014 (python-completion-at-point): Rename from python-partial-symbol and
3015 adjust for use in completion-at-point-functions.
3016 (python-mode): Setup completion-at-point for Python completion.
3017 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
3018 extracted from lisp-complete-symbol.
3019 (lisp-complete-symbol): Use it.
3020 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
3021 setup completion-at-point for Elisp completion.
3022 (emacs-lisp-mode-map, lisp-interaction-mode-map):
3023 Use completion-at-point.
3024 * ielm.el (ielm-map): Use completion-at-point.
3025 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
3026 * progmodes/sym-comp.el: Move to...
3027 * obsolete/sym-comp.el: Move from progmodes.
3028
3029 2009-12-07 Eli Zaretskii <eliz@gnu.org>
3030
3031 Prevent save-buffer in Rmail buffers from using the coding-system
3032 of the current message, and from clobbering the encoding mnemonics
3033 in the mode line (Bug#4623).
3034
3035 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
3036 flag, too.
3037 (rmail-message-encoding): New variable.
3038 (rmail-write-region-annotate): Record the encoding of the current
3039 message in rmail-message-encoding.
3040 (rmail-after-save-hook): New function, restores the encoding of
3041 the current message after the message collection is saved.
3042
3043 2009-12-07 Juri Linkov <juri@jurta.org>
3044
3045 * progmodes/grep.el (grep-read-files): Use `completing-read'
3046 instead of `read-string'. Set its `collection' arg to
3047 `read-file-name-internal'. (Bug#4301)
3048
3049 2009-12-07 Juri Linkov <juri@jurta.org>
3050
3051 Correctly restore original Isearch point. (Bug#4994)
3052
3053 * isearch.el (isearch-mode): Move `isearch-push-state' after
3054 `(run-hooks 'isearch-mode-hook)'.
3055 (isearch-cancel): When `isearch-push-state-function' is defined,
3056 let-bind `isearch-cmds' to the first state (the last element of
3057 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
3058 function and restores the original point). Otherwise, move point
3059 to `isearch-opoint'.
3060
3061 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3062
3063 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3064 chars that don't have names, so the table can be built much faster at
3065 run-time.
3066
3067 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
3068
3069 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3070 change. Suggested by David Kastrup.
3071
3072 * simple.el (compose-mail): Check for incompatibilities and warn.
3073 (compose-mail-user-agent-warnings): New option.
3074
3075 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3076
3077 Support showing a single log entry from vc-annotate.
3078 * vc.el (print-log): Add a new argument: START-REVISION.
3079 (vc-print-log-internal): Add a new optional argument and
3080 pass it to the backend.
3081 (vc-print-log, vc-print-root-log): Adjust callers.
3082 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3083 buffer already displays the requested log entry, use it.
3084 Otherwise display only the log entry in question.
3085 * vc-svn.el (vc-svn-print-log):
3086 * vc-mtn.el (vc-mtn-print-log):
3087 * vc-hg.el (vc-hg-state):
3088 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3089 (vc-git-show-log-entry): Return t on success.
3090 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3091 (vc-bzr-show-log-entry): Return t on success.
3092 * vc-rcs.el (vc-rcs-print-log):
3093 * vc-sccs.el (vc-sccs-print-log):
3094 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3095
3096 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3097
3098 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3099 Add menus to the meta mode. (Bug#5043)
3100
3101 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
3102
3103 * ediff-init.el (ediff-event-key): Use event-to-character instead of
3104 event-key.
3105
3106 * ediff.el (ediff-buffers-internal): Add unwind-protect.
3107
3108 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
3109
3110 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
3111 Berbain <raphael.berbain@gmail.com>.
3112
3113 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
3114 characters.
3115 (tramp-initial-end-of-output): New defconst.
3116 (tramp-methods, tramp-find-shell)
3117 (tramp-open-connection-setup-interactive-shell)
3118 (tramp-maybe-open-connection): Use it.
3119 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
3120 existence of `#' and `$'.
3121
3122 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
3123 `tramp-initial-end-of-output'.
3124
3125 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3126
3127 Get the background mode from the terminal for xterm, and set
3128 faces accordingly.
3129 * term/xterm.el (xterm-set-background-mode): New function.
3130 (terminal-init-xterm): Use it in case xterm supports background
3131 color queries. Recompute faces after getting the background
3132 color.
3133
3134 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
3135
3136 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3137 number comment back on its own line, for easier parsing.
3138
3139 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3140
3141 Make it work for non-file buffers (bug#5102).
3142 * doc-view.el (doc-view-current-cache-dir):
3143 Use doc-view-buffer-file-name rather than buffer-file-name.
3144 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3145
3146 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
3147
3148 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3149 author field is too short.
3150
3151 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
3152
3153 * vc-git.el (vc-git-print-log): Handle a limit argument.
3154 Display the short log in graph form and with labels.
3155 (vc-git-log-view-mode): Handle labels.
3156
3157 Make vc-revert change VC state from 'added to 'unregistered.
3158 * vc-git.el (vc-git-revert): Call git reset first.
3159
3160 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3161
3162 * net/newst-backend.el, net/newst-plainview.el:
3163 * net/newst-reader.el, net/newst-ticker.el:
3164 * net/newst-treeview.el, net/newsticker.el:
3165 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
3166
3167 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3168
3169 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3170
3171 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3172 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
3173 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3174 Update annotation regexp.
3175
3176 * simple.el (beginning-of-visual-line): Constrain to field
3177 boundaries (Bug#5106).
3178
3179 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3180
3181 * xml.el (xml-substitute-numeric-entities): Move
3182 newsticker--decode-numeric-entities in newst-backend.el to
3183 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3184 * net/newst-backend.el (newsticker--parse-generic-feed)
3185 (newsticker--parse-generic-items)
3186 (newsticker--decode-numeric-entities): Move
3187 newsticker--decode-numeric-entities in newst-backend.el to
3188 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3189
3190 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
3191
3192 * progmodes/js.el (js--js-not): Add null to the list of values.
3193
3194 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3195
3196 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3197
3198 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3199
3200 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3201 delimiter if it is at the end of the current line.
3202 (bibtex-generate-url-list): Fix docstring.
3203
3204 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3205
3206 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3207 minibuffer's content with itself.
3208 Fold the confirm-after-completion case into the `confirm' case.
3209 (completion-pcm-word-delimiters): Add : and / to the delimiters.
3210
3211 2009-12-06 Kevin Ryde <user42@zip.com.au>
3212
3213 * ffap.el (ffap-rfc-path): Make this a defcustom since
3214 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
3215
3216 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3217 manuals, similar to existing setup for help-mode. (Bug#3913.)
3218
3219 2009-12-05 Juri Linkov <juri@jurta.org>
3220
3221 Save and restore dired buffer's point positions too. (Bug#4880)
3222
3223 * dired.el (dired-save-positions): Return in the first element
3224 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3225 Doc fix.
3226 (dired-restore-positions): First restore buffer's position.
3227 While restoring window's positions, check if window still displays
3228 the original buffer.
3229
3230 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
3231
3232 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3233 if possible.
3234
3235 * shell.el (shell): Require ansi-color (Bug#5113).
3236
3237 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3238
3239 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3240
3241 2009-12-05 Alan Mackenzie <acm@muc.de>
3242
3243 * progmodes/cc-mode.el (c-before-hack-hook)
3244 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3245 `c-file-style' to work again. This reversion restores the current
3246 software to its state in Emacs 23.1. (Bug#4146)
3247
3248 2009-12-05 Kevin Ryde <user42@zip.com.au>
3249
3250 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
3251 comment-start-skip to comment-end-skip as comment (Bug#4781).
3252
3253 2009-12-05 Juri Linkov <juri@jurta.org>
3254
3255 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3256 for virtual nodes. (Bug#4147)
3257 (Info-find-node-2): Set `Info-current-node-virtual' to nil
3258 when moving from a virtual node.
3259 (Info-mode-menu): Add `Info-virtual-index' to the menu.
3260 (Info-mode): Add `Info-virtual-index' to the docstring.
3261
3262 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3263
3264 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3265 track of the buffer position of the end of a BibTeX entry as this
3266 position may change during reformatting.
3267 (bibtex-format-entry): Remove whitespace before processing
3268 numerical fields so that we recognize the latter properly.
3269 (bibtex-reformat): Do not use push which changes the global value
3270 of bibtex-entry-format.
3271 (bibtex-field-braces-alist, bibtex-field-strings-alist)
3272 (bibtex-field-re-init): Replace only space characters by regexp
3273 for whitespace.
3274 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3275 (bibtex-initialize): Also update bibtex-strings.
3276 (bibtex-kill-field): Preserve white space at end of entry.
3277 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3278 Update bibtex-reference-keys.
3279
3280 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
3281
3282 * minibuffer.el (completion-pcm--merge-try): Also consider placing
3283 point after a star, if that's the only place where modifications can
3284 make progress.
3285
3286 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
3287
3288 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3289 in docstrings.
3290
3291 2009-12-04 Juri Linkov <juri@jurta.org>
3292
3293 * proced.el (proced): Call `(proced-update t)' to update process
3294 information instead of only running proced-post-display-hook.
3295 (proced-send-signal): Add a leading space to the buffer name
3296 " *Marked Processes*" to make this buffer ephemeral.
3297
3298 2009-12-04 Juri Linkov <juri@jurta.org>
3299
3300 * dired.el (dired-auto-revert-buffer): New defcustom.
3301 (dired-internal-noselect): Use it.
3302
3303 2009-12-04 Juri Linkov <juri@jurta.org>
3304
3305 Change roles of modes and functions in image-mode.el (Bug#5062).
3306
3307 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3308 in `auto-mode-alist'.
3309 (image-mode-previous-major-mode): New variable.
3310 (image-minor-mode-map): Rename from `image-mode-text-map'.
3311 (image-mode): Move graceful error-handling code from
3312 `image-minor-mode' to here. On errors call `image-mode-as-text'.
3313 (image-minor-mode): Remove all image-handling code.
3314 Replace `image-mode-text-map' with `image-minor-mode-map'.
3315 Check for `image-type' in mode-line format string.
3316 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3317 (image-mode-as-text): New function with most code from
3318 `image-mode-maybe'.
3319 (image-toggle-display-text): Move code that removes image
3320 properties from `image-toggle-display' to here.
3321 (image-toggle-display-image): New function with code that adds
3322 image properties copied from `image-toggle-display'.
3323 (image-toggle-display): Remove most code with leaving only code
3324 that toggles between `image-mode-as-text' and `image-mode'.
3325
3326 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
3327
3328 * net/newst-treeview.el
3329 (newsticker--treeview-list-highlight-start): Restored call to
3330 save-excursion: Selected item was stuck.
3331 (newsticker--treeview-list-select): New.
3332 (newsticker--treeview-item-show-text)
3333 (newsticker--treeview-item-show)
3334 (newsticker--treeview-item-update): Use new
3335 newsticker-treeview-item-mode.
3336 (newsticker-treeview-update): Keep current item.
3337 (newsticker-treeview-next-new-or-immortal-item): Doc change.
3338 (newsticker--treeview-first-feed): Doc change.
3339 (newsticker-treeview-list-menu)
3340 (newsticker-treeview-item-menu): Added menu entries.
3341 (newsticker-treeview-item-mode): New.
3342
3343 * net/newst-backend.el (newsticker-customize): Delete other
3344 windows.
3345
3346 2009-12-04 Sam Steingold <sds@gnu.org>
3347
3348 * log-view.el (log-view-mode-map): "q" calls quit-window,
3349 like in all the other non-self-insert buffers.
3350
3351 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3352
3353 Minor cleanup.
3354 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3355 key decoding rather than do it manually via last-input-event +
3356 ascii-character.
3357 (term-exec): Use delete-and-extract-region.
3358 (term-handle-ansi-terminal-messages): Remove unused var `end'.
3359 (term-process-pager): Remove unused var `i'.
3360 (term-dynamic-simple-complete): Make obsolete.
3361 (serial-update-config-menu): Remove unused vars `y' and `str'.
3362 (term-update-mode-line): Remove unused var `temp'.
3363
3364 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3365
3366 Limit the number of log entries displayed by default.
3367 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3368 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3369 using a prefix argument.
3370
3371 2009-12-03 Glenn Morris <rgm@gnu.org>
3372
3373 * progmodes/idlwave.el (class): Restore still useful declaration.
3374
3375 2009-12-03 Alan Mackenzie <acm@muc.de>
3376
3377 Enhance `c-parse-state' to run efficiently in "brace deserts".
3378
3379 * progmodes/cc-mode.el (c-basic-common-init):
3380 Call c-state-cache-init.
3381 (c-neutralize-syntax-in-and-mark-CPP): Rename from
3382 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
3383 placing `category' properties value 'c-cpp-delimiter at its boundaries.
3384
3385 * progmodes/cc-langs.el (c-before-font-lock-function):
3386 c-extend-and-neutralize-syntax-in-CPP has been renamed
3387 c-neutralize-syntax-in-and-mark-CPP.
3388
3389 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3390 with `category' properties now, not `syntax-table' ones.
3391
3392 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3393 enhanced (but slower) version of c-end-of-macro that won't land
3394 inside a literal or on another awkward character.
3395 (c-state-cache-too-far, c-state-cache-start)
3396 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3397 (c-state-nonlit-pos-cache-limit, c-state-point-min)
3398 (c-state-point-min-lit-type, c-state-point-min-lit-start)
3399 (c-state-min-scan-pos, c-state-brace-pair-desert)
3400 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3401 buffer local variables.
3402 (c-state-literal-at, c-state-lit-beg)
3403 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3404 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3405 (c-state-cache-top-paren, c-state-cache-after-top-paren)
3406 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3407 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3408 (c-renarrow-state-cache)
3409 (c-append-lower-brace-pair-to-state-cache)
3410 (c-state-push-any-brace-pair, c-append-to-state-cache)
3411 (c-remove-stale-state-cache)
3412 (c-remove-stale-state-cache-backwards, c-state-cache-init)
3413 (c-invalidate-state-cache-1, c-parse-state-1)
3414 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3415 (c-parse-state): Enhance and refactor.
3416 (c-debug-parse-state): Amend to deal with all the new variables.
3417
3418 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3419 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3420 modify to use category text properties rather than syntax-table ones.
3421 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3422 to switch off/on the syntactic paren property of C++ template
3423 delimiters using the category property.
3424 (c-with-<->-as-parens-suppressed): Macro to invoke code with
3425 template delims suppressed.
3426 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3427 New constant/macros which apply category properties to the start
3428 and end of preprocessor constructs.
3429 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3430 "comment out" the syntactic value of characters in preprocessor
3431 constructs.
3432 (c-with-cpps-commented-out)
3433 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3434 with characters in all or all but one preprocessor constructs
3435 "commented out".
3436
3437 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3438
3439 * proced.el (proced-filter-alist): Use regexp-quote.
3440
3441 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
3442
3443 Cleanup.
3444 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3445 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
3446 arguments. Expand `default-directory'.
3447
3448 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3449 the benefit of returning an expanded localname.
3450 (tramp-tramp-file-p): Handle the case NAME is not a string.
3451
3452 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3453
3454 Add support for bzr shelve/unshelve.
3455 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3456 (vc-bzr-extra-menu-map): New variables.
3457 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3458 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3459 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3460 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3461 (vc-bzr-dir-extra-headers): Display shelves.
3462
3463 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3464
3465 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3466
3467 * textmodes/bibtex.el (bibtex-complete-internal):
3468 Use completion-in-region.
3469 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3470
3471 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3472
3473 Support applying stashes. Improve UI.
3474 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3475 (vc-git-stash-apply, vc-git-stash-pop)
3476 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3477 (vc-git-stash-menu): New functions.
3478 (vc-git-stash-menu-map): New variable.
3479 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3480
3481 2009-12-03 Glenn Morris <rgm@gnu.org>
3482
3483 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3484 (vc-print-log-internal): Fix previous change.
3485 (vc-revert): Correct pluralization.
3486
3487 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3488
3489 * progmodes/make-mode.el (makefile-special-targets-list): No need for
3490 it to be an alist any more.
3491 (makefile-complete): Use completion-in-region.
3492
3493 * progmodes/octave-mod.el (octave-complete-symbol):
3494 Use completion-in-region.
3495
3496 Misc cleanup.
3497 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3498 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3499 (idlwave-complete-class): Don't quote lambda.
3500 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3501 (idlwave-mode-map): Move initialization into declaration.
3502 (idlwave-action-and-binding): Use backquotes.
3503 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3504 Simplify.
3505 (idlwave-is-pointer-dereference): Remove unused var `pos'.
3506 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3507 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3508 `parts', and `all-parts'.
3509 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3510 (idlwave-convert-xml-system-routine-info): Remove unused string
3511 `version-string'.
3512 (idlwave-display-user-catalog-widget): Use dolist.
3513 (idlwave-scanning-lib): Declare dynamically-scoped var.
3514 (idlwave-scan-library-catalogs): Remove unused var `flags'.
3515 (completion-highlight-first-word-only): Declare to silence bytecomp.
3516 (idlwave-popup-select): Tighten scope of `resp'.
3517 (idlwave-find-struct-tag): Remove unused var `beg'.
3518 (idlwave-after-load-rinfo-hook): Declare.
3519 (idlwave-sintern-class-info): Remove unused var `taglist'.
3520 (idlwave-find-class-definition): Remove unused var `list'.
3521 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
3522 (idlwave-what-module-find-class): Remove unused var `classes'.
3523
3524 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
3525
3526 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
3527
3528 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3529
3530 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
3531 buffers visited. Remove redundant current-buffer-saving.
3532
3533 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3534
3535 Use completion-in-buffer and remove uses of dynamic scoping.
3536 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
3537 (pascal-buffer-to-use, pascal-flag): Don't declare.
3538 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
3539 (pascal-get-completion-decl, pascal-keyword-completion):
3540 Add `pascal-str' argument, save-excursion,
3541 return the found completions, and don't filter with pascal-pred.
3542 (pascal-completion-cache): New var.
3543 (pascal-completion): Don't switch buffer any more (it was never
3544 necessary). Don't save-excursion any more (it's done by the called
3545 subroutines). Use a cache to avoid redundant computations.
3546 Use complete-with-action rather than pascal-completion-response and
3547 let it apply the predicate as well.
3548 (pascal-complete-word): Use completion-in-buffer when
3549 pascal-toggle-completions is nil.
3550 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
3551 not used any more.
3552 (pascal-comp-defun): Don't change buffer any more.
3553 Use complete-with-action rather than pascal-completion-response and
3554 let it apply the predicate as well.
3555 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
3556 when neded.
3557
3558 2009-12-02 Kenichi Handa <handa@m17n.org>
3559
3560 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
3561 shape for all Indic scripts.
3562
3563 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3564
3565 Use completion-in-buffer.
3566 * wid-edit.el (widget-field-text-end): New function.
3567 (widget-field-value-get): Use it.
3568 (widget-string-complete, widget-file-complete)
3569 (widget-color-complete): Use it and completion-in-region.
3570 (widget-complete): Don't narrow the buffer.
3571
3572 2009-12-02 Glenn Morris <rgm@gnu.org>
3573
3574 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
3575 (rmail-select-summary): Use rmail-pop-to-buffer.
3576 * mail/rmailsum.el: Replace all pop-to-buffer calls with
3577 rmail-pop-to-buffer, to prevent horizontal splits.
3578
3579 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
3580 save-excursion with save-current-buffer.
3581 Widen before searching. (Bug#5093)
3582 (diary-list-sexp-entries): Remove superfluous save-excursion.
3583
3584 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
3585
3586 * woman.el (woman-make-bufname): Handle man-pages with "." in the
3587 name. (Bug#5038)
3588
3589 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
3590
3591 * ido.el (ido-file-internal): Handle filenames at point that do
3592 not have a directory part. (Bug#5049)
3593
3594 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
3595
3596 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
3597 (mpc-songs-jump-to, mpc-resume): Doc fixes.
3598
3599 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
3600
3601 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
3602 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
3603 any more.
3604
3605 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
3606
3607 * comint.el (comint-insert-input): Ignore clicks to the right of
3608 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
3609
3610 * vc.el (vc-print-log-internal): Don't wait for the process to
3611 terminate before setting up the major mode.
3612
3613 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
3614 in case.
3615
3616 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
3617 the last element.
3618
3619 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
3620
3621 2009-12-01 Glenn Morris <rgm@gnu.org>
3622
3623 * window.el (window--display-buffer-2): Fix previous changes.
3624
3625 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
3626
3627 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
3628
3629 2009-12-01 Glenn Morris <rgm@gnu.org>
3630
3631 * Makefile.in (ELCFILES): Add mpc.elc.
3632
3633 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
3634
3635 * mpc.el: New file.
3636
3637 2009-12-01 Glenn Morris <rgm@gnu.org>
3638
3639 * window.el (window-to-use): Define for compiler.
3640
3641 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
3642 consistent with others (no final period).
3643
3644 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
3645 (rmail-mime-show): Downcase the encoding. (Bug#5070)
3646
3647 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
3648
3649 Make vc-print-log buttons work.
3650 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
3651
3652 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
3653
3654 * savehist.el (savehist-autosave-interval): Allow setting to nil
3655 through customize. (Bug#5056)
3656
3657 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
3658
3659 Fix references to jit-lock properties.
3660 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3661 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
3662 (perl-font-lock-special-syntactic-constructs):
3663 Quote jit-lock-defer-multiline property.
3664
3665 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
3666
3667 * vc-git.el (vc-git-registered): Call vc-git-root only once.
3668
3669 2009-11-30 Juri Linkov <juri@jurta.org>
3670
3671 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
3672 value `buffer' of `multi-isearch-next-buffer-current-function'.
3673 Use `(current-buffer)' when `buffer' is nil.
3674 (multi-isearch-next-buffer-from-list): Don't fallback to
3675 `(current-buffer)' when `buffer' is nil. (Bug#4947)
3676
3677 2009-11-30 Juri Linkov <juri@jurta.org>
3678
3679 * misearch.el (multi-isearch-read-buffers): Move canonicalization
3680 of buffers with `get-buffer' to `multi-isearch-buffers'.
3681 (multi-isearch-buffers, multi-isearch-buffers-regexp):
3682 Canonicalize BUFFERS with `get-buffer'. Doc fix.
3683 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
3684 FILES with `expand-file-name' converting relative file names
3685 to absolute. Doc fix. (Bug#4727)
3686
3687 2009-11-30 Juri Linkov <juri@jurta.org>
3688
3689 * misearch.el (multi-isearch-read-buffers)
3690 (multi-isearch-read-matching-buffers): New functions.
3691 (multi-isearch-buffers, multi-isearch-buffers-regexp):
3692 Use them in the `interactive' spec. Doc fix.
3693 (multi-isearch-read-files, multi-isearch-read-matching-files):
3694 New functions.
3695 (multi-isearch-files, multi-isearch-files-regexp):
3696 Use them in the `interactive' spec. Doc fix. (Bug#4725)
3697
3698 2009-11-30 Juri Linkov <juri@jurta.org>
3699
3700 * doc-view.el (doc-view-continuous):
3701 Rename from `doc-view-continuous-mode'.
3702 (doc-view-menu): Move "Toggle display" to the top.
3703 Add submenu "Continuous" with radio buttons "Off"/"On"
3704 and "Save as Default".
3705 (doc-view-scroll-up-or-next-page)
3706 (doc-view-scroll-down-or-previous-page)
3707 (doc-view-next-line-or-next-page)
3708 (doc-view-previous-line-or-previous-page): Rename
3709 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
3710
3711 2009-11-30 Juri Linkov <juri@jurta.org>
3712
3713 * comint.el (comint-mode-map): Rebind `M-r' from
3714 `comint-previous-matching-input' to
3715 `comint-history-isearch-backward-regexp'.
3716 Unbind `M-s' to allow global key binding `M-s'.
3717 Add menu items for `comint-history-isearch-backward' and
3718 `comint-history-isearch-backward-regexp'. (Bug#3746)
3719
3720 2009-11-30 Juri Linkov <juri@jurta.org>
3721
3722 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
3723 For def=recenter, replace `recenter' with `recenter-top-bottom'
3724 that is called with `this-command' and `last-command' let-bound
3725 to `recenter-top-bottom'. When the last `def' was not `recenter',
3726 set `recenter-last-op' to nil. (Bug#4981)
3727
3728 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
3729
3730 Minor cleanup and simplification.
3731 * filecache.el (file-cache-add-directory)
3732 (file-cache-add-directory-recursively)
3733 (file-cache-add-from-file-cache-buffer)
3734 (file-cache-delete-file-regexp, file-cache-delete-directory)
3735 (file-cache-files-matching-internal, file-cache-display): Use dolist.
3736 (file-cache-temp-minibuffer-message): Delete function.
3737 (file-cache-minibuffer-complete): Use minibuffer-message instead.
3738
3739 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
3740 Don't signal an error when bumping into EOB in tr, s, or y.
3741
3742 2009-11-29 Juri Linkov <juri@jurta.org>
3743
3744 * startup.el (fancy-about-text): Fix wording of Guided Tour.
3745 (Bug#4960)
3746
3747 * descr-text.el (describe-char-unidata-list): Use lowercase name
3748 for "Unicode name" like in other tags.
3749
3750 2009-11-29 Juri Linkov <juri@jurta.org>
3751
3752 * ediff-util.el (ediff-minibuffer-with-setup-hook):
3753 New compatibility macro.
3754 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
3755
3756 2009-11-29 Juri Linkov <juri@jurta.org>
3757
3758 Add defcustom to define the cycling order of `recenter-top-bottom'.
3759 (Bug#4981)
3760
3761 * window.el (recenter-last-op): Doc fix.
3762 (recenter-positions): New defcustom.
3763 (recenter-top-bottom): Rewrite to use `recenter-positions'.
3764 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
3765
3766 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
3767
3768 Improve integration of Tramp and ange-ftp in eshell.
3769
3770 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
3771 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
3772 (eshell/sudo): Flatten args. Let-bind `default-directory'.
3773
3774 * eshell/esh-util.el (top): Require also Tramp when compiling.
3775 (eshell-directory-files-and-attributes): Check for FTP remote
3776 connection.
3777 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
3778 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
3779 (eshell-file-attributes): Handle ".". Return `entry'.
3780
3781 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
3782 (ange-ftp-directory-files-and-attributes)
3783 (ange-ftp-real-directory-files-and-attributes): New defuns.
3784
3785 * net/tramp.el (tramp-maybe-open-connection): Open the remote
3786 shell with "exec" when possible. This prevents trailing prompts
3787 in `start-file-process'.
3788
3789 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
3790
3791 Try and remove assumptions about point-min==1.
3792 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
3793 (rng-compute-mode-line-string): Show the validation percentage in
3794 terms of the narrowed text, not the widened text.
3795 (rng-do-some-validation): Don't catch internal errors when debugging.
3796 (rng-first-error): Simplify.
3797 (rng-after-change-function): Remove work around. AFAIK the bug has
3798 been fixed a while ago.
3799
3800 * image-mode.el (image-minor-mode): Exit more gracefully when the image
3801 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
3802
3803 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
3804
3805 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
3806 `cd' doesn't always do it for us (bug#5067).
3807
3808 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
3809 on 2009-10-25 as part of some other change (bug#5067).
3810
3811 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3812
3813 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
3814 `suspicious'.
3815 (byte-compile-warnings): Use byte-compile-warning-types.
3816 (byte-compile-save-excursion): Warn about use of set-buffer right
3817 after save-excursion.
3818
3819 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
3820 the excursion as well.
3821
3822 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
3823
3824 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
3825 providing a Tramp related implementation of "su" and "sudo".
3826 (eshell-unix-initialize): Add "su" and "sudo".
3827
3828 2009-11-27 Daiki Ueno <ueno@unixuser.org>
3829
3830 * net/socks.el (socks-send-command): Convert binary request to
3831 unibyte before sending. This fixes mishandling of some port
3832 numbers such as 129.
3833
3834 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3835
3836 * help.el (describe-bindings-internal): Remove `interactive'.
3837
3838 * man.el (Man-completion-table): Trim a terminating "(".
3839 Remove the space between name page a section.
3840 Add the command's description on the `help-echo' property.
3841 Remove `process-connection-type' binding since it's unused by
3842 call-process.
3843 Provide completion for the "<section> <name>" format as well.
3844 (Man-default-man-entry): Remove spurious var shadowing the argument.
3845
3846 2009-11-26 Kevin Ryde <user42@zip.com.au>
3847
3848 * log-view.el: Add "Keywords: tools", since its other keywords
3849 aren't in finder-known-keywords, and following vc.el.
3850
3851 * sha1.el (sha1-string-external): default-directory "/" in case
3852 otherwise non-existent. process-connection-type pipe for touch of
3853 efficiency recommended by elisp manual. (An aside in Bug#3911.)
3854
3855 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3856
3857 Misc coding convention cleanups.
3858 * htmlfontify.el (hfy-init-kludge-hook): Rename from
3859 hfy-init-kludge-hooks.
3860 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
3861 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
3862 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
3863 and push.
3864 (hfy-slant, hfy-weight): Use tables rather than code.
3865 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
3866 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
3867 (hfy-face-attr-for-class): Initialize `face-spec' directly.
3868 (hfy-face-to-css): Remove `nconc' with single arg.
3869 (hfy-p-to-face-lennart): Use `or'.
3870 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
3871 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
3872 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
3873 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
3874 (hfy-force-fontification): Use run-hooks.
3875
3876 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
3877
3878 Various minor fixes.
3879 * htmlfontify.el (hfy-default-header): Add toggle_invis since
3880 Javascript belongs in the header, not the body.
3881 (hfy-javascript): Remove.
3882 (hfy-fontify-buffer): Don't insert it any more.
3883 (hfy-face-at): Handle (face0 face1 face2) style face properties.
3884 Fix bug in invis handling when there were no invis props in a chunk.
3885
3886 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3887
3888 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
3889
3890 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
3891
3892 * finder.el (finder-mode-map): Add a menu.
3893
3894 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
3895
3896 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
3897 "unsigned" structs.
3898
3899 (verilog-leap-to-head, verilog-backward-token): Handle "disable
3900 fork" statement better.
3901
3902 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
3903
3904 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
3905 (verilog-delete-auto, verilog-delete-empty-auto-pair)
3906 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
3907 Reported by Clay Douglass.
3908
3909 (verilog-auto-inst, verilog-auto-star-safe)
3910 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
3911 Fix removing "// Interfaces" when saving .* expansions. Reported by
3912 Pierre-David Pfister.
3913
3914 2009-11-26 Glenn Morris <rgm@gnu.org>
3915
3916 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
3917 the scope.
3918
3919 2009-11-25 Johan Bockgård <bojohan@gnu.org>
3920
3921 * vc-annotate.el (vc-annotate-revision-previous-to-line):
3922 Really use previous revision.
3923
3924 2009-11-25 Kevin Ryde <user42@zip.com.au>
3925
3926 * man.el (Man-completion-table): default-directory "/" in case
3927 doesn't otherwise exist. process-environment COLUMNS=999 so as
3928 not to truncate long names. process-connection-type pipe to avoid
3929 any chance of hitting the pseudo-tty TIOCGWINSZ.
3930 (man): completion-ignore-case t for friendliness and since man
3931 itself is case-insensitive on the command line.
3932 Further to Bug#3717.
3933
3934 * arc-mode.el: Add "Keywords: files", so the details in its
3935 commentary can be reached from finder-by-keyword.
3936 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
3937 editing mode, but it's comms related and sgml-mode.el has "comm"
3938 on that basis too.
3939 * textmodes/bibtex-style.el: Add "Keywords: tex".
3940 * international/isearch-x.el, international/ja-dic-cnv.el:
3941 * international/ja-dic-utl.el, international/kkc.el:
3942 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
3943
3944 2009-11-25 Juri Linkov <juri@jurta.org>
3945
3946 * man.el (Man-completion-table): Modify regexp to include
3947 section names to completion strings. (Bug#3717)
3948
3949 2009-11-25 Juri Linkov <juri@jurta.org>
3950
3951 Search recursively in gzipped files. (Bug#4982)
3952
3953 * progmodes/grep.el (grep-highlight-matches): Add new options
3954 `always' and `auto'. Doc fix.
3955 (grep-process-setup): Check `grep-highlight-matches' for
3956 `auto-detect' to determine the need to compute grep defaults.
3957 Move Windows/DOS specific --colors settings handling
3958 to `grep-compute-defaults'. Check `grep-highlight-matches'
3959 to get the value of "--color=".
3960 (grep-compute-defaults): Compute `grep-highlight-matches' when it
3961 has the value `auto-detect'. Move Windows/DOS specific settings
3962 from `grep-process-setup'.
3963 (zrgrep): New command with alias `rzgrep'.
3964
3965 2009-11-25 Juri Linkov <juri@jurta.org>
3966
3967 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
3968 to nil instead of switching off view-mode. (Bug#4896)
3969
3970 2009-11-25 Juri Linkov <juri@jurta.org>
3971
3972 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
3973
3974 * mwheel.el (mwheel-scroll-up-function)
3975 (mwheel-scroll-down-function): New defvars.
3976 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
3977 `scroll-up', and `mwheel-scroll-down-function' instead of
3978 `scroll-down'.
3979
3980 * doc-view.el (doc-view-scroll-up-or-next-page)
3981 (doc-view-scroll-down-or-previous-page): Add optional ARG.
3982 Use this ARG in the call to image-scroll-up/image-scroll-down.
3983 Change `interactive' spec to "P". Goto next/previous page only
3984 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
3985 SPC/DEL case). Doc fix.
3986 (doc-view-next-line-or-next-page)
3987 (doc-view-previous-line-or-previous-page): Rename arg to ARG
3988 for consistency.
3989 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
3990 `doc-view-scroll-up-or-next-page', and buffer-local
3991 `mwheel-scroll-down-function' to
3992 `doc-view-scroll-down-or-previous-page'.
3993
3994 2009-11-25 Juri Linkov <juri@jurta.org>
3995
3996 Provide additional default values (directories at other Dired
3997 windows) via M-n in the minibuffer of some Dired commands.
3998
3999 * dired-aux.el (dired-diff, dired-compare-directories)
4000 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
4001 `minibuffer-default' in `minibuffer-with-setup-hook'.
4002 (dired-dwim-target-directory): Find a window that displays Dired
4003 buffer instead of failing when the next window is not Dired.
4004 Use `get-window-with-predicate' to find for the next Dired window.
4005 (dired-dwim-target-defaults): New function.
4006
4007 * ediff-util.el (ediff-read-file-name):
4008 Use `dired-dwim-target-defaults' to set `minibuffer-default'
4009 in `minibuffer-with-setup-hook'.
4010
4011 2009-11-25 Juri Linkov <juri@jurta.org>
4012
4013 Provide additional default values (file name at point or at the
4014 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
4015
4016 * minibuffer.el (read-file-name-defaults): New function.
4017 (read-file-name): Reset `minibuffer-default' to nil when
4018 it duplicates initial input `insdef'.
4019 Bind `minibuffer-default-add-function' to lambda that
4020 calls `read-file-name-defaults' in `minibuffer-selected-window'.
4021 (minibuffer-insert-file-name-at-point): New command.
4022
4023 * files.el (file-name-at-point-functions): New defcustom.
4024 (find-file-default): Remove defvar.
4025 (find-file-read-args): Don't use `find-file-default'.
4026 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4027 to `read-file-name'.
4028 (find-file-literally): Use `read-file-name' with
4029 `confirm-nonexistent-file-or-buffer'.
4030
4031 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
4032
4033 * dired.el (dired-read-dir-and-switches):
4034 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4035 to `read-file-name'.
4036 (dired-file-name-at-point): New function.
4037 (dired-mode): Add hook `dired-file-name-at-point' to
4038 `file-name-at-point-functions'.
4039
4040 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4041
4042 Really make the *Completions* window soft-dedicated (bug#5030).
4043 * window.el (window--display-buffer-2): Add `dedicated' argument.
4044 (display-buffer): Pass it when needed so the dedicated flag is set
4045 after calling set-window-buffer, which would otherwise reset it.
4046
4047 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4048
4049 * progmodes/meta-mode.el (meta-complete-symbol):
4050 * progmodes/etags.el (complete-tag):
4051 * mail/mailabbrev.el (mail-abbrev-complete-alias):
4052 Use completion-in-region.
4053
4054 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
4055 (dabbrev-completion): Use completion-in-region.
4056 (dabbrev--abbrev-at-point): Simplify regexp.
4057
4058 * abbrev.el (abbrev--before-point): Use word-motion functions
4059 if :regexp is not specified (bug#5031).
4060
4061 * subr.el (string-prefix-p): New function.
4062
4063 * man.el (Man-completion-cache): New var.
4064 (Man-completion-table): Use it.
4065
4066 * vc.el (vc-print-log-internal): Make `limit' optional for better
4067 compatibility (e.g. with vc-annotate.el).
4068
4069 2009-11-24 Kevin Ryde <user42@zip.com.au>
4070
4071 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4072 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
4073
4074 * emacs-lisp/elint.el (elint-add-required-env): Better error message
4075 when .el source file not found or other error.
4076
4077 2009-11-24 Markus Triska <markus.triska@gmx.at>
4078
4079 * linum.el (linum-update-window): Ignore intangible (bug#4996).
4080
4081 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4082
4083 Handle the [back] button properly (bug#4979).
4084 * descr-text.el (describe-text-properties): Add a `buffer' argument.
4085 Use help-setup-xref, help-buffer, and with-help-window.
4086 (describe-char): Add `buffer' argument.
4087 Pass proper command to help-setup-xref. Don't meddle with
4088 help-xref-stack-item directly.
4089 (describe-text-category): Use with-help-window and help-buffer.
4090
4091 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4092 for the displayed buffer (bug#4887).
4093
4094 * man.el (Man-completion-table): New function.
4095 (man): Use it.
4096
4097 2009-11-24 David Reitter <david.reitter@gmail.com>
4098
4099 * vc-git.el (vc-git-registered): Use checkout directory (where
4100 .git is) rather than the file's directory and a relative path spec
4101 to work around a bug in git.
4102
4103 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
4104
4105 Improve handling of processes on remote hosts.
4106
4107 * eshell/esh-util.el (eshell-path-env): New defvar.
4108 (eshell-parse-colon-path): New defun.
4109 (eshell-file-attributes): Use `eshell-parse-colon-path'.
4110
4111 * eshell/esh-ext.el (eshell-search-path):
4112 Use `eshell-parse-colon-path'.
4113 (eshell-remote-command): Remove argument HANDLER.
4114 (eshell-external-command): Check for FTP remote connection.
4115
4116 * eshell/esh-proc.el (eshell-gather-process-output):
4117 Use `file-truename', in order to start also symlinked files.
4118 Apply `start-file-process' instead of `start-process'.
4119 Shorten `command' to the local file name part.
4120
4121 * eshell/em-cmpl.el (eshell-complete-commands-list):
4122 Use `eshell-parse-colon-path'.
4123
4124 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4125
4126 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
4127 to `eshell-directory-change-hook'.
4128
4129 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
4130
4131 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4132 because it could be enabled automatically if view-read-only is non-nil.
4133
4134 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
4135
4136 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4137 made on 2009-11-22.
4138
4139 2009-11-24 Glenn Morris <rgm@gnu.org>
4140
4141 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4142 deleted variable bookmark-bmenu-bookmark-column.
4143
4144 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4145
4146 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4147
4148 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
4149
4150 * net/browse-url.el (browse-url-filename-alist): On Windows, add
4151 two slashes to the "file:" prefix.
4152 (browse-url-file-url): De-munge Cygwin filenames before passing
4153 them to Windows browser.
4154 (browse-url-default-windows-browser): Use call-process.
4155
4156 2009-11-23 Juri Linkov <juri@jurta.org>
4157
4158 Implement DocView Continuous mode. (Bug#4896)
4159 * doc-view.el (doc-view-continuous-mode): New defcustom.
4160 (doc-view-mode-map): Bind C-n/<down> to
4161 `doc-view-next-line-or-next-page', C-p/<up> to
4162 `doc-view-previous-line-or-previous-page'.
4163 (doc-view-next-line-or-next-page)
4164 (doc-view-previous-line-or-previous-page): New commands.
4165
4166 2009-11-23 Juri Linkov <juri@jurta.org>
4167
4168 Implement Isearch in comint input history. (Bug#3746)
4169 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4170 `isearch-mode-hook'.
4171 (comint-history-isearch): New defcustom.
4172 (comint-history-isearch-backward)
4173 (comint-history-isearch-backward-regexp): New commands.
4174 (comint-history-isearch-message-overlay): New buffer-local variable.
4175 (comint-history-isearch-setup, comint-history-isearch-end)
4176 (comint-goto-input, comint-history-isearch-search)
4177 (comint-history-isearch-message, comint-history-isearch-wrap)
4178 (comint-history-isearch-push-state)
4179 (comint-history-isearch-pop-state): New functions.
4180
4181 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
4182
4183 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4184 return.
4185 (tramp-handle-make-symbolic-link)
4186 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4187 Quote file names.
4188 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4189 (tramp-handle-process-file): Use it.
4190
4191 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4192
4193 * window.el (move-to-window-line-last-op): Remove.
4194 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4195
4196 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4197
4198 Make M-r mirror the new cycling behavior of C-l.
4199 * window.el (move-to-window-line-last-op): New var.
4200 (move-to-window-line-top-bottom): New command.
4201 (global-map): Bind M-r move-to-window-line-top-bottom.
4202
4203 2009-11-23 Sven Joachim <svenjoac@gmx.de>
4204
4205 * dired-x.el (dired-guess-shell-alist-default):
4206 Support xz format. (Bug#4953)
4207
4208 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
4209
4210 * emulation/viper-cmd.el: Use viper-last-command-char instead of
4211 last-command-char/last-command-event.
4212 (viper-prefix-arg-value): Do correct conversion of event-char for
4213 XEmacs.
4214
4215 * emulation/viper-util.el, emulation/viper.el:
4216 Use viper-last-command-char instead of
4217 last-command-char/last-command-event.
4218
4219 * ediff-init.el, ediff-mult.el, ediff-util.el:
4220 Replace last-command-char and last-command-event
4221 with (ediff-last-command-char) everywhere.
4222
4223 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4224 created in fundamental mode.
4225
4226 * ediff.el (ediff-version): Revert the change of interactive-p to
4227 called-interactively-p.
4228
4229 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
4230
4231 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4232 generation from word-movement command names.
4233
4234 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
4235
4236 * cus-start.el (all): Add native condition for font-use-system-font.
4237
4238 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
4239
4240 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4241 Correct the patch from 2009-11-18. (Bug#3910)
4242
4243 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
4244
4245 * progmodes/subword.el: Rename from lisp/subword.el.
4246
4247 * subword.el: Rename to progmodes/subword.el.
4248
4249 * Makefile.in (ELCFILES): Adapt to subword.el move.
4250
4251 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4252 Stefan Monnier <monnier@iro.umontreal.ca>
4253
4254 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4255 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4256 (bookmark-bmenu-show-filenames): Use push.
4257 (bookmark-bmenu-hide-filenames): Use local var instead of
4258 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
4259 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4260 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4261 filenames now that the bookmark names are always available.
4262
4263 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4266 (bookmark-search-pattern): Move and leave unbound.
4267 (bookmark-bmenu-mode-map): Change binding.
4268 (bookmark-read-search-input): Simplify.
4269 Don't use text-char-description. Don't error on non-char events.
4270 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4271 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4272 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4273 Use a local var for the timer.
4274 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4275 (i.e. bookmark-bmenu-search).
4276
4277 2009-11-21 Glenn Morris <rgm@gnu.org>
4278
4279 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
4280
4281 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
4282
4283 * net/browse-url.el (browse-url-default-windows-browser):
4284 Use cygstart for cygwin.
4285
4286 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
4287
4288 * bookmark.el: Formatting and doc fixes only:
4289 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4290 (bookmark-bmenu-search): Wrap to fit within 80 columns.
4291 Minor grammar and punctuation fixes in doc string.
4292 (bookmark-read-search-input): Adjust to fit within 80 columns.
4293
4294 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4295
4296 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4297 (c-backward-into-nomenclature): Adapt to subword renaming.
4298
4299 * subword.el (subword-forward, subword-backward, subword-mark)
4300 (subword-kill, subword-backward-kill, subword-transpose)
4301 (subword-downcase, subword-upcase, subword-capitalize)
4302 (subword-forward-internal, subword-backward-internal):
4303 Rename from forward-subword, backward-subword, mark-subword,
4304 kill-subword, backward-kill-subword, transpose-subwords,
4305 downcase-subword, upcase-subword, capitalize-subword,
4306 forward-subword-internal, backward-subword-internal.
4307
4308 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4309
4310 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4311 New options.
4312 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4313 New vars.
4314 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4315 (bookmark-bmenu-filter-alist-by-regexp)
4316 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4317 (bookmark-bmenu-search): New command.
4318 (bookmark-bmenu-mode-map): Bind it.
4319
4320 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4321
4322 * progmodes/cc-cmds.el: declare-functioned forward-subword and
4323 backward-subword to quit the byte-compiler.
4324
4325 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4326
4327 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4328
4329 * progmodes/cc-cmds.el (c-update-modeline)
4330 (c-forward-into-nomenclature, c-backward-into-nomenclature):
4331 Refer to subword.el functions instead of cc-subword.el.
4332
4333 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4334 subword.el functions instead of cc-subword.el.
4335
4336 * progmodes/cc-subword.el: Rename to subword.el.
4337 * subword.el: Rename from progmodes/cc-subword.el.
4338 (subword-mode-map): Rename from c-subword-mode-map.
4339 (subword-mode): Rename from c-subword-mode.
4340 (global-subword-mode): New global minor mode.
4341 (forward-subword): Rename from c-forward-subword.
4342 (backward-subword): Rename from c-backward-subword.
4343 (mark-subword): Rename from c-mark-subword.
4344 (kill-subword): Rename from c-kill-subword.
4345 (backward-kill-subword): Rename from c-backward-kill-subword.
4346 (transpose-subwords): Rename from c-tranpose-subword.
4347 (downcase-subword): Rename from c-downcase-subword.
4348 (capitalize-subword): Rename from c-capitalize-subword.
4349 (forward-subword-internal): Rename from c-forward-subword-internal.
4350 (backward-subword-internal): Rename from c-backward-subword-internal.
4351
4352 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
4353
4354 * vc.el (vc-deduce-fileset): Allow non-state changing operations
4355 from a dired buffer.
4356 (vc-dired-deduce-fileset): New function.
4357 (vc-root-diff, vc-print-root-log): Use it.
4358
4359 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4360 nil LIMIT argument to vc-print-log-internal.
4361
4362 2009-11-20 Glenn Morris <rgm@gnu.org>
4363
4364 * Makefile.in (ELCFILES): Regenerate.
4365
4366 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
4367
4368 * calc/calc.el (calc-set-mode-line):
4369 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4370 (math-format-number): Rename `math-format-complement-signed' to
4371 `math-format-twos-complement'.
4372
4373 * calc/calc-bin.el (math-format-twos-complement): Rename from
4374 math-format-complement-signed.
4375 (calc-radix): Rename `calc-complement-signed-mode' to
4376 `calc-twos-complement-mode'.
4377 (calc-octal-radix, calc-hex-radix): Add an argument for
4378 two's complement.
4379
4380 * calc/calc-embed.el (calc-embedded-mode-vars):
4381 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4382
4383 * calc/calc-ext.el (calc-init-extensions):
4384 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4385 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4386
4387 * calc/calc-units.el (math-build-units-table-buffer):
4388 Let `calc-twos-complement-mode' be nil.
4389
4390 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4391 entries.
4392
4393 * calc/calc-vec.el (calcFunc-vunpack):
4394 * calc/calc-aent.el (calc-do-calc-eval):
4395 * calc/calc-forms.el (math-format-date):
4396 * calc/calc-graph.el (calc-graph-plot):
4397 * calc/calc-math.el (math-use-emacs-fn):
4398 * calc/calccomp.el (math-compose-expr):
4399 Let `calc-twos-complement-mode' be nil.
4400
4401 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4402
4403 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4404 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
4405 * minibuffer.el (completion-in-region-functions): New hook.
4406 (completion-in-region): New function.
4407 * emacs-lisp/lisp.el (lisp-complete-symbol):
4408 * pcomplete.el (pcomplete-std-complete): Use it.
4409
4410 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4411
4412 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4413 (latex-complete-alist): New vars.
4414 (latex-string-prefix-p, latex-complete-bibtex-keys)
4415 (latex-complete-envnames, latex-complete-refkeys)
4416 (latex-complete-data): New functions.
4417 (latex-complete, latex-indent-or-complete): New commands.
4418
4419 * window.el (display-buffer-mark-dedicated): New var.
4420 (display-buffer): Obey it.
4421 * minibuffer.el (minibuffer-completion-help): Use it.
4422
4423 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4424
4425 * filecache.el (file-cache-add-file): Use push and cons.
4426 (file-cache-delete-file-regexp): Use push.
4427 (file-cache-complete): Use completion-in-region.
4428
4429 * simple.el (with-wrapper-hook): Fix thinko.
4430
4431 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4432 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4433 Use with-current-buffer and string-to-number.
4434 (hfy-fallback-colour-values): Use assoc-string.
4435 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4436 (hfy-face-at): Remove unused var `found-face'.
4437 (hfy-compile-stylesheet): Remove unused var `css'.
4438 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4439 and `orig-buffer'.
4440 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
4441 Use with-current-buffer.
4442 (hfy-text-p): Use expand-file-name and fewer setq.
4443
4444 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
4445
4446 * htmlfontify.el, hfy-cmap.el: New files.
4447
4448 2009-11-19 Juri Linkov <juri@jurta.org>
4449
4450 * minibuffer.el (completions-format): New defcustom.
4451 (completion--insert-strings): Implement vertical format.
4452
4453 * simple.el (switch-to-completions): Move point to the first
4454 completion when point was at the beginning of the buffer.
4455
4456 2009-11-19 Juri Linkov <juri@jurta.org>
4457
4458 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
4459
4460 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
4461
4462 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
4463
4464 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
4465 (mail-signature): Change default to t.
4466 (mail-from-style): Deprecate `system-default' value.
4467 (mail-insert-from-field): For default value of mail-from-style,
4468 default to `angles' unless `angles' needs quoting and `parens'
4469 does not.
4470 (mail-citation-prefix-regexp): Use citation regexp from
4471 message-mode.
4472
4473 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
4474
4475 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
4476 Set variables for computing the prompt for reading password.
4477
4478 2009-11-19 Glenn Morris <rgm@gnu.org>
4479
4480 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
4481
4482 * textmodes/flyspell.el (sgml-lexical-context): Declare.
4483
4484 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
4485 (newsticker-treeview-listwindow-height): Fix custom type.
4486
4487 2009-11-19 Kenichi Handa <handa@m17n.org>
4488
4489 * descr-text.el (describe-char-padded-string): Compose with TAB
4490 only if there's a font for CH.
4491 (describe-char): Fix the condition for detecting a trivial composition.
4492
4493 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
4494
4495 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
4496 more accurate version of the regexp. (Bug#3910)
4497
4498 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
4499
4500 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
4501
4502 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
4503
4504 * font-setting.el (font-use-system-font): Declare for byte-compiler.
4505 (font-setting-change-default-font): Fix typo in docstring.
4506
4507 2009-11-18 Alan Mackenzie <acm@muc.de>
4508
4509 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
4510
4511 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4512
4513 * font-setting.el (font-use-system-font): Move ...
4514
4515 * cus-start.el (all): ... to here.
4516
4517 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
4518
4519 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
4520 Don't set `ad-return-value' if `ad-do-it' doesn't.
4521
4522 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
4523 modification time.
4524
4525 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4526
4527 * menu-bar.el: Put "Use system font" in Option-menu.
4528 (menu-bar-options-save): Add font-use-system-font.
4529
4530 * loadup.el: If feature system-font-setting or font-render-setting is
4531 there, load font-setting.
4532
4533 * Makefile.in (ELCFILES): Add font-settings.el.
4534 * font-setting.el: New file.
4535
4536 2009-11-17 Glenn Morris <rgm@gnu.org>
4537
4538 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
4539
4540 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
4541 Preserve point in the list buffer. (Bug#4939)
4542 Use point-at-eol.
4543 (newsticker--treeview-list-update-highlight)
4544 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
4545
4546 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
4547
4548 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
4549 Remove.
4550
4551 * calc/calc-ext.el (calc-init-extensions): Remove references to
4552 symclip.
4553
4554 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
4555
4556 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
4557 * calc/calc-help.el (calc-b-prefix-help): Remove references to
4558 `calc-symclip'.
4559
4560 2009-11-16 Kevin Ryde <user42@zip.com.au>
4561
4562 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
4563 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
4564
4565 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
4566 (lm-keywords-list): Allow comma-only separator like "foo,bar".
4567 Ignore trailing spaces by omit-nulls to split-string (fixing
4568 regression from Emacs 21 due to the incompatible split-string
4569 change). (Bug #4928.)
4570
4571 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
4572
4573 * vc.el (vc-log-show-limit): Default to 2000.
4574 (vc-print-log-internal): Insert buttons to request more entries
4575 when limiting the output.
4576
4577 * vc-sccs.el (vc-sccs-print-log):
4578 * vc-rcs.el (vc-rcs-print-log):
4579 * vc-cvs.el (vc-cvs-print-log):
4580 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
4581 LIMIT is non-nil.
4582
4583 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
4584
4585 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
4586 error when `tramp-gvfs-dbus-event-vector' is set.
4587 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
4588
4589 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4590
4591 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
4592
4593 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
4594
4595 * net/dbus.el (dbus-unregister-service): New defun.
4596 (dbus-register-property): Register the handlers of
4597 "org.freedesktop.DBus.Properties" for SERVICE.
4598 (dbus-property-handler): Fix docstring.
4599
4600 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4601
4602 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
4603 Quote doc string reference in defvaralias as it is not in special form.
4604 (byte-compile-output-docform): Doc fix.
4605
4606 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
4607
4608 * calc/calc.el (math-2-word-size, math-half-2-word-size)
4609 (calc-complement-signed-mode): New variables.
4610 (calc-set-mode-line): Add indicator for twos-complements.
4611 (math-format-number): Format twos-complement notation.
4612
4613 * calc/calc-bin.el (calc-word-size): Reset the variables
4614 `math-2-word-size' and `math-half-2-word-size'.
4615 (math-format-complement-signed, math-symclip, calcFunc-symclip)
4616 (calc-symclip): New functions.
4617
4618 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
4619
4620 * calc/calc-embed.el (calc-embedded-mode-vars):
4621 Add `calc-complement-signed-mode' to the list of modes.
4622
4623 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
4624 (calc-b-oper-keys): Add `calc-symclip' to list.
4625
4626 * calc/calc-ext.el (math-read-number-fancy): Read complement
4627 signed numbers.
4628 (calc-init-extensions): Add binding for `calc-symclip'.
4629 Add autoload for `calcFunc-symclip' and `calc-symclip'.
4630
4631 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
4632 `calc-symclip'.
4633 (calc-modes-menu): Add item for twos complement mode.
4634
4635 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
4636
4637 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
4638
4639 * register.el (jump-to-register, insert-register): Handle Semantic
4640 tags. From commented-out advice in semantic/senator.el.
4641
4642 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
4643
4644 * vc.el (vc-log-show-limit): New variable.
4645 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
4646 when using a prefix argument.
4647 (vc-print-log-internal): Add new argument LIMIT.
4648
4649 * vc-svn.el (vc-svn-print-log):
4650 * vc-mtn.el (vc-mtn-print-log):
4651 * vc-hg.el (vc-hg-print-log):
4652 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
4653 pass it to the log command when set. Make the BUFFER argument
4654 non-optional.
4655
4656 * vc-sccs.el (vc-sccs-print-log):
4657 * vc-rcs.el (vc-rcs-print-log):
4658 * vc-git.el (vc-git-print-log):
4659 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
4660 ignore it. Make the BUFFER argument non-optional
4661
4662 * bindings.el (mode-line-buffer-identification): Do not purecopy.
4663
4664 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
4665
4666 * dired.el (dired-mode-map): Move encryption items to "Operate"
4667 menu (Bug#4703).
4668
4669 * strokes.el (strokes-update-window-configuration): Make strokes
4670 buffer current before erasing (Bug#4906).
4671
4672 2009-11-15 Juri Linkov <juri@jurta.org>
4673
4674 * simple.el (set-mark-default-inactive): Add :type, :group
4675 and :version. (Bug#4876)
4676
4677 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
4678
4679 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
4680 (archive-unique-fname): ... here. (Bug#4929)
4681
4682 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4683
4684 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
4685 with a real fix.
4686
4687 * novice.el (disabled-command-function): Add useful args.
4688 Setup the help buffer so that [back] works.
4689 Remove redundant call to help-mode.
4690 (disabled-command-function): Use `case'.
4691 (en/disable-command): New function extracted from enable-command.
4692 (enable-command, disable-command): Use it.
4693
4694 2009-11-14 Glenn Morris <rgm@gnu.org>
4695
4696 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
4697 constants. (Bug#4913)
4698
4699 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
4700
4701 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
4702
4703 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
4704 defined in C that have no doc-strings. (Bug#1063)
4705
4706 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
4707
4708 * cus-edit.el (data, files):
4709 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
4710
4711 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
4712
4713 * simple.el (shell-command): Doc fix (Bug#4891).
4714
4715 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
4716
4717 2009-11-14 Glenn Morris <rgm@gnu.org>
4718
4719 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
4720 statements for vc-diff, emerge-quit, and rmail-cease-edit.
4721 If they are already loaded, eval-after-load will do the right thing.
4722
4723 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
4724 compiling.
4725
4726 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
4727
4728 * simple.el (x-selection-owner-p): Declare.
4729 (read-mail-command): Use custom radio type rather than choice.
4730 (completion-no-auto-exit): Doc fix.
4731
4732 * custom.el (defgroup):
4733 * epg-config.el (epg): Doc fixes.
4734
4735 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
4736
4737 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
4738 * international/ccl.el (define-ccl-program): Do not purecopy the
4739 docstring, defconst does it anyway.
4740
4741 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4742
4743 * add-log.el (add-change-log-entry): Avoid displaying the changelog
4744 a second time.
4745
4746 * x-dnd.el (x-dnd-maybe-call-test-function):
4747 * window.el (split-window-vertically):
4748 * whitespace.el (whitespace-help-on):
4749 * vc-rcs.el (vc-rcs-consult-headers):
4750 * userlock.el (ask-user-about-lock-help)
4751 (ask-user-about-supersession-help):
4752 * type-break.el (type-break-force-mode-line-update):
4753 * time-stamp.el (time-stamp-conv-warn):
4754 * terminal.el (te-set-output-log, te-more-break, te-filter)
4755 (te-sentinel, terminal-emulator):
4756 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
4757 (term-write-input-ring, term-check-source, term-start-output-log):
4758 (term-display-buffer-line, term-dynamic-list-completions):
4759 (term-ansi-make-term, serial-term):
4760 * subr.el (selective-display):
4761 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
4762 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
4763 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
4764 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
4765 (speedbar-remove-localized-speedbar-support)
4766 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
4767 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
4768 (speedbar-buffers-line-directory):
4769 * simple.el (shell-command-on-region, append-to-buffer)
4770 (prepend-to-buffer):
4771 * shadowfile.el (shadow-save-todo-file):
4772 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
4773 (scroll-bar-maybe-set-window-start):
4774 * sb-image.el (speedbar-image-dump):
4775 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
4776 (load-save-place-alist-from-file):
4777 * ps-samp.el (ps-print-message-from-summary):
4778 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
4779 (ps-background-image, ps-begin-job, ps-do-despool):
4780 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
4781 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
4782 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
4783 (pr-call-process, pr-file-list, pr-interface-save):
4784 * novice.el (disabled-command-function)
4785 (enable-command, disable-command):
4786 * mouse.el (mouse-buffer-menu-alist):
4787 * mouse-copy.el (mouse-kill-preserving-secondary):
4788 * macros.el (kbd-macro-query):
4789 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
4790 * informat.el (batch-info-validate):
4791 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
4792 * hippie-exp.el (try-expand-dabbrev-visible):
4793 * help-mode.el (help-make-xrefs):
4794 * help-fns.el (describe-variable):
4795 * generic-x.el (bat-generic-mode-run-as-comint):
4796 * finder.el (finder-mouse-select):
4797 * find-dired.el (find-dired-sentinel):
4798 * filesets.el (filesets-file-close):
4799 * files.el (list-directory):
4800 * faces.el (list-faces-display, describe-face):
4801 * facemenu.el (list-colors-display):
4802 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
4803 * epg.el (epg--process-filter, epg-cancel):
4804 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
4805 (epa--read-signature-type):
4806 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
4807 (emerge-file-names):
4808 * ehelp.el (electric-helpify):
4809 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
4810 * ediff-vers.el (rcs-ediff-view-revision):
4811 * ediff-util.el (ediff-setup):
4812 * ediff-mult.el (ediff-append-custom-diff):
4813 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
4814 (ediff-wordify):
4815 * echistory.el (Electric-command-history-redo-expression):
4816 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4817 * disp-table.el (describe-display-table):
4818 * dired.el (dired-find-buffer-nocreate):
4819 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
4820 * dabbrev.el (dabbrev--same-major-mode-p):
4821 * chistory.el (list-command-history):
4822 * apropos.el (apropos-documentation):
4823 * allout.el (allout-obtain-passphrase):
4824 (allout-copy-exposed-to-buffer):
4825 (allout-verify-passphrase): Use with-current-buffer.
4826
4827 2009-11-13 Glenn Morris <rgm@gnu.org>
4828
4829 * Makefile.in (ELCFILES): Regenerate.
4830
4831 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
4832
4833 * net/dbus.el (dbus-registered-objects-table): Rename from
4834 `dbus-registered-functions-table', because it contains also properties.
4835 (dbus-unregister-object): Unregister also properties.
4836 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4837 Use a timeout of 500 msec, in order to not block.
4838 (dbus-register-property, dbus-property-handler): New defuns.
4839
4840 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4841
4842 * simple.el (minibuffer-default-add-completions): Drop deprecated
4843 4th arg.
4844
4845 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
4846
4847 * textmodes/artist.el (artist-mouse-choose-operation):
4848 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
4849 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
4850 (artist-compute-up-event-key): New function.
4851 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
4852
4853 2009-11-13 Kenichi Handa <handa@m17n.org>
4854
4855 * language/japan-util.el: Make sure that the value of jisx0208
4856 property is jisx0208 character.
4857
4858 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
4859
4860 * international/mule.el (auto-coding-regexp-alist): Only purecopy
4861 car or each item, not the whole list.
4862
4863 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4864
4865 * minibuffer.el (minibuffer-completion-help):
4866 Use minibuffer-hide-completions.
4867
4868 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
4869
4870 * dired.el (dired-save-positions, dired-restore-positions): New funs.
4871 (dired-revert): Use them (bug#4880).
4872
4873 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
4874
4875 * tooltip.el (tooltip-frame-parameters): Undo previous change.
4876
4877 2009-11-12 Juri Linkov <juri@jurta.org>
4878
4879 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
4880 New functions.
4881 (find-file-literally-at-point): Alias of `ffap-literally'.
4882
4883 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
4884
4885 * textmodes/ispell.el (ispell-skip-region-alist):
4886 * textmodes/css-mode.el (auto-mode-alist):
4887 * progmodes/compile.el (auto-mode-alist):
4888 * international/mule.el (ctext-non-standard-encodings-alist)
4889 (ctext-non-standard-encodings-regexp):
4890 * simple.el (shell-command-switch, text-read-only):
4891 * replace.el (occur-mode-map):
4892 * paths.el (rmail-file-name):
4893 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
4894 * find-file.el (ff-special-constructs):
4895 * files.el (file-name-handler-alist):
4896 * composite.el: Purecopy strings.
4897
4898 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
4899
4900 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
4901
4902 * widget.el (define-widget): Purecopy the docstring.
4903 * international/mule-cmds.el (charset): Do not purecopy the
4904 docstring here, define-widget does it.
4905
4906 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
4907 * textmodes/bibtex-style.el (auto-mode-alist):
4908 * progmodes/inf-lisp.el (inferior-lisp-prompt):
4909 * progmodes/compile.el (compile-command):
4910 * language/korea-util.el (default-korean-keyboard):
4911 * international/mule-conf.el (file-coding-system-alist):
4912 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
4913 * tooltip.el (tooltip-frame-parameters):
4914 * newcomment.el (comment-end, comment-padding):
4915 * dired.el (dired-trivial-filenames):
4916 * comint.el (comint-file-name-prefix): Purecopy initial values.
4917
4918 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
4919
4920 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
4921 (tramp-advice-minibuffer-electric-tilde): Unload advices via
4922 `tramp-unload'.
4923 (tramp-advice-make-auto-save-file-name)
4924 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
4925 after removing the advice.
4926
4927 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
4928
4929 * progmodes/grep.el (grep-regexp-alist):
4930 * international/mule-cmds.el (iso-2022-control-alist):
4931 * emacs-lisp/timer.el (timer-duration-words):
4932 * subr.el (version-separator, version-regexp-alist):
4933 * minibuffer.el (completion-styles-alist):
4934 * faces.el (face-attribute-name-alist, list-faces-sample-text):
4935 Change defvars to defconsts.
4936
4937 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
4938 * loadup.el ("international/mule-conf"): Load the byte compiled version.
4939 * international/mule-conf.el: Allow to be byte compiled.
4940
4941 * international/mule.el (define-charset): Purecopy props.
4942 (load-with-code-conversion): Purecopy doc string and file name.
4943 (put-charset-property): Purecopy strings.
4944 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
4945
4946 * international/mule-cmds.el (register-input-method): Purecopy arguments.
4947 (define-char-code-property): Correctly purecopy the table.
4948
4949 * international/ccl.el (define-ccl-program): Purecopy the docstring.
4950
4951 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
4952
4953 * subr.el (add-hook): Purecopy strings.
4954 (eval-after-load): Purecopy load-history-regexp and the form.
4955
4956 * custom.el (custom-declare-group): Purecopy load-file-name.
4957
4958 * subr.el (menu-bar-separator): New defconst.
4959 * net/eudc.el (eudc-tools-menu):
4960 * international/mule-cmds.el (set-coding-system-map)
4961 (mule-menu-keymap):
4962 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
4963 * vc-hooks.el (vc-menu-map):
4964 * replace.el (occur-mode-map):
4965 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
4966 (menu-bar-edit-menu, menu-bar-goto-menu)
4967 (menu-bar-custom-menu, menu-bar-showhide-menu)
4968 (menu-bar-options-menu, menu-bar-tools-menu)
4969 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
4970 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
4971 (menu-bar-help-menu):
4972 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
4973 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
4974
4975 * term/x-win.el (x-gtk-stock-map):
4976 * progmodes/vera-mode.el (auto-mode-alist):
4977 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
4978 (inferior-lisp-program, inferior-lisp-load-command):
4979 * progmodes/hideshow.el (hs-special-modes-alist):
4980 * progmodes/gud.el (same-window-regexps):
4981 * progmodes/grep.el (grep-program, find-program, xargs-program):
4982 * net/telnet.el (same-window-regexps):
4983 * net/rlogin.el (same-window-regexps):
4984 * language/ethiopic.el (font-ccl-encoder-alist):
4985 * vc-sccs.el (vc-sccs-master-templates):
4986 * vc-rcs.el (vc-rcs-master-templates):
4987 * subr.el (cl-assertion-failed):
4988 * simple.el (next-error-overlay-arrow-position):
4989 * lpr.el (lpr-command):
4990 * locate.el (locate-ls-subdir-switches):
4991 * info.el (same-window-regexps, info)
4992 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
4993 * image-mode.el (image-mode, auto-mode-alist):
4994 * hippie-exp.el (hippie-expand-ignore-buffers):
4995 * format.el (format-alist):
4996 * find-dired.el (find-ls-subdir-switches, find-grep-options)
4997 (find-name-arg):
4998 * facemenu.el (facemenu-keybindings):
4999 * dired.el (dired-listing-switches, dired-chown-program):
5000 * diff.el (diff-switches, diff-command):
5001 * cus-edit.el (same-window-regexps):
5002 * bindings.el (mode-line-mule-info)
5003 (mode-line-buffer-identification): Purecopy strings.
5004
5005 2009-11-11 Juri Linkov <juri@jurta.org>
5006
5007 * simple.el (dired-get-filename) <declare-function>:
5008 Tell the byte-compiler about dired-get-filename.
5009 (shell-command): In Dired mode, get filename from the current line
5010 as the default value.
5011
5012 2009-11-10 Glenn Morris <rgm@gnu.org>
5013
5014 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
5015 * calendar/holidays.el, progmodes/cperl-mode.el:
5016 Update x-popup-menu declarations.
5017
5018 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
5019 (list-load-path-shadows): Use dolist.
5020 (list-load-path-shadows): Use with-current-buffer.
5021
5022 2009-11-10 Juri Linkov <juri@jurta.org>
5023
5024 * minibuffer.el (read-file-name): Support a list of default values
5025 in `default-filename'. Use the first file name where only one
5026 element is required. Doc fix.
5027
5028 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
5029
5030 * net/dbus.el (dbus-unregister-object): Release service, if no
5031 other method is registered for it.
5032
5033 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
5034
5035 * bookmark.el (bookmark-completing-read): Sort bookmark names if
5036 bookmark-sort-flag is non-nil (Bug#4653).
5037
5038 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5039
5040 * emulation/cua-base.el: Add CUA property to some CC mode commands
5041 (Bug#4100).
5042
5043 2009-11-08 Kevin Ryde <user42@zip.com.au>
5044
5045 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
5046 at end of sentence (Bug#4818).
5047
5048 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
5049
5050 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5051 Handle "see declaration of" MSFT statements (Bug#4100).
5052
5053 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
5054
5055 * net/tramp.el (tramp-advice-make-auto-save-file-name)
5056 (tramp-advice-file-expand-wildcards): Unload via
5057 `ad-remove-advice'.
5058
5059 * net/trampver.el: Update release number.
5060
5061 2009-11-08 Kevin Ryde <user42@zip.com.au>
5062
5063 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5064 `ad-do-it'.
5065
5066 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
5067
5068 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5069 in order to keep context in SELinux.
5070
5071 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5072
5073 * dired-aux.el (dired-query): Place cursor in echo area and allow
5074 C-g.
5075
5076 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5077 menu item if not on a directory (Bug#4701).
5078
5079 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
5080
5081 Sync with Tramp 2.1.17.
5082
5083 * net/tramp.el (tramp-handle-copy-directory): Don't use
5084 `file-remote-p' (due to compatibility).
5085
5086 * net/tramp-compat.el (tramp-compat-copy-directory)
5087 (tramp-compat-delete-directory): New defuns.
5088
5089 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5090 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
5091 `tramp-compat-delete-directory'.
5092
5093 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5094 (tramp-smb-handle-delete-directory): Use
5095 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5096
5097 * net/trampver.el: Update release number.
5098
5099 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
5100
5101 * tar-mode.el (tar-copy): Call write-region on the right buffer
5102 (Bug#4857).
5103
5104 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5105 by hand, if necessary (Bug#4878).
5106
5107 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
5108
5109 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5110 align size column (Bug#4839).
5111
5112 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5113 statement.
5114
5115 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5116
5117 * progmodes/ld-script.el (auto-mode-alist):
5118 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5119
5120 * cus-face.el (custom-declare-face): Purecopy face spec.
5121
5122 2009-11-06 Kenichi Handa <handa@m17n.org>
5123
5124 * international/uni-bidi.el: Re-generated.
5125 * international/uni-category.el: Re-generated.
5126 * international/uni-combining.el: Re-generated.
5127 * international/uni-mirrored.el: Re-generated.
5128
5129 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5130
5131 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5132 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5133 (tex-start-options, slitex-run-command, latex-run-command)
5134 (tex-run-command, tex-directory):
5135 * textmodes/ispell.el (ispell-html-skip-alists)
5136 (ispell-tex-skip-alists, ispell-tex-skip-alists):
5137 * textmodes/fill.el (adaptive-fill-first-line-regexp):
5138 (adaptive-fill-regexp):
5139 * textmodes/dns-mode.el (auto-mode-alist):
5140 * progmodes/python.el (interpreter-mode-alist):
5141 * progmodes/etags.el (tags-compression-info-list):
5142 * progmodes/etags.el (tags-file-name):
5143 * net/browse-url.el (browse-url-galeon-program)
5144 (browse-url-firefox-program):
5145 * mail/sendmail.el (mail-signature-file)
5146 (mail-citation-prefix-regexp):
5147 * international/mule-conf.el (eight-bit):
5148 * international/latexenc.el (latex-inputenc-coding-alist):
5149 * international/fontset.el (x-pixel-size-width-font-regexp):
5150 * emacs-lisp/warnings.el (warning-type-format):
5151 * emacs-lisp/trace.el (trace-buffer):
5152 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5153 (emacs-lisp-mode-map):
5154 * calendar/holidays.el (holiday-solar-holidays)
5155 (holiday-bahai-holidays, holiday-islamic-holidays)
5156 (holiday-christian-holidays, holiday-hebrew-holidays)
5157 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5158 (hebrew-holidays-1, holiday-oriental-holidays)
5159 (holiday-general-holidays):
5160 * x-dnd.el (x-dnd-known-types):
5161 * tool-bar.el (tool-bar):
5162 * startup.el (site-run-file):
5163 * shell.el (shell-dumb-shell-regexp):
5164 * rfn-eshadow.el (file-name-shadow-tty-properties)
5165 (file-name-shadow-properties):
5166 * paths.el (remote-shell-program, news-directory):
5167 * mouse.el ([C-down-mouse-3]):
5168 * menu-bar.el (menu-bar-tools-menu):
5169 * jka-cmpr-hook.el (jka-compr-load-suffixes)
5170 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5171 (jka-compr-compression-info-list):
5172 * isearch.el (search-whitespace-regexp):
5173 * image-file.el (image-file-name-extensions):
5174 * find-dired.el (find-ls-option):
5175 * files.el (directory-listing-before-filename-regexp)
5176 (directory-free-space-args, insert-directory-program)
5177 (list-directory-brief-switches, magic-fallback-mode-alist)
5178 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5179 (automount-dir-prefix):
5180 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5181 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5182 (face-font-registry-alternatives, face-font-registry-alternatives)
5183 (face-font-family-alternatives):
5184 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5185 (facemenu-foreground-menu, facemenu-face-menu):
5186 * epa-hook.el (epa-file-name-regexp):
5187 * dnd.el (dnd-protocol-alist):
5188 * textmodes/rst.el (auto-mode-alist):
5189 * button.el (default-button): Purecopy strings.
5190
5191 2009-11-06 Glenn Morris <rgm@gnu.org>
5192
5193 * Makefile.in (ELCFILES): Update.
5194
5195 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
5196
5197 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5198 * emacs-lisp/levents.el: Move to obsolete/levents.el.
5199
5200 * nxml/xsd-regexp.el (xsdre-gen-categories):
5201 * nxml/xmltok.el (xmltok-parse-entity):
5202 * nxml/rng-parse.el (rng-parse-validate-file):
5203 * nxml/rng-maint.el (rng-format-manual)
5204 (rng-manual-output-force-new-line):
5205 * nxml/rng-loc.el (rng-save-schema-location-1):
5206 * nxml/rng-cmpct.el (rng-c-parse-file):
5207 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5208 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5209
5210 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
5211
5212 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5213 Remove extra save-excursions and make-variable-buffer-local's.
5214 Suggested by Stefan Monnier.
5215
5216 (verilog-getopt-file, verilog-module-inside-filename-p)
5217 (verilog-set-define): Merge GNU 1.35 and repair changes from
5218 switching to using with-current-buffer.
5219
5220 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5221 being treated as a number and confusing AUTORESET.
5222 Reported by Dan Dever.
5223
5224 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5225 Add verilog-auto-ignore-concat to fix backward compatibility with
5226 older verilog-modes. Reported by Dan Katz.
5227
5228 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5229 containing closing anchors "...$".
5230
5231 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5232 Reported by Wade Smith.
5233
5234 (verilog-batch-execute-func): Comment on function usage.
5235
5236 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
5237
5238 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5239 for labels.
5240
5241 (verilog-label-re, verilog-calc-1): Support proper indent of named
5242 asserts.
5243
5244 (verilog-backward-token, verilog-basic-complete-re)
5245 (verilog-beg-of-statement, verilog-indent-re): Support proper
5246 indent of the assert statement at the beginning of a block of text.
5247
5248 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5249 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5250 tokens as begins.
5251
5252 2009-11-05 Glenn Morris <rgm@gnu.org>
5253
5254 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5255 Emacs 19. (Bug#1531)
5256 (byte-compile-fix-header): Update for the above change.
5257 Drop test for epoch::version.
5258
5259 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5260 * cus-dep.el (custom-make-dependencies):
5261 * finder.el (finder-compile-keywords):
5262 Use autoload-rubric's feature argument.
5263
5264 * calendar/diary-lib.el (top-level): Make load behave more like require.
5265
5266 * vc-git.el (vc-git-stash-map): Move definition before use.
5267
5268 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
5269
5270 * custom.el (custom-declare-group): Purecopy standard-value.
5271 (custom-declare-group): Purecopy custom-prefix.
5272
5273 * international/mule.el (load-with-code-conversion):
5274 Call do-after-load-evaluation unconditionally.
5275
5276 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5277
5278 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
5279
5280 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5281
5282 2009-11-04 Glenn Morris <rgm@gnu.org>
5283
5284 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5285 (byte-compile-compatibility): Remove option.
5286 (byte-compile-close-variables, byte-compile-fix-header)
5287 (byte-compile-insert-header, byte-compile-output-docform)
5288 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5289 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5290 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5291 (byte-compile-insert, byte-compile-defun):
5292 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
5293 (byte-defop-compiler19): Remove.
5294 Without byte-compile-compatibility, the 'emacs19-opcode property is not
5295 used by anything. Replace all calls with byte-defop-compiler.
5296
5297 2009-11-04 Juri Linkov <juri@jurta.org>
5298
5299 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5300 (menu-bar-options-menu): Don't quote the `prop' arg of
5301 `menu-bar-make-mm-toggle'.
5302
5303 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
5304
5305 * calendar/calendar.el (cal-loaddefs):
5306 * calendar/diary-lib.el (diary-loaddefs):
5307 * calendar/holidays.el (hol-loaddefs):
5308 * eshell/esh-module.el (esh-groups): Load rather than require.
5309
5310 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5311
5312 * calendar/todo-mode.el (todo-add-category): Don't hardcode
5313 point-min==1.
5314 (todo-top-priorities): Only display-buffer when called interactively.
5315 (todo-item-start): Don't save excursion point.
5316 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
5317 (todo-insert-item-here, todo-file-item, todo-remove-item):
5318 Adjust uses of todo-item-start and todo-item-end.
5319
5320 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5321 (autoload-rubric): Don't use any more.
5322
5323 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5324 and only put a prop if it is non-nil.
5325
5326 2009-11-03 Juri Linkov <juri@jurta.org>
5327
5328 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5329 (menu-bar-options-menu): Fix list quoting (Bug#4429).
5330
5331 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5332 and "Menu" to make top-level menu item visually one unit (like
5333 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5334 multi-word menu items). Fix :help string for quit-window.
5335
5336 2009-11-03 Glenn Morris <rgm@gnu.org>
5337
5338 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5339 (byte-compile-file-form-define-abbrev-table)
5340 (byte-compile-file-form-custom-declare-variable)
5341 (byte-compile-variable-ref, byte-compile-defvar):
5342 Whether or not a warning is enabled should only affect whether we issue
5343 the warning, not whether or not we collect the relevant data.
5344 Eg warnings can be turned on and off throughout the course of a file.
5345
5346 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5347 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5348
5349 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5350
5351 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5352 * play/mpuz.el (mpuz-create-buffer):
5353 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5354 (lm-print-y,s,noise, lm-print-w0, lm-init):
5355 * play/gomoku.el (gomoku-prompt-for-move):
5356 * play/fortune.el (fortune-in-buffer):
5357 * play/dissociate.el (dissociated-press):
5358 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5359 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
5360 * mail/supercite.el (sc-eref-show):
5361 * mail/smtpmail.el (smtpmail-send-it):
5362 * mail/rmailsum.el (rmail-summary-next-labeled-message)
5363 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
5364 (rmail-summary-undelete-many, rmail-summary-rmail-update)
5365 (rmail-summary-goto-msg, rmail-summary-expunge)
5366 (rmail-summary-get-new-mail, rmail-summary-search-backward)
5367 (rmail-summary-add-label, rmail-summary-output-menu)
5368 (rmail-summary-output-body):
5369 * mail/rfc822.el (rfc822-addresses):
5370 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
5371 * mail/mailpost.el (post-mail-send-it):
5372 * mail/hashcash.el (hashcash-generate-payment):
5373 * mail/feedmail.el (feedmail-run-the-queue)
5374 (feedmail-queue-send-edit-prompt-help-first)
5375 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
5376 (feedmail-deduce-address-list):
5377 * eshell/esh-ext.el (eshell-remote-command):
5378 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
5379 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
5380 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
5381 (viper-save-string-in-file, viper-valid-marker):
5382 * emulation/viper-keym.el (viper-toggle-key):
5383 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
5384 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
5385 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
5386 * emulation/viper-cmd.el (viper-exec-form-in-vi)
5387 (viper-exec-form-in-emacs, viper-brac-function):
5388 * emulation/viper.el (viper-delocalize-var):
5389 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
5390 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
5391 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
5392 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
5393 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
5394 * emulation/edt.el (edt-electric-helpify):
5395 * emulation/cua-rect.el (cua--rectangle-aux-replace):
5396 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
5397 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
5398 (cua-indent-to-global-mark-column):
5399 * calendar/diary-lib.el (calendar-mark-1):
5400 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
5401 Use with-current-buffer.
5402 * emulation/viper.el (viper-delocalize-var): Use dolist.
5403
5404 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
5405
5406 * comint.el (comint-replace-by-expanded-history-before-point):
5407 Replace !! with the previous input string literally (Bug#1795).
5408
5409 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
5410
5411 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
5412 to be made up of whitespace.
5413
5414 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
5415
5416 * minibuffer.el (read-file-name): Don't use file dialogs for
5417 remote directories (Bug#99).
5418
5419 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
5420
5421 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
5422
5423 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
5424
5425 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
5426 instead of deleting the window or frame.
5427
5428 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
5429
5430 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
5431 Support face colors.
5432
5433 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
5434 New function. Support face colors (Bug#1168).
5435 (tex-common-initialization): Use it.
5436
5437 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
5438 mode allows it (Bug#1168).
5439
5440 2009-10-31 Juri Linkov <juri@jurta.org>
5441
5442 * facemenu.el (list-colors-display): Don't mark buffer as
5443 modified (Bug#3948).
5444
5445 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
5446
5447 * international/mule-diag.el (list-character-sets-1): Minor
5448 message fix (Bug#3526).
5449
5450 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
5451 face property (Bug#4834).
5452 (etags-list-tags, etags-tags-apropos-additional)
5453 (etags-tags-apropos, tags-select-tags-table): Add follow-link
5454 property.
5455
5456 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
5457 items.
5458
5459 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
5460
5461 * textmodes/two-column.el (2C-split):
5462 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
5463 * textmodes/tex-mode.el (tex-set-buffer-directory):
5464 * textmodes/spell.el (spell-region, spell-string):
5465 * textmodes/reftex.el (reftex-erase-buffer):
5466 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
5467 * textmodes/reftex-toc.el (reftex-toc-promote-action):
5468 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
5469 (reftex-select-item):
5470 * textmodes/reftex-ref.el (reftex-label-info-update)
5471 (reftex-offer-label-menu):
5472 * textmodes/reftex-index.el (reftex-index-change-entry)
5473 (reftex-index-phrases-info):
5474 * textmodes/reftex-global.el (reftex-create-tags-file)
5475 (reftex-save-all-document-buffers, reftex-ensure-write-access):
5476 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
5477 (reftex-view-crossref-from-bibtex):
5478 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
5479 (reftex-extract-bib-entries-from-thebibliography)
5480 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
5481 * textmodes/refbib.el (r2b-capitalize-title):
5482 (r2b-convert-buffer, r2b-help):
5483 * textmodes/page-ext.el (pages-directory)
5484 (pages-directory-goto-with-mouse):
5485 * textmodes/bibtex.el (bibtex-validate-globally):
5486 * textmodes/bib-mode.el (bib-capitalize-title):
5487 * textmodes/artist.el (artist-clear-buffer, artist-system):
5488 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
5489 (local-set-scheme-interaction-buffer, xscheme-process-filter)
5490 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
5491 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
5492 (xscheme-send-control-g-interrupt, xscheme-start-process)
5493 (xscheme-process-sentinel, xscheme-cd):
5494 * progmodes/verilog-mode.el (verilog-read-always-signals)
5495 (verilog-set-define, verilog-getopt-file)
5496 (verilog-module-inside-filename-p):
5497 * progmodes/sh-script.el:
5498 * progmodes/python.el (python-pdbtrack-get-source-buffer)
5499 (python-pdbtrack-grub-for-buffer, python-execute-file):
5500 * progmodes/octave-inf.el (inferior-octave):
5501 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5502 (idlwave-shell-compile-helper-routines, idlwave-set-local)
5503 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
5504 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
5505 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
5506 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
5507 (idlwave-shell-filter, idlwave-shell-examine-highlight)
5508 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
5509 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
5510 (idlwave-shell-examine-display, idlwave-shell-run-region)
5511 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
5512 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
5513 * progmodes/idlw-help.el (idlwave-help-get-special-help)
5514 (idlwave-help-get-help-buffer):
5515 * progmodes/gud.el (gud-basic-call, gud-find-class)
5516 (gud-tooltip-activate-mouse-motions-if-enabled):
5517 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5518 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
5519 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
5520 (ebrowse-tags-next-file):
5521 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
5522 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
5523 (ebnf-eps-finish-and-write):
5524 * progmodes/cpp.el (cpp-edit-save):
5525 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
5526 * progmodes/cc-defs.el (c-emacs-features):
5527 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
5528 (antlr-directory-dependencies):
5529 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
5530 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
5531 (ada-find-any-references, ada-make-filename-from-adaname)
5532 (ada-make-body-gnatstub):
5533 * obsolete/rnews.el (news-list-news-groups):
5534 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
5535 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
5536 * net/rcirc.el (rcirc-debug):
5537 * net/newst-treeview.el (newsticker--treeview-list-add-item)
5538 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
5539 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
5540 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5541 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
5542 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
5543 (newsticker--treeview-list-clear-highlight)
5544 (newsticker--treeview-list-update-highlight)
5545 (newsticker--treeview-list-highlight-start)
5546 (newsticker--treeview-tree-update-highlight)
5547 (newsticker--treeview-get-selected-item)
5548 (newsticker-treeview-mark-list-items-old)
5549 (newsticker--treeview-set-current-node):
5550 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
5551 * net/newst-backend.el (newsticker--get-news-by-funcall)
5552 (newsticker--get-news-by-wget, newsticker--image-get)
5553 (newsticker--image-sentinel):
5554 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
5555 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
5556 (eudc-ph-close-session):
5557 * net/eudc.el (eudc-save-options):
5558 * language/thai-word.el (thai-update-word-table):
5559 * language/japan-util.el (japanese-string-conversion):
5560 * international/titdic-cnv.el (tsang-quick-converter)
5561 (ziranma-converter, ctlau-converter):
5562 * international/mule-cmds.el (describe-language-environment):
5563 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
5564 (skkdic-convert-postfix, skkdic-convert-prefix):
5565 (skkdic-convert-okuri-nasi, skkdic-convert):
5566 * emacs-lisp/re-builder.el (reb-update-overlays):
5567 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
5568 * emacs-lisp/gulp.el (gulp-send-requests):
5569 * emacs-lisp/find-gc.el (trace-call-tree):
5570 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
5571 (eieio-describe-generic):
5572 * emacs-lisp/eieio-base.el (eieio-persistent-read):
5573 * emacs-lisp/edebug.el (edebug-outside-excursion):
5574 * emacs-lisp/debug.el (debugger-make-xrefs):
5575 * emacs-lisp/cust-print.el (custom-prin1-to-string):
5576 * emacs-lisp/chart.el (chart-new-buffer):
5577 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
5578 Use with-current-buffer.
5579 * textmodes/artist.el (artist-system): Don't call
5580 copy-sequence on a fresh string.
5581 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
5582
5583 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
5584
5585 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
5586 is no item to edit. (Bug#4820)
5587 (todo-top-priorities): Restore point and restore narrowing in Todo
5588 buffer. (Bug#4820)
5589
5590 2009-10-31 Glenn Morris <rgm@gnu.org>
5591
5592 * net/ange-ftp.el (top-level): Don't require dired when compiling.
5593 (comint-last-output-start, comint-last-input-start)
5594 (comint-last-input-end): Don't defvar when compiling.
5595 (ange-ftp-process-file): Use bound-and-true-p.
5596
5597 * pcmpl-rpm.el (top-level): Move provide statement to end.
5598 (pcmpl-rpm): Remove unused custom group.
5599
5600 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
5601
5602 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
5603
5604 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
5605 (byte-compile-warnings): Add `constants' as an option.
5606 (byte-compile-callargs-warn, byte-compile-arglist-warn)
5607 (display-call-tree): Update for byte-compile-fdefinition possibly
5608 returning `(macro lambda ...)'. (Bug#4778)
5609 (byte-compile-variable-ref, byte-compile-setq-default):
5610 Respect `constants' member of byte-compile-warnings.
5611
5612 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
5613
5614 * vc-bzr.el (vc-bzr-revision-keywords): New var.
5615 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
5616 to "submit:".
5617
5618 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
5619
5620 * textmodes/ispell.el (ispell-skip-region-alist):
5621 * international/mule-conf.el (eight-bit):
5622 * international/fontset.el (font-encoding-alist):
5623 * startup.el (pure-space-overflow-message):
5624 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
5625 * paths.el (gnus-nntp-service, rmail-spool-directory)
5626 (term-file-prefix):
5627 * files.el (save-some-buffers-action-alist):
5628 * cmuscheme.el (same-window-buffer-names):
5629 * ielm.el (same-window-buffer-names):
5630 * shell.el (same-window-buffer-names):
5631 * mail/sendmail.el (same-window-buffer-names):
5632 * progmodes/inf-lisp.el (same-window-buffer-names):
5633 * bindings.el (mode-line-client)
5634 (mode-line-column-line-number-mode-map):
5635 * language/tibetan.el (tibetan-precomposition-rule-regexp)
5636 (tibetan-precomposed-regexp): Purecopy string arguments.
5637
5638 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5639
5640 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
5641 (calcDigit-nondigit):
5642 * calc/calc-yank.el (calc-copy-to-buffer):
5643 * calc/calc-units.el (calc-invalidate-units-table):
5644 * calc/calc-trail.el (calc-trail-yank):
5645 * calc/calc-store.el (calc-insert-variables):
5646 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
5647 * calc/calc-prog.el (calc-read-parse-table):
5648 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
5649 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
5650 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
5651 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
5652 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
5653 (calc-graph-name, calc-graph-find-command, calc-graph-view)
5654 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
5655 * calc/calc-ext.el (calc-realign):
5656 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
5657 (calc-embedded-finish-edit, calc-embedded-make-info)
5658 (calc-embedded-finish-command, calc-embedded-stack-change):
5659 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
5660
5661 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
5662 shell-dynamic-complete-filename in preference to
5663 comint-dynamic-complete-filename.
5664
5665 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
5666 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
5667 Don't consider whether the display supports colors.
5668 (bookmark-import-new-list): Use dolist.
5669 (bookmark-bmenu-mode-map): Move initialization into declaration.
5670 (bookmark-bmenu-list): Use dolist, simplify.
5671 (bookmark-show-all-annotations): Use save-selected-window and dolist.
5672 (menu-bar-final-items): Use push.
5673
5674 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
5675
5676 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
5677 it works on remote files.
5678 (vc-hg-diff): Don't pass any `--cwd' argument.
5679
5680 2009-10-27 Kevin Ryde <user42@zip.com.au>
5681
5682 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5683 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
5684 (Further to Bug#3921).
5685
5686 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
5687
5688 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
5689 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
5690 calling `tramp-imap-put-file'. Add file size to the call.
5691 (tramp-imap-get-file-entries): Compute also user name, file size,
5692 and date.
5693 (tramp-imap-handle-insert-directory): Insert uid and gid.
5694 (tramp-imap-handle-file-attributes): Transform uid and gid
5695 according to `id-format'.
5696 (tramp-imap-put-file): New optional parameter SIZE. Encode file
5697 size in header X-Size.
5698
5699 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
5700
5701 * simple.el (transpose-subr): Give clearer error when the mark
5702 is not set. (Bug#4807)
5703
5704 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
5705
5706 * net/tramp.el (tramp-perl-file-truename): New defconst.
5707 Perl code contributed by yary <not.com@gmail.com> (tiny change).
5708 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
5709 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
5710 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
5711
5712 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
5713 Ignore `dired-call-process'.
5714 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
5715
5716 2009-10-26 Julian Scheid <julians37@gmail.com>
5717
5718 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
5719 (tramp-get-remote-readlink): New defun.
5720 (tramp-handle-file-truename): Use it.
5721 (tramp-handle-file-exists-p): Check file-attributes cache, assume
5722 file exists if cache value present.
5723 (tramp-check-cached-permissions): New defun.
5724 (tramp-handle-file-readable-p): Use it.
5725 (tramp-handle-file-writable-p): Likewise.
5726 (tramp-handle-file-executable-p): Likewise.
5727 (tramp-handle-file-name-all-completions): Try using Perl to get
5728 partial completions. When perl not available, combine `cd' and
5729 `ls' into single remote operation and use shell expansion to get
5730 partial remote directory contents. Set `file-exists-p' cache for
5731 directory and any files returned by ls. Change cache handling to
5732 support partial directory contents. Use error message emitted by
5733 remote `cd' or Perl code for local tramp-error.
5734 (tramp-do-copy-or-rename-file-directly): Avoid separate
5735 tramp-send-command-and-check call.
5736 (tramp-handle-process-file): Merge three remote ops into one.
5737 Do not flush all caches when `process-file-side-effects' is set.
5738 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
5739 file-attributes shows uid/gid to be set already.
5740
5741 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
5742
5743 * textmodes/tex-mode.el (tex-dvi-view-command)
5744 (tex-show-queue-command, tex-open-quote):
5745 * progmodes/ruby-mode.el (auto-mode-alist)
5746 (interpreter-mode-alist): Purecopy strings.
5747
5748 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
5749
5750 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
5751 string for the hook, keymap and abbrev table.
5752
5753 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
5754
5755 * x-dnd.el (x-dnd-xdnd-to-action):
5756 * startup.el (fancy-startup-text, fancy-about-text): Change to
5757 defconst from defvar.
5758
5759 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
5760
5761 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
5762 Purecopy initialization strings.
5763
5764 * mail/sendmail.el (mail-header-separator)
5765 (mail-personal-alias-file):
5766 * mail/rmail.el (rmail-default-dont-reply-to-names)
5767 (rmail-ignored-headers, rmail-retry-ignored-headers)
5768 (rmail-highlighted-headers, rmail-secondary-file-directory)
5769 (rmail-secondary-file-regexp):
5770 * files.el (null-device, file-name-invalid-regexp)
5771 (locate-dominating-stop-dir-regexp)
5772 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
5773 (interpreter-mode-alist): Use mapcar instead of mapc.
5774
5775 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
5776
5777 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
5778 (completion-ignored-extensions):
5779 (debug-ignored-errors): Purecopy strings.
5780
5781 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5782
5783 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
5784 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
5785 (pcomplete--here): Use push.
5786
5787 * subr.el (all-completions): Declare the 4th arg obsolete.
5788
5789 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5790
5791 * pcomplete.el (pcomplete-unquote-argument-function): New var.
5792 (pcomplete-unquote-argument): New function.
5793 (pcomplete--common-suffix): Always pay attention to case.
5794 (pcomplete--table-subvert): Quote and unquote the text.
5795 (pcomplete--common-quoted-suffix): New function.
5796 (pcomplete-std-complete): Use it and pcomplete-begin.
5797
5798 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
5799 we're inside a dedicated or minibuffer window.
5800
5801 2009-10-24 Karl Fogel <kfogel@red-bean.com>
5802
5803 * bookmark.el: Update documentation, especially documentation
5804 of `bookmark-alist' and of the bookmark file format.
5805 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
5806
5807 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
5808
5809 * mail/emacsbug.el (report-emacs-bug): Clarify that the
5810 keybindings apply to the mail buffer (Bug#4003). Shrink help
5811 window to buffer.
5812
5813 * whitespace.el (whitespace-mode, whitespace-newline-mode)
5814 (global-whitespace-mode, global-whitespace-newline-mode)
5815 (whitespace-toggle-options, global-whitespace-toggle-options):
5816 Doc fix (Bug#3660).
5817
5818 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
5819 of xmltok-start before the end tag was inserted (Bug#2840).
5820
5821 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
5822 patterns that are preceded by an open-paren (Bug#1320).
5823
5824 2009-10-24 Sven Joachim <svenjoac@gmx.de>
5825
5826 * files.el (delete-directory): Delete symlinks to directories with
5827 delete-file (Bug#4739).
5828
5829 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
5830
5831 * vc.el (vc-backend-for-registration): Rename from
5832 vc-get-backend-for-registration. Update callers.
5833
5834 * international/mule-cmds.el (set-language-info-alist):
5835 Purecopy lang-env.
5836 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
5837 (charset): Purecopy the name.
5838 (define-char-code-property): Purecopy string arguments.
5839
5840 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
5841 Purecopy string arguments.
5842
5843 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5844 * ediff-hook.el (menu-bar-ediff-menu):
5845 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
5846 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
5847
5848 2009-10-24 Glenn Morris <rgm@gnu.org>
5849
5850 * comint.el (comint-dynamic-list-completions):
5851 * term.el (term-dynamic-list-completions): Use choose-completion rather
5852 than obsolete alias mouse-choose-completion.
5853
5854 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
5855 file-cache-choose-completion.
5856 (file-cache-choose-completion): Handle an optional event argument.
5857 (file-cache-mouse-choose-completion): Make it an obsolete alias.
5858
5859 * progmodes/octave-mod.el (octave-complete-symbol):
5860 Use choose-completion if mouse-choose-completion is ever removed.
5861
5862 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
5863 use.
5864
5865 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
5866 compiler.
5867
5868 * vc-hooks.el (vc-responsible-backend): Fix declaration.
5869
5870 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5871
5872 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
5873 Ignore `pred' now that we receive one.
5874 Handle test-completion specially.
5875
5876 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
5877
5878 * vc.el (vc-responsible-backend): Throw an error if not backend is
5879 found. Remove the REGISTER argument. Move the code dealing with
5880 REGISTER ...
5881 (vc-get-backend-for-registration): ... here. New function.
5882 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
5883 of vc-responsible-backend, pass the file name instead of the
5884 directory name.
5885
5886 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5887
5888 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
5889 New funs.
5890 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
5891 (pcomplete-comint-setup): Don't modify a global var via
5892 accidental side-effects.
5893 (pcomplete-shell-setup): Adjust call accordingly.
5894 (pcomplete-parse-comint-arguments): Use push.
5895
5896 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
5897
5898 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5899 Allow uncapitalized info node names (Bug#3921).
5900
5901 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
5902 to the DEBUG file (Bug#3781).
5903
5904 2009-10-23 Jari Aalto <jari.aalto@cante.net>
5905
5906 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
5907 dictionary entry (Bug#4579).
5908
5909 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
5910
5911 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
5912 from `rfn-eshadow-update-overlay-hook' when unloading.
5913 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
5914 "rsyncc". Adjust doc string.
5915 (tramp-temp-buffer-file-name): New buffer-local defvar.
5916 (tramp-handle-insert-file-contents, tramp-handle-write-region):
5917 Keep temporary file when indicated by method ("rsync" and
5918 "rsyncc").
5919 (tramp-handle-write-region): Handle APPEND.
5920 (tramp-delete-temp-file-function): New defun. Added to
5921 `kill-buffer-hook'.
5922
5923 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
5924
5925 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
5926
5927 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
5928
5929 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
5930 (color-name-rgb-alist, tty-standard-colors)
5931 (tty-color-mode-alist): Change to defconst.
5932
5933 * simple.el (mark-inactive): Purecopy message.
5934
5935 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
5936 (global-map, yank-menu):
5937 * textmodes/ispell.el (ispell-menu-map):
5938 * net/eudc.el (eudc-tools-menu):
5939 * international/mule-cmds.el (describe-language-environment-map)
5940 (setup-language-environment-map, set-coding-system-map)
5941 (mule-menu-keymap):
5942 * vc-hooks.el (vc-menu-entry, vc-menu-map):
5943 * replace.el (occur-mode-map):
5944 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
5945
5946 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
5947
5948 * calc/calc.el (math-read-number, math-read-number-simple): Use
5949 `save-match-data'.
5950
5951 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5952
5953 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
5954 rather than fiddling with global-map bindings, since it should only
5955 affect per-terminal settings.
5956 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
5957
5958 * minibuffer.el (completion-table-with-terminator): Allow to specify
5959 the terminator-regexp.
5960
5961 * simple.el (switch-to-completions): Look for *Completions* in other
5962 frames as well.
5963
5964 * pcomplete.el: Allow the use of completion-tables.
5965 (pcomplete-std-complete): New command.
5966 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
5967 (pcomplete--here): Use a function for `form' rather than an expression,
5968 so it can be byte-compiled.
5969 (pcomplete-here, pcomplete-here*): Adjust accordingly.
5970 Add edebug declaration.
5971 (pcomplete-show-completions): Remove unused var `curbuf'.
5972 (pcomplete-do-complete, pcomplete-stub):
5973 Don't assume `completions' is a list of strings any more.
5974
5975 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
5976
5977 * find-dired.el (find-name-arg): Fix typo in docstring.
5978
5979 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5980
5981 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
5982 (pcmpl-linux-fs-types): Same, and update to new modules layout.
5983
5984 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
5985 pcomplete-entries.
5986
5987 * comint.el (comint-read-input-ring, comint-write-input-ring)
5988 (comint-substitute-in-file-name)
5989 (comint-dynamic-complete-as-filename)
5990 (comint-dynamic-simple-complete)
5991 (comint-dynamic-list-filename-completions)
5992 (comint-dynamic-list-completions)
5993 (comint-redirect-results-list-from-process): Minor simplifications.
5994
5995 2009-10-21 Kevin Ryde <user42@zip.com.au>
5996
5997 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
5998 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
5999 the first form. And insert a blank line after ";;; Code" since
6000 that's usual style. (Bug#4612)
6001
6002 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
6003
6004 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6005
6006 * minibuffer.el (completion-table-with-terminator): Properly implement
6007 boundaries, in case `terminator' appears in the suffix.
6008 (completion--embedded-envvar-table): Don't return boundaries if
6009 there's no valid completion. Simplify.
6010 (completion-file-name-table): New completion table extracted from
6011 completion--file-name-table.
6012 (completion--file-name-table): Use it.
6013 (read-file-name-predicate): Declare obsolete.
6014 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6015 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6016 completion-file-name-table, and use the `pred' argument.
6017 * files.el (locate-file-completion-table): Use the `pred' arg rather
6018 than read-file-name-predicate.
6019 (abbreviate-file-name): Use \` rather than ^ for BOS.
6020
6021 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
6022
6023 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6024 vc-responsible-backend to register, it causes problems.
6025
6026 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6027
6028 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6029
6030 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
6031
6032 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6033 (tramp-smb-handle-file-attributes): Use it.
6034 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6035 (tramp-smb-handle-insert-directory): Use `mapc' rather than
6036 `mapcar'. Use `tramp-smb-get-stat-capability'.
6037 Add `dired-filename' text properties.
6038 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6039 (tramp-smb-maybe-open-connection): Simplify check for smbclient
6040 version.
6041
6042 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6043
6044 * subr.el (read-key-delay): Reduce to 0.01.
6045 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6046 (bug#4751).
6047
6048 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6049
6050 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6051
6052 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6053 (Info-menu): Remove unused vars `last' and `completions'.
6054 (Info-index-nodes): Remove unused var `node'.
6055
6056 * info.el (Info-complete-menu-item): Use complete-with-action.
6057
6058 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
6059
6060 Make vc-annotate work through copies and renames.
6061 * vc-annotate.el (vc-annotate-extract-revision-at-line):
6062 Return the file name too.
6063 (vc-annotate-revision-at-line)
6064 (vc-annotate-find-revision-at-line)
6065 (vc-annotate-revision-previous-to-line)
6066 (vc-annotate-show-log-revision-at-line): Update to get the file
6067 name from vc-annotate-extract-revision-at-line.
6068 (vc-annotate-show-diff-revision-at-line-internal): Change the
6069 argument to mean whether to show a file diff or not. Get the file
6070 name from vc-annotate-extract-revision-at-line.
6071 (vc-annotate-show-diff-revision-at-line):
6072 Update vc-annotate-show-diff-revision-at-line call.
6073 (vc-annotate-warp-revision): Add an optional file argument.
6074
6075 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6076 (vc-git-annotate-extract-revision-at-line): Also return the file
6077 name if found.
6078
6079 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6080 command. Remove unused code.
6081 (vc-hg-annotate-re): Update to match --follow output.
6082 (vc-hg-annotate-extract-revision-at-line): Also return the file
6083 name if found.
6084
6085 * vc.el: Update annotate-extract-revision-at-line documentation.
6086
6087 2009-10-18 Kevin Ryde <user42@zip.com.au>
6088
6089 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6090 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6091
6092 * net/browse-url.el (browse-url): Identify alist with "consp and
6093 not functionp" and let all other things go down the `apply' leg,
6094 as suggested by Stefan. (Further to bug#4531.)
6095
6096 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
6097
6098 * minibuffer.el (read-file-name): Check for repeat before putting
6099 a default argument in file-name-history (Bug#4657).
6100
6101 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6102 read syntax (Bug#4737).
6103
6104 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6105
6106 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6107
6108 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6109 (html-tag-alist, html-tag-help): Add descriptions for undocumented
6110 entries and make note of obsolete tags.
6111
6112 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6113
6114 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6115
6116 2009-10-18 Glenn Morris <rgm@gnu.org>
6117
6118 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6119 grep, so that binary files (eg international/uni-bidi.el) can match.
6120 Remove test for "UnicodeData" files, since it is hopefully unnecessary
6121 now, and in any case the file header format has changed.
6122
6123 2009-10-17 Glenn Morris <rgm@gnu.org>
6124
6125 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6126 (flyspell-get-word, flyspell-large-region)
6127 (flyspell-auto-correct-previous-word): Doc/error message fixes.
6128
6129 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
6130
6131 * Makefile.in (ELCFILES): Add ede/shell.
6132
6133 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
6134
6135 * term/common-win.el (x-colors): Purecopy it.
6136
6137 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6138
6139 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6140 permissive for when the buffer is empty.
6141 (tar-header-block-tokenize): Decode the username and groupname.
6142 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6143
6144 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6145
6146 * international/mule-cmds.el (select-safe-coding-system): If the file
6147 has a coding cookie, use it regardless of any other setting (bug#4712).
6148
6149 2009-10-17 Glenn Morris <rgm@gnu.org>
6150
6151 * foldout.el (foldout-mouse-swallow-events):
6152 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6153
6154 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6155 (dired-keep-marker-copy, dired-keep-marker-hardlink)
6156 (dired-keep-marker-symlink, dired-dwim-target)
6157 (dired-copy-preserve-time): Do not autoload these defcustoms.
6158
6159 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6160 messages from messing up the file coding. (Bug#4623)
6161
6162 2009-10-17 Jari Aalto <jari.aalto@cante.net>
6163
6164 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6165 if no match is found for the current dictionary. (Bug#4578)
6166
6167 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6168 optional, since that is how it is documented, and this is often called
6169 with a nil argument. (Bug#4577)
6170 (flyspell-external-point-words, flyspell-auto-correct-word)
6171 (flyspell-correct-word-before-point, flyspell-word-search-forward)
6172 (flyspell-word-search-backward): Remove nil argument in calls to
6173 flyspell-get-word, since it is not needed now.
6174
6175 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
6176
6177 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
6178
6179 2009-10-16 Glenn Morris <rgm@gnu.org>
6180
6181 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6182
6183 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6184
6185 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6186 (ange-ftp-file-size): New function.
6187 (ange-ftp-file-attributes): Use it.
6188
6189 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
6190
6191 * net/tramp-smb.el (tramp-smb-version): New defvar.
6192 (tramp-smb-maybe-open-connection): Use it, in order to avoid
6193 repeated checks.
6194
6195 2009-10-16 Glenn Morris <rgm@gnu.org>
6196
6197 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6198 Maybe copy some custom properties from old to new name. (Bug#4706)
6199
6200 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
6201
6202 * subr.el (error, sit-for, start-process-shell-command)
6203 (start-file-process-shell-command): Set the calling convention
6204 after the function definition.
6205
6206 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
6207
6208 * subr.el (error, sit-for, start-process-shell-command)
6209 (start-file-process-shell-command): Use the new
6210 set-advertised-calling-convention feature.
6211
6212 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
6213
6214 * international/ucs-normalize.el (ucs-normalize-version):
6215 Change to 1.2.
6216 (check-range): Adjust for Unicode 5.2.
6217
6218 2009-10-15 Juri Linkov <juri@jurta.org>
6219
6220 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6221 to the `menu-item' format.
6222
6223 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
6224
6225 * net/tramp.el (tramp-replace-environment-variables): Do not fail
6226 if the environment variable does not exist.
6227
6228 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6229 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6230 parameter.
6231 (tramp-smb-handle-add-name-to-file)
6232 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6233 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6234 (tramp-smb-handle-file-attributes)
6235 (tramp-smb-do-file-attributes-with-stat)
6236 (tramp-smb-handle-file-local-copy)
6237 (tramp-smb-handle-insert-directory)
6238 (tramp-smb-handle-make-directory)
6239 (tramp-smb-handle-make-directory-internal)
6240 (tramp-smb-handle-make-symbolic-link)
6241 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6242 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6243 (tramp-smb-maybe-open-connection): Apply the changed parameters.
6244 (tramp-smb-read-file-entry): Read Disk names in compressed format.
6245 Handle long file names.
6246 (tramp-smb-get-cifs-capabilities): Check, whether the connection
6247 process is running.
6248 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6249 Read share names with "-g" option.
6250
6251 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
6252
6253 * net/rcirc.el (rcirc-view-log-file): New command.
6254 (rcirc-track-minor-mode-map): Remove C-c ` binding.
6255 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6256 specified.
6257
6258 2009-10-15 Glenn Morris <rgm@gnu.org>
6259
6260 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6261 from the second command-line argument.
6262 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6263 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6264 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6265 w32-batch-update-autoloads.
6266 * emacs-lisp/autoload.el (autoload-make-program): New variable.
6267 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6268
6269 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6270 the headers cannot be located. Simplify, subtracting superflous
6271 save-excursions.
6272
6273 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
6274
6275 Replace completion-base-size by completion-base-position to fix bugs
6276 such as (bug#4699).
6277 * simple.el (completion-base-position): New var.
6278 (completion-base-size): Mark as obsolete.
6279 (choose-completion): Make it work for mouse events as well.
6280 Pass the new base-position to choose-completion-string.
6281 (choose-completion-guess-base-position): New function, extracted from
6282 choose-completion-delete-max-match.
6283 (choose-completion-delete-max-match): Use it. Make obsolete.
6284 (choose-completion-string): Use the new base-position info.
6285 (completion-root-regexp): Delete.
6286 (completion-setup-function): Preserve completion-base-position.
6287 Eliminate obsolete base-size manipulation.
6288 * minibuffer.el (display-completion-list): Don't mess with base-size.
6289 (minibuffer-completion-help): Set completion-base-position instead.
6290 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6291 choose-completion.
6292 * textmodes/bibtex.el (bibtex-complete):
6293 * emacs-lisp/crm.el (crm--choose-completion-string):
6294 Adjust to new calling convention.
6295 * complete.el (partial-completion-mode): Use minibufferp to avoid
6296 bumping into incompatible change to choose-completion-string-functions.
6297 * ido.el (ido-choose-completion-string): Make its calling convention
6298 more permissive.
6299 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6300 base-size manipulation.
6301 (comint-dynamic-list-input-ring): Use dotimes and push.
6302 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6303 fundamental-mode. Use `or'.
6304
6305 2009-10-14 Juri Linkov <juri@jurta.org>
6306
6307 * misearch.el (multi-isearch-next-buffer-from-list)
6308 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
6309
6310 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6311
6312 * Makefile.in (compile-onefile): Load `bytecomp' rather than
6313 `bytecomp.el'.
6314
6315 * minibuffer.el (completion-pcm--merge-completions): Make sure the
6316 string we return is all made up of text from the completions rather
6317 than part from the completions and part from the input (bug#4219).
6318
6319 * ido.el (ido-everywhere): Use define-minor-mode.
6320
6321 * buff-menu.el (list-buffers, ctl-x-map):
6322 Mark the entry points with ;;;###autoload cookies.
6323
6324 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
6325
6326 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6327 correctly in the detached head case.
6328 (vc-git-print-log): Remove unused binding.
6329
6330 * vc.el (vc-responsible-backend): When a directory is passed for
6331 for registration create a VC repository if no backend is
6332 responsible for the directory argument.
6333 (vc-deduce-fileset): Tell vc-responsible-backend to register.
6334
6335 * vc.el: Move comments about RCS and SCCS ...
6336 * vc-rcs.el:
6337 * vc-sccs.el: ... here, respectively.
6338
6339 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6340
6341 * minibuffer.el (completion--file-name-table): Return nil if there's
6342 no file completion, even if substitute-in-file-name changed
6343 the string (bug#4708).
6344
6345 2009-10-13 Juri Linkov <juri@jurta.org>
6346
6347 * files-x.el (read-file-local-variable-value): Don't filter out
6348 minor modes from mode name completion (bug#4664).
6349
6350 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
6351
6352 * international/mule-cmds.el (ucs-names): Remove exclusion of
6353 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
6354
6355 2009-10-13 Kenichi Handa <handa@m17n.org>
6356
6357 * international/uni-name.el: Regenerated.
6358
6359 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
6360
6361 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
6362 should be automatically buffer-local, but isn't.)
6363
6364 2009-10-12 Sam Steingold <sds@gnu.org>
6365
6366 * progmodes/compile.el (compilation-next-error-function): Fix the
6367 timestamps if the buffer has been visited before.
6368 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
6369 non-anchored patterns, like the perl one (bug#3928).
6370
6371 2009-10-12 Glenn Morris <rgm@gnu.org>
6372
6373 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
6374 Let-bind `size'.
6375
6376 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
6377
6378 * proced.el (proced-unload-function): New function.
6379
6380 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
6381 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
6382 Doc fix.
6383
6384 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
6385
6386 2009-10-11 Juri Linkov <juri@jurta.org>
6387
6388 * files-x.el (read-file-local-variable-value):
6389 Provide default value only for bound variables (bug#4664).
6390
6391 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
6392
6393 * net/tramp.el (tramp-local-host-p): Function shall return nil for
6394 connection methods like smb.
6395
6396 * net/tramp-cache.el (tramp-flush-connection-property): The hash
6397 can be empty.
6398
6399 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6400 (tramp-smb-file-name-handler-alist): Add handlers for
6401 `add-name-to-file', `make-symbolic-link'.
6402 (tramp-smb-handle-add-name-to-file)
6403 (tramp-smb-do-file-attributes-with-stat)
6404 (tramp-smb-handle-make-symbolic-link)
6405 (tramp-smb-get-cifs-capabilities): New defuns.
6406 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6407 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6408 (tramp-smb-handle-file-local-copy)
6409 (tramp-smb-handle-make-directory-internal)
6410 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
6411 The file name syntax depends on cifs capabilities.
6412 (tramp-smb-handle-file-attributes):
6413 Call `tramp-smb-do-file-attributes-with-stat' if possible.
6414 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
6415 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
6416
6417 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
6418
6419 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
6420 (eieio-defclass): Apply deftype handler and setf-method properties
6421 directly.
6422 (eieio-add-new-slot): Avoid union function from cl library.
6423 (eieio--typep): New function.
6424 (eieio-perform-slot-validation): Use it.
6425
6426 2009-10-10 Karl Fogel <kfogel@red-bean.com>
6427
6428 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6429 Update documentation to refer to the variables documented in r1.135.
6430 (Bug#4188)
6431
6432 2009-10-10 Karl Fogel <kfogel@red-bean.com>
6433
6434 * bookmark.el (Info-suffix-list): Remove this unused variable.
6435 (bookmark-current-point): Remove this obsolete variable.
6436 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
6437 Adjust for removal of bookmark-current-point.
6438
6439 (bookmarks-already-loaded, bookmark-current-buffer)
6440 (bookmark-yank-point): Document. (Bug#4188)
6441
6442 2009-10-10 Glenn Morris <rgm@gnu.org>
6443
6444 * frame.el (frame-height): Doc fix.
6445
6446 * calendar/calendar.el (calendar-split-width-threshold): New option.
6447 (calendar-basic-setup): Use calendar-split-width-threshold.
6448
6449 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
6450
6451 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
6452 Ideographic Supplement" range (U+1F200..U+1F2FF).
6453
6454 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6455
6456 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
6457 since the list will have been rebuilt anyway. (Bug#4349)
6458
6459 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6460
6461 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
6462 (bookmark-bmenu-execute-deletions): Don't save here, as
6463 bookmark-delete will now do so if necessary.
6464 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
6465 (Bug#4348)
6466
6467 2009-10-09 Glenn Morris <rgm@gnu.org>
6468
6469 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
6470
6471 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6472
6473 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
6474 (bookmark-jump-other-window): Just invoke bookmark-jump with new
6475 argument now, so the two function's behaviors will match. (Bug#3645)
6476
6477 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
6478
6479 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
6480 (tramp-file-name-real-host, tramp-file-name-port):
6481 Apply `save-match-data'.
6482
6483 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
6484 case both directories are remote.
6485 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
6486 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
6487
6488 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
6489
6490 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
6491
6492 2009-10-07 Glenn Morris <rgm@gnu.org>
6493
6494 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
6495 of concat.
6496
6497 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
6498
6499 * files-x.el (read-file-local-variable): Include some
6500 non-user-variables in the completion table (bug#4664).
6501
6502 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
6503
6504 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
6505 message.
6506
6507 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6508 (tramp-smb-file-name-handler-alist): Add handler for
6509 `copy-directory', `expand-file-name', `set-file-modes'.
6510 (tramp-smb-handle-copy-directory)
6511 (tramp-smb-handle-expand-file-name)
6512 (tramp-smb-handle-set-file-modes): New defuns.
6513 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
6514 (tramp-smb-handle-file-attributes): Simplify check for retrieving
6515 entry.
6516 (tramp-smb-handle-insert-directory): Don't flush the cache.
6517 (tramp-smb-maybe-open-connection): Check for samba client and
6518 server versions.
6519
6520 2009-10-07 Eli Zaretskii <eliz@gnu.org>
6521
6522 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
6523 to not error out of search for "^lisp=" fails.
6524
6525 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
6526
6527 * makefile.w32-in (WINS_UPDATES): New macro.
6528 (custom-deps, finder-data, autoloads): Use it.
6529
6530 2009-10-07 Glenn Morris <rgm@gnu.org>
6531
6532 * Makefile.in (autoloads): Revert previous change.
6533 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
6534 the list of preloaded files passed on the command-line, get
6535 it from src/Makefile.
6536
6537 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
6538 show the original buffer rather than a random one.
6539
6540 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
6541
6542 * help.el (describe-no-warranty): Place point in a slightly better
6543 position in the GPLv3 text.
6544
6545 2009-10-06 Sam Steingold <sds@gnu.org>
6546
6547 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
6548 the comm attribute is present before calling regexp-quote.
6549
6550 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
6551
6552 * play/animate.el (animate-string): For good effect, make sure
6553 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
6554
6555 * play/animate.el (animate-sequence, animate-birthday-present):
6556 * misc.el (butterfly): Don't set `indent-tabs-mode'.
6557
6558 2009-10-06 Glenn Morris <rgm@gnu.org>
6559
6560 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
6561
6562 * emacs-lisp/autoload.el (autoload-excludes): New variable.
6563 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
6564 (batch-update-autoloads): Process a string value of autoload-excludes,
6565 set during the build process.
6566 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
6567
6568 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
6569 inside with-parsed... macro so that `v' is defined.
6570
6571 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
6572 * progmodes/fortran.el (fortran-end-of-block)
6573 (fortran-beginning-of-block):
6574 Also push mark in the macro case.
6575
6576 * emerge.el (emerge-show-file-name):
6577 * calc/calc.el (calc-quit):
6578 * calc/calc-misc.el (calc-big-or-small):
6579 * calc/calc-graph.el (calc-graph-view):
6580 * calc/calc-ext.el (calc-reset):
6581 * calendar/calendar.el (calendar-basic-setup):
6582 Use window-full-height-p.
6583
6584 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
6585 header we don't understand, don't insert another. (Bug#4624)
6586 If changing mime charset, insert the new one in the right place.
6587
6588 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
6589
6590 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6591 (cal-tex-cursor-month): Correctly increment the end date for diary and
6592 holiday listing. (Bug#4626)
6593
6594 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
6595
6596 * help-fns.el (describe-function-1): Don't burp if the function is not
6597 a symbol.
6598
6599 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
6600
6601 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
6602 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
6603 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
6604 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
6605
6606 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
6607 (eieio-default-superclass): Reflow docstrings.
6608 (this, class-option-assoc, defclass, eieio-class-un-autoload)
6609 (eieio-unbind-method-implementations, defmethod)
6610 (eieio-validate-slot-value, eieio-validate-class-slot-value)
6611 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
6612 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
6613 (eieio-slot-originating-class-p, eieio-slot-name-index)
6614 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
6615 (constructor, initialize-instance, no-next-method, object-print)
6616 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
6617 Fix typos in docstrings.
6618 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
6619 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
6620 (next-method-p): Doc fixes.
6621 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
6622 Fix typos in error messages.
6623 (eieio-defmethod): Fix typo in description of generic method.
6624
6625 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
6626 (eieio-persistent-save-interactive, slot-missing):
6627 Fix typos in docstrings.
6628 (eieio-instance-inheritor-slot-boundp): Doc fix.
6629
6630 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
6631 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
6632
6633 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
6634 (eieio-custom-object-apply-reset):
6635 Fix typos in docstrings and error messages.
6636
6637 * emacs-lisp/eieio-datadebug.el (data-debug-show):
6638 Fix typo in docstring.
6639
6640 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
6641 (eieio-browse-tree): Doc fix.
6642 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
6643 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
6644 Fix typos in docstrings.
6645
6646 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
6647 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
6648 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
6649 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
6650 Reflow docstrings.
6651
6652 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
6653
6654 * vc-hg.el (log-view-vc-backend): Declare for compiler.
6655 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
6656 Set log-view-vc-backend so that diff can work.
6657
6658 * log-view.el (log-view-diff): Use vc-diff-internal instead of
6659 vc-version-diff.
6660 (vc-diff-internal): Autoload this instead of vc-version-diff.
6661
6662 2009-10-05 Eli Zaretskii <eliz@gnu.org>
6663
6664 * simple.el (eval-expression): Doc fix.
6665
6666 * progmodes/cwarn.el (cwarn-mode): Doc fix.
6667
6668 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
6669
6670 * files.el (directory-files-no-dot-files-regexp): New defconst.
6671 (delete-directory): Use it.
6672 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
6673
6674 * net/tramp.el (tramp-verbose): Fix docstring.
6675 (tramp-methods): Add recursive option to `tramp-copy-args'.
6676 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
6677 "scp1_old", "scp2_old", "rsync", "rsyncc".
6678 (tramp-default-method): Check also for `auth-source-user-or-password'.
6679 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
6680 Add handler for `copy-directory'.
6681 (tramp-handle-copy-directory): New defun.
6682 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
6683 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
6684 Optimize sent command.
6685
6686 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
6687
6688 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
6689 window if necessary.
6690
6691 * calendar/calendar.el (calendar-basic-setup): Don't call
6692 switch-to-buffer in a dedicated window.
6693
6694 2009-10-05 Karl Fogel <kfogel@red-bean.com>
6695
6696 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
6697 don't do anything related to relocating, just return nil.
6698 (bookmark-error-no-filename): New error.
6699 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
6700 bookmark has no file. Don't even attempt to handle things that
6701 are not files; the whole point of custom handlers is to keep that
6702 knowledge elsewhere anyway. Tighten some comments.
6703 (bookmark-file-or-variation-thereof): Remove now-unused function.
6704 (bookmark-location): Doc string fix.
6705 (Bug#4250)
6706
6707 2009-10-04 Karl Fogel <kfogel@red-bean.com>
6708
6709 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
6710 don't use a file dialog, because they usually don't know how to read
6711 a directory target from the user. (Bug#4230)
6712 Also, make sure the prompt can display directories as well as files.
6713
6714 2009-10-04 Karl Fogel <kfogel@red-bean.com>
6715
6716 * bookmark.el (bookmark-set, bookmark-buffer-name):
6717 Improve doc strings. (Bug#1193)
6718
6719 2009-10-04 Karl Fogel <kfogel@red-bean.com>
6720
6721 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
6722 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
6723 (bookmark-get-annotation, bookmark-set-annotation)
6724 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
6725 (bookmark-set-position, bookmark-get-front-context-string)
6726 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
6727 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
6728 (bookmark-jump-other-window, bookmark-handle-bookmark)
6729 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
6730 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
6731 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
6732 Improve doc strings to say whether bookmark can be a string or
6733 a record or both, and make other consistency and clarity fixes.
6734 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
6735 (bookmark-default-annotation-text, bookmark-yank-word)
6736 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
6737 (bookmark-import-new-list, bookmark-maybe-rename)
6738 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
6739 (bookmark-bmenu-bookmark): Give these doc strings.
6740 (bookmark-bmenu-check-position): Give this a doc string, but also
6741 add a FIXME comment about how the function may be pointless.
6742 (bookmark-default-handler): Rework doc string and change a
6743 parameter name, to clarify that this takes a bookmark record
6744 not a bookmark name.
6745 (bookmark-set): Change a parameter name to indicate its meaning,
6746 and improve the doc string a bit.
6747 (Bug#4188)
6748
6749 2009-10-04 Karl Fogel <kfogel@red-bean.com>
6750
6751 * bookmark.el (bookmark-alist): Document the new `handler' element
6752 in the param alist.
6753 (bookmark-make-record-function): Adjust documentation for above.
6754 (Bug#4193)
6755
6756 2009-10-04 Karl Fogel <kfogel@red-bean.com>
6757
6758 * info.el (Info-bookmark-make-record): Document this function.
6759 (Info-bookmark-jump): Document with a doc string, not just a comment.
6760 (Bug#4203)
6761
6762 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
6763
6764 * files.el (copy-directory): New defun.
6765
6766 * dired-aux.el (dired-copy-file-recursive): Use it.
6767
6768 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
6769
6770 * files-x.el (modify-dir-local-variable)
6771 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
6772 docstrings.
6773
6774 * recentf.el (recentf-unload-function): New function.
6775
6776 2009-10-04 Glenn Morris <rgm@gnu.org>
6777
6778 * window.el (window-full-height-p): Add doc string.
6779
6780 2009-10-04 Martin Rudalics <rudalics@gmx.at>
6781
6782 * window.el (window-full-height-p): New function. (Bug#4543)
6783
6784 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
6785
6786 * vc.el: Remove commented out code.
6787 (vc-derived-from-dir-mode): Remove, unused.
6788 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
6789
6790 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
6791
6792 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6793 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
6794 there could be recursive loading when `default-directory' is a
6795 remote file name. (Bug#4614)
6796
6797 2009-10-03 Glenn Morris <rgm@gnu.org>
6798
6799 * calendar/calendar.el (calendar-basic-setup): Handle the case where
6800 the frame is wide.
6801 (calendar-generate-window): Test for shrinkability rather than width.
6802
6803 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
6804 reusing existing buffers, in case we happen to visit two files with the
6805 same basename. (Bug#4593)
6806
6807 2009-10-02 Eli Zaretskii <eliz@gnu.org>
6808
6809 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
6810 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
6811 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
6812 subdirs of cedet as well.
6813 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
6814
6815 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6816
6817 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
6818 Obey advertised-signature-table.
6819
6820 * help-fns.el (help-function-arglist): Don't check
6821 advertised-signature-table.
6822 (describe-function-1): Do it here instead so it also applies to subrs.
6823
6824 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
6825
6826 * simple.el (start-file-process): Say in the doc-string, that file
6827 handlers might not support pty association, if PROGRAM is nil.
6828
6829 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
6830 HOST and USER are strings. They are nil, when there are
6831 incomplete entries in ~/.netrc, for example.
6832 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
6833 root directory ("device busy" error otherwise).
6834
6835 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
6836 Flush file properties of created directory.
6837
6838 2009-10-02 Eli Zaretskii <eliz@gnu.org>
6839
6840 * makefile.w32-in (WINS_BASIC): Remove cedet.
6841 (WINS_CEDET): Add cedet.
6842 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
6843
6844 2009-10-02 Kevin Ryde <user42@zip.com.au>
6845
6846 * net/browse-url.el (browse-url): Pass any symbol in
6847 browse-url-browser-function to `apply', since if you've mistakenly put
6848 an unbound symbol then the error is clearer. (Bug#4531)
6849
6850 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
6851
6852 * allout.el (allout-init, allout-back-to-current-heading)
6853 (allout-beginning-of-current-entry, allout-ascend-to-depth)
6854 (allout-ascend, allout-up-current-level, allout-end-of-level)
6855 (allout-previous-visible-heading, allout-forward-current-level)
6856 (allout-backward-current-level, allout-show-children):
6857 * apropos.el (apropos-describe-plist):
6858 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
6859 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
6860 * completion.el (add-completion, add-permanent-completion):
6861 * descr-text.el (describe-text-category, describe-char):
6862 * desktop.el (desktop-lazy-abort):
6863 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
6864 * dired.el (dired-build-subdir-alist):
6865 * ediff.el (ediff-version):
6866 * elide-head.el (elide-head, elide-head-show):
6867 * emerge.el (emerge-version):
6868 * env.el (getenv):
6869 * face-remap.el (variable-pitch-mode):
6870 * faces.el (describe-face):
6871 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
6872 (dired-at-point):
6873 * files.el (find-file-existing, auto-save-mode):
6874 * font-lock.el (font-lock-fontify-buffer):
6875 * help-fns.el (describe-function, describe-variable)
6876 (describe-syntax, describe-categories):
6877 * help.el (view-lossage, describe-bindings, describe-key)
6878 (describe-mode):
6879 * hexl.el (hexl-current-address):
6880 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
6881 * info.el (Info-goto-emacs-key-command-node):
6882 * log-edit.el (log-edit-insert-cvs-template)
6883 (log-edit-insert-cvs-rcstemplate):
6884 * menu-bar.el (menu-bar-mode):
6885 * mouse.el (mouse-appearance-menu):
6886 * newcomment.el (comment-indent-new-line):
6887 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
6888 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
6889 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
6890 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
6891 * recentf.el (recentf-mode):
6892 * savehist.el (savehist-mode, savehist-save):
6893 * shadowfile.el (shadow-copy-files):
6894 * simple.el (kill-ring-save, next-line, previous-line)
6895 (normal-erase-is-backspace-mode):
6896 * strokes.el (strokes-update-window-configuration)
6897 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
6898 (strokes-xpm-for-stroke):
6899 * time.el (emacs-uptime, emacs-init-time):
6900 * tutorial.el (tutorial--describe-nonstandard-key)
6901 (tutorial--detailed-help):
6902 * type-break.el (type-break-mode)
6903 (type-break-mode-line-message-mode, type-break-query-mode)
6904 (type-break-guesstimate-keystroke-threshold):
6905 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
6906 * version.el (emacs-version):
6907 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
6908 * winner.el (winner-mode):
6909 * calendar/timeclock.el (timeclock-in, timeclock-out)
6910 (timeclock-status-string, timeclock-change)
6911 (timeclock-workday-remaining-string)
6912 (timeclock-workday-elapsed-string)
6913 (timeclock-when-to-leave-string):
6914 * calendar/todo-mode.el (todo-add-category):
6915 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
6916 * emacs-lisp/autoload.el (update-file-autoloads):
6917 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
6918 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
6919 (checkdoc-message-text, checkdoc-defun):
6920 * emacs-lisp/debug.el (debugger-list-functions):
6921 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
6922 * emacs-lisp/eieio-opt.el (eieio-describe-class)
6923 (eieio-describe-generic):
6924 * emacs-lisp/lisp-mnt.el (lm-synopsis):
6925 * emacs-lisp/shadow.el (list-load-path-shadows):
6926 * emulation/cua-base.el (cua-mode):
6927 * emulation/edt.el (edt-set-scroll-margins):
6928 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
6929 (tpu-toggle-regexp, tpu-toggle-search-direction)
6930 (tpu-toggle-rectangle, tpu-toggle-control-keys):
6931 * emulation/tpu-extras.el (tpu-set-scroll-margins):
6932 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
6933 (viper-set-parsing-style-toggling-macro)
6934 (viper-set-emacs-state-searchstyle-macros):
6935 * emulation/viper.el (viper-set-hooks):
6936 * eshell/esh-mode.el (eshell-truncate-buffer):
6937 * international/mule-cmds.el (prefer-coding-system)
6938 (describe-input-method, describe-language-environment):
6939 * international/mule-diag.el (list-character-sets)
6940 (describe-character-set, describe-coding-system)
6941 (describe-fontset, list-fontsets, list-input-methods):
6942 * mail/sendmail.el (mail-signature):
6943 * net/ange-ftp.el (ange-ftp-copy-file):
6944 * net/browse-url.el (browse-url):
6945 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
6946 * net/quickurl.el (quickurl-add-url):
6947 * net/rcirc.el (names, topic):
6948 * net/xesam.el (xesam-mode):
6949 * play/5x5.el (5x5-new-game):
6950 * play/yow.el (apropos-zippy):
6951 * progmodes/ada-mode.el (ada-mode-version):
6952 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
6953 (f90-end-of-block)
6954 (f90-beginning-of-block):
6955 * progmodes/fortran.el (fortran-end-of-block)
6956 (fortran-beginning-of-block):
6957 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
6958 * progmodes/python.el (python-describe-symbol, python-shell):
6959 * term/ns-win.el (ns-print-buffer):
6960 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
6961 * textmodes/flyspell.el (flyspell-mode-on):
6962 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
6963 (pages-directory-for-addresses):
6964 * textmodes/table.el (table-recognize-cell)
6965 (table-query-dimension, table-generate-source)
6966 (table-insert-sequence, table--warn-incompatibility):
6967 * textmodes/tex-mode.el (tex-validate-buffer):
6968 * textmodes/texinfmt.el (texinfmt-version)
6969 (texinfo-format-buffer):
6970 Use `called-interactively-p' instead of `interactive-p'.
6971
6972 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
6973
6974 * image-mode.el (image-toggle-display):
6975 * emacs-lisp/elp.el (elp-instrument-function):
6976 * emacs-lisp/advice.el (ad-make-advised-definition):
6977 * emacs-lisp/easy-mmode.el (define-minor-mode):
6978 * net/browse-url.el (browse-url-maybe-new-window):
6979 * progmodes/sh-script.el (sh-learn-buffer-indent):
6980 Pass new argument 'any to `called-interactively-p'.
6981
6982 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
6983
6984 * international/uni-bidi.el:
6985 * international/uni-category.el:
6986 * international/uni-combining.el:
6987 * international/uni-comment.el:
6988 * international/uni-decimal.el:
6989 * international/uni-decomposition.el:
6990 * international/uni-digit.el:
6991 * international/uni-lowercase.el:
6992 * international/uni-mirrored.el:
6993 * international/uni-name.el:
6994 * international/uni-numeric.el:
6995 * international/uni-old-name.el:
6996 * international/uni-titlecase.el:
6997 * international/uni-uppercase.el:
6998 Regenerate from Unicode 5.2.0 data.
6999
7000 2009-10-01 Glenn Morris <rgm@gnu.org>
7001
7002 * Makefile.in (ELCFILES): Regenerate.
7003
7004 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7005
7006 * subr.el (interactive-p): Mark obsolete.
7007 (called-interactively-p): Make the optional-ness of `kind' obsolete.
7008 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7009 advertised-signature-table for subroutines as well.
7010
7011 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7012 (set-advertised-calling-convention): New function.
7013 (make-obsolete, define-obsolete-function-alias)
7014 (make-obsolete-variable, define-obsolete-variable-alias):
7015 Make the optional-ness of `when' obsolete.
7016 (define-obsolete-face-alias): Make `when' non-optional.
7017 * help-fns.el (help-function-arglist):
7018 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
7019 Use advertised-signature-table.
7020
7021 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
7022
7023 * files.el (delete-directory): New defun. The original function
7024 in fileio.c has been renamed to `delete-directory-internal'.
7025
7026 * dired.el (dired-delete-file): Call `delete-directory' with
7027 RECURSIVE parameter.
7028
7029 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
7030 parameter RECURSIVE. Implementation is missing.
7031
7032 * net/tramp.el (tramp-handle-make-directory): Flush upper
7033 directory's file properties.
7034 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
7035 (tramp-handle-dired-recursive-delete-directory): Flush directory
7036 properties after the remove command only.
7037
7038 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7039 Handle optional parameter RECURSIVE.
7040
7041 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
7042 Handle optional parameter RECURSIVE.
7043
7044 * net/tramp-smb.el (tramp-smb-errors): Add error message for
7045 connection timeout.
7046 (tramp-smb-handle-delete-directory): Handle optional parameter
7047 RECURSIVE.
7048
7049 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7050
7051 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
7052 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
7053 (byte-compile-defmacro): Use backquotes.
7054
7055 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
7056
7057 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
7058 has no associated file.
7059 (vc-resynch-buffer): Use vc-dir-buffers.
7060
7061 2009-10-01 Glenn Morris <rgm@gnu.org>
7062
7063 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7064 (chart-file-count):
7065 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7066 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7067 * emacs-lisp/eieio-opt.el (eieio-describe-class):
7068 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7069 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7070 (eieio-copy-parents-into-subclass, make-instance, class-children)
7071 (eieio-generic-form):
7072
7073 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7074 match-data. (Bug#4555).
7075
7076 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7077 rather than parsing it as a regexp. This relaxes the layout
7078 requirements and makes errors easier to detect.
7079 (check-declare-verify): Check file is regular.
7080 (check-declare-directory): Doc fix.
7081 * subr.el (declare-function): Doc fix.
7082
7083 * ibuffer.el (ibuffer-format-qualifier):
7084 * isearch.el (hi-lock-regexp-okay):
7085 * calc/calc.el (math-zerop):
7086 * mail/uce.el (rmail-msgbeg, rmail-msgend):
7087 * term/w32-win.el (setup-default-fontset, set-fontset-font):
7088 Remove unused declarations.
7089
7090 2009-09-30 Glenn Morris <rgm@gnu.org>
7091
7092 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7093
7094 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7095 filename is not a string.
7096
7097 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
7098
7099 * files.el (safe-local-eval-forms): Fix typo.
7100
7101 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
7102
7103 * vc-hooks.el (vc-dir-buffers): New var.
7104 (vc-state-refresh): New function.
7105 (vc-state): Use it.
7106 (vc-after-save): Always ask the backend to recompute the new state.
7107 Always call vc-dir if necessary, using vc-dir-buffers.
7108 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7109 Use vc-dir-buffers.
7110 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7111 (vc-dir-prepare-status-buffer, vc-dir-update)
7112 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7113 Don't call expand-file-name on default-directory.
7114
7115 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7116
7117 * speedbar.el (speedbar-item-delete):
7118 * calc/calc-prog.el (calc-kbd-if):
7119 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7120
7121 * epa.el (epa-key-list-mode-map):
7122 * hi-lock.el (hi-lock-menu): Fix typos in menus.
7123
7124 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7125 (hs-show-hook): Fix typo in docstring.
7126
7127 2009-09-29 Glenn Morris <rgm@gnu.org>
7128
7129 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7130 file-name-nondirectory call preventing location of cedet files.
7131 (check-declare-verify): Use literal search rather than re-search.
7132 Add basic defmethod and defclass, and define-overloadable-function.
7133
7134 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7135 Use tramp-compat-file-attributes rather than nonexistent
7136 tramp-compat-handle-file-attributes.
7137
7138 * Makefile.in (lisptagsfiles4): New.
7139 (AUTOGENEL): Add cedet loaddefs files.
7140 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7141 (update-elclist, compile-always, backup-compiled-files)
7142 (bootstrap-clean): Add yet another directory level.
7143 (update-elclist): Use LC_COLLATE rather than COLLATE.
7144 (ELCFILES): Update, via `make update-elclist'.
7145
7146 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7147
7148 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7149 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7150 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7151
7152 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
7153
7154 * Makefile.in (lisptagsfiles3): Define.
7155 (TAGS, TAGS-LISP): Use it.
7156 (update-elclist): Add third directory level to look for elc files.
7157 (compile-always): Likewise.
7158 (backup-compiled-files): Likewise.
7159 (bootstrap-clean): Likewise.
7160 (ELCFILES): Update.
7161
7162 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
7163
7164 * Makefile.in (ELCFILES): Add CEDET files.
7165
7166 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
7167
7168 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7169
7170 * net/tramp.el (top): Require tramp-imap.
7171
7172 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7173 Use `tramp-compat-handle-file-attributes'.
7174
7175 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
7176
7177 * net/tramp-imap.el: New package.
7178
7179 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7180
7181 * whitespace.el (whitespace-trailing-regexp)
7182 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7183 Fix doc string.
7184
7185 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
7186
7187 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7188 menu.
7189
7190 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7191 menu-bar-ediff-menu.
7192
7193 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7194 define-overloadable-function.
7195
7196 * progmodes/autoconf.el: Provide autoconf as well, so that this
7197 file can be `require'd.
7198
7199 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7200
7201 * emacs-lisp/autoload.el (generated-autoload-feature)
7202 (generated-autoload-load-name): New vars.
7203 (autoload-rubric, autoload-generate-file-autoloads): Use them.
7204 (make-autoload): Recognize define-overloadable-function and
7205 defclass forms (for EIEIO).
7206
7207 * Makefile.in (update-subdirs): Exclude cedet directory.
7208
7209 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7210
7211 * term/ns-win.el: Don't set the region face background. (Bug#4381)
7212
7213 * faces.el: Default light-background background for region face to
7214 ns_selection_color under NS.
7215
7216 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
7217
7218 * net/imap-hash.el: New library, see NEWS.
7219
7220 * Makefile.in (ELCFILES): Add imap-hash.el.
7221
7222 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
7223
7224 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7225 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7226 * help-macro.el (make-help-screen): Avoid using an ambiguous function
7227 definition where the docstring could be taken for the return value.
7228
7229 2009-09-26 Glenn Morris <rgm@gnu.org>
7230
7231 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7232 Add option to only show images below a certain size.
7233 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7234 save-excursion calls.
7235
7236 2009-09-26 Eli Zaretskii <eliz@gnu.org>
7237
7238 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7239 subdirectories) and eieio.
7240
7241 2009-09-26 Alan Mackenzie <acm@muc.de>
7242
7243 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
7244 buggy bracketing. (Bug#4289)
7245
7246 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7247 character constants (as case labels). (Bug#4289)
7248
7249 2009-09-25 Juri Linkov <juri@jurta.org>
7250
7251 * files.el (safe-local-eval-forms): Allow time-stamp in
7252 before-save-hook (Bug#4554).
7253
7254 2009-09-25 Drew Adams <drew.adams@oracle.com>
7255
7256 * menu-bar.el (list-buffers-directory): Doc fix.
7257
7258 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
7259
7260 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7261 Try and avoid copying twice the same paragraph.
7262 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7263 Remove save-excursion.
7264 (log-edit-changelog-entry): Do it here instead.
7265
7266 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
7267
7268 * bs.el (bs--get-file-name): Use `list-buffers-directory'
7269 when available, instead of hardcoding mode names. Doc fix.
7270
7271 * menu-bar.el (list-buffers-directory): Add docstring.
7272 Make automatically buffer-local.
7273
7274 * dired.el (dired-mode):
7275 * files.el (cd-absolute):
7276 * pcvs.el (cvs-temp-buffer):
7277 * pcvs-util.el (cvs-get-buffer-create):
7278 * shell.el (shell-mode):
7279 * vc-dir.el (vc-dir-mode):
7280 Don't make `list-buffers-directory' buffer local.
7281
7282 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
7283
7284 * comint.el (comint-exec, comint-run, make-comint):
7285 Doc fixes (Bug#4542).
7286
7287 2009-09-25 Glenn Morris <rgm@gnu.org>
7288
7289 * mail/rmailmm.el (rmail-mime): New custom group.
7290 Move all defcustoms in this file into this group.
7291 (rmail-mime-media-type-handlers-alist): Revert previous change.
7292 (rmail-mime-show-images): New option.
7293 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7294 references to it, since it wasn't actually used for anything.
7295 (rmail-mime-insert-image): New function.
7296 (rmail-mime-image): Use rmail-mime-insert-image.
7297 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7298 obey the value of `rmail-mime-show-images' option. Print the size of
7299 attachments.
7300
7301 2009-09-25 David Engster <deng@randomsample.de>
7302
7303 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
7304
7305 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7306
7307 * whitespace.el: Does not highlight trailing spaces While point is
7308 at end of line. Does not highligt spaces at beginning of buffer
7309 while point is at beginning of buffer. Does not highlight spaces
7310 at end of buffer while point is at end of buffer. (Bug#4177)
7311 New version 12.0.
7312 (whitespace-display-mappings): Adjust initialization.
7313 (whitespace-point, whitespace-font-lock-refontify): New vars.
7314 (whitespace-color-on, whitespace-color-off): Adjust code.
7315 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7316 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
7317 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
7318
7319 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
7320
7321 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
7322
7323 * textmodes/sgml-mode.el: Remove xml-mode alias.
7324
7325 * files.el (auto-mode-alist, conf-mode-maybe)
7326 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
7327
7328 2009-09-24 Alan Mackenzie <acm@muc.de>
7329
7330 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
7331 c-forward-conditionals, but it doesn't move point and doesn't set
7332 the mark.
7333 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
7334 (c-down-conditional-with-else, c-backward-conditional)
7335 (c-forward-conditional): Refactor to use c-scan-conditionals.
7336
7337 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
7338
7339 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
7340 (help-default-arg-highlight): Remove.
7341 (help-highlight-arg): New function.
7342 (help-do-arg-highlight): Use it.
7343 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
7344
7345 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
7346
7347 * term.el (term-set-scroll-region, term-handle-ansi-escape):
7348 Undo last change, which didn't fix the problem and introduced others.
7349
7350 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
7351
7352 * progmodes/gdb-mi.el: Don't require speedbar.
7353 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
7354
7355 2009-09-24 Glenn Morris <rgm@gnu.org>
7356
7357 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
7358
7359 * term/ns-win.el (ns-reg-to-script): Define for compiler.
7360
7361 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
7362 there is no newline after the final mime boundary. (Bug#4539)
7363 Move markers on insertion so that any buttons inserted don't end up in
7364 the next part of a multipart message.
7365 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
7366 (rmail-mime-bulk-handler): Optionally handle images.
7367 (rmail-mime-image): New button action.
7368 (rmail-mime-image-handler): New function.
7369 (rmail-mime-mode): New mode.
7370 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
7371
7372 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
7373
7374 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
7375 than just dropping elements from it (bug#4504).
7376
7377 * term.el (term-set-scroll-region): Don't move cursor any more.
7378 (term-handle-ansi-escape): Call term-goto here instead.
7379 Suggested by Ivan Kanis <apple@kanis.eu>.
7380
7381 * term.el: Require CL.
7382 (term-ansi-reset): New function.
7383 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
7384 (term-handle-colors-array): Simplify.
7385
7386 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
7387
7388 * allout.el (allout-overlay-interior-modification-handler)
7389 (allout-obtain-passphrase):
7390 * epa-file.el (epa-file-write-region):
7391 * ps-print.el (ps-begin-job):
7392 * vc-hooks.el (vc-toggle-read-only):
7393 * vc-rcs.el (vc-rcs-rollback):
7394 * vc-sccs.el (vc-sccs-rollback):
7395 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
7396 (vc-version-diff, vc-revert, vc-rollback):
7397 * wdired.el (wdired-check-kill-buffer):
7398 * emacs-lisp/authors.el (authors):
7399 * net/socks.el (socks-open-connection):
7400 * net/zeroconf.el (zeroconf-service-add-hook):
7401 * obsolete/vc-mcvs.el (vc-mcvs-register):
7402 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
7403 (gdb-select-frame):
7404 * progmodes/grep.el (lgrep, rgrep):
7405 * progmodes/idlw-help.el (idlwave-help-check-locations)
7406 (idlwave-help-html-link, idlwave-help-assistant-open-link):
7407 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7408 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
7409 (reftex-toc-rename-label): Fix typos in error messages.
7410
7411 * dired-aux.el (dired-do-shell-command): Reflow docstring.
7412 (dired-copy-how-to-fn): Doc fix.
7413 (dired-files-attributes, dired-read-shell-command):
7414 Fix typos in docstrings.
7415
7416 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
7417 (dired-x-find-file-other-window): Reflow docstrings.
7418 (dired-omit-marker-char, dired-read-shell-command)
7419 (dired-x-submit-report): Fix typos in docstrings.
7420
7421 * shell.el (shell-mode-hook):
7422 * view.el (View-scroll-line-forward):
7423 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
7424 Fix typos in docstrings.
7425
7426 * net/dig.el (dig-invoke): Fix typo in docstring.
7427 (query-dig): Reflow docstring.
7428
7429 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
7430 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
7431 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
7432 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
7433 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
7434 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
7435 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
7436 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
7437 (idlwave-completion-map, idlwave-current-indent)
7438 (idlwave-custom-ampersand-surround, idlwave-customize)
7439 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
7440 (idlwave-define-abbrev, idlwave-determine-class-special)
7441 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
7442 (idlwave-end-block-reg, idlwave-end-of-statement)
7443 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
7444 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
7445 (idlwave-explicit-class-listed, idlwave-file-header)
7446 (idlwave-fill-paragraph, idlwave-find-class-definition)
7447 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
7448 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
7449 (idlwave-in-quote, idlwave-indent-action-table)
7450 (idlwave-indent-expand-table, idlwave-indent-line)
7451 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
7452 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
7453 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
7454 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
7455 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
7456 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
7457 (idlwave-outlawed-buffers, idlwave-popup-select)
7458 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
7459 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
7460 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
7461 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
7462 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
7463 (idlwave-statement-type, idlwave-struct-skip)
7464 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
7465 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
7466 (idlwave-what-module-find-class): Fix typos in docstrings.
7467 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
7468 (idlwave-calculate-cont-indent, idlwave-expand-equal)
7469 (idlwave-find-module, idlwave-find-structure-definition)
7470 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
7471 (idlwave-list-load-path-shadows, idlwave-next-statement)
7472 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
7473 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
7474 (idlwave-template): Reflow docstrings.
7475
7476 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
7477 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
7478 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
7479 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
7480 (idlwave-shell-display-line, idlwave-shell-display-wframe)
7481 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
7482 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
7483 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
7484 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
7485 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
7486 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
7487 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
7488 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
7489 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
7490 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
7491 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
7492 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
7493 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
7494 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
7495 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
7496 Fix typos in docstrings.
7497 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
7498 (idlwave-shell-hide-output, idlwave-shell-mode)
7499 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
7500 Reflow docstrings.
7501
7502 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
7503
7504 2009-09-24 Ivan Kanis <apple@kanis.eu>
7505
7506 * term.el (term-bold-attribute): New var.
7507 (term-handle-colors-array): Use it.
7508
7509 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
7510
7511 * progmodes/gdb-mi.el (gdb-version): New variable.
7512 (gdb-non-stop-handler): Set gdb-version.
7513 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
7514 Condition "--thread" option on gdb-version.
7515 (gdb-invalidate-threads): Remove unused argument.
7516
7517 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7518
7519 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
7520 to looking-back to avoid ridiculous slow down in large files (bug#4511).
7521
7522 2009-09-23 Glenn Morris <rgm@gnu.org>
7523
7524 * mail/rmail.el (rmail-reply): Don't try to add a References header when
7525 replying to mail without References or Message-Id. (Bug#4525)
7526
7527 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
7528
7529 * term/ns-win.el (ns-reg-to-script): New variable.
7530
7531 2009-09-23 Daiki Ueno <ueno@unixuser.org>
7532
7533 * epg.el (epg-wait-for-status): Preserve existing 'error results.
7534
7535 2009-09-22 Sam Steingold <sds@gnu.org>
7536
7537 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
7538 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
7539 to 1 because hg returns status 1 when nothing is found.
7540 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
7541
7542 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
7543
7544 * textmodes/fill.el: Convert to utf-8 encoding.
7545 (fill-french-nobreak-p): Remove redundant » and « inherited from our
7546 pre-unicode days.
7547
7548 * add-log.el (change-log-fill-forward-paragraph): New function.
7549 (change-log-mode): Use it so fill-region DTRT.
7550 Set fill-indent-according-to-mode here rather than in
7551 change-log-fill-paragraph.
7552 (change-log-fill-paragraph): Remove.
7553
7554 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
7555
7556 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
7557 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
7558
7559 2009-09-22 Glenn Morris <rgm@gnu.org>
7560
7561 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
7562 the scroll-bar scroll the calendar window rather than the buffer.
7563
7564 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
7565 commands that move point (as opposed to scrolling).
7566
7567 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
7568
7569 * emacs-lisp/elint.el (elint): New custom group.
7570 (elint-log-buffer): Make it a defcustom.
7571 (elint-scan-preloaded, elint-ignored-warnings)
7572 (elint-directory-skip-re): New options.
7573 (elint-builtin-variables): Doc fix.
7574 (elint-preloaded-env): New variable.
7575 (elint-unknown-builtin-args): Add an entry for encode-time.
7576 (elint-extra-errors): Make it a variable rather than a constant.
7577 (elint-preloaded-skip-re): New constant.
7578 (elint-directory): Skip files matching elint-directory-skip-re.
7579 (elint-features): New variable, local to linted buffers.
7580 (elint-update-env): Initialize elint-features. Possibly add
7581 elint-preloaded-env to the buffer's environment.
7582 (elint-get-top-forms): Bind elint-current-pos, for log messages.
7583 Skip quoted forms.
7584 (elint-init-form): New function, extracted from elint-init-env.
7585 Make non-list forms a warning rather than an error.
7586 Add the mode-map for define-derived-mode. Handle define-minor-mode,
7587 easy-menu-define, put that adds an error-condition, and provide.
7588 When requiring cl, also require cl-macs. Really require cl, to handle
7589 some cl macros. Store required libraries in the list elint-features,
7590 so as not to re-load them. Treat cc-require like require.
7591 (elint-init-env): Call elint-init-form to do the work.
7592 Handle eval-and-compile and such like.
7593 (elint-add-required-env): Do not clear messages.
7594 (elint-special-forms): Add handlers for function, defalias, if, when,
7595 unless, and, or.
7596 (elint-form): Add optional argument to ignore elint-special-forms,
7597 useful to prevent recursive calls from handlers. Doc fix.
7598 Respect elint-ignored-warnings.
7599 (elint-form): Respect elint-ignored-warnings.
7600 (elint-bound-variable, elint-bound-function): New variables.
7601 (elint-unbound-variable): Respect elint-bound-variable.
7602 (elint-get-args): Respect elint-bound-function.
7603 (elint-check-cond-form): Add some simple handling for (f)boundp and
7604 featurep tests.
7605 (elint-check-defalias-form): New handler.
7606 (elint-check-let-form): Make an empty let a warning rather than an
7607 error.
7608 (elint-check-setq-form): Make an empty setq a warning rather than an
7609 error. Respect elint-ignored-warnings.
7610 (elint-check-defvar-form): Accept null doc-strings.
7611 (elint-check-conditional-form): New handler. Does some simple-minded
7612 checking of featurep and (f)boundp tests.
7613 (elint-put-function-args): New function.
7614 (elint-initialize): Use elint-scan-doc-file rather than
7615 elint-find-builtin-variables. Use elint-put-function-args.
7616 Possibly scan preloaded-file-list.
7617 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
7618 extend to handle functions as well.
7619
7620 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
7621
7622 * linum.el (linum-delete-overlays, linum-update-window):
7623 Do not modify the right margin. (Bug#3971)
7624
7625 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
7626
7627 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
7628 nxml-mode instead of xml-mode.
7629
7630 2009-09-21 Kevin Ryde <user42@zip.com.au>
7631
7632 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
7633
7634 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7635
7636 * net/dig.el (dig-mode): Use define-derived-mode.
7637
7638 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
7639
7640 * vc-dispatcher.el (vc-do-command): Return the process object in
7641 the asynchronous case. Use when instead of if. Do not run
7642 vc-exec-after to display a message if not enabled. (Bug#4463)
7643
7644 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
7645 properties to the stash strings.
7646 (vc-git-stash-list): Return a list of strings.
7647 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
7648 (vc-git-stash-show-at-point): New functions.
7649 (vc-git-stash-map): New keymap.
7650
7651 * register.el (ctl-x-r-map): Define the keys here instead of
7652 using autoload.
7653
7654 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
7655
7656 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
7657 list, to workaround performance problem (bug#4485).
7658
7659 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
7660
7661 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
7662
7663 2009-09-20 Daiki Ueno <ueno@unixuser.org>
7664
7665 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7666 Document that this option is not recommended to use.
7667
7668 2009-09-19 Glenn Morris <rgm@gnu.org>
7669
7670 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
7671 variable `var'.
7672
7673 * calc/calc-alg.el (var):
7674 * calc/calcalg2.el (var): Define for compiler.
7675
7676 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
7677
7678 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
7679 Doc fix (Bug#3932).
7680
7681 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
7682
7683 * time-stamp.el (time-stamp-month-dd-yyyy)
7684 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
7685 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
7686 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
7687 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
7688 Remove functions that have been obsolete since 1995 (Bug#4436).
7689
7690 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
7691 indent buffer only if called interactively (Bug#4452).
7692
7693 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
7694 Eli Zaretskii <eliz@gnu.org>
7695
7696 This fixes bug#4197 (merged to bug#865, though not identical).
7697 * server.el (server-auth-dir): Add docstring note about FAT32.
7698 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
7699 but warn against using them.
7700
7701 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
7702
7703 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
7704 older GDB where there is no has_more field.
7705
7706 2009-09-19 Glenn Morris <rgm@gnu.org>
7707
7708 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
7709
7710 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
7711
7712 * files.el (auto-mode-alist): Change default for XML files to nXML
7713 mode (Bug#4169).
7714
7715 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
7716
7717 * server.el (server-ensure-safe-dir): Pass 'integer
7718 to `file-attributes', as suggested.
7719
7720 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7721
7722 * dired-aux.el (dired-query-alist): Remove spurious backslash.
7723 (dired-query): Use read-key.
7724
7725 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
7726
7727 * cus-start.el (ns-use-qd-smoothing): Remove.
7728
7729 2009-09-18 Glenn Morris <rgm@gnu.org>
7730
7731 * allout.el (top-level): Remove unnecessary progn.
7732
7733 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
7734
7735 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
7736 definition of abbrev table.
7737
7738 * speedbar.el (speedbar-track-mouse):
7739 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
7740 * net/eudc.el (eudc-expand-inline):
7741 * net/newst-backend.el (newsticker--cache-read-feed):
7742 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
7743 condition-case handlers.
7744
7745 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
7746
7747 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
7748 (gdb-var-list): Add an element for has_more field.
7749 (gdb-non-stop-handler): Enable pretty printing for STL containers.
7750 (gdb-var-create-handler, gdb-var-list-children-handler-1)
7751 (gdb-var-update-handler-1): Parse output of dynamic variable
7752 objects (STL containers).
7753 (gdb-var-delete-1): Pass var1 as an explicit second argument.
7754 (gdb-get-field): Delete alias. Use bindat-get-field directly.
7755
7756 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
7757 gdb-var-list.
7758 (gud-speedbar-buttons): Make node expandable if expression "has more"
7759 children.
7760
7761 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
7762
7763 * startup.el (emacs-quick-startup): Remove variable and all uses.
7764 (command-line): Set `inhibit-x-resources' instead.
7765 (command-line-1): Use `inhibit-x-resources' instead.
7766
7767 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
7768
7769 * subr.el: Fix last change to avoid using the `unless' macro,
7770 which breaks bootstrapping.
7771
7772 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7773
7774 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
7775 extended definitions, in case we reload subr.el after having
7776 loaded CL.
7777 (eval-next-after-load): Mark as obsolete.
7778
7779 2009-09-17 Juri Linkov <juri@jurta.org>
7780
7781 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
7782 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
7783 (menu-bar-showhide-menu, menu-bar-tools-menu)
7784 (menu-bar-describe-menu, menu-bar-help-menu)
7785 (minibuffer-local-completion-map, minibuffer-local-map):
7786 Fix list quoting.
7787
7788 2009-09-17 Glenn Morris <rgm@gnu.org>
7789
7790 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
7791 arguments, whether or not it has a handler.
7792
7793 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
7794
7795 * simple.el (hard-newline): Give it a doc-string.
7796
7797 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
7798 (lisp-mode-syntax-table): Give them doc-strings.
7799
7800 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
7801
7802 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
7803 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
7804 (menu-bar-options-menu, menu-bar-showhide-menu)
7805 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
7806 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
7807 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
7808 (menu-bar-options-menu, menu-bar-tools-menu)
7809 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
7810 (menu-bar-help-menu):
7811 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
7812 string arguments.
7813
7814 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
7815 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
7816 calls for the menu names and :help.
7817
7818 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7819
7820 * mouse.el (minor-mode-menu-from-indicator): Pay attention
7821 to :minor-mode-function (bug#4455).
7822
7823 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
7824
7825 * startup.el (command-line): Initialize the window-system after
7826 processing the command-line.
7827
7828 * textmodes/page.el (what-page): Make sure we don't inf-loop if
7829 page-delimiter matches the empty string.
7830
7831 2009-09-16 Glenn Morris <rgm@gnu.org>
7832
7833 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
7834 byte-compile-not-obsolete-var. It's a list now.
7835 (byte-compile-not-obsolete-funcs): New variable.
7836 (byte-compile-warn-obsolete): Don't warn about functions if they are in
7837 byte-compile-not-obsolete-funcs.
7838 (byte-compile-variable-ref, byte-compile-defvar): Update for
7839 byte-compile-not-obsolete-vars name-change and list nature.
7840 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
7841 and variables behind (f)boundp tests.
7842 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
7843
7844 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
7845
7846 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
7847
7848 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
7849
7850 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
7851 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
7852 Don't autoload.
7853
7854 2009-09-15 Stephen Eglen <stephen@gnu.org>
7855
7856 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
7857 the virtual-buffers, use the name of the buffer specified by
7858 find-file-noselect, as the match may be a symlink. (This was a
7859 problem if the target and the symlink had different names.)
7860
7861 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
7862
7863 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
7864
7865 * desktop.el (desktop-path): Check user-emacs-directory.
7866
7867 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
7868
7869 * loadup.el: Use after-load-functions to GC after loading each file.
7870 Remove the explicit GC calls that used to be sprinkled around.
7871
7872 * subr.el (after-load-functions): New hook.
7873 (do-after-load-evaluation): Run it. Use string-match-p to detect
7874 `obsolete' packages, rather than painfully extracting the relevant
7875 directory name.
7876
7877 2009-09-15 Glenn Morris <rgm@gnu.org>
7878
7879 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
7880 free variable `doc'.
7881
7882 * dired.el (dired-mode-map): Add menu entry for async shell command.
7883
7884 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
7885 variables, also consider the .elc files, since the .el files are
7886 normally gzipped (subsequent code locates the .el.gz from the .elc).
7887
7888 * calc/calc-prog.el (arglist): Define for compiler.
7889
7890 * calendar/diary-lib.el (diary-display-function): Change the default to
7891 fancy display.
7892 (body): Define for compiler.
7893
7894 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
7895 (byte-compile-file-form, byte-compile-lambda)
7896 (byte-compile-top-level-body, byte-compile-form)
7897 (byte-compile-variable-ref, byte-compile-setq)
7898 (byte-compile-setq-default, byte-compile-body)
7899 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
7900 (batch-byte-compile): Give some more local variables with common names
7901 a "bytecomp-" prefix to avoid masking warnings about free variables.
7902
7903 * startup.el (command-line-1): Give local variables with common names a
7904 distinguishing prefix, so as not to hide free variable warnings during
7905 bootstrap.
7906
7907 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
7908 clever and add a suffix to make a unique name, just let the user decide
7909 whether or not to overwrite it. If the input is a directory, write the
7910 default filename to that directory. (Bug#4388)
7911 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
7912 is a filename-as-a-directory.
7913
7914 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
7915
7916 * textmodes/page.el (what-page): Don't move to beginning of line.
7917 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
7918
7919 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
7920
7921 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
7922
7923 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
7924
7925 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
7926 * help.el (help-for-help-internal): Add purecopy calls for text.
7927
7928 * vc.el (top): print-log method now takes an optional SHORTLOG
7929 argument. Add a new method: root.
7930 (vc-root-diff, vc-print-root-log): New functions.
7931 (vc-log-short-style): New variable.
7932 (vc-print-log-internal): Add support for showing short logs.
7933
7934 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
7935 vc-print-root-log and vc-print-root-diff.
7936
7937 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
7938 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
7939 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
7940 short logs.
7941
7942 * vc-cvs.el (vc-cvs-print-log):
7943 * vc-mtn.el (vc-mtn-print-log):
7944 * vc-rcs.el (vc-rcs-print-log):
7945 * vc-sccs.el (vc-sccs-print-log):
7946 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
7947 that is ignored for now.
7948
7949 * vc-mtn.el (vc-mtn-annotate-command):
7950 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
7951
7952 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7953
7954 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
7955 to function-key-map, and give them ascii-character property.
7956 * term/x-win.el (x-alternatives-map):
7957 * term/ns-win.el (ns-alternatives-map):
7958 * term/internal.el (msdos-key-remapping-map):
7959 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
7960
7961 2009-09-14 Glenn Morris <rgm@gnu.org>
7962
7963 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
7964 temp-buffers (2009-09-12).
7965
7966 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
7967
7968 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
7969 the new read-key function.
7970
7971 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
7972
7973 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
7974 is defined (Bug#4405).
7975
7976 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
7977
7978 * recentf.el (recentf-cleanup): Use a hash table to find
7979 duplicates (Bug#4407).
7980
7981 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
7982
7983 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
7984 kp-0 to ascii equivalents (Bug#4325).
7985
7986 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
7987
7988 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
7989
7990 * eshell/em-hist.el:
7991 * eshell/em-dirs.el (eshell-complete-user-reference):
7992 Declare pcomplete functions and variables to avoid compiler warnings.
7993
7994 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
7995
7996 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
7997 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
7998 * eshell/em-alias.el (eshell-aliases-file):
7999 * eshell/em-hist.el (eshell-history-file-name):
8000 Use expand-file-name instead of concat to make file names (Bug#4308).
8001
8002 2009-09-13 Glenn Morris <rgm@gnu.org>
8003
8004 * ediff-merg.el (ediff-do-merge):
8005 * filesets.el (filesets-run-cmd):
8006 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
8007 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
8008 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
8009 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
8010 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
8011 Replace empty `let's with `progn'.
8012
8013 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8014
8015 * mail/sendmail.el (send-mail-function):
8016 * tooltip.el (tooltip-mode):
8017 * simple.el (transient-mark-mode):
8018 * rfn-eshadow.el (file-name-shadow-mode):
8019 * frame.el (blink-cursor-mode):
8020 * font-core.el (global-font-lock-mode):
8021 * files.el (temporary-file-directory)
8022 (small-temporary-file-directory, auto-save-file-name-transforms):
8023 * epa-hook.el (auto-encryption-mode):
8024 * composite.el (global-auto-composition-mode):
8025 Use custom-initialize-delay.
8026 * startup.el (command-line): Don't explicitly call
8027 custom-reevaluate-setting for all the above vars.
8028 * custom.el (custom-initialize-safe-set)
8029 (custom-initialize-safe-default): Delete.
8030
8031 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8032
8033 * term/x-win.el (x-initialize-window-system):
8034 * term/w32-win.el (w32-initialize-window-system):
8035 * term/ns-win.el (ns-initialize-window-system): Don't call
8036 mouse-wheel-mode since it's enabled globally by default already.
8037
8038 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
8039 actually define the variable, but only silences the byte-compiler.
8040 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
8041 before looking it up.
8042 (mouse-wheel-scroll-amount): Also reset the bindings if this value
8043 is changed.
8044
8045 2009-09-12 Glenn Morris <rgm@gnu.org>
8046
8047 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
8048 1000.
8049 (elint-add-required-env): Don't beep on error.
8050 (elint-forms): In case of error, return ENV unchanged.
8051 (elint-init-env): Skip non-list forms.
8052 (elint-log): Handle unknown file positions.
8053
8054 2009-09-12 Daiki Ueno <ueno@unixuser.org>
8055
8056 * epg.el (epg-make-context): Add autoload cookie.
8057 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
8058 (epg-decrypt-string, epg-start-verify, epg-verify-file)
8059 (epg-verify-string, epg-start-sign, epg-sign-file)
8060 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
8061 (epg-encrypt-string, epg-start-export-keys)
8062 (epg-export-keys-to-file, epg-export-keys-to-string)
8063 (epg-start-import-keys, epg-import-keys-from-file)
8064 (epg-import-keys-from-string, epg-start-receive-keys)
8065 (epg-receive-keys, epg-import-keys-from-server)
8066 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8067 (epg-sign-keys, epg-start-generate-key)
8068 (epg-generate-key-from-file, epg-generate-key-from-string):
8069 Remove autoload cookie.
8070
8071 2009-09-12 Eli Zaretskii <eliz@gnu.org>
8072
8073 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8074 reevaluation of trash-directory.
8075
8076 * mwheel.el: Fix last change.
8077 (mouse-wheel-mode): New defvar.
8078 (mouse-wheel-mode): Remove autoload cookie.
8079
8080 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8081
8082 * mwheel.el (mwheel-installed-bindings): New var.
8083 (mouse-wheel-mode): Use it, so as to make sure we really remove all
8084 the bindings we set last time. Use custom-initialize-delay.
8085 * loadup.el: Load mwheel after term/*-win.el.
8086 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8087 and mouse-wheel-up-event now that their first evaluation is done
8088 sufficiently late to be correct.
8089
8090 * startup.el (tutorial-directory): Make it a defcustom.
8091 Use custom-initialize-delay rather than eval-at-startup to set it.
8092 * image.el (image-load-path): Make it a defcustom.
8093 Use custom-initialize-delay rather than eval-at-startup to set it.
8094 * subr.el (eval-at-startup): Remove.
8095 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8096
8097 * subr.el (do-after-load-evaluation): Warn the user after loading an
8098 obsolete package.
8099
8100 2009-09-12 Glenn Morris <rgm@gnu.org>
8101
8102 * proced.el (proced-mark-alt): Remove alias.
8103 (proced-mode-map): Remove proced-mark-alt.
8104
8105 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8106 Elint file and directory. Remove initialization entry.
8107
8108 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8109 commands.
8110 (elint-current-buffer): Set mode-line-process.
8111 (elint-init-env): Handle define-derived-mode.
8112 Fix declare-function with unspecified arglist. Guard against odd
8113 defalias statements (eg iso-insert's 8859-1-map).
8114 (elint-add-required-env): Use a temp buffer.
8115 (elint-form): Just print the function/macro name, not the whole form.
8116 Return env unchanged if we fail to parse a macro.
8117 (elint-forms): Guard against parse errors.
8118 (elint-output): New function, to handle batch mode.
8119 (elint-log-message): Add optional argument. Use elint-output.
8120 (elint-set-mode-line): New function.
8121
8122 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
8123
8124 * emacs-lisp/elp.el (elp-not-profilable): Add more
8125 functions (Bug#4233).
8126
8127 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
8128
8129 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8130 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8131
8132 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8133
8134 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8135 (gdb-var-list-children): Use json parsing.
8136
8137 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
8138
8139 * progmodes/js.el (js--proper-indentation): Handle the case where
8140 char-before is null. Reported by Deniz Dogan.
8141
8142 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8143
8144 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8145
8146 2009-09-11 Daiki Ueno <ueno@unixuser.org>
8147
8148 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8149 (epg-digest-algorithm-alist): Add SHA224.
8150 (epg-context-set-passphrase-callback)
8151 (epg-context-set-progress-callback): Add description about
8152 callback function.
8153
8154 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8155
8156 * custom.el (custom-delayed-init-variables): New var.
8157 (custom-initialize-delay): New function.
8158 * startup.el (command-line): "Re"evaluate all vars in
8159 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
8160 explicitly any more.
8161 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8162 to avoid creating a ~/.emacs.d at build-time (bug#4347).
8163
8164 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8165
8166 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8167
8168 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8169 (gdb-var-update-handler): Use json parsing.
8170
8171 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8172
8173 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8174 decode annotated text, regardless of language environment. (Bug#2741)
8175
8176 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8177
8178 * Makefile.in (autoloads): Make rmail.el writable as well.
8179
8180 2009-09-11 Glenn Morris <rgm@gnu.org>
8181
8182 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8183 loaddefs.el.
8184 * dired.el: Regenerate with extracted autoloads.
8185 * Makefile.in (autoloads): Make dired.el writable.
8186
8187 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8188 * ibuffer.el: Regenerate with extracted autoloads.
8189 * Makefile.in (autoloads): Make ibuffer.el writable.
8190
8191 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8192 * version.el (emacs-copyright, emacs-major-version)
8193 (emacs-minor-version): Reformat doc-strings for make-docfile.
8194
8195 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8196 functions and variables, since they must be stuff specific to some other
8197 platform.
8198 (apropos-print): Make mouse-click message less specific about button.
8199
8200 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8201 that records where a macro was defined.
8202 * help-fns.el (describe-function-1): Mention if a function has a
8203 compiler-macro.
8204 * help-mode.el (help-function-cmacro): New button.
8205
8206 * locate.el (top-level): Always require dired.
8207 (locate-mode-map): Initialize inside the defvar.
8208
8209 * net/ange-ftp.el (dired-compress-file): Declare.
8210 (ange-ftp-dired-compress-file): Add doc string.
8211
8212 * term/ns-win.el (x-display-name, x-setup-function-keys):
8213 Unify doc-strings with X versions.
8214
8215 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8216
8217 * emulation/crisp.el (crisp-mode-map): Move initialization
8218 into declaration.
8219 (crisp-mode): Use define-minor-mode.
8220
8221 * progmodes/xscheme.el (xscheme-evaluation-commands):
8222 Put a :advertised-binding property rather than using
8223 advertised-xscheme-send-previous-expression.
8224 (advertised-xscheme-send-previous-expression): Declare obsolete.
8225 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8226 `advertised-undo'.
8227 (crisp-mode): Add corresponding bindings to
8228 undo's :advertised-binding instead.
8229 * dired.el (dired-mode-map): Put a :advertised-binding property rather
8230 than using dired-advertised-find-file.
8231 (dired-advertised-find-file):
8232 * simple.el (advertised-undo):
8233 * wid-edit.el (advertised-widget-backward): Declare obsolete.
8234 (widget-keymap): Put a :advertised-binding property rather
8235 than using advertised-widget-backward.
8236 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8237 than using advertised-undo.
8238 * tutorial.el (tutorial--default-keys): Adjust accordingly.
8239
8240 2009-09-10 Simon South <ssouth@slowcomputing.org>
8241
8242 * progmodes/delphi.el (delphi-tab): Indent region when Transient
8243 Mark mode is enabled and region is active; otherwise indent or
8244 insert TAB as usual.
8245 (delphi-mode): Update description of TAB-key binding.
8246
8247 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8248
8249 * subr.el (define-key-rebound-commands): Mark obsolete.
8250 * startup.el (precompute-menubar-bindings): Remove.
8251 (normal-top-level): Remove obsolete code that tried to precompute
8252 menubar bindings.
8253 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8254 define-key-rebound-commands and precompute-menubar-bindings.
8255
8256 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
8257
8258 * net/imap.el (imap-interactive-login): Better messages.
8259 (imap-open): Fix bug with renamed buffer on reconnect.
8260 (imap-authenticate): Add buffer-local imap-last-authenticator variable
8261 for easier debugging and cleaner code. On successful (guessed based on
8262 server capabilities) secondary authentication, set imap-state
8263 correctly.
8264 (imap-last-authenticator): Define imap-last-authenticator as a variable
8265 to avoid warnings.
8266
8267 2009-09-10 Glenn Morris <rgm@gnu.org>
8268
8269 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8270
8271 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8272 (byte-compile-file-form-autoload): Don't warn about unknown functions
8273 where the autoload statement comes after the use.
8274 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8275 that any handlers inside the body (eg require) are in turn respected.
8276
8277 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8278 effects.
8279
8280 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8281 and syntax and abbrev tables basic docs, if they don't have any.
8282
8283 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8284
8285 * international/mule-cmds.el (top-level): Require cl when compiling.
8286 (view-hello-file): Use default-value rather than
8287 default-enable-multibyte-characters.
8288
8289 * progmodes/fortran.el: Move all safe and risky properties into the
8290 defcustoms.
8291
8292 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8293 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8294 * mail/undigest.el:
8295 Put autoloads in rmail.el rather than loaddefs.el.
8296 * mail/rmail.el: Regenerate with extracted autoloads.
8297
8298 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8299 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8300
8301 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
8302
8303 Reported in thread for Bug#4375.
8304 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
8305 "-data-evaluate-expression" instead of print.
8306 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
8307 (gdb-tooltip-print): Parse output from above MI command.
8308 (gdb): Revert 2009-08-11 change. User should detach inferior
8309 manually.
8310
8311 Remove the word "separate" from IO functions as inferior
8312 output is now never displayed in the GUD buffer.
8313
8314 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
8315
8316 * startup.el (command-line-normalize-file-name): On Windows and
8317 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
8318
8319 2009-09-10 Juri Linkov <juri@jurta.org>
8320
8321 * isearch.el (isearch-text-char-description): Propertize escape
8322 character sequences with the `escape-glyph' face. (Bug#4344)
8323
8324 * simple.el (shell-command): Set asynchronous process filter to
8325 `comint-output-filter'. (Bug#4343)
8326
8327 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
8328 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
8329 the list. Move "asm" to the bottom.
8330 (grep-find-ignored-directories): Add `choice' with nil value
8331 to empty the list easily.
8332 (grep-find-ignored-files): New option.
8333 (grep-files-history): Set to nil by default instead of '("ch" "el").
8334 (grep-compute-defaults): Add "<X>" to `grep-template'.
8335 (grep-read-files): Bind new local variables `default-alias' and
8336 `default-extension'. Use a list of default values for the file prompt.
8337 (lgrep): Add `--exclude=' command line options composed from
8338 `grep-find-ignored-files'.
8339 (rgrep): Add `-name' command line options composed from
8340 `grep-find-ignored-files'. (Bug#4301)
8341
8342 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
8343
8344 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
8345 (bug#4368).
8346
8347 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
8348
8349 * calendar/time-date.el (autoload):
8350 Expand define-obsolete-function-alias into defalias and make-obsolete
8351 for old Emacsen that Gnus supports.
8352 (with-no-warnings): Define it for old Emacsen.
8353 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
8354 is available.
8355 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
8356 float-time is available; suppress compile warning for time-to-seconds.
8357
8358 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
8359
8360 * net/imap.el (imap-message-map): Docstring fix.
8361
8362 2009-09-09 Glenn Morris <rgm@gnu.org>
8363
8364 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
8365 line numbers too. (Bug#4374)
8366
8367 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
8368
8369 * smerge-mode.el (smerge-remove-props, smerge-refine):
8370 Use with-silent-modifications (bug#4342).
8371
8372 * subr.el (with-silent-modifications): New macro.
8373
8374 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
8375
8376 * files.el (top-level): Require `cl' when compiling.
8377
8378 2009-09-07 Glenn Morris <rgm@gnu.org>
8379
8380 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
8381
8382 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
8383 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
8384
8385 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
8386
8387 * vc-git.el (vc-git-annotate-command): Use separator to parse
8388 arguments correctly.
8389
8390 2009-09-06 Eli Zaretskii <eliz@gnu.org>
8391
8392 * proced.el (proced-mode): Doc fix.
8393
8394 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
8395
8396 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
8397 lstat fails.
8398 (tramp-do-file-attributes-with-ls): Check for file existence at
8399 remote end.
8400 (tramp-do-file-attributes-with-stat): Likewise.
8401 (tramp-convert-file-attributes): Return nil when attr is nil.
8402
8403 2009-09-05 Glenn Morris <rgm@gnu.org>
8404
8405 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
8406 properties to this button.
8407 (diary-fancy-display): Don't extend the button to the final newline.
8408 (diary-fancy-display-mode): Continue to define "q" as a local key.
8409
8410 * calendar/cal-china.el (holiday-chinese): Make it slightly more
8411 efficient.
8412
8413 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
8414
8415 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
8416 (byte-compile-dest-file-function): New option.
8417 (byte-compile-dest-file): Doc fix.
8418 Obey byte-compile-dest-file-function.
8419 (byte-compile-cl-file-p): New function.
8420 (byte-compile-eval): Only suppress noruntime warnings about cl functions
8421 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
8422 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
8423 than for file being previously loaded.
8424 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
8425 (byte-compile-file-form-require): Handle the case where requiring a file
8426 indirectly causes CL to be loaded.
8427
8428 2009-09-05 Karl Fogel <kfogel@red-bean.com>
8429
8430 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
8431 before killing the old buffer, since by the time `kill-buffer' is
8432 run so many buffer variables have been set to nil that it may not
8433 behave as expected. (Bug#4061)
8434
8435 2009-09-05 Karl Fogel <kfogel@red-bean.com>
8436
8437 * files.el (find-alternate-file): If the old buffer is modified
8438 and visiting a file, behave similarly to `kill-buffer' when
8439 killing it, thus reverting to the pre-1.878 behavior; see
8440 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
8441 for discussion. Also, consult `buffer-file-name' as a variable
8442 not as a function, for consistency with the rest of the code.
8443
8444 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
8445
8446 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
8447 also when adding a new directory.
8448
8449 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
8450 defun.
8451
8452 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8453
8454 * files.el (locate-file-completion-table): Make it provide boundary
8455 information, so partial-completion works better.
8456
8457 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
8458
8459 * mail/footnote.el (Footnote-text-under-cursor):
8460 Check footnote-text-marker-alist before using it (bug#4324).
8461
8462 2009-09-04 Glenn Morris <rgm@gnu.org>
8463
8464 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
8465 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
8466 * play/solitaire.el, play/tetris.el:
8467 Remove leading * from defcustom and defface docs.
8468
8469 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
8470 necessary.
8471 (diary-fancy-overriding-map): New variable.
8472 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
8473 Use view-mode.
8474
8475 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
8476 goto-line.
8477
8478 2009-09-03 Glenn Morris <rgm@gnu.org>
8479
8480 * arc-mode.el (archive-mode):
8481 * dos-fns.el (set-default-process-coding-system):
8482 * man.el (Man-getpage-in-background):
8483 * menu-bar.el (menu-bar-describe-menu):
8484 * server.el (server-process-filter):
8485 * startup.el (command-line):
8486 * tar-mode.el (tar-header-block-tokenize, tar-extract):
8487 * w32-fns.el (set-default-process-coding-system):
8488 * x-dnd.el (x-dnd-handle-file-name):
8489 * international/mule-cmds.el (mule-menu-keymap)
8490 (set-default-coding-systems, language-info-alist, set-language-info)
8491 (set-language-environment, standard-display-european-internal)
8492 (set-locale-environment):
8493 * international/mule-diag.el (mule-diag):
8494 * mail/emacsbug.el (report-emacs-bug):
8495 * mail/rmail.el (rmail-mode):
8496 * mail/sendmail.el (mail-setup):
8497 Use default-value rather than default-enable-multibyte-characters.
8498
8499 * progmodes/f90.el: Move all safe properties into the defcustoms.
8500 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
8501
8502 * calendar/appt.el (appt-check):
8503 * calendar/diary-lib.el (diary-set-header, diary-live-p)
8504 (diary-check-diary-file, diary-list-entries)
8505 (diary-include-other-diary-files, diary-simple-display)
8506 (diary-fancy-display, diary-print-entries)
8507 (diary-mark-included-diary-files, diary-make-entry):
8508 Don't call substitute-in-file-name on diary-file.
8509
8510 2009-09-03 Eduard Wiebe <usenet@pusto.de>
8511 Stefan Monnier <monnier@iro.umontreal.ca>
8512
8513 * mail/footnote.el (footnote-prefix): Make it a defcustom.
8514 (footnote-mode-map): Move initialization into the declaration.
8515 (footnote-minor-mode-map): Define it rather than changing global-map.
8516 (footnote-mode): Use define-minor-mode.
8517
8518 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
8519
8520 * net/tramp.el (tramp-handle-file-attributes-with-ls)
8521 (tramp-do-file-attributes-with-perl)
8522 (tramp-do-file-attributes-with-stat): Rename from
8523 `tramp-handle-file-attributes-with-*'.
8524 (tramp-handle-file-attributes): Use them.
8525 (tramp-do-directory-files-and-attributes-with-perl)
8526 (tramp-do-directory-files-and-attributes-with-stat): Rename from
8527 `tramp-handle-directory-files-and-attributes-with-*'.
8528 (tramp-handle-directory-files-and-attributes): Use them.
8529 (tramp-method-out-of-band-p): Additional parameter SIZE.
8530 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
8531 (tramp-handle-write-region): Use it.
8532 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
8533 (tramp-handle-vc-registered): Check, whether the first run did
8534 return files to be tested.
8535 (tramp-advice-make-auto-save-file-name): Do not call directly
8536 `tramp-handle-make-auto-save-file-name', because this would bypass
8537 the locking mechanism.
8538
8539 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
8540 (file-remote-p, process-file, start-file-process, set-file-times)
8541 (tramp-compat-file-attributes): Compatibility functions shall not
8542 call directly `tramp-handle-*', because this would bypass the
8543 locking mechanism.
8544 (tramp-compat-number-sequence): New defun.
8545
8546 2009-09-02 Glenn Morris <rgm@gnu.org>
8547
8548 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
8549 alias for float-time.
8550 (time-to-number-of-days): In Emacs, use float-time.
8551 * net/newst-backend.el (time-add): Suppress warnings from compat
8552 function.
8553 * time.el (emacs-uptime, emacs-init-time):
8554 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
8555 Use float-time rather than time-to-seconds.
8556
8557 * minibuffer.el (completion-initials-expand): Fix typo.
8558
8559 * faces.el (modeline, modeline-inactive, modeline-highlight)
8560 (modeline-buffer-id):
8561 * info.el (info-menu-5): Mark these face aliases as obsolete.
8562
8563 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
8564
8565 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
8566 space ...
8567 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
8568 no "--thread" option.
8569 (gdb-stopped): Don't print "Switched to thread" message when it is
8570 unchanged.
8571
8572 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
8573
8574 * minibuffer.el (completion-try-completion)
8575 (completion-all-completions): Remove ill-defined (and
8576 mistakenly installed and luckily never used nor documented)
8577 `completion-styles' property.
8578 (completion-initials-expand, completion-initials-all-completions)
8579 (completion-initials-try-completion): New functions.
8580 (completion-styles-alist): Add doc to each entry.
8581 Add new `initials' entry.
8582
8583 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
8584
8585 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
8586 MI command -var-evaluate-expression.
8587 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
8588 and tweak for case of string child.
8589 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
8590
8591 2009-09-01 Glenn Morris <rgm@gnu.org>
8592
8593 * add-log.el (change-log-date-face, change-log-name-face)
8594 (change-log-email-face, change-log-file-face, change-log-list-face)
8595 (change-log-conditionals-face, change-log-function-face)
8596 (change-log-acknowledgement-face):
8597 * cus-edit.el (custom-invalid-face, custom-rogue-face)
8598 (custom-modified-face, custom-set-face, custom-changed-face)
8599 (custom-saved-face, custom-button-face, custom-button-pressed-face)
8600 (custom-documentation-face, custom-state-face, custom-comment-face)
8601 (custom-comment-tag-face, custom-variable-tag-face)
8602 (custom-variable-button-face, custom-face-tag-face)
8603 (custom-group-tag-face-1, custom-group-tag-face):
8604 * diff-mode.el (diff-header-face, diff-file-header-face)
8605 (diff-index-face, diff-hunk-header-face, diff-removed-face)
8606 (diff-added-face, diff-changed-face, diff-function-face)
8607 (diff-context-face, diff-nonexistent-face):
8608 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
8609 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
8610 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
8611 (Info-title-4-face):
8612 * isearch.el (isearch-lazy-highlight-face):
8613 * log-view.el (log-view-file-face, log-view-message-face):
8614 * paren.el (show-paren-match-face, show-paren-mismatch-face):
8615 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
8616 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
8617 (cvs-msg-face):
8618 * smerge-mode.el (smerge-mine-face, smerge-other-face)
8619 (smerge-base-face, smerge-markers-face):
8620 * wid-edit.el (widget-documentation-face, widget-button-face)
8621 (widget-field-face, widget-single-line-field-face)
8622 (widget-inactive-face, widget-button-pressed-face):
8623 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
8624 (woman-addition-face):
8625 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
8626 (eshell-ls-executable-face, eshell-ls-readonly-face)
8627 (eshell-ls-unreadable-face, eshell-ls-special-face)
8628 (eshell-ls-missing-face, eshell-ls-archive-face)
8629 (eshell-ls-backup-face, eshell-ls-product-face)
8630 (eshell-ls-clutter-face):
8631 * eshell/em-prompt.el (eshell-prompt-face):
8632 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
8633 * obsolete/old-whitespace.el (whitespace-highlight-face):
8634 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
8635 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
8636 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
8637 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
8638 (antlr-font-lock-literal-face):
8639 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
8640 (ebrowse-root-class-face, ebrowse-file-name-face)
8641 (ebrowse-default-face, ebrowse-member-attribute-face)
8642 (ebrowse-member-class-face, ebrowse-progress-face):
8643 * progmodes/make-mode.el (makefile-space-face):
8644 * progmodes/sh-script.el (sh-heredoc-face):
8645 * textmodes/flyspell.el (flyspell-incorrect-face)
8646 (flyspell-duplicate-face):
8647 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
8648 * textmodes/texinfo.el (texinfo-heading-face):
8649 Mark face aliases with "-face" suffix as obsolete.
8650
8651 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
8652 compiler.
8653
8654 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
8655 (eudc-bob-sound-menu): Use defvar rather than defconst, since
8656 easy-menu-define wants to modify these.
8657
8658 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
8659
8660 * net/browse-url.el (browse-url-file-url):
8661 * term/internal.el (dos-codepage-setup):
8662 Use default-value rather than default-enable-multibyte-characters.
8663
8664 * progmodes/etags.el (etags-goto-tag-location):
8665 * progmodes/flymake.el (flymake-highlight-line)
8666 (flymake-goto-file-and-line, flymake-goto-line):
8667 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
8668 (gdb-goto-breakpoint):
8669 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
8670 * progmodes/python.el (python-find-function)
8671 (python-pdbtrack-track-stack-file):
8672 * progmodes/verilog-mode.el (verilog-surelint-off):
8673 * term/ns-win.el (ns-open-file-select-line):
8674 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
8675 Use forward-line rather than goto-line.
8676
8677 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
8678 * textmodes/reftex-index.el (reftex-display-index):
8679 * textmodes/reftex-ref.el (reftex-offer-label-menu):
8680 * textmodes/reftex-toc.el (reftex-toc):
8681 Remove unnecessary bindings of default-major-mode (all are followed by
8682 major-mode check and possible mode switch).
8683
8684 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
8685
8686 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
8687 Handle watchpoints (bug#4282).
8688 (def-gdb-thread-buffer-command): Enable thread to be selected by
8689 clicking without selecting threads buffer first.
8690 (gdb-current-context-command): Use selected frame so that "up",
8691 "down" etc work in the GUD buffer.
8692 (gdb-update): Find selected frame before rendering stack buffer.
8693 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
8694
8695 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8696
8697 * progmodes/sym-comp.el (displayed-completions): Remove.
8698 (symbol-complete): Use minibuffer-complete.
8699
8700 2009-08-31 Glenn Morris <rgm@gnu.org>
8701
8702 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
8703
8704 * apropos.el (apropos-symbols-internal):
8705 Handle (obsolete) face aliases.
8706
8707 * faces.el (describe-face): Adjust the output format to be more like
8708 describe-variable, and to mention (obsolete) face aliases.
8709 Adjust the whitespace so that help-setup-xref works.
8710
8711 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
8712 * calendar/diary-lib.el (diary-button-face):
8713 Mark these face aliases as obsolete.
8714
8715 * calendar/calendar.el (calendar-today): Doc fix.
8716
8717 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
8718
8719 * progmodes/gdb-mi.el (gdb-control-all-threads)
8720 (gdb-control-current-thread): Force tool bar update.
8721 (gdb-non-stop-handler): New function.
8722 (gdb-init-1): Use it to test if non-stop mode is supported.
8723 Remove unused gdbmi buffer type.
8724
8725 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
8726
8727 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
8728 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
8729
8730 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
8731
8732 * comint.el (comint-exec-1): Check command is non-null first.
8733 Part of gdb-mi.el change (2009-08-28).
8734
8735 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8736
8737 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
8738
8739 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
8740
8741 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
8742 instead of `dolist' to avoid a recursive require when bootstrapping.
8743
8744 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8745
8746 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
8747
8748 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
8749
8750 * net/imap.el (imap-send-command): Simplify.
8751 (imap-wait-for-tag): point-max -> buffer-size.
8752
8753 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
8754
8755 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
8756 with constant argument.
8757
8758 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
8759
8760 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
8761
8762 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
8763 Change default, since most of our files don't have a history.
8764 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
8765 the user.
8766
8767 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8768 Add comint-run.
8769
8770 * calc/calc.el: Improve commenting convention.
8771 (calc-digit-map, toplevel): Simplify.
8772
8773 * comint.el (comint-insert-input): Be careful to only set point if we
8774 don't delegate to some other command.
8775
8776 * proced.el (proced-signal-list): Make it an alist.
8777 (proced-grammar-alist): Capitalize names.
8778 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
8779 Disable undo manually and make it read-only.
8780 Use completion-annotate-function.
8781
8782 * minibuffer.el (minibuffer-message): If the current buffer is not
8783 a minibuffer, insert the message in the echo area rather than at the
8784 end of the buffer.
8785 (completion-annotate-function): New variable.
8786 (minibuffer-completion-help): Use it.
8787 (completion--embedded-envvar-table): Environment vars are
8788 always case-sensitive.
8789
8790 2009-08-30 Glenn Morris <rgm@gnu.org>
8791
8792 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
8793 from fortran-current-defun.
8794 (fortran-beginning-of-subprogram): Be more precise about finding the
8795 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
8796 (fortran-end-of-subprogram): Simplify.
8797 (fortran-current-defun): Use fortran-start-prog-re.
8798
8799 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
8800
8801 * subr.el (do-after-load-evaluation): Simplify.
8802
8803 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
8804
8805 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
8806
8807 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
8808 (vc-rcs-print-log): Use it.
8809
8810 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
8811
8812 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
8813
8814 * paths.el (abbrev-file-name): Move to abbrev.el.
8815 * abbrev.el (abbrev-file-name): Move from paths.el.
8816 Obey user-emacs-directory.
8817 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
8818 user-emacs-directory.
8819 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
8820 abbrev-file-name and calc-settings-file any more.
8821 * startup.el (command-line): Recompute abbrev-file-name and
8822 abbreviated-home-dir.
8823 (normal-no-mouse-startup-screen): Improve the generic code and get rid
8824 of the special code for when C-h bindings haven't been changed.
8825 (display-startup-echo-area-message): Use with-current-buffer.
8826 (command-line-1): Use a list of strings, rather than a list of lists
8827 of strings for longopts.
8828
8829 * files.el (get-free-disk-space): Use / for default-directory.
8830
8831 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
8832 Use with-current-buffer.
8833
8834 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
8835 Recognize immutable variables like most-positive-fixnum.
8836 (byte-compile-setq-default): Check and warn if trying to assign
8837 to an immutable variable, or a non-variable.
8838
8839 * progmodes/cc-vars.el (c-comment-continuation-stars):
8840 * progmodes/cc-engine.el (c-looking-at-bos):
8841 * progmodes/cc-cmds.el (c-toggle-auto-state)
8842 (c-forward-into-nomenclature, c-backward-into-nomenclature)
8843 (c-comment-line-break-function): Add version of obsolescence.
8844
8845 2009-08-28 Juri Linkov <juri@jurta.org>
8846
8847 * files.el (magic-fallback-mode-alist): Add ZIP magic number
8848 associated with `archive-mode'.
8849
8850 * image.el (image-type-header-regexps): Use only JPEG magic number
8851 to determine JPEG images, and don't use `image-jpeg-p' because
8852 Emacs can display non-JFIF non-Exif JPEG images.
8853
8854 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
8855
8856 * arc-mode.el (archive-mode):
8857 * emacs-lisp/re-builder.el (re-builder-unload-function):
8858 Protect against the default value of `major-mode' being nil.
8859
8860 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
8861
8862 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
8863 Fix typos in docstrings.
8864
8865 * progmodes/js.el (js--macro-decl-re): Doc fix.
8866 (js--plain-method-re, js--split-name): Refloc docstring.
8867 (js--class-styles, js--make-merged-item, js--splice-into-items):
8868 Fix typos in docstrings; reflow docstrings.
8869 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
8870 (js--variable-decl-matcher, js--inside-pitem-p)
8871 (js--parse-state-at-point, js--get-all-known-symbols)
8872 (js--symbol-history, js-find-symbol, js--js-references)
8873 (js--moz-interactor, js--js-encode-value, js--read-tab):
8874 Fix typos in docstrings.
8875
8876 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8877
8878 * textmodes/reftex.el (reftex-get-file-buffer-force):
8879 * progmodes/verilog-mode.el (verilog-batch-execute-func):
8880 * emulation/viper.el (viper-go-away, viper-set-hooks):
8881 * emacs-lisp/re-builder.el (re-builder-unload-function):
8882 * emacs-lisp/bytecomp.el (byte-compile-file):
8883 * ses.el (ses-unload-function):
8884 * hexl.el (hexl-find-file):
8885 * files.el (normal-mode):
8886 * ehelp.el (with-electric-help):
8887 * autoinsert.el (auto-insert-alist):
8888 * arc-mode.el (archive-mode):
8889 Use (default-value 'major-mode) instead of default-major-mode.
8890
8891 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
8892 * international/mule.el (load-with-code-conversion):
8893 * emacs-lisp/debug.el (debug):
8894 * ediff-vers.el (ediff-rcs-get-output-buffer):
8895 * dired.el (dired-internal-noselect): Don't let-bind
8896 default-major-mode around code that doesn't use it.
8897 E.g. buffer creation via get-buffer-create doesn't use it.
8898
8899 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
8900
8901 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
8902 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
8903 when writing the temp file. Otherwise, epa-file gets confused.
8904 (tramp-register-file-name-handlers): Make it a defun. Move also
8905 `epa-file-handler' to the front of `file-name-handler-alist'.
8906
8907 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8908
8909 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
8910 start right after a ^M.
8911 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
8912 (tramp-completion-file-name-regexp-separate)
8913 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
8914 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
8915 Don't modify last-coding-system-used by accident.
8916 (tramp-completion-file-name-handler): Apply the checks here,
8917 instead during registration.
8918 (tramp-register-file-name-handlers): Renamed from
8919 `tramp-register-file-name-handler'. Register both
8920 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
8921 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
8922
8923 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
8924
8925 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
8926 Remove variable ...
8927 (gdb-init-1, gdb-display-separate-io-buffer)
8928 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
8929 references to it.
8930 (gdb-inferior-io-mode): Use make-comint-in-buffer.
8931 (gdb-inferior-filter): Use comint-output-filter to stop
8932 echoing and remove ^M characters.
8933
8934 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8935
8936 * emulation/viper-init.el (viper-restore-cursor-type):
8937 * emulation/cua-base.el (cua--update-indications):
8938 Replace default-cursor-type with (default-value 'cursor-type).
8939
8940 * mail/sendmail.el (mail-recover-1):
8941 * international/mule-diag.el (describe-current-coding-system-briefly)
8942 (describe-current-coding-system):
8943 * international/mule-cmds.el (select-safe-coding-system)
8944 (select-message-coding-system)
8945 (set-language-environment-coding-systems, set-locale-environment):
8946 * hexl.el (hexl-insert-multibyte-char):
8947 * dos-w32.el (find-buffer-file-type-coding-system):
8948 * simple.el (what-cursor-position):
8949 Replace uses of default-buffer-file-coding-system
8950 with (default-value 'buffer-file-coding-system).
8951
8952 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
8953 Replace uses of default-cursor-in-non-selected-windows
8954 with (default-value 'cursor-in-non-selected-windows).
8955 Use with-current-buffer.
8956
8957 * mail/feedmail.el: Use CL macros.
8958 (feedmail-run-the-queue, feedmail-send-it-immediately):
8959 * dos-w32.el (find-buffer-file-type): Replace uses of
8960 default-buffer-file-type with (default-value 'buffer-file-type).
8961
8962 2009-08-28 Glenn Morris <rgm@gnu.org>
8963
8964 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
8965 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
8966 Use default-value of major-mode rather than default-major-mode.
8967
8968 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
8969
8970 * Makefile.in (update-elcfiles): Report left over elc files.
8971
8972 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
8973 expand-file-name and with-current-buffer.
8974 (mail-get-names, mail-directory): Use with-current-buffer.
8975
8976 * vc.el (vc-read-revision): New function.
8977 (vc-version-diff, vc-merge): Use it.
8978
8979 2009-08-27 Sam Steingold <sds@gnu.org>
8980
8981 * simple.el (kill-do-not-save-duplicates): New user option.
8982 (kill-new): When it is non-nil, and the new string is the same as
8983 the latest kill, set replace to t to avoid duplicates in kill-ring.
8984
8985 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
8986
8987 * net/tramp.el (tramp-handle-process-file): Do not flush all
8988 caches when `process-file-side-effects' is set.
8989 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
8990 instead of `tramp-find-file-exists-command'.
8991 Unset `process-file-side-effects'.
8992
8993 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
8994
8995 * net/tramp.el (tramp-methods): New method "rsyncc".
8996 (top): Add completion function for "rsyncc".
8997 (tramp-message-show-message): New defvar.
8998 (tramp-message, tramp-error): Use it.
8999 (tramp-do-copy-or-rename-file-directly): Extend check for direct
9000 remote copying.
9001 (tramp-do-copy-or-rename-file-out-of-band): Handle new
9002 `tramp-methods' entry `copy-env' of "rsyncc".
9003 (tramp-vc-registered-read-file-names): New defconst.
9004 (tramp-vc-registered-file-names): New defvar.
9005 (tramp-handle-vc-registered): Implement optimization strategy.
9006 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
9007 (tramp-vc-file-name-handler): New defun.
9008 (tramp-get-ls-command, tramp-get-test-command)
9009 (tramp-get-file-exists-command, tramp-get-remote-ln)
9010 (tramp-get-remote-perl, tramp-get-remote-stat)
9011 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
9012
9013 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
9014 (tramp-cache-inhibit-cache): Extend doc string. It allows also
9015 timestamps.
9016 (tramp-get-file-property): Check for timestamps in
9017 `tramp-cache-inhibit-cache'.
9018 (tramp-set-file-property): Write timestamp.
9019
9020 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
9021
9022 * language/japan-util.el (japanese-symbol-table): Add entries for
9023 cp932-2-byte.
9024
9025 * international/characters.el: Add category `j' to cp932-2-byte.
9026
9027 2009-08-27 Kenichi Handa <handa@m17n.org>
9028
9029 * international/fontset.el (build-default-fontset-data): New macro.
9030 (setup-default-fontset): Use build-default-fontset-data for CJK,
9031 tibetan, ethiopic, and ipa.
9032
9033 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9034
9035 * cus-start.el (default-major-mode): Customize `major-mode' instead.
9036 (enable-multibyte-characters): Not customizable any more.
9037
9038 * subr.el (default-mode-line-format, default-header-line-format)
9039 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
9040 (default-direction-reversed, default-truncate-lines)
9041 (default-left-margin, default-tab-width, default-case-fold-search)
9042 (default-left-margin-width, default-right-margin-width)
9043 (default-left-fringe-width, default-right-fringe-width)
9044 (default-fringes-outside-margins, default-scroll-bar-width)
9045 (default-vertical-scroll-bar, default-indicate-empty-lines)
9046 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
9047 (default-fringe-cursor-alist, default-scroll-up-aggressively)
9048 (default-scroll-down-aggressively, default-fill-column)
9049 (default-cursor-type, default-buffer-file-type)
9050 (default-cursor-in-non-selected-windows)
9051 (default-buffer-file-coding-system, default-major-mode)
9052 (default-enable-multibyte-characters): Mark as obsolete.
9053
9054 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
9055
9056 * vc-dir.el (vc-dir-update): Remove debug helper.
9057
9058 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
9059
9060 2009-08-26 Sam Steingold <sds@gnu.org>
9061
9062 * simple.el (save-interprogram-paste-before-kill): New user option.
9063 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9064 save the interprogram-paste into kill-ring before overriding it
9065 with the Emacs kill.
9066
9067 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9068
9069 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9070 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9071 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9072 and move to vc-rcs.el.
9073 (vc-default-next-revision): Rename to vc-rcs-next-revision and
9074 move to vc-rcs.el.
9075 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9076 (vc-rcs-update-changelog): Remove.
9077 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9078 and move to vc-rcs.el.
9079
9080 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9081 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9082 renaming.
9083 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9084 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9085 vc.el, renamed to be RCS specific.
9086
9087 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9088 New functions.
9089 (vc-cvs-update-changelog): Move here from vc.el.
9090
9091 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9092 New functions.
9093
9094 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
9095
9096 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9097
9098 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9099
9100 * vc-git.el (vc-git-register): Use "git add" for directories.
9101 (vc-git-stash, vc-git-stash-show): New functions.
9102 (vc-git-extra-menu-map): Bind them.
9103
9104 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9105 directory correctly in case the item is a directory itself.
9106
9107 * vc.el: Document the desired behavior for reverted files in the
9108 `added' state.
9109 (vc-default-prettify-state-info): Remove function, unused.
9110
9111 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9112
9113 2009-08-26 Glenn Morris <rgm@gnu.org>
9114
9115 * bindings.el (standard-mode-line-format): Reposition dashes in
9116 which-func entry. (Bug#4217)
9117
9118 * files.el (enable-local-variables, enable-local-eval)
9119 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9120 the defcustoms.
9121 (auto-mode-alist, ignored-local-variables)
9122 (save-some-buffers-action-alist): Move risky declarations to the
9123 definitions.
9124 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9125 (font-lock-defaults, format-alist, imenu--index-alist)
9126 (imenu-generic-expression, input-method-alist, minor-mode-alist)
9127 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9128 (mode-line-modified, mode-line-mule-info, mode-line-position)
9129 (mode-line-process, mode-line-remote, outline-level)
9130 (parse-time-rules, rmail-output-file-alist)
9131 (special-display-buffer-names, vc-mode):
9132 Move risky declarations to the relevant files.
9133 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9134 (mode-line-modified, mode-line-process, mode-line-position)
9135 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9136 * font-core.el (font-lock-defaults):
9137 * format.el (format-alist):
9138 * vc-hooks.el (vc-mode):
9139 * window.el (special-display-buffer-names):
9140 * international/mule-cmds.el (input-method-alist):
9141 Define riskiness here (dumped file) rather than in files.el.
9142 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9143 * imenu.el (imenu-generic-expression, imenu--index-alist):
9144 * outline.el (outline-level):
9145 * time.el (display-time-string):
9146 * calendar/parse-time.el (parse-time-rules):
9147 * mail/rmailout.el (rmail-output-file-alist):
9148 Autoload riskiness here, rather than placing in files.el.
9149
9150 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
9151
9152 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9153
9154 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
9155
9156 * simple.el (process-file-side-effects): New defvar.
9157
9158 * dired-aux.el (dired-show-file-type):
9159 * vc.el (vc-diff-internal):
9160 * vc-arch.el (vc-arch-diff):
9161 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9162 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9163 * vc-git.el (vc-git-registered, vc-git-working-revision)
9164 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9165 (vc-git--empty-db-p):
9166 * vc-hooks.el (vc-user-login-name):
9167 * vc-svn.el (vc-svn-registered, vc-svn-state)
9168 (vc-svn-dir-extra-headers, vc-svn-find-revision):
9169 * progmodes/grep.el (grep-probe): Let-bind
9170 `process-file-side-effects' with nil.
9171
9172 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9173
9174 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9175 daemon. Replace ping by checking for running service for bluez
9176 and zeroconf. (Bug#4239)
9177
9178 2009-08-25 Kevin Ryde <user42@zip.com.au>
9179
9180 * net/dig.el (dig): Add autoload cookie.
9181
9182 2009-08-25 Glenn Morris <rgm@gnu.org>
9183
9184 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9185 load-history for absolute file-names.
9186 (byte-compile-file-form-require): Warn about use of the cl package.
9187
9188 * format.el (format-alist): Doc fix.
9189
9190 * play/bubbles.el (top-level): Don't require cl at run-time.
9191
9192 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9193 run-time cl).
9194
9195 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
9196
9197 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9198 from cl package.
9199 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9200
9201 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
9202
9203 * calc/calc-alg.el (math-trig-rewrite)
9204 (math-hyperbolic-trig-rewrite): New functions.
9205 (calc-simplify): Simplify trig functions when asked.
9206
9207 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9208
9209 * diff-mode.el (diff-find-source-location): Avoid goto-line.
9210
9211 2009-08-24 Kenichi Handa <handa@m17n.org>
9212
9213 * language/ind-util.el (mapthread): Delete it.
9214 (combinatorial): New function.
9215 (indian--puthash-cv): Use combinatorial instead of mapthread.
9216
9217 2009-08-22 Kevin Ryde <user42@zip.com.au>
9218
9219 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9220 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9221 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9222 Clarify docstring that the value is strings not symbols.
9223 (checkdoc-list-of-strings-p): New function.
9224
9225 2009-08-22 Glenn Morris <rgm@gnu.org>
9226
9227 * files.el (auto-mode-alist):
9228 * hippie-exp.el (he-concat-directory-file-name):
9229 * lpr.el (lpr-windows-system, printer-name):
9230 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9231 * ps-print.el (ps-windows-system):
9232 * startup.el (command-line):
9233 * emulation/viper-ex.el (viper-glob-function):
9234 * international/mule-cmds.el (set-language-environment-coding-systems):
9235 * net/ange-ftp.el (ange-ftp-write-region):
9236 * obsolete/fast-lock.el (fast-lock-cache-name):
9237 Remove code for defunct system-types emx, macos, mswindows, next-mach,
9238 unisoft-unix, vax-vms, win32, w32.
9239
9240 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9241 given name if the pattern is not more specific.
9242
9243 * calendar/lunar.el (lunar-phase-names): New option.
9244 (lunar-phase): Doc fix.
9245 (lunar-cycles-per-year): New constant.
9246 (lunar-index): New function.
9247 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9248 (lunar-phase-name): Use lunar-phase-names.
9249 (calendar-lunar-phases): Use format.
9250 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9251
9252 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9253 Copy imenu-example--name-and-position function here for own use.
9254 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9255
9256 * bs.el (bs--redisplay):
9257 * cus-edit.el (custom-redraw):
9258 * ibuffer.el (ibuffer-bury-buffer):
9259 * server.el (server-goto-line-column):
9260 * startup.el (command-line-1):
9261 * strokes.el (strokes-xpm-for-stroke):
9262 * term.el (term-display-buffer-line):
9263 * view.el (View-goto-line):
9264 * calc/calc.el (calc-do, calc-trail-buffer):
9265 * play/gamegrid.el (gamegrid-add-score-insecure):
9266 * progmodes/ada-mode.el (ada-compile-goto-error):
9267 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9268 (ebrowse-select-1st-to-9nth):
9269 * progmodes/cperl-mode.el (cperl-time-fontification):
9270 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9271 * progmodes/gud.el (gud-display-line):
9272 (idlwave-shell-display-line):
9273 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9274 * progmodes/make-mode.el (makefile-browser-toggle):
9275 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9276 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9277 * textmodes/picture.el (picture-draw-rectangle):
9278 * textmodes/reftex-index.el (reftex-index-goto-letter):
9279 (reftex-select-jump-to-previous):
9280 * textmodes/reftex-sel.el (reftex-find-start-point)
9281 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9282 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9283 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9284 * textmodes/tex-mode.el (tex-compilation-parse-errors):
9285 * textmodes/two-column.el (2C-associated-buffer):
9286 Use forward-line rather than goto-line.
9287
9288 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9289 goto-line.
9290
9291 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9292 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9293 (quick-check-list-to-regexp): Declare.
9294
9295 * progmodes/make-mode.el (makefile-browser-insert-selection):
9296 Use goto-char rather than goto-line.
9297
9298 * progmodes/prolog.el (compilation-error-regexp-alist)
9299 (compilation-forget-errors): Declare.
9300
9301 2009-08-22 Juri Linkov <juri@jurta.org>
9302
9303 * progmodes/grep.el (lgrep, rgrep): At the beginning
9304 set `dir' to `default-directory' unless `dir' is a non-nil
9305 readable directory. (Bug#4052)
9306 (lgrep, rgrep): Change a weird way to report an error
9307 from using `read-string' to using `error'.
9308 Instead of using interactive arguments in the function body,
9309 add new argument `confirm'.
9310
9311 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
9312
9313 * textmodes/remember.el (remember-buffer):
9314 * progmodes/cperl-mode.el (cperl-vc-header-alist):
9315 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
9316 (icalendar-extract-ical-from-buffer):
9317 * net/newst-treeview.el (newsticker-groups-filename):
9318 * net/newst-backend.el (newsticker-cache-filename):
9319 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
9320 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
9321 (speedbar-add-ignored-path-regexp, speedbar-line-path)
9322 (speedbar-buffers-line-path, speedbar-path-line)
9323 (speedbar-buffers-line-path):
9324 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
9325 (epg-sign-keys):
9326 * epa.el (epa-display-verify-result):
9327 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
9328
9329 2009-08-21 Glenn Morris <rgm@gnu.org>
9330
9331 * progmodes/js.el (inferior-moz-process): Fix declaration.
9332
9333 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
9334
9335 * obsolete/rnewspost.el (news-mail-reply):
9336 Use goto-char rather than goto-line.
9337
9338 * term/ns-win.el (ns-open-file-select-line):
9339 Use line-beginning-position rather than goto-line.
9340
9341 * apropos.el (apropos-command):
9342 * ehelp.el (electric-helpify):
9343 * printing.el (pr-show-setup):
9344 * strokes.el (strokes-help):
9345 * tutorial.el (tutorial--describe-nonstandard-key)
9346 (tutorial--detailed-help):
9347 * woman.el (woman-mini-help, woman-display-extended-fonts):
9348 * calc/calc-help.el (calc-describe-key):
9349 * emulation/edt.el (edt-electric-helpify):
9350 * international/mule-diag.el (mule-diag):
9351 * play/yow.el (apropos-zippy):
9352 * progmodes/python.el (python-describe-symbol):
9353 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
9354 * textmodes/table.el (*table--cell-describe-mode)
9355 (*table--cell-describe-bindings):
9356 Use help-print-return-message rather than the now obsolete alias.
9357
9358 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9359 (calendar-cursor-to-visible-date):
9360 * play/5x5.el (5x5-position-cursor):
9361 * play/decipher.el (decipher):
9362 * play/gomoku.el (gomoku-goto-xy):
9363 * play/landmark.el (lm-goto-xy):
9364 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
9365 (mpuz-paint-digit):
9366 Use forward-line, not goto-line.
9367
9368 * mail/rmail.el (rmail-obsolete): Delete custom group.
9369 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
9370 (rmail-remote-password, rmail-remote-password-required):
9371 Remove unneeded :set-after and :set properties.
9372
9373 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
9374
9375 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
9376
9377 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
9378
9379 * loadup.el: Remove leftover macos code.
9380
9381 * vc-git.el (vc-git-annotate-command): Run asynchronously.
9382 Explicitly pass the date format to git blame so that user local
9383 so that the output format can be parsed.
9384
9385 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
9386
9387 * net/dbus.el (top): Don't check for (getenv
9388 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
9389
9390 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
9391
9392 * log-edit.el (log-edit-strip-single-file-name): New var.
9393 (log-edit-insert-changelog): Use it. Bug#3571
9394
9395 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
9396
9397 * subr.el (read-passwd): Use read-key so keypad keys work as well.
9398 Bug#3287
9399
9400 * help.el (help-print-return-message): Rename from
9401 print-help-return-message.
9402
9403 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
9404 cvs-mode-map parent hack.
9405 (log-view-mode): Derive from special-mode.
9406
9407 * linum.el (linum-mode): window-size-change-functions is redundant.
9408 Adapt to new window-configuration-change-hook behavior.
9409 (linum-after-size, linum-after-config): Remove.
9410
9411 * imenu.el (imenu-example--name-and-position)
9412 (imenu-example--lisp-extract-index-name)
9413 (imenu-example--create-lisp-index, imenu-example--create-c-index):
9414 Mark as obsolete.
9415
9416 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
9417 (inferior-prolog-mode): Use it.
9418 (inferior-prolog-load-file): Reset list of errors.
9419
9420 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
9421
9422 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
9423
9424 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
9425
9426 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
9427
9428 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
9429 is running already.
9430
9431 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
9432
9433 * subr.el (listify-key-sequence-1): Use normal syntax since those
9434 integers are nowadays always represented by the same (positive) number
9435 on all platforms.
9436 (read-key-empty-map): New const.
9437 (read-key-delay): New var.
9438 (read-key): New function.
9439 (force-mode-line-update): Use with-current-buffer.
9440 (locate-user-emacs-file): Don't forget to abbreviate the file name.
9441 (start-process-shell-command, start-file-process-shell-command):
9442 Discourage the use of command-args.
9443
9444 2009-08-19 Glenn Morris <rgm@gnu.org>
9445
9446 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
9447
9448 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
9449
9450 * simple.el (choose-completion-string): Don't rely on
9451 minibuffer-completing-file-name and ad-hoc checks to decide whether
9452 to continue completion or not.
9453
9454 * minibuffer.el (minibuffer-hide-completions): New function.
9455 (completion--do-completion): Use it.
9456 (completions-annotations): New face.
9457 (completion--insert-strings): Use it.
9458 (completion-pcm--delim-wild-regex): Add docstring.
9459 (completion-pcm--string->pattern): Add support for 0-width delimiters
9460 in completion-pcm--delim-wild-regex.
9461
9462 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
9463
9464 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
9465 Remove unused var `buffer-modified-p'.
9466
9467 * minibuffer.el (completion--do-completion): Move point for the #b001
9468 case as well (bug#4176).
9469 (minibuffer-complete, minibuffer-complete-word): Don't move point.
9470
9471 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
9472
9473 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
9474 and :session buses.
9475
9476 2009-08-18 Kenichi Handa <handa@m17n.org>
9477
9478 * international/ucs-normalize.el (ucs-normalize-version):
9479 Change to 1.1.
9480 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
9481 (utf-8-hfs): Make it perform normalization on encoding too.
9482
9483 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
9484 (sentence-end-without-space): Delete duplicated chars.
9485 (sentence-end-base): Likewise.
9486
9487 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
9488 (html-mode): Delete duplicated chars from sentence-end-base.
9489
9490 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
9491 (texinfo-mode): Delete duplicated chars from sentence-end-base.
9492
9493 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
9494
9495 * files.el (hack-one-local-variable): If the mode function is for
9496 a minor mode, pass it an argument (Bug#4148).
9497
9498 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
9499
9500 * net/tramp.el (tramp-register-completion-file-name-handler):
9501 Check also for (member 'partial-completion completion-styles).
9502
9503 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
9504
9505 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
9506 abbrev (Bug#3943).
9507
9508 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
9509
9510 * progmodes/cperl-mode.el: Merge upstream 6.2.
9511 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
9512 (cperl-forward-re): Check cperl-brace-recursing.
9513 (cperl-highlight-charclass): New function.
9514 (cperl-find-pods-heres): Use it.
9515 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
9516 (cperl-beautify-regexp-piece): Fix column calculation.
9517 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
9518 (cperl-beautify-level): Don't process entire regexp.
9519 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
9520 calling man.
9521 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
9522 (cperl-init-faces): Build a list in the normal way.
9523
9524 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
9525
9526 * calendar/parse-time.el (parse-time-string-chars): Save match
9527 data.
9528
9529 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
9530
9531 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
9532 (sql-product): Use it.
9533 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
9534 (sql-set-product): Add completion.
9535 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
9536 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
9537 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
9538 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
9539 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
9540 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
9541 (sql-highlight-db2-keywords): Remove.
9542 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
9543 (sql-highlight-product): Use derived-mode-p.
9544 (sql-set-sqli-buffer): Use with-current-buffer.
9545 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
9546 Simplify.
9547
9548 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
9549
9550 * term.el: Fix commenting convention, turn comments into docstrings.
9551
9552 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
9553
9554 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
9555
9556 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
9557
9558 * calendar/parse-time.el (parse-time-string-chars): Compute using
9559 character classes, to handle non-ascii characters (Bug#3190).
9560
9561 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
9562
9563 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
9564 another heredoc if the user adds another < (Bug#3226).
9565
9566 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
9567 Don't initialize based on window-system (Bug#4124).
9568
9569 * facemenu.el (facemenu-read-color): Use a completion function
9570 that accepts any defined color, such as RGB triplets (Bug#3677).
9571
9572 * files.el (get-free-disk-space): Change fallback default
9573 directory to /. Expand DIR argument before switching to fallback.
9574 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
9575
9576 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
9577
9578 * files.el (load-library): Doc fix.
9579
9580 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
9581
9582 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
9583 (viper-if-string): Redefine C-s in the minibuffer to insert the last
9584 incremental search string.
9585
9586 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
9587 XEmacs.
9588
9589 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
9590 (ediff-merge-region-is-non-clash)
9591 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
9592 Also check if the job is really a merge job.
9593
9594 * ediff.el (ediff-current-file): New function.
9595
9596 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
9597
9598 * progmodes/js.el: Edit docstrings throughout to follow Emacs
9599 conventions.
9600 (js-insert-and-indent): Delete function.
9601 (js-mode-map): Don't bind keys to js-insert-and-indent.
9602 (js-beginning-of-defun): Rename from js--beginning-of-defun.
9603 (js-end-of-defun): Rename from js--end-of-defun.
9604 (js-auto-indent-flag): Delete variable.
9605
9606 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
9607
9608 * progmodes/js.el: Remove proclaim statement.
9609 Defvar which-func-imenu-joiner-function to silence compiler.
9610
9611 * files.el (auto-mode-alist): Use js-mode for .js files.
9612
9613 * progmodes/js2-mode.el: Remove file.
9614
9615 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
9616
9617 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
9618
9619 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
9620
9621 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
9622 Karl Landstrom <karl.landstrom@brgeight.se>
9623
9624 * progmodes/js.el: New file.
9625
9626 2009-08-14 Mark A. Hershberger <mah@everybody.org>
9627
9628 * timezone.el (timezone-parse-date): Add ability to understand ISO
9629 basic format (minimal separators) dates in addition to the
9630 already-supported extended format dates.
9631
9632 2009-08-14 Eli Zaretskii <eliz@gnu.org>
9633
9634 * international/ucs-normalize.el: Add a `coding' file variable.
9635
9636 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
9637
9638 2009-08-14 Sam Steingold <sds@gnu.org>
9639
9640 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
9641
9642 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
9643
9644 * faces.el (help-argument-name): Define it here instead of
9645 help-fns.el, because in daemon mode help-fns.el may be loaded when
9646 faces are still uninitialized (Bug#1078).
9647
9648 * help-fns.el (help-argument-name): Move defface to faces.el.
9649
9650 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
9651
9652 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
9653 create buffer with a pty but no process so that GDB can make the
9654 inferior the controlling process.
9655
9656 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
9657
9658 * international/ucs-normalize.el: New file.
9659
9660 2009-08-13 Richard Stallman <rms@gnu.org>
9661
9662 * mail/rmail.el (rmail-get-attr-names):
9663 Accept an attribute header that is too short.
9664
9665 * mail/rmail.el (rmail-forget-messages):
9666 Ignore nil elt in rmail-message-vector. Use dotimes.
9667
9668 * progmodes/compile.el (compilation-goto-locus):
9669 Use next-error-move-function.
9670
9671 * simple.el (next-error-move-function): New variable.
9672
9673 2009-08-12 Juri Linkov <juri@jurta.org>
9674
9675 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
9676 always non-nil. (Bug#4052)
9677
9678 * replace.el (read-regexp): Return empty string when
9679 `default-value' is nil.
9680 (keep-lines-read-args): Don't use empty string as the
9681 default value for `read-regexp'. (Bug#2495)
9682
9683 2009-08-12 Juri Linkov <juri@jurta.org>
9684
9685 * international/mule-cmds.el (ucs-insert): Change arguments
9686 from `arg' to `character', `count', `inherit' to be the same
9687 as in `insert-char'. Doc fix. (Bug#4039)
9688
9689 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
9690
9691 2009-08-12 Juri Linkov <juri@jurta.org>
9692
9693 * files-x.el: New file.
9694
9695 * files.el: Move code that deals with adding/deleting
9696 file/directory-local variables to files-x.el.
9697
9698 * Makefile.in (ELCFILES): Add files-x.elc.
9699
9700 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
9701
9702 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
9703 to use `goto-line'.
9704 (gdb-place-breakpoints, gdb-get-location): Rewritten without
9705 `goto-line'.
9706 (gdb-invalidate-disassembly): Do not refresh upon receiving
9707 'update signal. Instead, update all disassembly buffers only after
9708 threads list.
9709 (gdb): Send -target-detach when buffer is killed (Bug#3794).
9710 (gdb-starting): Moved -data-list-register-names...
9711 (gdb-stopped): ...here so it's sent when first thread stops.
9712 (gdb-registers-handler-custom): Do nothing if register names are
9713 unknown yet.
9714
9715 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
9716 from `gdb-mi.el' to avoid extra tangling.
9717
9718 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
9719 change which breaks `gud-def' definitions used in `gdb'.
9720 (gdb-update-gud-running): No extra fuss for updating frame number.
9721
9722 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
9723
9724 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
9725 (describe-language-environment-map, setup-language-environment-map)
9726 (set-coding-system-map): Move initialization into declaration.
9727 (set-language-info-alist): Last arg to define-key-after can be skipped.
9728
9729 * international/quail.el (quail-completion-1): Simplify.
9730 (quail-define-rules): Use slightly more compact code.
9731 (quail-insert-decode-map): Propertize keys, compact columns.
9732
9733 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9734 Add goto-line.
9735
9736 2009-08-10 Miles Bader <miles@gnu.org>
9737
9738 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
9739 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
9740 (js2-instance-member, js2-private-member, js2-private-function-call)
9741 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
9742 (js2-magic-paren, js2-external-variable):
9743 Remove "-face" suffix from face names.
9744 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
9745 (js2-highlight-undeclared-vars, js2-peek-token)
9746 (js2-parse-function-params, js2-mode-show-errors)
9747 (js2-mode-show-warnings, js2-make-magic-delimiter)
9748 (js2-mode-highlight-magic-parens): Update to use new face names.
9749
9750 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
9751
9752 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
9753 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
9754
9755 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
9756
9757 * subr.el: Provide hashtable-print-readable.
9758
9759 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
9760 hs-c-like-adjust-block-beginning.
9761 (hs-hide-block-at-point): Stop hiding at the beginning of
9762 hs-block-end-regexp (Bug#700).
9763
9764 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
9765
9766 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
9767 a macro.
9768 (gdb-registers-handler-custom): Do not fail when register names
9769 are unavailable.
9770
9771 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
9772
9773 * progmodes/gdb-mi.el (gdb-control-all-threads)
9774 (gdb-control-current-thread): Interactive setters for
9775 `gdb-gud-control-all-threads' to use in menu.
9776 (gdb-show-run-p): Show «Go» when process is not active.
9777 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
9778 gud/thread.xpm and gud/all.xpm.
9779
9780 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
9781
9782 * net/net-utils.el (net-utils-font-lock-keywords): New var.
9783 (nslookup-font-lock-keywords): Make it a variable.
9784 (net-utils-mode): New mode for viewing diagnostic network output.
9785 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
9786 (net-utils-run-simple): New function.
9787 (ifconfig, iwconfig, netstat, arp, route): Use it.
9788
9789 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
9790
9791 * progmodes/gdb-mi.el (gdb-read-memory-custom)
9792 (gdb-memory-set-address, def-gdb-set-positive-number)
9793 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
9794 after changing settings.
9795 (gdb-invalidate-disassembly): Update when first shown.
9796 (gdb-edit-locals-value): Fixed.
9797 (gdb-registers-handler-custom): Print registers in right order and
9798 allow changing register values (only for current thread yet).
9799 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
9800 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
9801 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
9802 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
9803 info in mode name.
9804 (gdb-registers-mode-map): TAB to switch to locals.
9805
9806 2009-08-08 Eli Zaretskii <eliz@gnu.org>
9807
9808 * mail/rmail.el (rmail-add-mbox-headers)
9809 (rmail-set-message-counters-counter): Search for
9810 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
9811
9812 2009-08-08 Glenn Morris <rgm@gnu.org>
9813
9814 * Makefile.in (ELCFILES): Update.
9815
9816 2009-08-07 Eli Zaretskii <eliz@gnu.org>
9817
9818 * mail/sendmail.el (mail-yank-original): Set
9819 buffer-file-coding-system from the one used by the message whose
9820 text is yanked.
9821
9822 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
9823 to "windows" when "pgnuplot" is used.
9824 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
9825 call accept-process-output if "pgnuplot" is used.
9826 (calc-graph-init): Don't send -display and -geometry to
9827 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
9828 running "pgnuplot -V" with shell-command-to-string.
9829
9830 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
9831 the default.
9832
9833 2009-08-07 Eli Zaretskii <eliz@gnu.org>
9834
9835 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
9836 org/org-latex.elc.
9837
9838 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
9839
9840 * vc-dispatcher.el (vc-resynch-window): Update comment.
9841
9842 * term.el (term-handle-ansi-escape): Add comments with the
9843 terminfo capabilities implemented.
9844
9845 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
9846
9847 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
9848 (gdb-var-create-handler): Rewritten using JSON parser.
9849 (gdb-propertize-header): Moved earlier.
9850 (gdb-set-header): Removed to avoid duplication.
9851 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
9852 Refresh disassembly buffers only after threads list have been
9853 update.
9854 (gdb-threads-header, gdb-registers-header): Per-buffer header line
9855 variables.
9856
9857 2009-08-04 Juri Linkov <juri@jurta.org>
9858
9859 * files.el: Commands to add/delete file/directory-local variables.
9860 (read-file-local-variable, read-file-local-variable-value)
9861 (read-file-local-variable-mode, modify-file-local-variable)
9862 (modify-file-local-variable-prop-line)
9863 (modify-dir-local-variable): New functions.
9864 (add-file-local-variable, delete-file-local-variable)
9865 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
9866 (add-dir-local-variable, delete-dir-local-variable)
9867 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
9868 (copy-dir-locals-to-file-locals-prop-line): New commands.
9869
9870 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
9871
9872 * abbrev.el (insert-abbrev-table-description): Prettify output.
9873 Suggested by Karl Chen.
9874
9875 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
9876
9877 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
9878 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
9879 (gdb-overlay-arrow-position, gdb-thread-position)
9880 (gdb-disassembly-position): Declare variables.
9881 (gdb-wait-for-pending): Function now.
9882 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
9883 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
9884 compilation goes smoothly.
9885 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
9886 (gdb-non-stop-setting): New customization setting which replaces
9887 `gdb-non-stop' so changing it doesn't break active GDB session.
9888 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
9889 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
9890 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
9891 (gdb-show-threads-by-default): New customization options.
9892 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
9893 routines.
9894 (gdb-get-buffer-create): Send buffers update signal when they are
9895 created.
9896 (gdb-invalidate-locals, gdb-invalidate-registers)
9897 (gdb-invalidate-breakpoints)
9898 (gdb-invalidate-threads, gdb-invalidate-disassembly)
9899 (gdb-invalidate-memory): Accept update signal.
9900 (gdb-current-context-command): Use --frame option.
9901 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
9902 Implement `gdb-frame-number' selection logic.
9903 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
9904 whether to show GUD toolbar buttons.
9905 (gdb-thread-exited): Unselect current thread when it exits.
9906 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
9907 (gdb-mark-line): Routine which sets overlay arrow or inverses
9908 video on fringeless displays.
9909 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
9910 to build aligned columns of data in GDB buffers and set text
9911 properties line-by-line.
9912 (gdb-invalidate-breakpoints)
9913 (gdb-breakpoints-list-handler-custom)
9914 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
9915 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
9916 (gdb-registers-handler-custom): Align data columns.
9917 (gdb-locals-handler-custom): Now prints data like in variable
9918 declarations.
9919 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
9920 Removed confusing buttons.
9921 (gdb-invalidate-threads): Append --frame.
9922 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
9923 between breakpoints/threads buffers.
9924 (gdb-set-window-buffer): Now can ignore dedicated windows.
9925 (gdb-propertize-header): Use `gdb-set-window-buffer'.
9926 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
9927 (def-gdb-thread-buffer-gud-command): Replaces
9928 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
9929 for fine thread control.
9930 (gdb-preempt-existing-or-display-buffer): New function used to
9931 display bound buffers without breaking window layout.
9932 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
9933 (gdb-select-frame): New version of `gdb-frames-select' which now
9934 sets `gdb-frame-number' so commands may use --frame option instead
9935 of inner debugger state.
9936 (gdb-frame-handler): Do not set `gdb-frame-number'.
9937 (gdb-threads-mode-map): Select threads with mouse.
9938
9939 * progmodes/gud.el (gdb-gud-context-call): Declare function to
9940 avoid compilation warning.
9941 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
9942 `gdb-show-stop-p`.
9943
9944 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
9945 Argument `key' renamed to `buffer-type'.
9946 (gdb-current-context-buffer-name): Do not add thread info to
9947 buffer name when no thread is selected.
9948 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
9949 command (bug 3794).
9950 (gdb-thread-selected): Handle `=thread-selected' notification.
9951 (gdb-wait-for-pending): New macro to deal with congestion problems.
9952 (gdb-breakpoints-list-handler-custom): Don't fail on pending
9953 breakpoints.
9954 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
9955 This fixes problem similar to one described in bug 3947.
9956 (gud-menu-map): More menu items.
9957 (gdb-init-1): Reset `gdb-thread-number' to nil.
9958
9959 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
9960 non-stop settings.
9961
9962 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
9963 (gdb-current-context-command): Do not append --thread if
9964 `gdb-thread-number' is nil.
9965 (gdb-running-threads-count, gdb-stopped-threads-count): New
9966 variables.
9967 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
9968 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
9969 customization options.
9970 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
9971 GUD commands.
9972 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
9973 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
9974 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
9975 set `gdb-thread-number' and update `gud-running' properly.
9976 (gdb-running): Update threads list when new threads appear.
9977 (gdb-stopped): Support non-stop operation and new thread switching
9978 logic.
9979 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
9980 (gdb-json-partial-output): New set of JSON routines.
9981 (def-gdb-auto-update-trigger): New `signal-list' optional
9982 argument.
9983 (gdb-thread-list-handler-custom): Update `gud-running',
9984 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
9985 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
9986 (gdb-continue-thread, gdb-step-thread): New commands for fine
9987 thread execution control.
9988 (gud-menu-map): New menu items to switch non-stop options.
9989 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
9990 (gdb-send): Mimic RET properly (bug 3794).
9991
9992 * progmodes/gdb-mi.el (gdb-rules-name-maker)
9993 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
9994 gdb-buffer-rules.
9995 (def-gdb-auto-update-handler): New nopreserve optional argument.
9996 (gdb-stack-list-frames-custom): Print stack from top to bottom.
9997
9998 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
9999 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
10000 (gdb-parent-mode): New mode to derive other GDB modes from.
10001 (gdb-display-disassembly-for-thread)
10002 (gdb-frame-disassembly-for-thread): New commands for threads
10003 buffer.
10004
10005 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
10006 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
10007 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
10008 (gdb-update): We now store all GDB buffers in a list so that they
10009 can be updated by traversing a list instead of calling invalidate
10010 triggers explicitly.
10011 (def-gdb-trigger-and-handler): New macro to define trigger-handler
10012 pair for GDB buffer.
10013 (gdb-stack-buffer-name): Add thread information.
10014 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
10015 handle pending triggers.
10016 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
10017 (def-gdb-thread-buffer-simple-command)
10018 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
10019 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
10020 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
10021 New commands which show buffers bound to thread.
10022 (gdb-stack-list-locals-regexp): Removed unused regexp.
10023
10024 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
10025 (gdb-locals-buffer-name, gdb-registers-buffer-name)
10026 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
10027 to (gud-comint-buffer) in *-buffer-name functions
10028 because (gdb-get-target-string) already does that.
10029 (gdb-locals-handler-custom, gdb-registers-handler-custom)
10030 (gdb-changed-registers-handler): Rewritten without regexps.
10031
10032 * progmodes/gdb-mi.el: Basic thread selection support.
10033 (gdb-thread-number): New variable.
10034 (gdb-current-context-command): New macro which adds --thread
10035 option to command.
10036 (gdb-threads-mode-map): Select thread with SPC.
10037 (gdb-thread-list-handler-custom): Mark current thread with overlay
10038 arrow. Synchronize GDB thread and Emacs thread.
10039 (gdb-select-thread): New command which selects current thread.
10040 (gdb-invalidate-frames, gdb-invalidate-locals)
10041 (gdb-invalidate-registers): Use --thread option.
10042
10043 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
10044
10045 * net/tramp.el (top): Make check for tramp-gvfs loading more
10046 robust. (Bug#3977)
10047 (tramp-handle-insert-file-contents): `unwind-protect' must be
10048 inside `with-parsed-tramp-file-name'.
10049
10050 * net/tramp-gvfs.el (top): Remove superfluous message when loading
10051 fails.
10052
10053 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
10054
10055 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
10056 directory if CLASSPATH is not set.
10057
10058 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
10059
10060 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
10061 New defconst.
10062 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
10063
10064 2009-08-02 Kevin Ryde <user42@zip.com.au>
10065
10066 * net/newst-backend.el (newsticker--raw-url-list-defaults):
10067 Update freshmeat link. Delete newsforge.com as it seems gone.
10068
10069 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10070
10071 * select.el (x-set-selection): Doc fix (Bug#4021).
10072
10073 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10074
10075 * help-fns.el (describe-variable): Treat list return values from
10076 dir-locals-find-file properly (Bug#4005).
10077
10078 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
10079
10080 * net/tramp.el (tramp-debug-message): Print also microseconds.
10081
10082 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
10083
10084 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10085 or END is non-nil.
10086 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10087 (tramp-get-debug-buffer): Change `outline-regexp' according to new
10088 format.
10089
10090 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10091 (tramp-get-file-property): Use it.
10092
10093 * autorevert.el (auto-revert-handler): Allow
10094 `auto-revert-tail-mode' for remote files.
10095
10096 2009-08-02 Jason Rumney <jasonr@gnu.org>
10097
10098 * minibuffer.el (read-file-name): Treat confirm options to
10099 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
10100
10101 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10102
10103 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10104 (font-lock-variable-name-face, font-lock-constant-face): Darken
10105 the colors for light backgrounds.
10106
10107 2009-08-01 Eli Zaretskii <eliz@gnu.org>
10108
10109 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10110 month names. (Bug#3987)
10111
10112 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
10113
10114 * simple.el (line-move-finish): Pass whole number to
10115 line-move-to-column.
10116 (line-move-visual): Perform hscroll to the recorded position.
10117
10118 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
10119
10120 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10121
10122 2009-07-29 Alan Mackenzie <acm@muc.de>
10123
10124 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10125
10126 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
10127
10128 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10129 (gdb-place-breakpoints): Use full path when setting breakpoints.
10130
10131 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
10132
10133 * calc/calc.el (calc-mode-map): Add keybinding for
10134 `calc-transpose-lines'.
10135
10136 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
10137
10138 * calc/calc-misc.el (calc-transpose-lines): New function.
10139
10140 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
10141
10142 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10143 Simplify check for out-of-band methods.
10144 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10145 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
10146
10147 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
10148
10149 * vc-git.el (vc-git-checkin): Fix typo.
10150
10151 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
10152
10153 * progmodes/js2-mode.el: New file.
10154
10155 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
10156
10157 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10158 (gud-menu-map): Adjust tooltip accordingly.
10159
10160 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
10161
10162 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10163 (vc-bzr-log-view-mode): Adjust log-view-file-re.
10164
10165 * add-log.el (change-log-mode-map): Add a menu.
10166
10167 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
10168
10169 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10170 function returns nil.
10171 (dbus-handle-event): Handle special return value :ignore.
10172 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10173
10174 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
10175
10176 * view.el (view-mode-enable): Don't define Helper-return-blurb if
10177 it's not needed.
10178
10179 2009-07-25 Eli Zaretskii <eliz@gnu.org>
10180
10181 Fix Bug#3888:
10182
10183 * w32-vars.el (x-select-enable-clipboard): Doc fix.
10184
10185 * term/pc-win.el (x-display-name, x-colors)
10186 (x-select-enable-clipboard, x-select-text): Doc fix.
10187
10188 * term/common-win.el (x-display-name, x-colors): Doc fix.
10189
10190 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10191 (xw-defined-colors): Doc fix.
10192
10193 * w32-fns.el (x-select-text, x-setup-function-keys)
10194 (x-get-selection, x-set-selection): Doc fix.
10195
10196 * term/x-win.el (x-select-text, x-setup-function-keys)
10197 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10198
10199 * select.el (x-set-selection): Doc fix.
10200
10201 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
10202
10203 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10204 instead of "IsNSSSupportAvailable". Avahi ought to work also when
10205 "IsNSSSupportAvailable" method is not available. Reported by
10206 Steve Youngs <steve@sxemacs.org>.
10207
10208 2009-07-24 Kenichi Handa <handa@m17n.org>
10209
10210 * international/characters.el: Fix setting of category ?C, ?|, ?K,
10211 and ?H. Fix setting of case for Latin Extended and Greek Extended.
10212 (build-unicode-category-table): Fix range checks.
10213
10214 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
10215
10216 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10217 the buffer we try to sync is current when calling
10218 vc-resynch-buffer.
10219
10220 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10221 not show up to date files.
10222
10223 2009-07-24 Glenn Morris <rgm@gnu.org>
10224
10225 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10226 Add autoload cookies. If necessary, initialize.
10227 (elint-log): Handle non-file buffers.
10228 (elint-initialize): Add optional argument to reinitialize.
10229 (elint-find-builtin-variables): Save excursion.
10230
10231 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
10232
10233 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10234 for Lint.
10235
10236 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10237
10238 * vc.el (vc-print-log-internal): New function, split out from ...
10239 (vc-print-log): ... here.
10240 (vc-dir-move-to-goal-column): Declare.
10241
10242 * vc-git.el (vc-git-add-signoff): New variable.
10243 (vc-git-checkin): Use it.
10244 (vc-git-toggle-signoff): New function.
10245 (vc-git-extra-menu-map): Bind it to menu.
10246 (vc-git--run-command-string): Accept a nil FILE argument.
10247 (vc-git-stash-list): New function.
10248 (vc-git-dir-extra-headers): Use it.
10249
10250 2009-07-23 Glenn Morris <rgm@gnu.org>
10251
10252 * help-fns.el (describe-variable): Describe ignored and risky local
10253 variables in a similar way to that in which we describe safe ones.
10254
10255 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10256 (byte-compile-output-file-form, byte-compile-output-docform)
10257 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10258 Give some more local variables with common names a "bytecomp-" prefix,
10259 so as not to shadow things during compilation.
10260 * emacs-lisp/cl-macs.el (load-time-value)
10261 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10262 `outbuffer' to `bytecomp-outbuffer'.
10263
10264 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10265 since the next two variables cover them automatically now.
10266 (elint-builtin-variables, elint-autoloaded-variables): New.
10267 (elint-unknown-builtin-args): Remove all members, since they can be
10268 parsed automatically now.
10269 (elint-extra-errors): New.
10270 (elint-env-add-env, elint-env-add-macro): Use cadr.
10271 (elint-current-buffer): Use or. Change final message.
10272 (elint-get-top-forms): Use line-end-position.
10273 (elint-init-env): Use cadr. Handle autoload, declare-function,
10274 and defalias.
10275 (elint-add-required-env): Doc fix. Use or. Standardize error.
10276 (regexp-assoc): Remove unused function.
10277 (elint-top-form): Set elint-current-pos, to record the start of the
10278 top-level form, for compilation-mode.
10279 (elint-form): Trap errors in macro expansion. Use dolist.
10280 (elint-unbound-variable): Use elint-builtin-variables and
10281 elint-autoloaded-variables.
10282 (elint-get-args): Use cadr, or.
10283 (elint-check-cond-form): Use dolist, cadr.
10284 (elint-check-condition-case-form): Doc fix. Use cadr.
10285 Use elint-extra-errors.
10286 (elint-log): New function.
10287 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10288 Distinguish errors and warnings.
10289 (elint-log-message): Use with-current-buffer. Inhibit read-only.
10290 Use a bytecomp-style format.
10291 (elint-clear-log): Preserve default-directory. Inhibit read-only.
10292 (elint-get-log-buffer): Use compilation mode. Disable undo.
10293 Don't truncate lines.
10294 (elint-initialize): Set builtin and autoloaded variable lists.
10295 Only process elint-unknown-builtin-args if non-nil.
10296 (elint-find-builtin-variables, elint-find-autoloaded-variables):
10297 New functions.
10298 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
10299
10300 2009-07-22 Kevin Ryde <user42@zip.com.au>
10301
10302 * net/newst-backend.el (newsticker--parse-atom-1.0)
10303 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10304 (newsticker--parse-rss-1.0):
10305 * progmodes/idlwave.el (idlwave-mode):
10306 * progmodes/idlw-shell.el (idlwave-shell-mode):
10307 * progmodes/vera-mode.el (vera-mode):
10308 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10309 * progmodes/vhdl-mode.el (vhdl-mode):
10310 * textmodes/table.el (table-generate-source)
10311 (table--warn-incompatibility):
10312 Hyperlink urls in docstrings with URL `...'.
10313
10314 2009-07-22 Glenn Morris <rgm@gnu.org>
10315
10316 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
10317 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
10318 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
10319 Remove leading * from defcustom docs.
10320
10321 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
10322
10323 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
10324 defcustom doc.
10325 (list-load-path-shadows): Optionally, just return shadows as a string.
10326
10327 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10328
10329 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
10330
10331 * mail/rmailedit.el (rmail-edit-mode): Use
10332 auto-save-include-big-deletions.
10333
10334 * mail/rmail.el (rmail-variables): Use
10335 auto-save-include-big-deletions.
10336
10337 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
10338 changes.
10339
10340 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
10341
10342 * calc/calc.el (calc-undo-length): New variable.
10343 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
10344
10345 2009-07-21 Richard Stallman <rms@gnu.org>
10346
10347 * files.el (auto-save-mode): Handle buffer-save-size = -2
10348 for toggling mode.
10349
10350 2009-07-21 Glenn Morris <rgm@gnu.org>
10351
10352 * textmodes/ispell.el (ispell-looking-back): Update declaration.
10353
10354 * calendar/todo-mode.el (calendar-current-date): Update declaration.
10355
10356 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
10357 silence compiler. Instead...
10358 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
10359 (ps-print-ensure-fontified): Update for above function name changes.
10360
10361 * printing.el (pr-mh-get-msg-num, pr-mh-show)
10362 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
10363 silence compiler. Instead...
10364 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
10365 (mh-show-buffer): Only define for compiler.
10366 (pr-mh-current-message): Update for above function name changes.
10367
10368 * files.el (abort-if-file-too-large): Explicitly pass `filename'
10369 as an argument.
10370 (find-file-noselect, insert-file-1): Update for above change.
10371
10372 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
10373
10374 * mail/mailclient.el (mailclient-send-it): Fix message.
10375
10376 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
10377 (edebug-eval): Check cl-debug-env is bound.
10378 (print-level, print-circle): Don't redefine built-in variables.
10379
10380 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
10381 (custom-print-vectors): Remove old comments from doc.
10382
10383 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
10384 (emerge-version): Make the variable an obsolete alias for the
10385 emacs-version variable. Make the function obsolete.
10386 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
10387 Emerge options, rather than merging in into the main Options menu.
10388 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
10389 and auto advance modes. Disable edit/fast items when not relevant.
10390
10391 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10392
10393 * term/vt420.el (terminal-init-vt420): Fix typo.
10394
10395 2009-07-20 Sam Steingold <sds@gnu.org>
10396
10397 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
10398 variable (removed from compile.el on 2004-03-11).
10399
10400 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
10401
10402 * files.el (hack-local-variables-filter): Fix last change.
10403
10404 2009-07-19 Juri Linkov <juri@jurta.org>
10405
10406 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
10407 (dir-local-variables-alist): New buffer-local variable.
10408 (hack-local-variables-filter): If variable is not dir-local,
10409 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
10410 because file-local overrides dir-local.
10411 (c-postprocess-file-styles) <declare-function>:
10412 Remove obsolete declaration.
10413 (hack-dir-local-variables): Add dir-local variable/value pair to
10414 `dir-local-variables-alist' and remove duplicates. Doc fix.
10415
10416 * help-fns.el (describe-variable): Add information about
10417 file-local and dir-local variables.
10418
10419 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
10420
10421 * files.el (hack-local-variables-filter): Rewrite.
10422
10423 2009-07-19 Glenn Morris <rgm@gnu.org>
10424
10425 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
10426 Silence compiler by only defining on XEmacs.
10427
10428 * international/mule.el (auto-coding-regexp-alist): Only match
10429 BABYL... at the start of buffer, not of lines. (Bug#3790)
10430
10431 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
10432 non-calendar buffers (Bug#3862). Restore "not on a date" message.
10433 (cal-menu-context-mouse-menu): Doc fix.
10434
10435 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
10436
10437 * simple.el (mail-user-agent): Doc fix. Set :version tag.
10438
10439 2009-07-18 Juri Linkov <juri@jurta.org>
10440
10441 * info.el: Virtual Info keyword finder.
10442 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
10443 (Info-finder-file): New variable.
10444 (Info-finder-find-file): New function.
10445 (finder-known-keywords, finder-package-info)
10446 (find-library-name, lm-commentary): Use defvar and
10447 declare-function to silence compiler warnings.
10448 (Info-finder-find-node): New function.
10449 (info-finder): New command.
10450
10451 * subr.el (process-kill-buffer-query-function): New function.
10452 (add-hook)<kill-buffer-query-functions>: Add hook
10453 `process-kill-buffer-query-function'.
10454
10455 2009-07-18 Alan Mackenzie <acm@muc.de>
10456
10457 * progmodes/cc-mode.el (c-before-hack-hook)
10458 (c-postprocess-file-styles): Give invocation of `c-set-style'
10459 DONT-OVERRIDE parameter of t. Already set style variables will
10460 thus not be overridden by style settings given by `c-file-syle'.
10461
10462 * files.el (hack-local-variables-filter): Remove entries with
10463 duplicate keys from `file-local-variables-alist'.
10464
10465 2009-07-18 Eli Zaretskii <eliz@gnu.org>
10466
10467 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
10468 x-set-selection if display-selections-p returns nil for the
10469 current frame.
10470
10471 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
10472
10473 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
10474
10475 2009-07-18 Eli Zaretskii <eliz@gnu.org>
10476
10477 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
10478 Accept nil in addition to a regexp.
10479 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
10480 Accept nil in addition to a regexp.
10481 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
10482 buffers that have an associated file. Handle nil values of
10483 desktop-buffers-not-to-save and desktop-files-not-to-save.
10484 (Bug#3833)
10485
10486 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10487 (x-disown-selection-internal): New functions.
10488
10489 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
10490
10491 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
10492 warning.
10493 (gdb-breakpoints-header): Move forward to avoid compiler warning.
10494 (gdb-make-header-line-mouse-map): Remove duplicate definition.
10495
10496 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
10497
10498 * simple.el (set-mark): Revert last change.
10499
10500 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
10501
10502 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
10503 rendering of pngs is not possible instead of messaging a long
10504 description.
10505
10506 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
10507
10508 * w32-fns.el (x-selection-owner-p): New function.
10509
10510 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
10511 (mouse-yank-at-click, mouse-yank-primary): If
10512 select-active-regions is non-nil, deactivate the mark before
10513 insertion.
10514
10515 * simple.el (deactivate-mark, set-mark): Only save selection if we
10516 own it.
10517
10518 2009-07-17 Kenichi Handa <handa@m17n.org>
10519
10520 * case-table.el (describe-buffer-case-table): Fix for the case
10521 that KEY is a cons.
10522
10523 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10524
10525 * vc-rcs.el (vc-rcs-find-file-hook):
10526 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
10527
10528 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
10529
10530 * net/tramp.el (tramp-wait-for-output): Handle the case when
10531 commands do not return a newline but a null byte before the shell
10532 prompt. (Bug#3858)
10533
10534 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10535
10536 * term/ns-win.el (ns-set-alpha): Don't declare.
10537 (ns-set-background-alpha): Remove function.
10538
10539 2009-07-16 Kevin Ryde <user42@zip.com.au>
10540
10541 * emacs-lisp/copyright.el (copyright-update): Save match-data across
10542 y-or-n-p, for safety.
10543
10544 2009-07-16 Richard Stallman <rms@gnu.org>
10545
10546 * files.el (auto-save-mode): If buffer-saved-size is -2,
10547 don't clobber it.
10548
10549 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
10550 (rmail-retry-ignored-headers): Add more uninteresting fields.
10551
10552 2009-07-15 Jari Aalto <jari.aalto@cante.net>
10553
10554 * net/rcirc.el (rcirc): Use history variables.
10555 (rcirc-server-name-history, rcirc-nick-name-history)
10556 (rcirc-server-port-history): New variables.
10557
10558 2009-07-15 Kenichi Handa <handa@m17n.org>
10559
10560 * international/mule-cmds.el (set-language-environment-charset):
10561 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
10562 ignore them.
10563
10564 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
10565 Delete unibyte-display.
10566
10567 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
10568
10569 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
10570
10571 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
10572
10573 * simple.el (deactivate-mark): Optional argument FORCE.
10574 (set-mark): Use deactivate-mark.
10575
10576 * info.el (Info-search): No need to check transient-mark-mode
10577 before calling deactivate-mark.
10578
10579 * select.el (x-set-selection): Doc fix.
10580 (x-valid-simple-selection-p): Allow buffer values.
10581 (xselect--selection-bounds): Handle buffer values. Suggested by
10582 David De La Harpe Golden.
10583
10584 * mouse.el (mouse-set-region, mouse-drag-track): Call
10585 copy-region-as-kill before setting the mark, to let
10586 select-active-regions work.
10587
10588 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
10589
10590 * simple.el (deactivate-mark): If select-active-regions is
10591 non-nil, copy the selection data into a string.
10592 (activate-mark): If select-active-regions is non-nil, set the
10593 selection to the current buffer.
10594 (set-mark): Update selection if select-active-regions is non-nil.
10595
10596 * select.el (x-valid-simple-selection-p): Allow buffer values.
10597
10598 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
10599
10600 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
10601 and more featureful message-mode.
10602
10603 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
10604
10605 * select.el (x-set-selection): Doc fix.
10606 (x-valid-simple-selection-p): Disallow selection data consisting
10607 of a list or cons of integers, since that is not used.
10608 (xselect--selection-bounds, xselect--int-to-cons): New functions.
10609 (xselect-convert-to-string, xselect-convert-to-length)
10610 (xselect-convert-to-filename, xselect-convert-to-charpos)
10611 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
10612
10613 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
10614
10615 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
10616 output in -break-info command (Emacs bug #3794).
10617
10618 2009-07-14 Glenn Morris <rgm@gnu.org>
10619
10620 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
10621 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
10622 (edebug-print-length, edebug-print-level, edebug-print-circle)
10623 (edebug-sit-for-seconds, edebug-view-outside)
10624 (edebug-bounce-point, edebug-set-global-break-condition)
10625 (edebug-Go-nonstop-mode, edebug-trace-mode)
10626 (edebug-Trace-fast-mode, edebug-continue-mode)
10627 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
10628 (edebug-visit-eval-list): Doc fixes.
10629
10630 * subr.el (def-edebug-spec): Doc fix.
10631
10632 2009-07-14 Kenichi Handa <handa@m17n.org>
10633
10634 * international/characters.el: Fix setting of category ?C.
10635
10636 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
10637
10638 * term/ns-win.el (x-select-font): defalias x-select-font to
10639 ns-popup-font-panel instead of generate-fontset-menu.
10640
10641 2009-07-12 Eli Zaretskii <eliz@gnu.org>
10642
10643 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
10644
10645 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
10646
10647 * arc-mode.el (archive-find-type): Allow for a PK00 string before
10648 the PK\003\004 header (Bug#3770).
10649
10650 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
10651
10652 * pcomplete.el (pcomplete-comint-setup): Check for
10653 shell-dynamic-complete-filename too.
10654
10655 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
10656
10657 * simple.el (temporary-goal-column): Change the value for
10658 line-move-visual to a cons cell.
10659 (line-move-visual): Record or set the window hscroll, if
10660 necessary (Bug#3494).
10661 (line-move-1): Handle cons value of temporary-goal-column.
10662
10663 2009-07-11 Kenichi Handa <handa@m17n.org>
10664
10665 * international/mule-diag.el (describe-character-set): Don't show
10666 width.
10667
10668 2009-07-10 Sam Steingold <sds@gnu.org>
10669
10670 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10671 Omake sometimes indents the errors it prints, so allow all
10672 regexps to start with spaces.
10673
10674 2009-07-10 Eli Zaretskii <eliz@gnu.org>
10675
10676 * cus-edit.el (customize-changed-options-previous-release):
10677 Bump value to 22.1. (Bug#3804)
10678
10679 2009-07-08 Sam Steingold <sds@gnu.org>
10680
10681 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
10682 to be a cons cell (test . ignored-directory) to selectively ignore
10683 some directories depending on the location of the search.
10684
10685 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
10686
10687 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
10688 remote user is root, on the local host.
10689 (tramp-local-host-p): Either the local user or the remote user
10690 must be root. (Bug#3771)
10691
10692 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
10693
10694 * progmodes/gdb-mi.el (gdb): Remove description of
10695 gdb-use-separate-io-buffer.
10696 (menu): Don't allow toggling of or enable
10697 gdb-use-separate-io-buffer from menubar.
10698
10699 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
10700
10701 * mail/unrmail.el (unrmail): Make sure the message ends with two
10702 newlines (Bug#3769).
10703
10704 2009-07-08 Glenn Morris <rgm@gnu.org>
10705
10706 * calendar/calendar.el (calendar-current-date): Rework previous change.
10707
10708 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
10709
10710 * calendar/calendar.el (calendar-current-date):
10711 Add an optional argument giving an offset from today.
10712
10713 2009-07-08 Glenn Morris <rgm@gnu.org>
10714
10715 * tutorial.el (tutorial--describe-nonstandard-key):
10716 Adjust the message for when a key has been unbound.
10717 (help-with-tutorial): Hide the arch-tag.
10718
10719 2009-07-08 Kenichi Handa <handa@m17n.org>
10720
10721 * international/fontset.el (setup-default-fontset): For each
10722 script, append (not set) font-specs.
10723
10724 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
10725 docstring.
10726
10727 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
10728
10729 * progmodes/gdb-mi.el (gdb-init-1): Move sending
10730 -data-list-register-names to ...
10731 (gdb-starting): ... here because GDB 7.0 requires execution to
10732 have started when using this MI command.
10733 (gdb-set-header): New function to distinguish select and
10734 unselected tabs in gdb buffers.
10735 (gdb-propertize-header): New macro that uses gdb-set-header.
10736 (gdb-breakpoints-header, gdb-locals-header): Use it.
10737 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
10738
10739 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
10740
10741 * Makefile.in (ELCFILES): Remove fadr.elc.
10742
10743 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
10744
10745 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
10746 may contain frame information, so `string-match' should be used.
10747 (gdb-update): Disassembly is invalidated through
10748 `gdb-get-selected-frame'.
10749 (gdb-pad-string): New function to pad string with spaces.
10750 (gdb-invalidate-disassembly): Invalidate only if the buffer
10751 exists.
10752 (gdb-disassembly-handler-custom): Column alignment.
10753 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
10754 placing new ones.
10755 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
10756 end of line, too.
10757 (gdb-frame-handler): Match convention to for disassembly buffer
10758 mode name.
10759 (gdb-stack-list-frames-handler): Rewritten without regexps.
10760 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
10761 not highlight breakpoints without line information.
10762 (gdb-input): Add trailing newline to command.
10763
10764 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
10765 buffer properly.
10766 (gdb-breakpoints-list-handler-custom): Replacement for
10767 `gdb-break-list-handler'. Using real parser instead of regexps
10768 now.
10769 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
10770 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
10771 to place breakpoints.
10772 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
10773 functions.
10774 (gdb-disassembly-handler-custom): Show overlay arrow.
10775 (gdb-disassembly-place-breakpoints): Show breakpoints in
10776 disassembly buffer.
10777 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
10778 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
10779 instead of parsing breakpoints buffer. Fixed old menu references
10780 in `gud-menu-map'.
10781
10782 * fadr.el: Remove.
10783
10784 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
10785 (gdb-memory-address): New variable which holds top address of
10786 memory page shown in memory buffer.
10787 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
10788 customization variables.
10789 New functions:
10790 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
10791 display the memory buffer.
10792 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
10793 buffer display parameters.
10794 (def-gdb-memory-format, gdb-memory-format-binary)
10795 (gdb-memory-format-octal, gdb-memory-format-unsigned)
10796 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
10797 Functions for setting memory buffer format.
10798 (gdb-memory-unit-word, gdb-memory-unit-halfword)
10799 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
10800 unit size used in memory buffer.
10801 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
10802 to next/previous page of memory buffer.
10803 Now using (bindat-get-field) instead of fadr functions.
10804
10805 2009-07-07 Sam Steingold <sds@gnu.org>
10806
10807 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
10808 non-top-level files.
10809
10810 2009-07-07 Kenichi Handa <handa@m17n.org>
10811
10812 * international/mule-cmds.el (reset-language-environment): Put
10813 the highset priority to the charset iso-8859-1.
10814
10815 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
10816
10817 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
10818 to the end of the line when locating the block (Bug#700).
10819
10820 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
10821
10822 * net/tramp.el (tramp-handle-write-region): Flush file properties
10823 in case of short track.
10824
10825 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
10826
10827 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
10828 Coded custom representation of verilog error regular expressions
10829 to work with Emacs-22's new format.
10830 (verilog-error-regexp-xemacs-alist): Coded custom representation
10831 of verilog error regular expressions to work with XEmacs format.
10832 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
10833 error recognition into XEmacs.
10834 (verilog-error-regexp-add-emacs): Hook routine to install verilog
10835 error recognition into Emacs-22.
10836
10837 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
10838
10839 * woman.el: Remove stand-alone closing parentheses.
10840 (woman-file-name, woman2-format-paragraphs)
10841 (woman-leave-blank-lines): Code cleanup.
10842 (woman-use-own-frame): Change default to nil.
10843 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
10844 defaults to inherit from default faces.
10845 (woman2-process-escapes): Consume the newline after a stand-alone
10846 filler character (Bug#3651).
10847
10848 2009-07-06 Glenn Morris <rgm@gnu.org>
10849
10850 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
10851 (top-level): Move provide to the end.
10852 (ffap): Remove defunct URL from custom group.
10853
10854 * subr.el (eval-after-load): Doc fix.
10855
10856 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
10857
10858 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
10859 `calc-embedded-word' is called twice.
10860
10861 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10862
10863 * files.el (find-alternate-file-other-window, find-alternate-file):
10864 Obey confirm-nonexistent-file-or-buffer.
10865
10866 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
10867
10868 * dired-aux.el (dired-show-file-type): Handle remote files.
10869
10870 2009-07-05 Jari Aalto <jari.aalto@cante.net>
10871
10872 * desktop.el (desktop-globals-to-save):
10873 Add file-name-history (Bug#2750).
10874
10875 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
10876
10877 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
10878
10879 2009-07-04 Johan Bockgård <bojohan@gnu.org>
10880
10881 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
10882 property on entire argument since this is what eshell-lisp-command
10883 expects.
10884
10885 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
10886
10887 * net/tramp-gvfs.el (tramp-gvfs-methods)
10888 (tramp-gvfs-zeroconf-domain)
10889 (tramp-bluez-discover-devices-timeout): Add version flag.
10890 (tramp-gvfs-handler-mounted-unmounted)
10891 (tramp-gvfs-connection-mounted-p): Polish handling of
10892 incompatibilities between GVFS 0.2 and 1.0.
10893
10894 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
10895
10896 * cus-start.el (all): Add make-pointer-invisible.
10897
10898 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
10899
10900 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
10901 formatted correctly.
10902
10903 2009-07-02 Juri Linkov <juri@jurta.org>
10904
10905 * info.el: Virtual Info files and nodes.
10906 (Info-virtual-files, Info-virtual-nodes): New variables.
10907 (Info-current-node-virtual): New variable.
10908 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
10909 New functions.
10910 (Info-file-supports-index-cookies): Use Info-virtual-file-p
10911 to check for a virtual file instead of checking a fixed list
10912 of node names.
10913 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
10914 instead of ad-hoc processing of "dir" and (apropos history toc).
10915 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
10916 instead of ad-hoc processing of "dir" and (apropos history toc).
10917 Reread a file when moving from a virtual node.
10918 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
10919 (Info-directory-toc-nodes, Info-directory-find-file)
10920 (Info-directory-find-node): New functions.
10921 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
10922 (Info-history): Move part of code to
10923 `Info-history-find-node'.
10924 (Info-history-toc-nodes, Info-history-find-file)
10925 (Info-history-find-node): New functions.
10926 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
10927 (Info-toc): Move part of code to `Info-toc-find-node'.
10928 (Info-toc-find-node): New function.
10929 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
10930 the current Info file name to references because now the node
10931 "*TOC*" belongs to the same Info manual.
10932 (Info-toc-build): Rename from `Info-build-toc'.
10933 (Info-toc-nodes): Rename input argument `file' to `filename'.
10934 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
10935 instead of ad-hoc processing of ("dir" apropos history toc).
10936 (Info-index-nodes): Use Info-virtual-file-p
10937 to check for a virtual file instead of checking a fixed list
10938 of node names.
10939 (Info-index-node): Add check for `Info-current-node-virtual'.
10940 Raise `save-match-data' higher up the tree to contain
10941 `search-forward' too (bug fix).
10942 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
10943 (Info-virtual-index-nodes): New variable.
10944 (Info-virtual-index-find-node, Info-virtual-index): New functions.
10945 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
10946 (Info-apropos-file, Info-apropos-nodes): New variables.
10947 (Info-apropos-toc-nodes, Info-apropos-find-file)
10948 (Info-apropos-find-node, Info-apropos-matches): New functions.
10949 (info-apropos): Move part of code to `Info-apropos-find-node' and
10950 `Info-apropos-matches'.
10951 (Info-mode-map): Bind "I" to `Info-virtual-index'.
10952 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
10953 for a virtual file instead of checking a fixed list of node names.
10954
10955 * simple.el (async-shell-command): New command.
10956
10957 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
10958
10959 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
10960 instead of `mount-info'.
10961
10962 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
10963
10964 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
10965 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
10966
10967 2009-07-02 Kenichi Handa <handa@m17n.org>
10968
10969 * international/mule.el (set-keyboard-coding-system): Force *-unix
10970 coding-system to avoid eol conversion.
10971
10972 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
10973
10974 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10975 Add handler for `process-file', `shell-command' and
10976 `start-file-process'.
10977 (tramp-gvfs-handle-shell-command)
10978 (tramp-gvfs-handle-start-file-process)
10979 (tramp-gvfs-handle-process-file): New defuns.
10980 (tramp-synce-list-devices): Simplify check for existence of property.
10981
10982 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
10983
10984 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
10985
10986 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
10987
10988 * language/korean.el (set-language-info-alist): Add korean-cp949,
10989 cp949 to spec.
10990
10991 2009-07-01 Kenichi Handa <handa@m17n.org>
10992
10993 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
10994
10995 * international/encoded-kb.el: Deleted.
10996
10997 * international/mule.el (set-keyboard-coding-system): Perform the
10998 necessary setup here instead of calling encoded-kbd-setup-display.
10999
11000 2009-07-01 Glenn Morris <rgm@gnu.org>
11001
11002 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
11003
11004 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
11005
11006 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
11007
11008 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
11009
11010 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
11011 Handle also the 'rename case, when setting file modes. (Bug#3712)
11012 (tramp-default-file-modes): Remove execute permissions.
11013
11014 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
11015 (top): Add a default for "synce" in `tramp-default-user-alist'.
11016 Add completion function for "synce" method.
11017 (tramp-hal-service, tramp-hal-path-manager)
11018 (tramp-hal-interface-manager, tramp-hal-interface-device):
11019 New defconst.
11020 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
11021 (tramp-synce-list-devices, tramp-synce-parse-device-names):
11022 New defuns.
11023
11024 * net/trampver.el: Update release number.
11025
11026 2009-06-30 Kenichi Handa <handa@m17n.org>
11027
11028 * international/fontset.el (setup-default-fontset): Add CJK fonts
11029 for symbols and the other miscellaneous characters.
11030
11031 * language/korea-util.el (setup-korean-environment-internal):
11032 Make char-width-table suitable for Korean environments.
11033 (exit-korean-environment): Cancel above.
11034
11035 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
11036 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
11037 setup-function to make char-width-table suitable for respective
11038 environments, and an exit-function to cancel that.
11039
11040 * language/japan-util.el (setup-japanese-environment-internal):
11041 Call use-cjk-char-width-table with arg `ja_JP'.
11042
11043 * international/characters.el (cjk-char-width-table): Delete it.
11044 (cjk-char-width-table-list): New variable.
11045 (use-cjk-char-width-table): New arg local-name.
11046 (use-default-char-width-table): Fix for the case that Emacs is
11047 already using the default char-width-table.
11048
11049 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
11050
11051 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
11052 modes mandatory. (Bug#3712)
11053
11054 2009-06-29 Alan Mackenzie <acm@muc.de>
11055
11056 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
11057 correction between the visible width of TABs and their number of bytes.
11058
11059 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
11060
11061 * server.el (server-buffer-done): Prevent kill-buffer from
11062 prompting by clearing the buffer modification flag (Bug#3696).
11063
11064 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
11065
11066 * progmodes/verilog-mode.el (verilog-beg-of-statement)
11067 (verilog-endcomment-reason-re): Support unique case and priority case.
11068 (verilog-basic-complete-re): Support localparam lineup.
11069 (verilog-beg-of-statement-1): Fix for robustness, unique case.
11070 (verilog-set-auto-endcomments): Fix for unique case, always_comb
11071 commenting.
11072 (verilog-leap-to-case-head): Now support *nested* unique &
11073 priority case statements.
11074 (verilog-auto-lineup): Make just declarations the default (as it
11075 had been).
11076 (verilog-leap-to-case-head): Support priority/unique case statements.
11077 (verilog-auto-lineup): Rework to give users radio buttons to
11078 select the various styles of automatic lineup.
11079 (verilog-error-regexp-alist): Rework to support the XEmacs style
11080 of error regular expressions from compilers, lint tools &
11081 simulators. Note that GNU Emacs has made it impossible for a mode
11082 to load such things.
11083 (electric-verilog-terminate-line, verilog-indent-declaration)
11084 (verilog-auto-wiure): Rework for radio button selection of
11085 auto-lineup selection of specification of auto lineup.
11086 (verilog-beg-of-statement-1): Redesign to support proper operation
11087 in additional code, based on testing with auto-lineup.
11088 (verilog-calculate-indent, assignments & declarations)
11089 (verilog-backward-token): Enhance to support auto-lineup of
11090 assignments & declarations.
11091 (verilog-in-directive-p, verilog-at-struct-p): New function for
11092 easy test of whether we are.
11093 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11094 to support safe execution at almost anyline.
11095 (verilog-calc-1): Properly support indenting deep inside generate
11096 blocks.
11097 (verilog-init-font): Remove definition & use of verilog-init-font,
11098 as it is redundant with font-lock-defaults.
11099 (verilog-mode): Alter the definition of verilog-font-lock-defaults
11100 to avoid circular calls if syntax-ppss is a function (as is the
11101 case now in 22.x GNU Emacs) as that function would sometimes call
11102 itself, leading to (nearly) infinite recursion.
11103 (verilog-ovm-begin-re, verilog-ovm-end-re)
11104 (verilog-ovm-statement-re, verilog-leap-to-head)
11105 (verilog-backward-token): Add support for OVM macros. Some are
11106 complete statements, and others open and close scopes like begin
11107 and end.
11108 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11109 (verilog-defun-level-generate-only-re): Really fix the defun-list
11110 compilation issue.
11111 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11112 coverpoint, constraint and cross statements.
11113 (verilog-defun-level-list, verilog-generate-defun-level-list)
11114 (verilog-all-defun-level-list): Redo these specifications - it is
11115 too hard to support eval-when compile aggregation of lists also
11116 built at when-compile time.
11117 (verilog-defun-level-list): Place defconsts of variables used in
11118 building regular expressions which are built in eval-when-compile
11119 bodies in the same eval-when-compile body to facilitate compile
11120 without load.
11121 (verilog-beg-block-re-ordered): Support indenting
11122 virtual/protected tasks and functions.
11123 (verilog-defun-level-list, verilog-in-generate-region-p)
11124 (verilog-backward-ws&directives, verilog-calc-1): Speed up
11125 indentation of some module items (generate items).
11126 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11127 across virtual/protected tasks and functions.
11128
11129 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
11130
11131 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11132 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
11133 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11134 in concatenations. Reported by Yishay Belkind.
11135 (verilog-auto-ascii-enum): Support one-hot state machines in
11136 AUTOASCIIENUM. Suggested by Lloyd Gomez.
11137 (verilog-auto-inst, verilog-auto-inst-port): Include interface
11138 modport in AUTOINST and add vl-modport for users. Reported by
11139 David Rogoff.
11140 (verilog-auto-inout-module, verilog-auto-inst)
11141 (verilog-decls-get-interfaces, verilog-insert-definition)
11142 (verilog-insert-one-definition, verilog-read-decls)
11143 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11144 (verilog-sig-modport, verilog-signals-combine-bus)
11145 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11146 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11147 Suggested by David Rogoff.
11148 (verilog-repair-open-comma): Fix non-insertion of comma when
11149 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
11150 (verilog-make-width-expression): Simplify [A-1:0] expression
11151 widths to just {A{1'b0}}.
11152 (verilog-mode): Cleanup checkdoc warnings.
11153 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11154 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11155 inputs/outputs or data type. Suggested by Vasu Kandadi.
11156 (next-error-last-buffer): Fix byte-compiler warning.
11157 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11158 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11159 or shell command text during AUTO expansion. Suggested by Tad Truex.
11160 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11161 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11162 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11163 in AUTOINOUT. Reported by Matthew Lovell.
11164 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11165 causing use of <= assignments. Reported by Alex Reed.
11166 (verilog-read-decls): Fix triand, trior, wand, wor to be
11167 recognized by AUTOWIRE. Reported by Spencer Isaacson.
11168 (verilog-extended-complete-re): Support import "DPI-C" functions.
11169 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11170 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
11171 (verilog-insert-date, verilog-insert-year)
11172 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11173 Windows systems. Reported by Michael Potts.
11174 (verilog-read-module-name): Fix AUTOINST when the child module
11175 declaration's name is a tick define. Reported by Elliot Mednick.
11176 (verilog-read-decls): Fix V2K parameter bit subscripts getting
11177 passed to next parameter's definition. Reported by Bruce T.
11178 (verilog-read-decls): Fix detecting "parameter int" when using
11179 AUTOINSTPARAM. Reported by Bruce T.
11180 (verilog-goto-defun): Fix goto not finding modules unless first
11181 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
11182 (verilog-mode): Expand -f flag arguments on entry to mode so
11183 verilog-goto-defun will work. Reported by Lawrence Butcher.
11184 (verilog-getopt): Expand environment variables in -f file
11185 arguments. Suggested by Lawrence Butcher.
11186 (verilog-set-define): Fix "Symbol's value as variable is void"
11187 when reading enumerations.
11188 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11189 Suggested by Stephen Peltan.
11190 (verilog-read-defines): Fix reading of enumerations in include
11191 files. Reported by Steve Peltan.
11192
11193 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11194
11195 * files.el (trash-directory): Fix defcustom type.
11196
11197 2009-06-28 Juri Linkov <juri@jurta.org>
11198
11199 * help-fns.el (describe-function-1): Correctly locate adviced
11200 functions in hyperlink (Bug#2438).
11201
11202 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
11203
11204 * files.el (trash-directory): Change default to nil.
11205 (move-file-to-trash): If trash-directory is nil and
11206 system-move-file-to-trash is unbound, perform freedesktop-style
11207 trashing.
11208
11209 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11210
11211 * files.el (move-file-to-trash): Add freedesktop trash
11212 support (Bug#973).
11213
11214 2009-06-28 Glenn Morris <rgm@gnu.org>
11215
11216 * autorevert.el (global-auto-revert-non-file-buffers)
11217 (global-auto-revert-mode): Doc fixes.
11218
11219 2009-06-27 Johan Bockgård <bojohan@gnu.org>
11220
11221 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11222
11223 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
11224
11225 * faces.el (x-handle-named-frame-geometry): Ensure that we have
11226 opened an X connection before calling x-get-resource (Bug#3194).
11227
11228 * play/doctor.el: Remove reference to obsolete website.
11229 (make-doctor-variables): Correct grammar mistake (Bug#2633).
11230
11231 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
11232
11233 Remove find-file-not-found-hook VC method. (Bug#2757)
11234 * vc-hooks.el (vc-file-not-found-hook)
11235 (vc-default-find-file-not-found-hook): Remove functions.
11236 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11237 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11238 * vc.el:
11239 * vc-hg.el:
11240 * vc-git.el: Do not mention find-file-not-found-hook VC method.
11241
11242 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
11243
11244 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11245 compatibility function for `looking-back'.
11246
11247 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11248 Use `ispell-looking-back'.
11249
11250 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
11251
11252 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11253 rather than `filename'.
11254
11255 2009-06-23 Miles Bader <miles@gnu.org>
11256
11257 * face-remap.el (text-scale-set): New function.
11258
11259 2009-06-23 Glenn Morris <rgm@gnu.org>
11260
11261 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11262
11263 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11264
11265 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11266
11267 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11268
11269 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11270 Simplify Persian conditionals.
11271
11272 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11273 variable `filename'.
11274
11275 * comint.el (comint-insert-input): Doc fix.
11276
11277 * Makefile.in (ELCFILES): Fix typo in previous change.
11278
11279 2009-06-23 Miles Bader <miles@gnu.org>
11280
11281 * cus-start.el: Add entry for `recenter-redisplay'.
11282
11283 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11284
11285 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11286 Add an optional argument for the backend, use it instead of
11287 calling vc-backend.
11288 (vc-mode-line): Add an optional argument for the backend.
11289 Pass the backend to vc-state and vc-working-revision. Move code for
11290 special handling for vc-state being a buffer to ...
11291
11292 * vc-rcs.el (vc-rcs-find-file-hook):
11293 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
11294
11295 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11296 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11297 vc-stay-local-p and vc-mode-line calls.
11298
11299 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11300 (vc-cvs-diff, vc-cvs-annotate-command)
11301 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11302 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11303 vc-mode-line calls.
11304
11305 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
11306 direct comparison.
11307 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
11308 backend when calling vc-mode-line.
11309 (vc-register): Do not create a closure for calling the vc register
11310 function, call it directly.
11311
11312 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11313
11314 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
11315 to make it obvious item can be clicked.
11316
11317 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
11318
11319 2009-06-23 Kenichi Handa <handa@m17n.org>
11320
11321 * language/korea-util.el (korean-key-bindings): Change the binding
11322 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
11323 same command.
11324
11325 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
11326
11327 Sync with Tramp 2.1.16.
11328
11329 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
11330
11331 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
11332 when a loading of a package fails. Completion function for rsync
11333 is `tramp-completion-function-alist-ssh'.
11334 (all): Replace all calls of `split-string' and
11335 `tramp-split-string' by `tramp-compat-split-string'.
11336 (tramp-default-method): Use `tramp-compat-process-running-p'.
11337 (tramp-default-proxies-alist): Allow also Lisp forms.
11338 (tramp-remote-path): Add choice "Private Directories".
11339 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
11340 (tramp-domain-regexp): Allow also "-", "_" and ".".
11341 (tramp-end-of-output): Remove newlines, and add "$" at the end.
11342 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
11343 (tramp-debug-message): Insert header line in debug buffer.
11344 (tramp-handle-directory-files-and-attributes-with-stat):
11345 Care about filenames with spaces, or starting with "-".
11346 (tramp-handle-dired-uncache): New defun.
11347 (tramp-handle-insert-directory): Don't flush the directory from
11348 cache, this is handled by `dired-uncache' now.
11349 (tramp-handle-insert-file-contents): Improve error handling.
11350 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11351 Quote `tramp-end-of-output'.
11352 (tramp-action-password): Improve trace message.
11353 (tramp-check-for-regexp): Both echoes must be present, before removing.
11354 (tramp-open-connection-setup-interactive-shell): Trace coding system.
11355 (tramp-compute-multi-hops): Eval cons cells of
11356 `tramp-default-proxies-alist'.
11357 (tramp-maybe-open-connection): Use the same command pattern for
11358 first hop and further hops.
11359 (tramp-wait-for-output): Remove handling of newlines.
11360 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
11361 (tramp-split-string): Remove function. It is handled in
11362 tramp-compat now.
11363
11364 * net/tramp-cmds.el (tramp-bug):
11365 Recommend `tramp-cleanup-all-connections' in the bug mail.
11366
11367 * net/tramp-compat.el (tramp-compat-split-string)
11368 (tramp-compat-process-running-p): New defuns.
11369
11370 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
11371 for `dired-uncache'.
11372
11373 * net/tramp-gvfs.el: New package.
11374
11375 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11376 Add handler for `dired-uncache'.
11377 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
11378
11379 * net/trampver.el: Update release number. Make version check fit
11380 for SXEmacs 22.
11381
11382 2009-06-22 Jim Meyering <meyering@redhat.com>
11383
11384 Automatically handle .xz suffix (XZ-compressed files), too.
11385 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
11386 XZ is the successor to LZMA: <http://tukaani.org/xz/>
11387
11388 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
11389 Nick Roberts <nickrob@snap.net.nz>
11390
11391 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
11392 repository (http://sphinx.net.ru/hg/gdb-mi/).
11393
11394 2009-06-22 Glenn Morris <rgm@gnu.org>
11395
11396 * files.el (dir-locals-collect-mode-variables): Allow for any number of
11397 `mode' and `eval' entries. (Bug#3430)
11398
11399 * Makefile.in (ELCFILES): Add fadr.elc.
11400
11401 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
11402 differing behavior of \n and ^ in strings. (Bug#3385)
11403
11404 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
11405
11406 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
11407 property.
11408 (lisp-indent-function): Make it a defcustom.
11409
11410 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
11411
11412 * progmodes/gdb-ui.el: Replace with ...
11413 * progmodes/gdb-mi.el: ... this file.
11414 * progmodes/gud.el: Modify for gdb-mi.el.
11415
11416 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
11417
11418 * fadr.el: New file.
11419
11420 See ChangeLog.14 for earlier changes.
11421
11422 ;; Local Variables:
11423 ;; coding: utf-8
11424 ;; End:
11425
11426 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
11427
11428 This file is part of GNU Emacs.
11429
11430 GNU Emacs is free software: you can redistribute it and/or modify
11431 it under the terms of the GNU General Public License as published by
11432 the Free Software Foundation, either version 3 of the License, or
11433 (at your option) any later version.
11434
11435 GNU Emacs is distributed in the hope that it will be useful,
11436 but WITHOUT ANY WARRANTY; without even the implied warranty of
11437 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11438 GNU General Public License for more details.
11439
11440 You should have received a copy of the GNU General Public License
11441 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
11442
11443 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1