(push, pop, dolist, dotimes, declare): Don't overwrite CL's
[bpt/emacs.git] / lisp / ChangeLog
1 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
4 extended definitions, in case we reload subr.el after having
5 loaded CL.
6 (eval-next-after-load): Mark as obsolete.
7
8 2009-09-17 Juri Linkov <juri@jurta.org>
9
10 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
11 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
12 (menu-bar-showhide-menu, menu-bar-tools-menu)
13 (menu-bar-describe-menu, menu-bar-help-menu)
14 (minibuffer-local-completion-map, minibuffer-local-map):
15 Fix list quoting.
16
17 2009-09-17 Glenn Morris <rgm@gnu.org>
18
19 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
20 arguments, whether or not it has a handler.
21
22 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
23
24 * simple.el (hard-newline): Give it a doc-string.
25
26 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
27 (lisp-mode-syntax-table): Give them doc-strings.
28
29 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
30
31 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
32 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
33 (menu-bar-options-menu, menu-bar-showhide-menu)
34 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
35 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
36 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
37 (menu-bar-options-menu, menu-bar-tools-menu)
38 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
39 (menu-bar-help-menu):
40 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
41 string arguments.
42
43 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
44 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
45 calls for the menu names and :help.
46
47 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
48
49 * mouse.el (minor-mode-menu-from-indicator): Pay attention
50 to :minor-mode-function (bug#4455).
51
52 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
53
54 * startup.el (command-line): Initialize the window-system after
55 processing the command-line.
56
57 * textmodes/page.el (what-page): Make sure we don't inf-loop if
58 page-delimiter matches the empty string.
59
60 2009-09-16 Glenn Morris <rgm@gnu.org>
61
62 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
63 byte-compile-not-obsolete-var. It's a list now.
64 (byte-compile-not-obsolete-funcs): New variable.
65 (byte-compile-warn-obsolete): Don't warn about functions if they are in
66 byte-compile-not-obsolete-funcs.
67 (byte-compile-variable-ref, byte-compile-defvar): Update for
68 byte-compile-not-obsolete-vars name-change and list nature.
69 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
70 and variables behind (f)boundp tests.
71 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
72
73 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
74
75 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
76
77 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
78
79 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
80 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
81 Don't autoload.
82
83 2009-09-15 Stephen Eglen <stephen@gnu.org>
84
85 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
86 the virtual-buffers, use the name of the buffer specified by
87 find-file-noselect, as the match may be a symlink. (This was a
88 problem if the target and the symlink had differet names.)
89
90 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
91
92 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
93
94 * desktop.el (desktop-path): Check user-emacs-directory.
95
96 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
97
98 * loadup.el: Use after-load-functions to GC after loading each file.
99 Remove the explicit GC calls that used to be sprinkled around.
100
101 * subr.el (after-load-functions): New hook.
102 (do-after-load-evaluation): Run it. Use string-match-p to detect
103 `obsolete' packages, rather than painfully extracting the relevant
104 directory name.
105
106 2009-09-15 Glenn Morris <rgm@gnu.org>
107
108 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
109 free variable `doc'.
110
111 * dired.el (dired-mode-map): Add menu entry for async shell command.
112
113 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
114 variables, also consider the .elc files, since the .el files are
115 normally gzipped (subsequent code locates the .el.gz from the .elc).
116
117 * calc/calc-prog.el (arglist): Define for compiler.
118
119 * calendar/diary-lib.el (diary-display-function): Change the default to
120 fancy display.
121 (body): Define for compiler.
122
123 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
124 (byte-compile-file-form, byte-compile-lambda)
125 (byte-compile-top-level-body, byte-compile-form)
126 (byte-compile-variable-ref, byte-compile-setq)
127 (byte-compile-setq-default, byte-compile-body)
128 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
129 (batch-byte-compile): Give some more local variables with common names
130 a "bytecomp-" prefix to avoid masking warnings about free variables.
131
132 * startup.el (command-line-1): Give local variables with common names a
133 distinguishing prefix, so as not to hide free variable warnings during
134 bootstrap.
135
136 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
137 clever and add a suffix to make a unique name, just let the user decide
138 whether or not to overwrite it. If the input is a directory, write the
139 default filename to that directory. (Bug#4388)
140 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
141 is a filename-as-a-directory.
142
143 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
144
145 * textmodes/page.el (what-page): Don't move to beginning of line.
146 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
147
148 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
149
150 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
151
152 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
153
154 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
155 * help.el (help-for-help-internal): Add purecopy calls for text.
156
157 * vc.el (top): print-log method now takes an optional SHORTLOG
158 argument. Add a new method: root.
159 (vc-root-diff, vc-print-root-log): New functions.
160 (vc-log-short-style): New variable.
161 (vc-print-log-internal): Add support for showing short logs.
162
163 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
164 vc-print-root-log and vc-print-root-diff.
165
166 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
167 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
168 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
169 short logs.
170
171 * vc-cvs.el (vc-cvs-print-log):
172 * vc-mtn.el (vc-mtn-print-log):
173 * vc-rcs.el (vc-rcs-print-log):
174 * vc-sccs.el (vc-sccs-print-log):
175 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
176 that is ignored for now.
177
178 * vc-mtn.el (vc-mtn-annotate-command):
179 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
180
181 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
182
183 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
184 to function-key-map, and give them ascii-character property.
185 * term/x-win.el (x-alternatives-map):
186 * term/ns-win.el (ns-alternatives-map):
187 * term/internal.el (msdos-key-remapping-map):
188 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
189
190 2009-09-14 Glenn Morris <rgm@gnu.org>
191
192 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
193 temp-buffers (2009-09-12).
194
195 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
196
197 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
198 the new read-key function.
199
200 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
201
202 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
203 is defined (Bug#4405).
204
205 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
206
207 * recentf.el (recentf-cleanup): Use a hash table to find
208 duplicates (Bug#4407).
209
210 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
211
212 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
213 kp-0 to ascii equivalents (Bug#4325).
214
215 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
216
217 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
218
219 * eshell/em-hist.el:
220 * eshell/em-dirs.el (eshell-complete-user-reference):
221 Declare pcomplete functions and variables to avoid compiler warnings.
222
223 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
224
225 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
226 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
227 * eshell/em-alias.el (eshell-aliases-file):
228 * eshell/em-hist.el (eshell-history-file-name):
229 Use expand-file-name instead of concat to make file names (Bug#4308).
230
231 2009-09-13 Glenn Morris <rgm@gnu.org>
232
233 * ediff-merg.el (ediff-do-merge):
234 * filesets.el (filesets-run-cmd):
235 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
236 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
237 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
238 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
239 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
240 Replace empty `let's with `progn'.
241
242 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
243
244 * mail/sendmail.el (send-mail-function):
245 * tooltip.el (tooltip-mode):
246 * simple.el (transient-mark-mode):
247 * rfn-eshadow.el (file-name-shadow-mode):
248 * frame.el (blink-cursor-mode):
249 * font-core.el (global-font-lock-mode):
250 * files.el (temporary-file-directory)
251 (small-temporary-file-directory, auto-save-file-name-transforms):
252 * epa-hook.el (auto-encryption-mode):
253 * composite.el (global-auto-composition-mode):
254 Use custom-initialize-delay.
255 * startup.el (command-line): Don't explicitly call
256 custom-reevaluate-setting for all the above vars.
257 * custom.el (custom-initialize-safe-set)
258 (custom-initialize-safe-default): Delete.
259
260 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
261
262 * term/x-win.el (x-initialize-window-system):
263 * term/w32-win.el (w32-initialize-window-system):
264 * term/ns-win.el (ns-initialize-window-system): Don't call
265 mouse-wheel-mode since it's enabled globally by default already.
266
267 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
268 actually define the variable, but only silences the byte-compiler.
269 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
270 before looking it up.
271 (mouse-wheel-scroll-amount): Also reset the bindings if this value
272 is changed.
273
274 2009-09-12 Glenn Morris <rgm@gnu.org>
275
276 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
277 1000.
278 (elint-add-required-env): Don't beep on error.
279 (elint-forms): In case of error, return ENV unchanged.
280 (elint-init-env): Skip non-list forms.
281 (elint-log): Handle unknown file positions.
282
283 2009-09-12 Daiki Ueno <ueno@unixuser.org>
284
285 * epg.el (epg-make-context): Add autoload cookie.
286 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
287 (epg-decrypt-string, epg-start-verify, epg-verify-file)
288 (epg-verify-string, epg-start-sign, epg-sign-file)
289 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
290 (epg-encrypt-string, epg-start-export-keys)
291 (epg-export-keys-to-file, epg-export-keys-to-string)
292 (epg-start-import-keys, epg-import-keys-from-file)
293 (epg-import-keys-from-string, epg-start-receive-keys)
294 (epg-receive-keys, epg-import-keys-from-server)
295 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
296 (epg-sign-keys, epg-start-generate-key)
297 (epg-generate-key-from-file, epg-generate-key-from-string):
298 Remove autoload cookie.
299
300 2009-09-12 Eli Zaretskii <eliz@gnu.org>
301
302 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
303 reevaluation of trash-directory.
304
305 * mwheel.el: Fix last change.
306 (mouse-wheel-mode): New defvar.
307 (mouse-wheel-mode): Remove autoload cookie.
308
309 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
310
311 * mwheel.el (mwheel-installed-bindings): New var.
312 (mouse-wheel-mode): Use it, so as to make sure we really remove all
313 the bindings we set last time. Use custom-initialize-delay.
314 * loadup.el: Load mwheel after term/*-win.el.
315 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
316 and mouse-wheel-up-event now that their first evaluation is done
317 sufficiently late to be correct.
318
319 * startup.el (tutorial-directory): Make it a defcustom.
320 Use custom-initialize-delay rather than eval-at-startup to set it.
321 * image.el (image-load-path): Make it a defcustom.
322 Use custom-initialize-delay rather than eval-at-startup to set it.
323 * subr.el (eval-at-startup): Remove.
324 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
325
326 * subr.el (do-after-load-evaluation): Warn the user after loading an
327 obsolete package.
328
329 2009-09-12 Glenn Morris <rgm@gnu.org>
330
331 * proced.el (proced-mark-alt): Remove alias.
332 (proced-mode-map): Remove proced-mark-alt.
333
334 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
335 Elint file and directory. Remove initialization entry.
336
337 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
338 commands.
339 (elint-current-buffer): Set mode-line-process.
340 (elint-init-env): Handle define-derived-mode.
341 Fix declare-function with unspecified arglist. Guard against odd
342 defalias statements (eg iso-insert's 8859-1-map).
343 (elint-add-required-env): Use a temp buffer.
344 (elint-form): Just print the function/macro name, not the whole form.
345 Return env unchanged if we fail to parse a macro.
346 (elint-forms): Guard against parse errors.
347 (elint-output): New function, to handle batch mode.
348 (elint-log-message): Add optional argument. Use elint-output.
349 (elint-set-mode-line): New function.
350
351 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
352
353 * emacs-lisp/elp.el (elp-not-profilable): Add more
354 functions (Bug#4233).
355
356 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
357
358 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
359 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
360
361 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
362
363 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
364 (gdb-var-list-children): Use json parsing.
365
366 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
367
368 * progmodes/js.el (js--proper-indentation): Handle the case where
369 char-before is null. Reported by Deniz Dogan.
370
371 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
372
373 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
374
375 2009-09-11 Daiki Ueno <ueno@unixuser.org>
376
377 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
378 (epg-digest-algorithm-alist): Add SHA224.
379 (epg-context-set-passphrase-callback)
380 (epg-context-set-progress-callback): Add description about
381 callback function.
382
383 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
384
385 * custom.el (custom-delayed-init-variables): New var.
386 (custom-initialize-delay): New function.
387 * startup.el (command-line): "Re"evaluate all vars in
388 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
389 explicitly any more.
390 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
391 to avoid creating a ~/.emacs.d at build-time (bug#4347).
392
393 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
394
395 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
396
397 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
398 (gdb-var-update-handler): Use json parsing.
399
400 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
401
402 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
403 decode annotated text, regardless of language environment. (Bug#2741)
404
405 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
406
407 * Makefile.in (autoloads): Make rmail.el writable as well.
408
409 2009-09-11 Glenn Morris <rgm@gnu.org>
410
411 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
412 loaddefs.el.
413 * dired.el: Regenerate with extracted autoloads.
414 * Makefile.in (autoloads): Make dired.el writable.
415
416 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
417 * ibuffer.el: Regenerate with extracted autoloads.
418 * Makefile.in (autoloads): Make ibuffer.el writable.
419
420 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
421 * version.el (emacs-copyright, emacs-major-version)
422 (emacs-minor-version): Reformat doc-strings for make-docfile.
423
424 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
425 functions and variables, since they must be stuff specific to some other
426 platform.
427 (apropos-print): Make mouse-click message less specific about button.
428
429 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
430 that records where a macro was defined.
431 * help-fns.el (describe-function-1): Mention if a function has a
432 compiler-macro.
433 * help-mode.el (help-function-cmacro): New button.
434
435 * locate.el (top-level): Always require dired.
436 (locate-mode-map): Initialize inside the defvar.
437
438 * net/ange-ftp.el (dired-compress-file): Declare.
439 (ange-ftp-dired-compress-file): Add doc string.
440
441 * term/ns-win.el (x-display-name, x-setup-function-keys):
442 Unify doc-strings with X versions.
443
444 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
445
446 * emulation/crisp.el (crisp-mode-map): Move initialization
447 into declaration.
448 (crisp-mode): Use define-minor-mode.
449
450 * progmodes/xscheme.el (xscheme-evaluation-commands):
451 Put a :advertised-binding property rather than using
452 advertised-xscheme-send-previous-expression.
453 (advertised-xscheme-send-previous-expression): Declare obsolete.
454 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
455 `advertised-undo'.
456 (crisp-mode): Add corresponding bindings to
457 undo's :advertised-binding instead.
458 * dired.el (dired-mode-map): Put a :advertised-binding property rather
459 than using dired-advertised-find-file.
460 (dired-advertised-find-file):
461 * simple.el (advertised-undo):
462 * wid-edit.el (advertised-widget-backward): Declare obsolete.
463 (widget-keymap): Put a :advertised-binding property rather
464 than using advertised-widget-backward.
465 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
466 than using advertised-undo.
467 * tutorial.el (tutorial--default-keys): Adjust accordingly.
468
469 2009-09-10 Simon South <ssouth@slowcomputing.org>
470
471 * progmodes/delphi.el (delphi-tab): Indent region when Transient
472 Mark mode is enabled and region is active; otherwise indent or
473 insert TAB as usual.
474 (delphi-mode): Update description of TAB-key binding.
475
476 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
477
478 * subr.el (define-key-rebound-commands): Mark obsolete.
479 * startup.el (precompute-menubar-bindings): Remove.
480 (normal-top-level): Remove obsolete code that tried to precompute
481 menubar bindings.
482 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
483 define-key-rebound-commands and precompute-menubar-bindings.
484
485 2009-09-10 Glenn Morris <rgm@gnu.org>
486
487 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
488
489 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
490 (byte-compile-file-form-autoload): Don't warn about unknown functions
491 where the autoload statement comes after the use.
492 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
493 that any handlers inside the body (eg require) are in turn respected.
494
495 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
496 effects.
497
498 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
499 and syntax and abbrev tables basic docs, if they don't have any.
500
501 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
502
503 * international/mule-cmds.el (top-level): Require cl when compiling.
504 (view-hello-file): Use default-value rather than
505 default-enable-multibyte-characters.
506
507 * progmodes/fortran.el: Move all safe and risky properties into the
508 defcustoms.
509
510 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
511 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
512 * mail/undigest.el:
513 Put autoloads in rmail.el rather than loaddefs.el.
514 * mail/rmail.el: Regenerate with extracted autoloads.
515
516 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
517 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
518
519 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
520
521 Reported in thread for Bug#4375.
522 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
523 "-data-evaluate-expression" instead of print.
524 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
525 (gdb-tooltip-print): Parse output from above MI command.
526 (gdb): Revert 2009-08-11 change. User should detach inferior
527 manually.
528
529 Remove the word "separate" from IO functions as inferior
530 output is now never displayed in the GUD buffer.
531
532 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
533
534 * startup.el (command-line-normalize-file-name): On Windows and
535 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
536
537 2009-09-10 Juri Linkov <juri@jurta.org>
538
539 * isearch.el (isearch-text-char-description): Propertize escape
540 character sequences with the `escape-glyph' face. (Bug#4344)
541
542 * simple.el (shell-command): Set asynchronous process filter to
543 `comint-output-filter'. (Bug#4343)
544
545 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
546 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
547 the list. Move "asm" to the bottom.
548 (grep-find-ignored-directories): Add `choice' with nil value
549 to empty the list easily.
550 (grep-find-ignored-files): New option.
551 (grep-files-history): Set to nil by default instead of '("ch" "el").
552 (grep-compute-defaults): Add "<X>" to `grep-template'.
553 (grep-read-files): Bind new local variables `default-alias' and
554 `default-extension'. Use a list of default values for the file prompt.
555 (lgrep): Add `--exclude=' command line options composed from
556 `grep-find-ignored-files'.
557 (rgrep): Add `-name' command line options composed from
558 `grep-find-ignored-files'. (Bug#4301)
559
560 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
561
562 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
563 (bug#4368).
564
565 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
566
567 * calendar/time-date.el (autoload):
568 Expand define-obsolete-function-alias into defalias and make-obsolete
569 for old Emacsen that Gnus supports.
570 (with-no-warnings): Define it for old Emacsen.
571 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
572 is available.
573 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
574 float-time is available; suppress compile warning for time-to-seconds.
575
576 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
577
578 * net/imap.el (imap-message-map): Docstring fix.
579
580 2009-09-09 Glenn Morris <rgm@gnu.org>
581
582 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
583 line numbers too. (Bug#4374)
584
585 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
586
587 * smerge-mode.el (smerge-remove-props, smerge-refine):
588 Use with-silent-modifications (bug#4342).
589
590 * subr.el (with-silent-modifications): New macro.
591
592 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
593
594 * files.el (top-level): Require `cl' when compiling.
595
596 2009-09-07 Glenn Morris <rgm@gnu.org>
597
598 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
599
600 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
601 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
602
603 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
604
605 * vc-git.el (vc-git-annotate-command): Use separator to parse
606 arguments correctly.
607
608 2009-09-06 Eli Zaretskii <eliz@gnu.org>
609
610 * proced.el (proced-mode): Doc fix.
611
612 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
613
614 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
615 lstat fails.
616 (tramp-do-file-attributes-with-ls): Check for file existence at
617 remote end.
618 (tramp-do-file-attributes-with-stat): Likewise.
619 (tramp-convert-file-attributes): Return nil when attr is nil.
620
621 2009-09-05 Glenn Morris <rgm@gnu.org>
622
623 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
624 properties to this button.
625 (diary-fancy-display): Don't extend the button to the final newline.
626 (diary-fancy-display-mode): Continue to define "q" as a local key.
627
628 * calendar/cal-china.el (holiday-chinese): Make it slightly more
629 efficient.
630
631 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
632
633 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
634 (byte-compile-dest-file-function): New option.
635 (byte-compile-dest-file): Doc fix.
636 Obey byte-compile-dest-file-function.
637 (byte-compile-cl-file-p): New function.
638 (byte-compile-eval): Only suppress noruntime warnings about cl functions
639 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
640 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
641 than for file being previously loaded.
642 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
643 (byte-compile-file-form-require): Handle the case where requiring a file
644 indirectly causes CL to be loaded.
645
646 2009-09-05 Karl Fogel <kfogel@red-bean.com>
647
648 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
649 before killing the old buffer, since by the time `kill-buffer' is
650 run so many buffer variables have been set to nil that it may not
651 behave as expected. (Bug#4061)
652
653 2009-09-05 Karl Fogel <kfogel@red-bean.com>
654
655 * files.el (find-alternate-file): If the old buffer is modified
656 and visiting a file, behave similarly to `kill-buffer' when
657 killing it, thus reverting to the pre-1.878 behavior; see
658 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
659 for discussion. Also, consult `buffer-file-name' as a variable
660 not as a function, for consistency with the rest of the code.
661
662 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
663
664 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
665 also when adding a new directory.
666
667 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
668 defun.
669
670 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
671
672 * files.el (locate-file-completion-table): Make it provide boundary
673 information, so partial-completion works better.
674
675 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
676
677 * mail/footnote.el (Footnote-text-under-cursor):
678 Check footnote-text-marker-alist before using it (bug#4324).
679
680 2009-09-04 Glenn Morris <rgm@gnu.org>
681
682 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
683 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
684 * play/solitaire.el, play/tetris.el:
685 Remove leading * from defcustom and defface docs.
686
687 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
688 necessary.
689 (diary-fancy-overriding-map): New variable.
690 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
691 Use view-mode.
692
693 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
694 goto-line.
695
696 2009-09-03 Glenn Morris <rgm@gnu.org>
697
698 * arc-mode.el (archive-mode):
699 * dos-fns.el (set-default-process-coding-system):
700 * man.el (Man-getpage-in-background):
701 * menu-bar.el (menu-bar-describe-menu):
702 * server.el (server-process-filter):
703 * startup.el (command-line):
704 * tar-mode.el (tar-header-block-tokenize, tar-extract):
705 * w32-fns.el (set-default-process-coding-system):
706 * x-dnd.el (x-dnd-handle-file-name):
707 * international/mule-cmds.el (mule-menu-keymap)
708 (set-default-coding-systems, language-info-alist, set-language-info)
709 (set-language-environment, standard-display-european-internal)
710 (set-locale-environment):
711 * international/mule-diag.el (mule-diag):
712 * mail/emacsbug.el (report-emacs-bug):
713 * mail/rmail.el (rmail-mode):
714 * mail/sendmail.el (mail-setup):
715 Use default-value rather than default-enable-multibyte-characters.
716
717 * progmodes/f90.el: Move all safe properties into the defcustoms.
718 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
719
720 * calendar/appt.el (appt-check):
721 * calendar/diary-lib.el (diary-set-header, diary-live-p)
722 (diary-check-diary-file, diary-list-entries)
723 (diary-include-other-diary-files, diary-simple-display)
724 (diary-fancy-display, diary-print-entries)
725 (diary-mark-included-diary-files, diary-make-entry):
726 Don't call substitute-in-file-name on diary-file.
727
728 2009-09-03 Eduard Wiebe <usenet@pusto.de>
729 Stefan Monnier <monnier@iro.umontreal.ca>
730
731 * mail/footnote.el (footnote-prefix): Make it a defcustom.
732 (footnote-mode-map): Move initialization into the declaration.
733 (footnote-minor-mode-map): Define it rather than changing global-map.
734 (footnote-mode): Use define-minor-mode.
735
736 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
737
738 * net/tramp.el (tramp-handle-file-attributes-with-ls)
739 (tramp-do-file-attributes-with-perl)
740 (tramp-do-file-attributes-with-stat): Rename from
741 `tramp-handle-file-attributes-with-*'.
742 (tramp-handle-file-attributes): Use them.
743 (tramp-do-directory-files-and-attributes-with-perl)
744 (tramp-do-directory-files-and-attributes-with-stat): Rename from
745 `tramp-handle-directory-files-and-attributes-with-*'.
746 (tramp-handle-directory-files-and-attributes): Use them.
747 (tramp-method-out-of-band-p): Additional parameter SIZE.
748 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
749 (tramp-handle-write-region): Use it.
750 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
751 (tramp-handle-vc-registered): Check, whether the first run did
752 return files to be tested.
753 (tramp-advice-make-auto-save-file-name): Do not call directly
754 `tramp-handle-make-auto-save-file-name', because this would bypass
755 the locking mechanism.
756
757 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
758 (file-remote-p, process-file, start-file-process, set-file-times)
759 (tramp-compat-file-attributes): Compatibility functions shall not
760 call directly `tramp-handle-*', because this would bypass the
761 locking mechanism.
762 (tramp-compat-number-sequence): New defun.
763
764 2009-09-02 Glenn Morris <rgm@gnu.org>
765
766 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
767 alias for float-time.
768 (time-to-number-of-days): In Emacs, use float-time.
769 * net/newst-backend.el (time-add): Suppress warnings from compat
770 function.
771 * time.el (emacs-uptime, emacs-init-time):
772 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
773 Use float-time rather than time-to-seconds.
774
775 * minibuffer.el (completion-initials-expand): Fix typo.
776
777 * faces.el (modeline, modeline-inactive, modeline-highlight)
778 (modeline-buffer-id):
779 * info.el (info-menu-5): Mark these face aliases as obsolete.
780
781 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
782
783 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
784 space ...
785 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
786 no "--thread" option.
787 (gdb-stopped): Don't print "Switched to thread" message when it is
788 unchanged.
789
790 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
791
792 * minibuffer.el (completion-try-completion)
793 (completion-all-completions): Remove ill-defined (and
794 mistakenly installed and luckily never used nor documented)
795 `completion-styles' property.
796 (completion-initials-expand, completion-initials-all-completions)
797 (completion-initials-try-completion): New functions.
798 (completion-styles-alist): Add doc to each entry.
799 Add new `initials' entry.
800
801 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
802
803 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
804 MI command -var-evaluate-expression.
805 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
806 and tweak for case of string child.
807 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
808
809 2009-09-01 Glenn Morris <rgm@gnu.org>
810
811 * add-log.el (change-log-date-face, change-log-name-face)
812 (change-log-email-face, change-log-file-face, change-log-list-face)
813 (change-log-conditionals-face, change-log-function-face)
814 (change-log-acknowledgement-face):
815 * cus-edit.el (custom-invalid-face, custom-rogue-face)
816 (custom-modified-face, custom-set-face, custom-changed-face)
817 (custom-saved-face, custom-button-face, custom-button-pressed-face)
818 (custom-documentation-face, custom-state-face, custom-comment-face)
819 (custom-comment-tag-face, custom-variable-tag-face)
820 (custom-variable-button-face, custom-face-tag-face)
821 (custom-group-tag-face-1, custom-group-tag-face):
822 * diff-mode.el (diff-header-face, diff-file-header-face)
823 (diff-index-face, diff-hunk-header-face, diff-removed-face)
824 (diff-added-face, diff-changed-face, diff-function-face)
825 (diff-context-face, diff-nonexistent-face):
826 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
827 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
828 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
829 (Info-title-4-face):
830 * isearch.el (isearch-lazy-highlight-face):
831 * log-view.el (log-view-file-face, log-view-message-face):
832 * paren.el (show-paren-match-face, show-paren-mismatch-face):
833 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
834 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
835 (cvs-msg-face):
836 * smerge-mode.el (smerge-mine-face, smerge-other-face)
837 (smerge-base-face, smerge-markers-face):
838 * wid-edit.el (widget-documentation-face, widget-button-face)
839 (widget-field-face, widget-single-line-field-face)
840 (widget-inactive-face, widget-button-pressed-face):
841 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
842 (woman-addition-face):
843 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
844 (eshell-ls-executable-face, eshell-ls-readonly-face)
845 (eshell-ls-unreadable-face, eshell-ls-special-face)
846 (eshell-ls-missing-face, eshell-ls-archive-face)
847 (eshell-ls-backup-face, eshell-ls-product-face)
848 (eshell-ls-clutter-face):
849 * eshell/em-prompt.el (eshell-prompt-face):
850 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
851 * obsolete/old-whitespace.el (whitespace-highlight-face):
852 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
853 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
854 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
855 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
856 (antlr-font-lock-literal-face):
857 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
858 (ebrowse-root-class-face, ebrowse-file-name-face)
859 (ebrowse-default-face, ebrowse-member-attribute-face)
860 (ebrowse-member-class-face, ebrowse-progress-face):
861 * progmodes/make-mode.el (makefile-space-face):
862 * progmodes/sh-script.el (sh-heredoc-face):
863 * textmodes/flyspell.el (flyspell-incorrect-face)
864 (flyspell-duplicate-face):
865 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
866 * textmodes/texinfo.el (texinfo-heading-face):
867 Mark face aliases with "-face" suffix as obsolete.
868
869 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
870 compiler.
871
872 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
873 (eudc-bob-sound-menu): Use defvar rather than defconst, since
874 easy-menu-define wants to modify these.
875
876 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
877
878 * net/browse-url.el (browse-url-file-url):
879 * term/internal.el (dos-codepage-setup):
880 Use default-value rather than default-enable-multibyte-characters.
881
882 * progmodes/etags.el (etags-goto-tag-location):
883 * progmodes/flymake.el (flymake-highlight-line)
884 (flymake-goto-file-and-line, flymake-goto-line):
885 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
886 (gdb-goto-breakpoint):
887 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
888 * progmodes/python.el (python-find-function)
889 (python-pdbtrack-track-stack-file):
890 * progmodes/verilog-mode.el (verilog-surelint-off):
891 * term/ns-win.el (ns-open-file-select-line):
892 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
893 Use forward-line rather than goto-line.
894
895 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
896 * textmodes/reftex-index.el (reftex-display-index):
897 * textmodes/reftex-ref.el (reftex-offer-label-menu):
898 * textmodes/reftex-toc.el (reftex-toc):
899 Remove unnecessary bindings of default-major-mode (all are followed by
900 major-mode check and possible mode switch).
901
902 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
903
904 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
905 Handle watchpoints (bug#4282).
906 (def-gdb-thread-buffer-command): Enable thread to be selected by
907 clicking without selecting threads buffer first.
908 (gdb-current-context-command): Use selected frame so that "up",
909 "down" etc work in the GUD buffer.
910 (gdb-update): Find selected frame before rendering stack buffer.
911 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
912
913 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
914
915 * progmodes/sym-comp.el (displayed-completions): Remove.
916 (symbol-complete): Use minibuffer-complete.
917
918 2009-08-31 Glenn Morris <rgm@gnu.org>
919
920 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
921
922 * apropos.el (apropos-symbols-internal):
923 Handle (obsolete) face aliases.
924
925 * faces.el (describe-face): Adjust the output format to be more like
926 describe-variable, and to mention (obsolete) face aliases.
927 Adjust the whitespace so that help-setup-xref works.
928
929 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
930 * calendar/diary-lib.el (diary-button-face):
931 Mark these face aliases as obsolete.
932
933 * calendar/calendar.el (calendar-today): Doc fix.
934
935 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
936
937 * progmodes/gdb-mi.el (gdb-control-all-threads)
938 (gdb-control-current-thread): Force tool bar update.
939 (gdb-non-stop-handler): New function.
940 (gdb-init-1): Use it to test if non-stop mode is supported.
941 Remove unused gdbmi buffer type.
942
943 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
944
945 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
946 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
947
948 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
949
950 * comint.el (comint-exec-1): Check command is non-null first.
951 Part of gdb-mi.el change (2009-08-28).
952
953 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
954
955 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
956
957 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
958
959 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
960 instead of `dolist' to avoid a recursive require when bootstrapping.
961
962 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
963
964 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
965
966 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
967
968 * net/imap.el (imap-send-command): Simplify.
969 (imap-wait-for-tag): point-max -> buffer-size.
970
971 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
972
973 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
974 with constant argument.
975
976 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
977
978 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
979
980 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
981 Change default, since most of our files don't have a history.
982 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
983 the user.
984
985 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
986 Add comint-run.
987
988 * calc/calc.el: Improve commenting convention.
989 (calc-digit-map, toplevel): Simplify.
990
991 * comint.el (comint-insert-input): Be careful to only set point if we
992 don't delegate to some other command.
993
994 * proced.el (proced-signal-list): Make it an alist.
995 (proced-grammar-alist): Capitalize names.
996 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
997 Disable undo manually and make it read-only.
998 Use completion-annotate-function.
999
1000 * minibuffer.el (minibuffer-message): If the current buffer is not
1001 a minibuffer, insert the message in the echo area rather than at the
1002 end of the buffer.
1003 (completion-annotate-function): New variable.
1004 (minibuffer-completion-help): Use it.
1005 (completion--embedded-envvar-table): Environment vars are
1006 always case-sensitive.
1007
1008 2009-08-30 Glenn Morris <rgm@gnu.org>
1009
1010 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
1011 from fortran-current-defun.
1012 (fortran-beginning-of-subprogram): Be more precise about finding the
1013 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
1014 (fortran-end-of-subprogram): Simplify.
1015 (fortran-current-defun): Use fortran-start-prog-re.
1016
1017 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
1018
1019 * subr.el (do-after-load-evaluation): Simplify.
1020
1021 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
1022
1023 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
1024
1025 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
1026 (vc-rcs-print-log): Use it.
1027
1028 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
1029
1030 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1031
1032 * paths.el (abbrev-file-name): Move to abbrev.el.
1033 * abbrev.el (abbrev-file-name): Move from paths.el.
1034 Obey user-emacs-directory.
1035 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
1036 user-emacs-directory.
1037 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
1038 abbrev-file-name and calc-settings-file any more.
1039 * startup.el (command-line): Recompute abbrev-file-name and
1040 abbreviated-home-dir.
1041 (normal-no-mouse-startup-screen): Improve the generic code and get rid
1042 of the special code for when C-h bindings haven't been changed.
1043 (display-startup-echo-area-message): Use with-current-buffer.
1044 (command-line-1): Use a list of strings, rather than a list of lists
1045 of strings for longopts.
1046
1047 * files.el (get-free-disk-space): Use / for default-directory.
1048
1049 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
1050 Use with-current-buffer.
1051
1052 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
1053 Recognize immutable variables like most-positive-fixnum.
1054 (byte-compile-setq-default): Check and warn if trying to assign
1055 to an immutable variable, or a non-variable.
1056
1057 * progmodes/cc-vars.el (c-comment-continuation-stars):
1058 * progmodes/cc-engine.el (c-looking-at-bos):
1059 * progmodes/cc-cmds.el (c-toggle-auto-state)
1060 (c-forward-into-nomenclature, c-backward-into-nomenclature)
1061 (c-comment-line-break-function): Add version of obsolescence.
1062
1063 2009-08-28 Juri Linkov <juri@jurta.org>
1064
1065 * files.el (magic-fallback-mode-alist): Add ZIP magic number
1066 associated with `archive-mode'.
1067
1068 * image.el (image-type-header-regexps): Use only JPEG magic number
1069 to determine JPEG images, and don't use `image-jpeg-p' because
1070 Emacs can display non-JFIF non-Exif JPEG images.
1071
1072 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
1073
1074 * arc-mode.el (archive-mode):
1075 * emacs-lisp/re-builder.el (re-builder-unload-function):
1076 Protect against the default value of `major-mode' being nil.
1077
1078 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
1079
1080 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
1081 Fix typos in docstrings.
1082
1083 * progmodes/js.el (js--macro-decl-re): Doc fix.
1084 (js--plain-method-re, js--split-name): Refloc docstring.
1085 (js--class-styles, js--make-merged-item, js--splice-into-items):
1086 Fix typos in docstrings; reflow docstrings.
1087 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
1088 (js--variable-decl-matcher, js--inside-pitem-p)
1089 (js--parse-state-at-point, js--get-all-known-symbols)
1090 (js--symbol-history, js-find-symbol, js--js-references)
1091 (js--moz-interactor, js--js-encode-value, js--read-tab):
1092 Fix typos in docstrings.
1093
1094 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1095
1096 * textmodes/reftex.el (reftex-get-file-buffer-force):
1097 * progmodes/verilog-mode.el (verilog-batch-execute-func):
1098 * emulation/viper.el (viper-go-away, viper-set-hooks):
1099 * emacs-lisp/re-builder.el (re-builder-unload-function):
1100 * emacs-lisp/bytecomp.el (byte-compile-file):
1101 * ses.el (ses-unload-function):
1102 * hexl.el (hexl-find-file):
1103 * files.el (normal-mode):
1104 * ehelp.el (with-electric-help):
1105 * autoinsert.el (auto-insert-alist):
1106 * arc-mode.el (archive-mode):
1107 Use (default-value 'major-mode) instead of default-major-mode.
1108
1109 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
1110 * international/mule.el (load-with-code-conversion):
1111 * emacs-lisp/debug.el (debug):
1112 * ediff-vers.el (ediff-rcs-get-output-buffer):
1113 * dired.el (dired-internal-noselect): Don't let-bind
1114 default-major-mode around code that doesn't use it.
1115 E.g. buffer creation via get-buffer-create doesn't use it.
1116
1117 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
1118
1119 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
1120 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
1121 when writing the temp file. Otherwise, epa-file gets confused.
1122 (tramp-register-file-name-handlers): Make it a defun. Move also
1123 `epa-file-handler' to the front of `file-name-handler-alist'.
1124
1125 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1126
1127 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
1128 start right after a ^M.
1129 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
1130 (tramp-completion-file-name-regexp-separate)
1131 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
1132 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
1133 Don't modify last-coding-system-used by accident.
1134 (tramp-completion-file-name-handler): Apply the checks here,
1135 instead during registration.
1136 (tramp-register-file-name-handlers) Renamed from
1137 `tramp-register-file-name-handler'. Register both
1138 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
1139 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
1140
1141 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
1142
1143 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
1144 Remove variable ...
1145 (gdb-init-1, gdb-display-separate-io-buffer)
1146 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
1147 references to it.
1148 (gdb-inferior-io-mode): Use make-comint-in-buffer.
1149 (gdb-inferior-filter): Use comint-output-filter to stop
1150 echoing and remove ^M characters.
1151
1152 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1153
1154 * emulation/viper-init.el (viper-restore-cursor-type):
1155 * emulation/cua-base.el (cua--update-indications):
1156 Replace default-cursor-type with (default-value 'cursor-type).
1157
1158 * mail/sendmail.el (mail-recover-1):
1159 * international/mule-diag.el (describe-current-coding-system-briefly)
1160 (describe-current-coding-system):
1161 * international/mule-cmds.el (select-safe-coding-system)
1162 (select-message-coding-system)
1163 (set-language-environment-coding-systems, set-locale-environment):
1164 * hexl.el (hexl-insert-multibyte-char):
1165 * dos-w32.el (find-buffer-file-type-coding-system):
1166 * simple.el (what-cursor-position):
1167 Replace uses of default-buffer-file-coding-system
1168 with (default-value 'buffer-file-coding-system).
1169
1170 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
1171 Replace uses of default-cursor-in-non-selected-windows
1172 with (default-value 'cursor-in-non-selected-windows).
1173 Use with-current-buffer.
1174
1175 * mail/feedmail.el: Use CL macros.
1176 (feedmail-run-the-queue, feedmail-send-it-immediately):
1177 * dos-w32.el (find-buffer-file-type): Replace uses of
1178 default-buffer-file-type with (default-value 'buffer-file-type).
1179
1180 2009-08-28 Glenn Morris <rgm@gnu.org>
1181
1182 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
1183 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
1184 Use default-value of major-mode rather than default-major-mode.
1185
1186 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
1187
1188 * Makefile.in (update-elcfiles): Report left over elc files.
1189
1190 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
1191 expand-file-name and with-current-buffer.
1192 (mail-get-names, mail-directory): Use with-current-buffer.
1193
1194 * vc.el (vc-read-revision): New function.
1195 (vc-version-diff, vc-merge): Use it.
1196
1197 2009-08-27 Sam Steingold <sds@gnu.org>
1198
1199 * simple.el (kill-do-not-save-duplicates): New user option.
1200 (kill-new): When it is non-nil, and the new string is the same as
1201 the latest kill, set replace to t to avoid duplicates in kill-ring.
1202
1203 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
1204
1205 * net/tramp.el (tramp-handle-process-file): Do not flush all
1206 caches when `process-file-side-effects' is set.
1207 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
1208 instead of `tramp-find-file-exists-command'.
1209 Unset `process-file-side-effects'.
1210
1211 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
1212
1213 * net/tramp.el (tramp-methods): New method "rsyncc".
1214 (top): Add completion function for "rsyncc".
1215 (tramp-message-show-message): New defvar.
1216 (tramp-message, tramp-error): Use it.
1217 (tramp-do-copy-or-rename-file-directly): Extend check for direct
1218 remote copying.
1219 (tramp-do-copy-or-rename-file-out-of-band): Handle new
1220 `tramp-methods' entry `copy-env' of "rsyncc".
1221 (tramp-vc-registered-read-file-names): New defconst.
1222 (tramp-vc-registered-file-names): New defvar.
1223 (tramp-handle-vc-registered): Implement optimization strategy.
1224 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
1225 (tramp-vc-file-name-handler): New defun.
1226 (tramp-get-ls-command, tramp-get-test-command)
1227 (tramp-get-file-exists-command, tramp-get-remote-ln)
1228 (tramp-get-remote-perl, tramp-get-remote-stat)
1229 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
1230
1231 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
1232 (tramp-cache-inhibit-cache): Extend doc string. It allows also
1233 timestamps.
1234 (tramp-get-file-property): Check for timestamps in
1235 `tramp-cache-inhibit-cache'.
1236 (tramp-set-file-property): Write timestamp.
1237
1238 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
1239
1240 * language/japan-util.el (japanese-symbol-table): Add entries for
1241 cp932-2-byte.
1242
1243 * international/characters.el: Add category `j' to cp932-2-byte.
1244
1245 2009-08-27 Kenichi Handa <handa@m17n.org>
1246
1247 * international/fontset.el (build-default-fontset-data): New macro.
1248 (setup-default-fontset): Use build-default-fontset-data for CJK,
1249 tibetan, ethiopic, and ipa.
1250
1251 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
1252
1253 * cus-start.el (default-major-mode): Customize `major-mode' instead.
1254 (enable-multibyte-characters): Not customizable any more.
1255
1256 * subr.el (default-mode-line-format, default-header-line-format)
1257 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
1258 (default-direction-reversed, default-truncate-lines)
1259 (default-left-margin, default-tab-width, default-case-fold-search)
1260 (default-left-margin-width, default-right-margin-width)
1261 (default-left-fringe-width, default-right-fringe-width)
1262 (default-fringes-outside-margins, default-scroll-bar-width)
1263 (default-vertical-scroll-bar, default-indicate-empty-lines)
1264 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
1265 (default-fringe-cursor-alist, default-scroll-up-aggressively)
1266 (default-scroll-down-aggressively, default-fill-column)
1267 (default-cursor-type, default-buffer-file-type)
1268 (default-cursor-in-non-selected-windows)
1269 (default-buffer-file-coding-system, default-major-mode)
1270 (default-enable-multibyte-characters): Mark as obsolete.
1271
1272 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
1273
1274 * vc-dir.el (vc-dir-update): Remove debug helper.
1275
1276 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
1277
1278 2009-08-26 Sam Steingold <sds@gnu.org>
1279
1280 * simple.el (save-interprogram-paste-before-kill): New user option.
1281 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
1282 save the interprogram-paste into kill-ring before overriding it
1283 with the Emacs kill.
1284
1285 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
1286
1287 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
1288 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
1289 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
1290 and move to vc-rcs.el.
1291 (vc-default-next-revision): Rename to vc-rcs-next-revision and
1292 move to vc-rcs.el.
1293 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
1294 (vc-rcs-update-changelog): Remove.
1295 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
1296 and move to vc-rcs.el.
1297
1298 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
1299 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
1300 renaming.
1301 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
1302 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
1303 vc.el, renamed to be RCS specific.
1304
1305 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
1306 New functions.
1307 (vc-cvs-update-changelog): Move here from vc.el.
1308
1309 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
1310 New functions.
1311
1312 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
1313
1314 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
1315
1316 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
1317
1318 * vc-git.el (vc-git-register): Use "git add" for directories.
1319 (vc-git-stash, vc-git-stash-show): New functions.
1320 (vc-git-extra-menu-map): Bind them.
1321
1322 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
1323 directory correctly in case the item is a directory itself.
1324
1325 * vc.el: Document the desired behavior for reverted files in the
1326 `added' state.
1327 (vc-default-prettify-state-info): Remove function, unused.
1328
1329 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
1330
1331 2009-08-26 Glenn Morris <rgm@gnu.org>
1332
1333 * bindings.el (standard-mode-line-format): Reposition dashes in
1334 which-func entry. (Bug#4217)
1335
1336 * files.el (enable-local-variables, enable-local-eval)
1337 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
1338 the defcustoms.
1339 (auto-mode-alist, ignored-local-variables)
1340 (save-some-buffers-action-alist): Move risky declarations to the
1341 definitions.
1342 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
1343 (font-lock-defaults, format-alist, imenu--index-alist)
1344 (imenu-generic-expression, input-method-alist, minor-mode-alist)
1345 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
1346 (mode-line-modified, mode-line-mule-info, mode-line-position)
1347 (mode-line-process, mode-line-remote, outline-level)
1348 (parse-time-rules, rmail-output-file-alist)
1349 (special-display-buffer-names, vc-mode):
1350 Move risky declarations to the relevant files.
1351 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
1352 (mode-line-modified, mode-line-process, mode-line-position)
1353 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
1354 * font-core.el (font-lock-defaults):
1355 * format.el (format-alist):
1356 * vc-hooks.el (vc-mode):
1357 * window.el (special-display-buffer-names):
1358 * international/mule-cmds.el (input-method-alist):
1359 Define riskiness here (dumped file) rather than in files.el.
1360 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
1361 * imenu.el (imenu-generic-expression, imenu--index-alist):
1362 * outline.el (outline-level):
1363 * time.el (display-time-string):
1364 * calendar/parse-time.el (parse-time-rules):
1365 * mail/rmailout.el (rmail-output-file-alist):
1366 Autoload riskiness here, rather than placing in files.el.
1367
1368 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
1369
1370 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
1371
1372 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
1373
1374 * simple.el (process-file-side-effects): New defvar.
1375
1376 * dired-aux.el (dired-show-file-type):
1377 * vc.el (vc-diff-internal):
1378 * vc-arch.el (vc-arch-diff):
1379 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
1380 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
1381 * vc-git.el (vc-git-registered, vc-git-working-revision)
1382 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
1383 (vc-git--empty-db-p):
1384 * vc-hooks.el (vc-user-login-name):
1385 * vc-svn.el (vc-svn-registered, vc-svn-state)
1386 (vc-svn-dir-extra-headers, vc-svn-find-revision):
1387 * progmodes/grep.el (grep-probe): Let-bind
1388 `process-file-side-effects' with nil.
1389
1390 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
1391
1392 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
1393 daemon. Replace ping by checking for running service for bluez
1394 and zeroconf. (Bug#4239)
1395
1396 2009-08-25 Kevin Ryde <user42@zip.com.au>
1397
1398 * net/dig.el (dig): Add autoload cookie.
1399
1400 2009-08-25 Glenn Morris <rgm@gnu.org>
1401
1402 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
1403 load-history for absolute file-names.
1404 (byte-compile-file-form-require): Warn about use of the cl package.
1405
1406 * format.el (format-alist): Doc fix.
1407
1408 * play/bubbles.el (top-level): Don't require cl at run-time.
1409
1410 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
1411 run-time cl).
1412
1413 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
1414
1415 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
1416 from cl package.
1417 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
1418
1419 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
1420
1421 * calc/calc-alg.el (math-trig-rewrite)
1422 (math-hyperbolic-trig-rewrite): New functions.
1423 (calc-simplify): Simplify trig functions when asked.
1424
1425 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
1426
1427 * diff-mode.el (diff-find-source-location): Avoid goto-line.
1428
1429 2009-08-24 Kenichi Handa <handa@m17n.org>
1430
1431 * language/ind-util.el (mapthread): Delete it.
1432 (combinatorial): New function.
1433 (indian--puthash-cv): Use combinatorial instead of mapthread.
1434
1435 2009-08-22 Kevin Ryde <user42@zip.com.au>
1436
1437 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
1438 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
1439 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
1440 Clarify docstring that the value is strings not symbols.
1441 (checkdoc-list-of-strings-p): New function.
1442
1443 2009-08-22 Glenn Morris <rgm@gnu.org>
1444
1445 * files.el (auto-mode-alist):
1446 * hippie-exp.el (he-concat-directory-file-name):
1447 * lpr.el (lpr-windows-system, printer-name):
1448 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
1449 * ps-print.el (ps-windows-system):
1450 * startup.el (command-line):
1451 * emulation/viper-ex.el (viper-glob-function):
1452 * international/mule-cmds.el (set-language-environment-coding-systems):
1453 * net/ange-ftp.el (ange-ftp-write-region):
1454 * obsolete/fast-lock.el (fast-lock-cache-name):
1455 Remove code for defunct system-types emx, macos, mswindows, next-mach,
1456 unisoft-unix, vax-vms, win32, w32.
1457
1458 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
1459 given name if the pattern is not more specific.
1460
1461 * calendar/lunar.el (lunar-phase-names): New option.
1462 (lunar-phase): Doc fix.
1463 (lunar-cycles-per-year): New constant.
1464 (lunar-index): New function.
1465 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
1466 (lunar-phase-name): Use lunar-phase-names.
1467 (calendar-lunar-phases): Use format.
1468 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
1469
1470 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
1471 Copy imenu-example--name-and-position function here for own use.
1472 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
1473
1474 * bs.el (bs--redisplay):
1475 * cus-edit.el (custom-redraw):
1476 * ibuffer.el (ibuffer-bury-buffer):
1477 * server.el (server-goto-line-column):
1478 * startup.el (command-line-1):
1479 * strokes.el (strokes-xpm-for-stroke):
1480 * term.el (term-display-buffer-line):
1481 * view.el (View-goto-line):
1482 * calc/calc.el (calc-do, calc-trail-buffer):
1483 * play/gamegrid.el (gamegrid-add-score-insecure):
1484 * progmodes/ada-mode.el (ada-compile-goto-error):
1485 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
1486 (ebrowse-select-1st-to-9nth):
1487 * progmodes/cperl-mode.el (cperl-time-fontification):
1488 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
1489 * progmodes/gud.el (gud-display-line):
1490 (idlwave-shell-display-line):
1491 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
1492 * progmodes/make-mode.el (makefile-browser-toggle):
1493 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
1494 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
1495 * textmodes/picture.el (picture-draw-rectangle):
1496 * textmodes/reftex-index.el (reftex-index-goto-letter):
1497 (reftex-select-jump-to-previous):
1498 * textmodes/reftex-sel.el (reftex-find-start-point)
1499 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
1500 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
1501 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
1502 * textmodes/tex-mode.el (tex-compilation-parse-errors):
1503 * textmodes/two-column.el (2C-associated-buffer):
1504 Use forward-line rather than goto-line.
1505
1506 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
1507 goto-line.
1508
1509 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
1510 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
1511 (quick-check-list-to-regexp): Declare.
1512
1513 * progmodes/make-mode.el (makefile-browser-insert-selection):
1514 Use goto-char rather than goto-line.
1515
1516 * progmodes/prolog.el (compilation-error-regexp-alist)
1517 (compilation-forget-errors): Declare.
1518
1519 2009-08-22 Juri Linkov <juri@jurta.org>
1520
1521 * progmodes/grep.el (lgrep, rgrep): At the beginning
1522 set `dir' to `default-directory' unless `dir' is a non-nil
1523 readable directory. (Bug#4052)
1524 (lgrep, rgrep): Change a weird way to report an error
1525 from using `read-string' to using `error'.
1526 Instead of using interactive arguments in the function body,
1527 add new argument `confirm'.
1528
1529 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1530
1531 * textmodes/remember.el (remember-buffer):
1532 * progmodes/cperl-mode.el (cperl-vc-header-alist):
1533 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
1534 (icalendar-extract-ical-from-buffer):
1535 * net/newst-treeview.el (newsticker-groups-filename):
1536 * net/newst-backend.el (newsticker-cache-filename):
1537 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
1538 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
1539 (speedbar-add-ignored-path-regexp, speedbar-line-path)
1540 (speedbar-buffers-line-path, speedbar-path-line)
1541 (speedbar-buffers-line-path):
1542 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
1543 (epg-sign-keys):
1544 * epa.el (epa-display-verify-result):
1545 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
1546
1547 2009-08-21 Glenn Morris <rgm@gnu.org>
1548
1549 * progmodes/js.el (inferior-moz-process): Fix declaration.
1550
1551 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
1552
1553 * obsolete/rnewspost.el (news-mail-reply):
1554 Use goto-char rather than goto-line.
1555
1556 * term/ns-win.el (ns-open-file-select-line):
1557 Use line-beginning-position rather than goto-line.
1558
1559 * apropos.el (apropos-command):
1560 * ehelp.el (electric-helpify):
1561 * printing.el (pr-show-setup):
1562 * strokes.el (strokes-help):
1563 * tutorial.el (tutorial--describe-nonstandard-key)
1564 (tutorial--detailed-help):
1565 * woman.el (woman-mini-help, woman-display-extended-fonts):
1566 * calc/calc-help.el (calc-describe-key):
1567 * emulation/edt.el (edt-electric-helpify):
1568 * international/mule-diag.el (mule-diag):
1569 * play/yow.el (apropos-zippy):
1570 * progmodes/python.el (python-describe-symbol):
1571 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
1572 * textmodes/table.el (*table--cell-describe-mode)
1573 (*table--cell-describe-bindings):
1574 Use help-print-return-message rather than the now obsolete alias.
1575
1576 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
1577 (calendar-cursor-to-visible-date):
1578 * play/5x5.el (5x5-position-cursor):
1579 * play/decipher.el (decipher):
1580 * play/gomoku.el (gomoku-goto-xy):
1581 * play/landmark.el (lm-goto-xy):
1582 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
1583 (mpuz-paint-digit):
1584 Use forward-line, not goto-line.
1585
1586 * mail/rmail.el (rmail-obsolete): Delete custom group.
1587 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
1588 (rmail-remote-password, rmail-remote-password-required):
1589 Remove unneeded :set-after and :set properties.
1590
1591 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
1592
1593 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
1594
1595 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
1596
1597 * loadup.el: Remove leftover macos code.
1598
1599 * vc-git.el (vc-git-annotate-command): Run asynchronously.
1600 Explicitly pass the date format to git blame so that user local
1601 so that the output format can be parsed.
1602
1603 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
1604
1605 * net/dbus.el (top): Don't check for (getenv
1606 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
1607
1608 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
1609
1610 * log-edit.el (log-edit-strip-single-file-name): New var.
1611 (log-edit-insert-changelog): Use it. Bug#3571
1612
1613 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1614
1615 * subr.el (read-passwd): Use read-key so keypad keys work as well.
1616 Bug#3287
1617
1618 * help.el (help-print-return-message): Rename from
1619 print-help-return-message.
1620
1621 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
1622 cvs-mode-map parent hack.
1623 (log-view-mode): Derive from special-mode.
1624
1625 * linum.el (linum-mode): window-size-change-functions is redundant.
1626 Adapt to new window-configuration-change-hook behavior.
1627 (linum-after-size, linum-after-config): Remove.
1628
1629 * imenu.el (imenu-example--name-and-position)
1630 (imenu-example--lisp-extract-index-name)
1631 (imenu-example--create-lisp-index, imenu-example--create-c-index):
1632 Mark as obsolete.
1633
1634 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
1635 (inferior-prolog-mode): Use it.
1636 (inferior-prolog-load-file): Reset list of errors.
1637
1638 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
1639
1640 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
1641
1642 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
1643
1644 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
1645
1646 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
1647 is running already.
1648
1649 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1650
1651 * subr.el (listify-key-sequence-1): Use normal syntax since those
1652 integers are nowadays always represented by the same (positive) number
1653 on all platforms.
1654 (read-key-empty-map): New const.
1655 (read-key-delay): New var.
1656 (read-key): New function.
1657 (force-mode-line-update): Use with-current-buffer.
1658 (locate-user-emacs-file): Don't forget to abbreviate the file name.
1659 (start-process-shell-command, start-file-process-shell-command):
1660 Discourage the use of command-args.
1661
1662 2009-08-19 Glenn Morris <rgm@gnu.org>
1663
1664 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
1665
1666 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1667
1668 * simple.el (choose-completion-string): Don't rely on
1669 minibuffer-completing-file-name and ad-hoc checks to decide whether
1670 to continue completion or not.
1671
1672 * minibuffer.el (minibuffer-hide-completions): New function.
1673 (completion--do-completion): Use it.
1674 (completions-annotations): New face.
1675 (completion--insert-strings): Use it.
1676 (completion-pcm--delim-wild-regex): Add docstring.
1677 (completion-pcm--string->pattern): Add support for 0-width delimiters
1678 in completion-pcm--delim-wild-regex.
1679
1680 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
1681
1682 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
1683 Remove unused var `buffer-modified-p'.
1684
1685 * minibuffer.el (completion--do-completion): Move point for the #b001
1686 case as well (bug#4176).
1687 (minibuffer-complete, minibuffer-complete-word): Don't move point.
1688
1689 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
1690
1691 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
1692 and :session buses.
1693
1694 2009-08-18 Kenichi Handa <handa@m17n.org>
1695
1696 * international/ucs-normalize.el (ucs-normalize-version):
1697 Change to 1.1.
1698 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
1699 (utf-8-hfs): Make it perform normalization on encoding too.
1700
1701 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
1702 (sentence-end-without-space): Delete duplicated chars.
1703 (sentence-end-base): Likewise.
1704
1705 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
1706 (html-mode): Delete duplicated chars from sentence-end-base.
1707
1708 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
1709 (texinfo-mode): Delete duplicated chars from sentence-end-base.
1710
1711 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
1712
1713 * files.el (hack-one-local-variable): If the mode function is for
1714 a minor mode, pass it an argument (Bug#4148).
1715
1716 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
1717
1718 * net/tramp.el (tramp-register-completion-file-name-handler):
1719 Check also for (member 'partial-completion completion-styles).
1720
1721 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
1722
1723 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
1724 abbrev (Bug#3943).
1725
1726 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
1727
1728 * progmodes/cperl-mode.el: Merge upstream 6.2.
1729 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
1730 (cperl-forward-re): Check cperl-brace-recursing.
1731 (cperl-highlight-charclass): New function.
1732 (cperl-find-pods-heres): Use it.
1733 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
1734 (cperl-beautify-regexp-piece): Fix column calculation.
1735 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
1736 (cperl-beautify-level): Don't process entire regexp.
1737 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
1738 calling man.
1739 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
1740 (cperl-init-faces): Build a list in the normal way.
1741
1742 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
1743
1744 * calendar/parse-time.el (parse-time-string-chars): Save match
1745 data.
1746
1747 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
1748
1749 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
1750 (sql-product): Use it.
1751 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
1752 (sql-set-product): Add completion.
1753 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
1754 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
1755 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
1756 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
1757 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
1758 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
1759 (sql-highlight-db2-keywords): Remove.
1760 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
1761 (sql-highlight-product): Use derived-mode-p.
1762 (sql-set-sqli-buffer): Use with-current-buffer.
1763 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
1764 Simplify.
1765
1766 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
1767
1768 * term.el: Fix commenting convention, turn comments into docstrings.
1769
1770 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
1771
1772 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
1773
1774 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
1775
1776 * calendar/parse-time.el (parse-time-string-chars): Compute using
1777 character classes, to handle non-ascii characters (Bug#3190).
1778
1779 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
1780
1781 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
1782 another heredoc if the user adds another < (Bug#3226).
1783
1784 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
1785 Don't initialize based on window-system (Bug#4124).
1786
1787 * facemenu.el (facemenu-read-color): Use a completion function
1788 that accepts any defined color, such as RGB triplets (Bug#3677).
1789
1790 * files.el (get-free-disk-space): Change fallback default
1791 directory to /. Expand DIR argument before switching to fallback.
1792 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
1793
1794 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
1795
1796 * files.el (load-library): Doc fix.
1797
1798 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
1799
1800 * viper-cmd.el (viper-insert-isearch-string): New function.
1801 (viper-if-string): Redefine C-s in the minibuffer to insert the last
1802 incremental search string.
1803
1804 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
1805 XEmacs.
1806
1807 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
1808 (ediff-merge-region-is-non-clash)
1809 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
1810 Also check if the job is really a merge job.
1811
1812 * ediff.el (ediff-current-file): New function.
1813
1814 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
1815
1816 * progmodes/js.el: Edit docstrings throughout to follow Emacs
1817 conventions.
1818 (js-insert-and-indent): Delete function.
1819 (js-mode-map): Don't bind keys to js-insert-and-indent.
1820 (js-beginning-of-defun): Rename from js--beginning-of-defun.
1821 (js-end-of-defun): Rename from js--end-of-defun.
1822 (js-auto-indent-flag): Delete variable.
1823
1824 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
1825
1826 * progmodes/js.el: Remove proclaim statement.
1827 Defvar which-func-imenu-joiner-function to silence compiler.
1828
1829 * files.el (auto-mode-alist): Use js-mode for .js files.
1830
1831 * progmodes/js2-mode.el: Remove file.
1832
1833 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
1834
1835 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
1836
1837 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
1838
1839 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
1840 Karl Landstrom <karl.landstrom@brgeight.se>
1841
1842 * progmodes/js.el: New file.
1843
1844 2009-08-14 Mark A. Hershberger <mah@everybody.org>
1845
1846 * timezone.el (timezone-parse-date): Add ability to understand ISO
1847 basic format (minimal separators) dates in addition to the
1848 already-supported extended format dates.
1849
1850 2009-08-14 Eli Zaretskii <eliz@gnu.org>
1851
1852 * international/ucs-normalize.el: Add a `coding' file variable.
1853
1854 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
1855
1856 2009-08-14 Sam Steingold <sds@gnu.org>
1857
1858 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
1859
1860 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
1861
1862 * faces.el (help-argument-name): Define it here instead of
1863 help-fns.el, because in daemon mode help-fns.el may be loaded when
1864 faces are still uninitialized (Bug#1078).
1865
1866 * help-fns.el (help-argument-name): Move defface to faces.el.
1867
1868 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
1869
1870 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
1871 create buffer with a pty but no process so that GDB can make the
1872 inferior the controlling process.
1873
1874 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
1875
1876 * international/ucs-normalize.el: New file.
1877
1878 2009-08-13 Richard Stallman <rms@gnu.org>
1879
1880 * mail/rmail.el (rmail-get-attr-names):
1881 Accept an attribute header that is too short.
1882
1883 * mail/rmail.el (rmail-forget-messages):
1884 Ignore nil elt in rmail-message-vector. Use dotimes.
1885
1886 * progmodes/compile.el (compilation-goto-locus):
1887 Use next-error-move-function.
1888
1889 * simple.el (next-error-move-function): New variable.
1890
1891 2009-08-12 Juri Linkov <juri@jurta.org>
1892
1893 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
1894 always non-nil. (Bug#4052)
1895
1896 * replace.el (read-regexp): Return empty string when
1897 `default-value' is nil.
1898 (keep-lines-read-args): Don't use empty string as the
1899 default value for `read-regexp'. (Bug#2495)
1900
1901 2009-08-12 Juri Linkov <juri@jurta.org>
1902
1903 * international/mule-cmds.el (ucs-insert): Change arguments
1904 from `arg' to `character', `count', `inherit' to be the same
1905 as in `insert-char'. Doc fix. (Bug#4039)
1906
1907 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
1908
1909 2009-08-12 Juri Linkov <juri@jurta.org>
1910
1911 * files-x.el: New file.
1912
1913 * files.el: Move code that deals with adding/deleting
1914 file/directory-local variables to files-x.el.
1915
1916 * Makefile.in (ELCFILES): Add files-x.elc.
1917
1918 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
1919
1920 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
1921 to use `goto-line'.
1922 (gdb-place-breakpoints, gdb-get-location): Rewritten without
1923 `goto-line'.
1924 (gdb-invalidate-disassembly): Do not refresh upon receiving
1925 'update signal. Instead, update all disassembly buffers only after
1926 threads list.
1927 (gdb): Send -target-detach when buffer is killed (#3794).
1928 (gdb-starting): Moved -data-list-register-names...
1929 (gdb-stopped): ...here so it's sent when first thread stops.
1930 (gdb-registers-handler-custom): Do nothing if register names are
1931 unknown yet.
1932
1933 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
1934 from `gdb-mi.el' to avoid extra tangling.
1935
1936 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
1937 change which breaks `gud-def' definitions used in `gdb'.
1938 (gdb-update-gud-running): No extra fuss for updating frame number.
1939
1940 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
1941
1942 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
1943 (describe-language-environment-map, setup-language-environment-map)
1944 (set-coding-system-map): Move initialization into declaration.
1945 (set-language-info-alist): Last arg to define-key-after can be skipped.
1946
1947 * international/quail.el (quail-completion-1): Simplify.
1948 (quail-define-rules): Use slightly more compact code.
1949 (quail-insert-decode-map): Propertize keys, compact columns.
1950
1951 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1952 Add goto-line.
1953
1954 2009-08-10 Miles Bader <miles@gnu.org>
1955
1956 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
1957 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
1958 (js2-instance-member, js2-private-member, js2-private-function-call)
1959 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
1960 (js2-magic-paren, js2-external-variable):
1961 Remove "-face" suffix from face names.
1962 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
1963 (js2-highlight-undeclared-vars, js2-peek-token)
1964 (js2-parse-function-params, js2-mode-show-errors)
1965 (js2-mode-show-warnings, js2-make-magic-delimiter)
1966 (js2-mode-highlight-magic-parens): Update to use new face names.
1967
1968 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
1969
1970 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
1971 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
1972
1973 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
1974
1975 * subr.el: Provide hashtable-print-readable.
1976
1977 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
1978 hs-c-like-adjust-block-beginning.
1979 (hs-hide-block-at-point): Stop hiding at the beginning of
1980 hs-block-end-regexp (Bug#700).
1981
1982 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
1983
1984 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
1985 a macro.
1986 (gdb-registers-handler-custom): Do not fail when register names
1987 are unavailable.
1988
1989 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
1990
1991 * progmodes/gdb-mi.el (gdb-control-all-threads)
1992 (gdb-control-current-thread): Interactive setters for
1993 `gdb-gud-control-all-threads' to use in menu.
1994 (gdb-show-run-p): Show «Go» when process is not active.
1995 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
1996 gud/thread.xpm and gud/all.xpm.
1997
1998 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
1999
2000 * net/net-utils.el (net-utils-font-lock-keywords): New var.
2001 (nslookup-font-lock-keywords): Make it a variable.
2002 (net-utils-mode): New mode for viewing diagnostic network output.
2003 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
2004 (net-utils-run-simple): New function.
2005 (ifconfig, iwconfig, netstat, arp, route): Use it.
2006
2007 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
2008
2009 * progmodes/gdb-mi.el (gdb-read-memory-custom)
2010 (gdb-memory-set-address, def-gdb-set-positive-number)
2011 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
2012 after changing settings.
2013 (gdb-invalidate-disassembly): Update when first shown.
2014 (gdb-edit-locals-value): Fixed.
2015 (gdb-registers-handler-custom): Print registers in right order and
2016 allow changing register values (only for current thread yet).
2017 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
2018 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
2019 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
2020 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
2021 info in mode name.
2022 (gdb-registers-mode-map): TAB to switch to locals.
2023
2024 2009-08-08 Eli Zaretskii <eliz@gnu.org>
2025
2026 * mail/rmail.el (rmail-add-mbox-headers)
2027 (rmail-set-message-counters-counter): Search for
2028 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
2029
2030 2009-08-08 Glenn Morris <rgm@gnu.org>
2031
2032 * Makefile.in (ELCFILES): Update.
2033
2034 2009-08-07 Eli Zaretskii <eliz@gnu.org>
2035
2036 * mail/sendmail.el (mail-yank-original): Set
2037 buffer-file-coding-system from the one used by the message whose
2038 text is yanked.
2039
2040 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
2041 to "windows" when "pgnuplot" is used.
2042 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
2043 call accept-process-output if "pgnuplot" is used.
2044 (calc-graph-init): Don't send -display and -geometry to
2045 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
2046 running "pgnuplot -V" with shell-command-to-string.
2047
2048 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
2049 the default.
2050
2051 2009-08-07 Eli Zaretskii <eliz@gnu.org>
2052
2053 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
2054 org/org-latex.elc.
2055
2056 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
2057
2058 * vc-dispatcher.el (vc-resynch-window): Update comment.
2059
2060 * term.el (term-handle-ansi-escape): Add comments with the
2061 terminfo capabilities implemented.
2062
2063 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
2064
2065 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
2066 (gdb-var-create-handler): Rewritten using JSON parser.
2067 (gdb-propertize-header): Moved earlier.
2068 (gdb-set-header): Removed to avoid duplication.
2069 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
2070 Refresh disassembly buffers only after threads list have been
2071 update.
2072 (gdb-threads-header, gdb-registers-header): Per-buffer header line
2073 variables.
2074
2075 2009-08-04 Juri Linkov <juri@jurta.org>
2076
2077 * files.el: Commands to add/delete file/directory-local variables.
2078 (read-file-local-variable, read-file-local-variable-value)
2079 (read-file-local-variable-mode, modify-file-local-variable)
2080 (modify-file-local-variable-prop-line)
2081 (modify-dir-local-variable): New functions.
2082 (add-file-local-variable, delete-file-local-variable)
2083 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
2084 (add-dir-local-variable, delete-dir-local-variable)
2085 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
2086 (copy-dir-locals-to-file-locals-prop-line): New commands.
2087
2088 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
2089
2090 * abbrev.el (insert-abbrev-table-description): Prettify output.
2091 Suggested by Karl Chen.
2092
2093 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
2094
2095 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
2096 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
2097 (gdb-overlay-arrow-position, gdb-thread-position)
2098 (gdb-disassembly-position): Declare variables.
2099 (gdb-wait-for-pending): Function now.
2100 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
2101 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
2102 compilation goes smoothly.
2103 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
2104 (gdb-non-stop-setting): New customization setting which replaces
2105 `gdb-non-stop' so changing it doesn't break active GDB session.
2106 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
2107 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
2108 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
2109 (gdb-show-threads-by-default): New customization options.
2110 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
2111 routines.
2112 (gdb-get-buffer-create): Send buffers update signal when they are
2113 created.
2114 (gdb-invalidate-locals, gdb-invalidate-registers)
2115 (gdb-invalidate-breakpoints)
2116 (gdb-invalidate-threads, gdb-invalidate-disassembly)
2117 (gdb-invalidate-memory): Accept update signal.
2118 (gdb-current-context-command): Use --frame option.
2119 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
2120 Implement `gdb-frame-number' selection logic.
2121 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
2122 whether to show GUD toolbar buttons.
2123 (gdb-thread-exited): Unselect current thread when it exits.
2124 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
2125 (gdb-mark-line): Routine which sets overlay arrow or inverses
2126 video on fringeless displays.
2127 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
2128 to build aligned columns of data in GDB buffers and set text
2129 properties line-by-line.
2130 (gdb-invalidate-breakpoints)
2131 (gdb-breakpoints-list-handler-custom)
2132 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
2133 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
2134 (gdb-registers-handler-custom): Align data columns.
2135 (gdb-locals-handler-custom): Now prints data like in variable
2136 declarations.
2137 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
2138 Removed confusing buttons.
2139 (gdb-invalidate-threads): Append --frame.
2140 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
2141 between breakpoints/threads buffers.
2142 (gdb-set-window-buffer): Now can ignore dedicated windows.
2143 (gdb-propertize-header): Use `gdb-set-window-buffer'.
2144 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
2145 (def-gdb-thread-buffer-gud-command): Replaces
2146 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
2147 for fine thread control.
2148 (gdb-preempt-existing-or-display-buffer): New function used to
2149 display bound buffers without breaking window layout.
2150 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
2151 (gdb-select-frame): New version of `gdb-frames-select' which now
2152 sets `gdb-frame-number' so commands may use --frame option instead
2153 of inner debugger state.
2154 (gdb-frame-handler): Do not set `gdb-frame-number'.
2155 (gdb-threads-mode-map): Select threads with mouse.
2156
2157 * progmodes/gud.el (gdb-gud-context-call): Declare function to
2158 avoid compilation warning.
2159 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
2160 `gdb-show-stop-p`.
2161
2162 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
2163 Argument `key' renamed to `buffer-type'.
2164 (gdb-current-context-buffer-name): Do not add thread info to
2165 buffer name when no thread is selected.
2166 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
2167 command (bug 3794).
2168 (gdb-thread-selected): Handle `=thread-selected' notification.
2169 (gdb-wait-for-pending): New macro to deal with congestion problems.
2170 (gdb-breakpoints-list-handler-custom): Don't fail on pending
2171 breakpoints.
2172 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
2173 This fixes problem similar to one described in bug 3947.
2174 (gud-menu-map): More menu items.
2175 (gdb-init-1): Reset `gdb-thread-number' to nil.
2176
2177 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
2178 non-stop settings.
2179
2180 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
2181 (gdb-current-context-command): Do not append --thread if
2182 `gdb-thread-number' is nil.
2183 (gdb-running-threads-count, gdb-stopped-threads-count): New
2184 variables.
2185 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
2186 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
2187 customization options.
2188 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
2189 GUD commands.
2190 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
2191 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
2192 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
2193 set `gdb-thread-number' and update `gud-running' properly.
2194 (gdb-running): Update threads list when new threads appear.
2195 (gdb-stopped): Support non-stop operation and new thread switching
2196 logic.
2197 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
2198 (gdb-json-partial-output): New set of JSON routines.
2199 (def-gdb-auto-update-trigger): New `signal-list' optional
2200 argument.
2201 (gdb-thread-list-handler-custom): Update `gud-running',
2202 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
2203 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
2204 (gdb-continue-thread, gdb-step-thread): New commands for fine
2205 thread execution control.
2206 (gud-menu-map): New menu items to switch non-stop options.
2207 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
2208 (gdb-send): Mimic RET properly (bug 3794).
2209
2210 * progmodes/gdb-mi.el (gdb-rules-name-maker)
2211 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
2212 gdb-buffer-rules.
2213 (def-gdb-auto-update-handler): New nopreserve optional argument.
2214 (gdb-stack-list-frames-custom): Print stack from top to bottom.
2215
2216 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
2217 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
2218 (gdb-parent-mode): New mode to derive other GDB modes from.
2219 (gdb-display-disassembly-for-thread)
2220 (gdb-frame-disassembly-for-thread): New commands for threads
2221 buffer.
2222
2223 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
2224 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
2225 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
2226 (gdb-update): We now store all GDB buffers in a list so that they
2227 can be updated by traversing a list instead of calling invalidate
2228 triggers explicitly.
2229 (def-gdb-trigger-and-handler): New macro to define trigger-handler
2230 pair for GDB buffer.
2231 (gdb-stack-buffer-name): Add thread information.
2232 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
2233 handle pending triggers.
2234 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
2235 (def-gdb-thread-buffer-simple-command)
2236 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
2237 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
2238 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
2239 New commands which show buffers bound to thread.
2240 (gdb-stack-list-locals-regexp): Removed unused regexp.
2241
2242 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
2243 (gdb-locals-buffer-name, gdb-registers-buffer-name)
2244 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
2245 to (gud-comint-buffer) in *-buffer-name functions
2246 because (gdb-get-target-string) already does that.
2247 (gdb-locals-handler-custom, gdb-registers-handler-custom)
2248 (gdb-changed-registers-handler): Rewritten without regexps.
2249
2250 * progmodes/gdb-mi.el Basic thread selection support.
2251 (gdb-thread-number): New variable.
2252 (gdb-current-context-command): New macro which adds --thread
2253 option to command.
2254 (gdb-threads-mode-map): Select thread with SPC.
2255 (gdb-thread-list-handler-custom): Mark current thread with overlay
2256 arrow. Synchronize GDB thread and Emacs thread.
2257 (gdb-select-thread): New command which selects current thread.
2258 (gdb-invalidate-frames, gdb-invalidate-locals)
2259 (gdb-invalidate-registers): Use --thread option.
2260
2261 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
2262
2263 * net/tramp.el (top): Make check for tramp-gvfs loading more
2264 robust. (Bug#3977)
2265 (tramp-handle-insert-file-contents): `unwind-protect' must be
2266 inside `with-parsed-tramp-file-name'.
2267
2268 * net/tramp-gvfs.el (top): Remove superfluous message when loading
2269 fails.
2270
2271 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
2272
2273 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
2274 directory if CLASSPATH is not set.
2275
2276 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
2277
2278 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
2279 New defconst.
2280 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
2281
2282 2009-08-02 Kevin Ryde <user42@zip.com.au>
2283
2284 * net/newst-backend.el (newsticker--raw-url-list-defaults):
2285 Update freshmeat link. Delete newsforge.com as it seems gone.
2286
2287 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
2288
2289 * select.el (x-set-selection): Doc fix (Bug#4021).
2290
2291 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
2292
2293 * help-fns.el (describe-variable): Treat list return values from
2294 dir-locals-find-file properly (Bug#4005).
2295
2296 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
2297
2298 * net/tramp.el (tramp-debug-message): Print also microseconds.
2299
2300 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
2301
2302 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
2303 or END is non-nil.
2304 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
2305 (tramp-get-debug-buffer): Change `outline-regexp' according to new
2306 format.
2307
2308 * net/tramp-cache.el (tramp-cache-inhibit-cache ): New defvar.
2309 (tramp-get-file-property): Use it.
2310
2311 * autorevert.el (auto-revert-handler): Allow
2312 `auto-revert-tail-mode' for remote files.
2313
2314 2009-08-02 Jason Rumney <jasonr@gnu.org>
2315
2316 * minibuffer.el (read-file-name): Treat confirm options to
2317 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
2318
2319 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
2320
2321 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
2322 (font-lock-variable-name-face, font-lock-constant-face): Darken
2323 the colors for light backgrounds.
2324
2325 2009-08-01 Eli Zaretskii <eliz@gnu.org>
2326
2327 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
2328 month names. (Bug#3987)
2329
2330 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
2331
2332 * simple.el (line-move-finish): Pass whole number to
2333 line-move-to-column.
2334 (line-move-visual): Perform hscroll to the recorded position.
2335
2336 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
2337
2338 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
2339
2340 2009-07-29 Alan Mackenzie <acm@muc.de>
2341
2342 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
2343
2344 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
2345
2346 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
2347 (gdb-place-breakpoints): Use full path when setting breakpoints.
2348
2349 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
2350
2351 * calc/calc.el (calc-mode-map): Add keybinding for
2352 `calc-transpose-lines'.
2353
2354 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
2355
2356 * calc/calc-misc.el (calc-transpose-lines): New function.
2357
2358 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
2359
2360 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
2361 Simplify check for out-of-band methods.
2362 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
2363 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
2364
2365 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
2366
2367 * vc-git.el (vc-git-checkin): Fix typo.
2368
2369 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
2370
2371 * progmodes/js2-mode.el: New file.
2372
2373 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
2374
2375 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
2376 (gud-menu-map): Adjust tooltip accordingly.
2377
2378 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2379
2380 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
2381 (vc-bzr-log-view-mode): Adjust log-view-file-re.
2382
2383 * add-log.el (change-log-mode-map): Add a menu.
2384
2385 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
2386
2387 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
2388 function returns nil.
2389 (dbus-handle-event): Handle special return value :ignore.
2390 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
2391
2392 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
2393
2394 * view.el (view-mode-enable): Don't define Helper-return-blurb if
2395 it's not needed.
2396
2397 2009-07-25 Eli Zaretskii <eliz@gnu.org>
2398
2399 Fix Bug#3888:
2400
2401 * w32-vars.el (x-select-enable-clipboard): Doc fix.
2402
2403 * term/pc-win.el (x-display-name, x-colors)
2404 (x-select-enable-clipboard, x-select-text): Doc fix.
2405
2406 * term/common-win.el (x-display-name, x-colors): Doc fix.
2407
2408 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
2409 (xw-defined-colors): Doc fix.
2410
2411 * w32-fns.el (x-select-text, x-setup-function-keys)
2412 (x-get-selection, x-set-selection): Doc fix.
2413
2414 * term/x-win.el (x-select-text, x-setup-function-keys)
2415 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
2416
2417 * select.el (x-set-selection): Doc fix.
2418
2419 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
2420
2421 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
2422 instead of "IsNSSSupportAvailable". Avahi ought to work also when
2423 "IsNSSSupportAvailable" method is not available. Reported by
2424 Steve Youngs <steve@sxemacs.org>.
2425
2426 2009-07-24 Kenichi Handa <handa@m17n.org>
2427
2428 * international/characters.el: Fix setting of category ?C, ?|, ?K,
2429 and ?H. Fix setting of case for Latin Extended and Greek Extended.
2430 (build-unicode-category-table): Fix range checks.
2431
2432 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
2433
2434 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
2435 the buffer we try to sync is current when calling
2436 vc-resynch-buffer.
2437
2438 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
2439 not show up to date files.
2440
2441 2009-07-24 Glenn Morris <rgm@gnu.org>
2442
2443 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
2444 Add autoload cookies. If necessary, initialize.
2445 (elint-log): Handle non-file buffers.
2446 (elint-initialize): Add optional argument to reinitialize.
2447 (elint-find-builtin-variables): Save excursion.
2448
2449 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
2450
2451 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
2452 for Lint.
2453
2454 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
2455
2456 * vc.el (vc-print-log-internal): New function, split out from ...
2457 (vc-print-log): ... here.
2458 (vc-dir-move-to-goal-column): Declare.
2459
2460 * vc-git.el (vc-git-add-signoff): New variable.
2461 (vc-git-checkin): Use it.
2462 (vc-git-toggle-signoff): New function.
2463 (vc-git-extra-menu-map): Bind it to menu.
2464 (vc-git--run-command-string): Accept a nil FILE argument.
2465 (vc-git-stash-list): New function.
2466 (vc-git-dir-extra-headers): Use it.
2467
2468 2009-07-23 Glenn Morris <rgm@gnu.org>
2469
2470 * help-fns.el (describe-variable): Describe ignored and risky local
2471 variables in a similar way to that in which we describe safe ones.
2472
2473 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
2474 (byte-compile-output-file-form, byte-compile-output-docform)
2475 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
2476 Give some more local variables with common names a "bytecomp-" prefix,
2477 so as not to shadow things during compilation.
2478 * emacs-lisp/cl-macs.el (load-time-value)
2479 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
2480 `outbuffer' to `bytecomp-outbuffer'.
2481
2482 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
2483 since the next two variables cover them automatically now.
2484 (elint-builtin-variables, elint-autoloaded-variables): New.
2485 (elint-unknown-builtin-args): Remove all members, since they can be
2486 parsed automatically now.
2487 (elint-extra-errors): New.
2488 (elint-env-add-env, elint-env-add-macro): Use cadr.
2489 (elint-current-buffer): Use or. Change final message.
2490 (elint-get-top-forms): Use line-end-position.
2491 (elint-init-env): Use cadr. Handle autoload, declare-function,
2492 and defalias.
2493 (elint-add-required-env): Doc fix. Use or. Standardize error.
2494 (regexp-assoc): Remove unused function.
2495 (elint-top-form): Set elint-current-pos, to record the start of the
2496 top-level form, for compilation-mode.
2497 (elint-form): Trap errors in macro expansion. Use dolist.
2498 (elint-unbound-variable): Use elint-builtin-variables and
2499 elint-autoloaded-variables.
2500 (elint-get-args): Use cadr, or.
2501 (elint-check-cond-form): Use dolist, cadr.
2502 (elint-check-condition-case-form): Doc fix. Use cadr.
2503 Use elint-extra-errors.
2504 (elint-log): New function.
2505 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
2506 Distinguish errors and warnings.
2507 (elint-log-message): Use with-current-buffer. Inhibit read-only.
2508 Use a bytecomp-style format.
2509 (elint-clear-log): Preserve default-directory. Inhibit read-only.
2510 (elint-get-log-buffer): Use compilation mode. Disable undo.
2511 Don't truncate lines.
2512 (elint-initialize): Set builtin and autoloaded variable lists.
2513 Only process elint-unknown-builtin-args if non-nil.
2514 (elint-find-builtin-variables, elint-find-autoloaded-variables):
2515 New functions.
2516 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
2517
2518 2009-07-22 Kevin Ryde <user42@zip.com.au>
2519
2520 * net/newst-backend.el (newsticker--parse-atom-1.0)
2521 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
2522 (newsticker--parse-rss-1.0):
2523 * progmodes/idlwave.el (idlwave-mode):
2524 * progmodes/idlw-shell.el (idlwave-shell-mode):
2525 * progmodes/vera-mode.el (vera-mode):
2526 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
2527 * progmodes/vhdl-mode.el (vhdl-mode):
2528 * textmodes/table.el (table-generate-source)
2529 (table--warn-incompatibility):
2530 Hyperlink urls in docstrings with URL `...'.
2531
2532 2009-07-22 Glenn Morris <rgm@gnu.org>
2533
2534 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
2535 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
2536 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
2537 Remove leading * from defcustom docs.
2538
2539 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
2540
2541 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
2542 defcustom doc.
2543 (list-load-path-shadows): Optionally, just return shadows as a string.
2544
2545 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
2546
2547 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
2548
2549 * mail/rmailedit.el (rmail-edit-mode): Use
2550 auto-save-include-big-deletions.
2551
2552 * mail/rmail.el (rmail-variables): Use
2553 auto-save-include-big-deletions.
2554
2555 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
2556 changes.
2557
2558 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
2559
2560 * calc/calc.el (calc-undo-length): New variable.
2561 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
2562
2563 2009-07-21 Richard Stallman <rms@gnu.org>
2564
2565 * files.el (auto-save-mode): Handle buffer-save-size = -2
2566 for toggling mode.
2567
2568 2009-07-21 Glenn Morris <rgm@gnu.org>
2569
2570 * textmodes/ispell.el (ispell-looking-back): Update declaration.
2571
2572 * calendar/todo-mode.el (calendar-current-date): Update declaration.
2573
2574 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
2575 silence compiler. Instead...
2576 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
2577 (ps-print-ensure-fontified): Update for above function name changes.
2578
2579 * printing.el (pr-mh-get-msg-num, pr-mh-show)
2580 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
2581 silence compiler. Instead...
2582 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
2583 (mh-show-buffer): Only define for compiler.
2584 (pr-mh-current-message): Update for above function name changes.
2585
2586 * files.el (abort-if-file-too-large): Explicitly pass `filename'
2587 as an argument.
2588 (find-file-noselect, insert-file-1): Update for above change.
2589
2590 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
2591
2592 * mail/mailclient.el (mailclient-send-it): Fix message.
2593
2594 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
2595 (edebug-eval): Check cl-debug-env is bound.
2596 (print-level, print-circle): Don't redefine built-in variables.
2597
2598 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
2599 (custom-print-vectors): Remove old comments from doc.
2600
2601 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
2602 (emerge-version): Make the variable an obsolete alias for the
2603 emacs-version variable. Make the function obsolete.
2604 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
2605 Emerge options, rather than merging in into the main Options menu.
2606 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
2607 and auto advance modes. Disable edit/fast items when not relevant.
2608
2609 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
2610
2611 * term/vt420.el (terminal-init-vt420): Fix typo.
2612
2613 2009-07-20 Sam Steingold <sds@gnu.org>
2614
2615 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
2616 variable (removed from compile.el on 2004-03-11).
2617
2618 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
2619
2620 * files.el (hack-local-variables-filter): Fix last change.
2621
2622 2009-07-19 Juri Linkov <juri@jurta.org>
2623
2624 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
2625 (dir-local-variables-alist): New buffer-local variable.
2626 (hack-local-variables-filter): If variable is not dir-local,
2627 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
2628 because file-local overrides dir-local.
2629 (c-postprocess-file-styles)<declare-function>:
2630 Remove obsolete declaration.
2631 (hack-dir-local-variables): Add dir-local variable/value pair to
2632 `dir-local-variables-alist' and remove duplicates. Doc fix.
2633
2634 * help-fns.el (describe-variable): Add information about
2635 file-local and dir-local variables.
2636
2637 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
2638
2639 * files.el (hack-local-variables-filter): Rewrite.
2640
2641 2009-07-19 Glenn Morris <rgm@gnu.org>
2642
2643 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
2644 Silence compiler by only defining on XEmacs.
2645
2646 * international/mule.el (auto-coding-regexp-alist): Only match
2647 BABYL... at the start of buffer, not of lines. (Bug#3790)
2648
2649 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
2650 non-calendar buffers (Bug#3862). Restore "not on a date" message.
2651 (cal-menu-context-mouse-menu): Doc fix.
2652
2653 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
2654
2655 * simple.el (mail-user-agent): Doc fix. Set :version tag.
2656
2657 2009-07-18 Juri Linkov <juri@jurta.org>
2658
2659 * info.el: Virtual Info keyword finder.
2660 (add-to-list)<Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
2661 (Info-finder-file): New variable.
2662 (Info-finder-find-file): New function.
2663 (finder-known-keywords, finder-package-info)
2664 (find-library-name, lm-commentary): Use defvar and
2665 declare-function to silence compiler warnings.
2666 (Info-finder-find-node): New function.
2667 (info-finder): New command.
2668
2669 * subr.el (process-kill-buffer-query-function): New function.
2670 (add-hook)<kill-buffer-query-functions>: Add hook
2671 `process-kill-buffer-query-function'.
2672
2673 2009-07-18 Alan Mackenzie <acm@muc.de>
2674
2675 * progmodes/cc-mode.el (c-before-hack-hook)
2676 (c-postprocess-file-styles): Give invocation of `c-set-style'
2677 DONT-OVERRIDE parameter of t. Already set style variables will
2678 thus not be overridden by style settings given by `c-file-syle'.
2679
2680 * files.el (hack-local-variables-filter): Remove entries with
2681 duplicate keys from `file-local-variables-alist'.
2682
2683 2009-07-18 Eli Zaretskii <eliz@gnu.org>
2684
2685 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
2686 x-set-selection if display-selections-p returns nil for the
2687 current frame.
2688
2689 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
2690
2691 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
2692
2693 2009-07-18 Eli Zaretskii <eliz@gnu.org>
2694
2695 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
2696 Accept nil in addition to a regexp.
2697 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
2698 Accept nil in addition to a regexp.
2699 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
2700 buffers that have an associated file. Handle nil values of
2701 desktop-buffers-not-to-save and desktop-files-not-to-save.
2702 (Bug#3833)
2703
2704 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
2705 (x-disown-selection-internal): New functions.
2706
2707 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
2708
2709 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
2710 warning.
2711 (gdb-breakpoints-header): Move forward to avoid compiler warning.
2712 (gdb-make-header-line-mouse-map): Remove duplicate definition.
2713
2714 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
2715
2716 * simple.el (set-mark): Revert last change.
2717
2718 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
2719
2720 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
2721 rendering of pngs is not possible instead of messaging a long
2722 description.
2723
2724 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
2725
2726 * w32-fns.el (x-selection-owner-p): New function.
2727
2728 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
2729 (mouse-yank-at-click, mouse-yank-primary): If
2730 select-active-regions is non-nil, deactivate the mark before
2731 insertion.
2732
2733 * simple.el (deactivate-mark, set-mark): Only save selection if we
2734 own it.
2735
2736 2009-07-17 Kenichi Handa <handa@m17n.org>
2737
2738 * case-table.el (describe-buffer-case-table): Fix for the case
2739 that KEY is a cons.
2740
2741 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
2742
2743 * vc-rcs.el (vc-rcs-find-file-hook):
2744 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
2745
2746 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
2747
2748 * net/tramp.el (tramp-wait-for-output): Handle the case when
2749 commands do not return a newline but a null byte before the shell
2750 prompt. (Bug#3858)
2751
2752 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2753
2754 * term/ns-win.el (ns-set-alpha): Don't declare.
2755 (ns-set-background-alpha): Remove function.
2756
2757 2009-07-16 Kevin Ryde <user42@zip.com.au>
2758
2759 * emacs-lisp/copyright.el (copyright-update): Save match-data across
2760 y-or-n-p, for safety.
2761
2762 2009-07-16 Richard Stallman <rms@gnu.org>
2763
2764 * files.el (auto-save-mode): If buffer-saved-size is -2,
2765 don't clobber it.
2766
2767 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
2768 (rmail-retry-ignored-headers): Add more uninteresting fields.
2769
2770 2009-07-15 Jari Aalto <jari.aalto@cante.net>
2771
2772 * net/rcirc.el (rcirc): Use history variables.
2773 (rcirc-server-name-history, rcirc-nick-name-history)
2774 (rcirc-server-port-history): New variables.
2775
2776 2009-07-15 Kenichi Handa <handa@m17n.org>
2777
2778 * international/mule-cmds.el (set-language-environment-charset):
2779 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
2780 ignore them.
2781
2782 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
2783 Delete unibyte-display.
2784
2785 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
2786
2787 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
2788
2789 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
2790
2791 * simple.el (deactivate-mark): Optional argument FORCE.
2792 (set-mark): Use deactivate-mark.
2793
2794 * info.el (Info-search): No need to check transient-mark-mode
2795 before calling deactivate-mark.
2796
2797 * select.el (x-set-selection): Doc fix.
2798 (x-valid-simple-selection-p): Allow buffer values.
2799 (xselect--selection-bounds): Handle buffer values. Suggested by
2800 David De La Harpe Golden.
2801
2802 * mouse.el (mouse-set-region, mouse-drag-track): Call
2803 copy-region-as-kill before setting the mark, to let
2804 select-active-regions work.
2805
2806 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
2807
2808 * simple.el (deactivate-mark): If select-active-regions is
2809 non-nil, copy the selection data into a string.
2810 (activate-mark): If select-active-regions is non-nil, set the
2811 selection to the current buffer.
2812 (set-mark): Update selection if select-active-regions is non-nil.
2813
2814 * select.el (x-valid-simple-selection-p): Allow buffer values.
2815
2816 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
2817
2818 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
2819 and more featureful message-mode.
2820
2821 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
2822
2823 * select.el (x-set-selection): Doc fix.
2824 (x-valid-simple-selection-p): Disallow selection data consisting
2825 of a list or cons of integers, since that is not used.
2826 (xselect--selection-bounds, xselect--int-to-cons): New functions.
2827 (xselect-convert-to-string, xselect-convert-to-length)
2828 (xselect-convert-to-filename, xselect-convert-to-charpos)
2829 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
2830
2831 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
2832
2833 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
2834 output in -break-info command (Emacs bug #3794).
2835
2836 2009-07-14 Glenn Morris <rgm@gnu.org>
2837
2838 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
2839 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
2840 (edebug-print-length, edebug-print-level, edebug-print-circle)
2841 (edebug-sit-for-seconds, edebug-view-outside)
2842 (edebug-bounce-point, edebug-set-global-break-condition)
2843 (edebug-Go-nonstop-mode, edebug-trace-mode)
2844 (edebug-Trace-fast-mode, edebug-continue-mode)
2845 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
2846 (edebug-visit-eval-list): Doc fixes.
2847
2848 * subr.el (def-edebug-spec): Doc fix.
2849
2850 2009-07-14 Kenichi Handa <handa@m17n.org>
2851
2852 * international/characters.el: Fix setting of category ?C.
2853
2854 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
2855
2856 * term/ns-win.el (x-select-font): defalias x-select-font to
2857 ns-popup-font-panel instead of generate-fontset-menu.
2858
2859 2009-07-12 Eli Zaretskii <eliz@gnu.org>
2860
2861 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
2862
2863 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
2864
2865 * arc-mode.el (archive-find-type): Allow for a PK00 string before
2866 the PK\003\004 header (Bug#3770).
2867
2868 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
2869
2870 * pcomplete.el (pcomplete-comint-setup): Check for
2871 shell-dynamic-complete-filename too.
2872
2873 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
2874
2875 * simple.el (temporary-goal-column): Change the value for
2876 line-move-visual to a cons cell.
2877 (line-move-visual): Record or set the window hscroll, if
2878 necessary (Bug#3494).
2879 (line-move-1): Handle cons value of temporary-goal-column.
2880
2881 2009-07-11 Kenichi Handa <handa@m17n.org>
2882
2883 * international/mule-diag.el (describe-character-set): Don't show
2884 width.
2885
2886 2009-07-10 Sam Steingold <sds@gnu.org>
2887
2888 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2889 Omake sometimes indents the errors it prints, so allow all
2890 regexps to start with spaces.
2891
2892 2009-07-10 Eli Zaretskii <eliz@gnu.org>
2893
2894 * cus-edit.el (customize-changed-options-previous-release):
2895 Bump value to 22.1. (Bug#3804)
2896
2897 2009-07-08 Sam Steingold <sds@gnu.org>
2898
2899 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
2900 to be a cons cell (test . ignored-directory) to selectively ignore
2901 some directories depending on the location of the search.
2902
2903 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
2904
2905 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
2906 remote user is root, on the local host.
2907 (tramp-local-host-p): Either the local user or the remote user
2908 must be root. (Bug#3771)
2909
2910 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
2911
2912 * progmodes/gdb-mi.el (gdb): Remove description of
2913 gdb-use-separate-io-buffer.
2914 (menu): Don't allow toggling of or enable
2915 gdb-use-separate-io-buffer from menubar.
2916
2917 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
2918
2919 * mail/unrmail.el (unrmail): Make sure the message ends with two
2920 newlines (Bug#3769).
2921
2922 2009-07-08 Glenn Morris <rgm@gnu.org>
2923
2924 * calendar/calendar.el (calendar-current-date): Rework previous change.
2925
2926 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
2927
2928 * calendar/calendar.el (calendar-current-date):
2929 Add an optional argument giving an offset from today.
2930
2931 2009-07-08 Glenn Morris <rgm@gnu.org>
2932
2933 * tutorial.el (tutorial--describe-nonstandard-key):
2934 Adjust the message for when a key has been unbound.
2935 (help-with-tutorial): Hide the arch-tag.
2936
2937 2009-07-08 Kenichi Handa <handa@m17n.org>
2938
2939 * international/fontset.el (setup-default-fontset): For each
2940 script, append (not set) font-specs.
2941
2942 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
2943 docstring.
2944
2945 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
2946
2947 * progmodes/gdb-mi.el (gdb-init-1): Move sending
2948 -data-list-register-names to ...
2949 (gdb-starting): ... here because GDB 7.0 requires execution to
2950 have started when using this MI command.
2951 (gdb-set-header): New function to distinguish select and
2952 unselected tabs in gdb buffers.
2953 (gdb-propertize-header): New macro that uses gdb-set-header.
2954 (gdb-breakpoints-header, gdb-locals-header): Use it.
2955 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
2956
2957 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
2958
2959 * Makefile.in (ELCFILES): Remove fadr.elc.
2960
2961 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
2962
2963 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
2964 may contain frame information, so `string-match' should be used.
2965 (gdb-update): Disassembly is invalidated through
2966 `gdb-get-selected-frame'.
2967 (gdb-pad-string): New function to pad string with spaces.
2968 (gdb-invalidate-disassembly): Invalidate only if the buffer
2969 exists.
2970 (gdb-disassembly-handler-custom): Column alignment.
2971 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
2972 placing new ones.
2973 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
2974 end of line, too.
2975 (gdb-frame-handler): Match convention to for disassembly buffer
2976 mode name.
2977 (gdb-stack-list-frames-handler): Rewritten without regexps.
2978 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
2979 not highlight breakpoints without line information.
2980 (gdb-input): Add trailing newline to command.
2981
2982 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
2983 buffer properly.
2984 (gdb-breakpoints-list-handler-custom): Replacement for
2985 `gdb-break-list-handler'. Using real parser instead of regexps
2986 now.
2987 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
2988 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
2989 to place breakpoints.
2990 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
2991 functions.
2992 (gdb-disassembly-handler-custom): Show overlay arrow.
2993 (gdb-disassembly-place-breakpoints): Show breakpoints in
2994 disassembly buffer.
2995 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
2996 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
2997 instead of parsing breakpoints buffer. Fixed old menu references
2998 in `gud-menu-map'.
2999
3000 * fadr.el: Remove.
3001
3002 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
3003 (gdb-memory-address): New variable which holds top address of
3004 memory page shown in memory buffer.
3005 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
3006 customization variables.
3007 New functions:
3008 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
3009 display the memory buffer.
3010 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
3011 buffer display parameters.
3012 (def-gdb-memory-format, gdb-memory-format-binary)
3013 (gdb-memory-format-octal, gdb-memory-format-unsigned)
3014 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
3015 Functions for setting memory buffer format.
3016 (gdb-memory-unit-word, gdb-memory-unit-halfword)
3017 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
3018 unit size used in memory buffer.
3019 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
3020 to next/previous page of memory buffer.
3021 Now using (bindat-get-field) instead of fadr functions.
3022
3023 2009-07-07 Sam Steingold <sds@gnu.org>
3024
3025 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
3026 non-top-level files.
3027
3028 2009-07-07 Kenichi Handa <handa@m17n.org>
3029
3030 * international/mule-cmds.el (reset-language-environment): Put
3031 the highset priority to the charset iso-8859-1.
3032
3033 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
3034
3035 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
3036 to the end of the line when locating the block (Bug#700).
3037
3038 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
3039
3040 * net/tramp.el (tramp-handle-write-region): Flush file properties
3041 in case of short track.
3042
3043 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
3044
3045 * verilog-mode.el (verilog-error-regexp-emacs-alist): Coded custom
3046 representation of verilog error regular expressions to work with
3047 Emacs-22's new format.
3048 (verilog-error-regexp-xemacs-alist): Coded custom representation
3049 of verilog error regular expressions to work with XEmacs format.
3050 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
3051 error recognition into XEmacs.
3052 (verilog-error-regexp-add-emacs): Hook routine to install verilog
3053 error recognition into Emacs-22.
3054
3055 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
3056
3057 * woman.el: Remove stand-alone closing parentheses.
3058 (woman-file-name, woman2-format-paragraphs)
3059 (woman-leave-blank-lines): Code cleanup.
3060 (woman-use-own-frame): Change default to nil.
3061 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
3062 defaults to inherit from default faces.
3063 (woman2-process-escapes): Consume the newline after a stand-alone
3064 filler character (Bug#3651).
3065
3066 2009-07-06 Glenn Morris <rgm@gnu.org>
3067
3068 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
3069 (top-level): Move provide to the end.
3070 (ffap): Remove defunct URL from custom group.
3071
3072 * subr.el (eval-after-load): Doc fix.
3073
3074 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
3075
3076 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
3077 `calc-embedded-word' is called twice.
3078
3079 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
3080
3081 * files.el (find-alternate-file-other-window, find-alternate-file):
3082 Obey confirm-nonexistent-file-or-buffer.
3083
3084 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
3085
3086 * dired-aux.el (dired-show-file-type): Handle remote files.
3087
3088 2009-07-05 Jari Aalto <jari.aalto@cante.net>
3089
3090 * desktop.el (desktop-globals-to-save):
3091 Add file-name-history (Bug#2750).
3092
3093 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
3094
3095 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
3096
3097 2009-07-04 Johan Bockgård <bojohan@gnu.org>
3098
3099 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
3100 property on entire argument since this is what eshell-lisp-command
3101 expects.
3102
3103 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
3104
3105 * net/tramp-gvfs.el (tramp-gvfs-methods)
3106 (tramp-gvfs-zeroconf-domain)
3107 (tramp-bluez-discover-devices-timeout): Add version flag.
3108 (tramp-gvfs-handler-mounted-unmounted)
3109 (tramp-gvfs-connection-mounted-p): Polish handling of
3110 incompatibilities between GVFS 0.2 and 1.0.
3111
3112 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
3113
3114 * cus-start.el (all): Add make-pointer-invisible.
3115
3116 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
3117
3118 * calc-math.el (math-use-emacs-fn): Make sure that the number is
3119 formatted correctly.
3120
3121 2009-07-02 Juri Linkov <juri@jurta.org>
3122
3123 * info.el: Virtual Info files and nodes.
3124 (Info-virtual-files, Info-virtual-nodes): New variables.
3125 (Info-current-node-virtual): New variable.
3126 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
3127 New functions.
3128 (Info-file-supports-index-cookies): Use Info-virtual-file-p
3129 to check for a virtual file instead of checking a fixed list
3130 of node names.
3131 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
3132 instead of ad-hoc processing of "dir" and (apropos history toc).
3133 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
3134 instead of ad-hoc processing of "dir" and (apropos history toc).
3135 Reread a file when moving from a virtual node.
3136 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
3137 (Info-directory-toc-nodes, Info-directory-find-file)
3138 (Info-directory-find-node): New functions.
3139 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
3140 (Info-history): Move part of code to
3141 `Info-history-find-node'.
3142 (Info-history-toc-nodes, Info-history-find-file)
3143 (Info-history-find-node): New functions.
3144 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
3145 (Info-toc): Move part of code to `Info-toc-find-node'.
3146 (Info-toc-find-node): New function.
3147 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
3148 the current Info file name to references because now the node
3149 "*TOC*" belongs to the same Info manual.
3150 (Info-toc-build): Rename from `Info-build-toc'.
3151 (Info-toc-nodes): Rename input argument `file' to `filename'.
3152 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
3153 instead of ad-hoc processing of ("dir" apropos history toc).
3154 (Info-index-nodes): Use Info-virtual-file-p
3155 to check for a virtual file instead of checking a fixed list
3156 of node names.
3157 (Info-index-node): Add check for `Info-current-node-virtual'.
3158 Raise `save-match-data' higher up the tree to contain
3159 `search-forward' too (bug fix).
3160 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
3161 (Info-virtual-index-nodes): New variable.
3162 (Info-virtual-index-find-node, Info-virtual-index): New functions.
3163 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
3164 (Info-apropos-file, Info-apropos-nodes): New variables.
3165 (Info-apropos-toc-nodes, Info-apropos-find-file)
3166 (Info-apropos-find-node, Info-apropos-matches): New functions.
3167 (info-apropos): Move part of code to `Info-apropos-find-node' and
3168 `Info-apropos-matches'.
3169 (Info-mode-map): Bind "I" to `Info-virtual-index'.
3170 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
3171 for a virtual file instead of checking a fixed list of node names.
3172
3173 * simple.el (async-shell-command): New command.
3174
3175 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
3176
3177 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
3178 instead of `mount-info'.
3179
3180 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
3181
3182 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
3183 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
3184
3185 2009-07-02 Kenichi Handa <handa@m17n.org>
3186
3187 * international/mule.el (set-keyboard-coding-system): Force *-unix
3188 coding-system to avoid eol conversion.
3189
3190 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
3191
3192 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3193 Add handler for `process-file', `shell-command' and
3194 `start-file-process'.
3195 (tramp-gvfs-handle-shell-command)
3196 (tramp-gvfs-handle-start-file-process)
3197 (tramp-gvfs-handle-process-file): New defuns.
3198 (tramp-synce-list-devices): Simplify check for existence of property.
3199
3200 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
3201
3202 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
3203
3204 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
3205
3206 * language/korean.el (set-language-info-alist): Add korean-cp949,
3207 cp949 to spec.
3208
3209 2009-07-01 Kenichi Handa <handa@m17n.org>
3210
3211 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
3212
3213 * international/encoded-kb.el: Deleted.
3214
3215 * international/mule.el (set-keyboard-coding-system): Perform the
3216 necessary setup here instead of calling encoded-kbd-setup-display.
3217
3218 2009-07-01 Glenn Morris <rgm@gnu.org>
3219
3220 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
3221
3222 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
3223
3224 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
3225
3226 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
3227
3228 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
3229 Handle also the 'rename case, when setting file modes. (Bug#3712)
3230 (tramp-default-file-modes) Remove execute permissions.
3231
3232 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
3233 (top): Add a default for "synce" in `tramp-default-user-alist'.
3234 Add completion function for "synce" method.
3235 (tramp-hal-service, tramp-hal-path-manager)
3236 (tramp-hal-interface-manager, tramp-hal-interface-device):
3237 New defconst.
3238 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
3239 (tramp-synce-list-devices, tramp-synce-parse-device-names):
3240 New defuns.
3241
3242 * net/trampver.el: Update release number.
3243
3244 2009-06-30 Kenichi Handa <handa@m17n.org>
3245
3246 * international/fontset.el (setup-default-fontset): Add CJK fonts
3247 for symbols and the other miscellaneous characters.
3248
3249 * language/korea-util.el (setup-korean-environment-internal):
3250 Make char-width-table suitable for Korean environments.
3251 (exit-korean-environment): Cancel above.
3252
3253 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
3254 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
3255 setup-funcion to make char-widht-table suitable for respective
3256 environments, and an exit-function to cancel that.
3257
3258 * language/japan-util.el (setup-japanese-environment-internal):
3259 Call use-cjk-char-width-table with arg `ja_JP'.
3260
3261 * international/characters.el (cjk-char-width-table): Delete it.
3262 (cjk-char-width-table-list): New variable.
3263 (use-cjk-char-width-table): New arg local-name.
3264 (use-default-char-width-table): Fix for the case that Emacs is
3265 already using the default char-width-table.
3266
3267 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
3268
3269 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
3270 modes mandatory. (Bug#3712)
3271
3272 2009-06-29 Alan Mackenzie <acm@muc.de>
3273
3274 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
3275 correction between the visible width of TABs and their number of bytes.
3276
3277 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
3278
3279 * server.el (server-buffer-done): Prevent kill-buffer from
3280 prompting by clearing the buffer modification flag (Bug#3696).
3281
3282 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
3283
3284 * verilog-mode.el (verilog-beg-of-statement)
3285 (verilog-endcomment-reason-re): Support unique case and priority case.
3286 (verilog-basic-complete-re): Support localparam lineup.
3287 (verilog-beg-of-statement-1): Fix for robustness, unique case.
3288 (verilog-set-auto-endcomments): Fix for unique case, always_comb
3289 commenting.
3290 (verilog-leap-to-case-head): Now support *nested* unique &
3291 priority case statements.
3292 (verilog-auto-lineup): Make just declarations the default (as it
3293 had been).
3294 (verilog-leap-to-case-head): Support priority/unique case statements.
3295 (verilog-auto-lineup): Rework to give users radio buttons to
3296 select the various styles of automatic lineup.
3297 (verilog-error-regexp-alist): Rework to support the XEmacs style
3298 of error regular expressions from compilers, lint tools &
3299 simulators. Note that GNU Emacs has made it impossible for a mode
3300 to load such things.
3301 (electric-verilog-terminate-line, verilog-indent-declaration)
3302 (verilog-auto-wiure): Rework for radio button selection of
3303 auto-lineup selection of specification of auto lineup.
3304 (verilog-beg-of-statement-1): Redesign to support proper operation
3305 in additional code, based on testing with auto-lineup.
3306 (verilog-calculate-indent, assignments & declarations)
3307 (verilog-backward-token): Enhance to support auto-lineup of
3308 assignments & declarations.
3309 (verilog-in-directive-p, verilog-at-struct-p): New function for
3310 easy test of whether we are.
3311 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
3312 to support safe execution at almost anyline.
3313 (verilog-calc-1): Properly support indenting deep inside generate
3314 blocks.
3315 (verilog-init-font) Remove definition & use of verilog-init-font,
3316 as it is redundant with font-lock-defaults.
3317 (verilog-mode): Alter the definition of verilog-font-lock-defualts
3318 to avoid circular calls if syntax-ppss is a function (as is the
3319 case now in 22.x GNU Emacs) as that function would sometimes call
3320 itself, leading to (nearly) infinite recursion.
3321 (verilog-ovm-begin-re, verilog-ovm-end-re)
3322 (verilog-ovm-statement-re, verilog-leap-to-head)
3323 (verilog-backward-token): Add support for OVM macros. Some are
3324 complete statements, and others open and close scopes like begin
3325 and end.
3326 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
3327 (verilog-defun-level-generate-only-re): Really fix the defun-list
3328 compilation issue.
3329 (verilog-calc-1) (verilog-beg-of-statement): Enhance support for
3330 coverpoint, constraint and cross statements.
3331 (verilog-defun-level-list, verilog-generate-defun-level-list)
3332 (verilog-all-defun-level-list): Redo these specifications - it is
3333 too hard to support eval-when compile aggregation of lists also
3334 built at when-compile time.
3335 (verilog-defun-level-list): Place defconsts of variables used in
3336 building regular expressions which are built in eval-when-compile
3337 bodies in the same eval-when-compile body to facilitate compile
3338 without load.
3339 (verilog-beg-block-re-ordered): Support indenting
3340 virtual/protected tasks and functions.
3341 (verilog-defun-level-list, verilog-in-generate-region-p)
3342 (verilog-backward-ws&directives, verilog-calc-1): Speed up
3343 indentation of some module items (generate items).
3344 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
3345 across virtual/protected tasks and functions.
3346
3347 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
3348
3349 * verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
3350 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
3351 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
3352 in concatenations. Reported by Yishay Belkind.
3353 (verilog-auto-ascii-enum): Support one-hot state machines in
3354 AUTOASCIIENUM. Suggested by Lloyd Gomez.
3355 (verilog-auto-inst, verilog-auto-inst-port): Include interface
3356 modport in AUTOINST and add vl-modport for users. Reported by
3357 David Rogoff.
3358 (verilog-auto-inout-module, verilog-auto-inst)
3359 (verilog-decls-get-interfaces, verilog-insert-definition)
3360 (verilog-insert-one-definition, verilog-read-decls)
3361 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
3362 (verilog-sig-modport, verilog-signals-combine-bus)
3363 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
3364 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
3365 Suggested by David Rogoff.
3366 (verilog-repair-open-comma): Fix non-insertion of comma when
3367 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
3368 (verilog-make-width-expression): Simplify [A-1:0] expression
3369 widths to just {A{1'b0}}.
3370 (verilog-mode): Cleanup checkdoc warnings.
3371 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
3372 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
3373 inputs/outputs or data type. Suggested by Vasu Kandadi.
3374 (next-error-last-buffer): Fix byte-compiler warning.
3375 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
3376 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
3377 or shell command text during AUTO expansion. Suggested by Tad Truex.
3378 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
3379 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
3380 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
3381 in AUTOINOUT. Reported by Matthew Lovell.
3382 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
3383 causing use of <= assignments. Reported by Alex Reed.
3384 (verilog-read-decls): Fix triand, trior, wand, wor to be
3385 recognized by AUTOWIRE. Reported by Spencer Isaacson.
3386 (verilog-extended-complete-re): Support import "DPI-C" functions.
3387 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
3388 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
3389 (verilog-insert-date, verilog-insert-year)
3390 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
3391 Windows systems. Reported by Michael Potts.
3392 (verilog-read-module-name): Fix AUTOINST when the child module
3393 declaration's name is a tick define. Reported by Elliot Mednick.
3394 (verilog-read-decls): Fix V2K parameter bit subscripts getting
3395 passed to next parameter's definition. Reported by Bruce T.
3396 (verilog-read-decls): Fix detecting "parameter int" when using
3397 AUTOINSTPARAM. Reported by Bruce T.
3398 (verilog-goto-defun): Fix goto not finding modules unless first
3399 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
3400 (verilog-mode): Expand -f flag arguments on entry to mode so
3401 verilog-goto-defun will work. Reported by Lawrence Butcher.
3402 (verilog-getopt): Expand environment variables in -f file
3403 arguments. Suggested by Lawrence Butcher.
3404 (verilog-set-define): Fix "Symbol's value as variable is void"
3405 when reading enumerations.
3406 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
3407 Suggested by Stephen Peltan.
3408 (verilog-read-defines): Fix reading of enumerations in include
3409 files. Reported by Steve Peltan.
3410
3411 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
3412
3413 * files.el (trash-directory): Fix defcustom type.
3414
3415 2009-06-28 Juri Linkov <juri@jurta.org>
3416
3417 * help-fns.el (describe-function-1): Correctly locate adviced
3418 functions in hyperlink (Bug#2438).
3419
3420 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
3421
3422 * files.el (trash-directory): Change default to nil.
3423 (move-file-to-trash): If trash-directory is nil and
3424 system-move-file-to-trash is unbound, perform freedesktop-style
3425 trashing.
3426
3427 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
3428
3429 * files.el (move-file-to-trash): Add freedesktop trash
3430 support (Bug#973).
3431
3432 2009-06-28 Glenn Morris <rgm@gnu.org>
3433
3434 * autorevert.el (global-auto-revert-non-file-buffers)
3435 (global-auto-revert-mode): Doc fixes.
3436
3437 2009-06-27 Johan Bockgård <bojohan@gnu.org>
3438
3439 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
3440
3441 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
3442
3443 * faces.el (x-handle-named-frame-geometry): Ensure that we have
3444 opened an X connection before calling x-get-resource (Bug#3194).
3445
3446 * play/doctor.el: Remove reference to obsolete website.
3447 (make-doctor-variables): Correct grammar mistake (Bug#2633).
3448
3449 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
3450
3451 Remove find-file-not-found-hook VC method. (Bug#2757)
3452 * vc-hooks.el (vc-file-not-found-hook)
3453 (vc-default-find-file-not-found-hook): Remove functions.
3454 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
3455 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
3456 * vc.el:
3457 * vc-hg.el:
3458 * vc-git.el: Do not mention find-file-not-found-hook VC method.
3459
3460 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
3461
3462 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
3463 compatibility function for `looking-back'.
3464
3465 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
3466 Use `ispell-looking-back'.
3467
3468 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
3469
3470 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
3471 rather than `filename'.
3472
3473 2009-06-23 Miles Bader <miles@gnu.org>
3474
3475 * face-remap.el (text-scale-set): New function.
3476
3477 2009-06-23 Glenn Morris <rgm@gnu.org>
3478
3479 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
3480
3481 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
3482
3483 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
3484
3485 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
3486
3487 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
3488 Simplify Persian conditionals.
3489
3490 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
3491 variable `filename'.
3492
3493 * comint.el (comint-insert-input): Doc fix.
3494
3495 * Makefile.in (ELCFILES): Fix typo in previous change.
3496
3497 2009-06-23 Miles Bader <miles@gnu.org>
3498
3499 * cus-start.el: Add entry for `recenter-redisplay'.
3500
3501 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
3502
3503 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
3504 Add an optional argument for the backend, use it instead of
3505 calling vc-backend.
3506 (vc-mode-line): Add an optional argument for the backend.
3507 Pass the backend to vc-state and vc-working-revision. Move code for
3508 special handling for vc-state being a buffer to ...
3509
3510 * vc-rcs.el (vc-rcs-find-file-hook):
3511 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
3512
3513 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
3514 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
3515 vc-stay-local-p and vc-mode-line calls.
3516
3517 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
3518 (vc-cvs-diff, vc-cvs-annotate-command)
3519 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
3520 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
3521 vc-mode-line calls.
3522
3523 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
3524 direct comparison.
3525 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
3526 backend when calling vc-mode-line.
3527 (vc-register): Do not create a closure for calling the vc register
3528 function, call it directly.
3529
3530 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
3531
3532 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
3533 to make it obvious item can be clicked.
3534
3535 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
3536
3537 2009-06-23 Kenichi Handa <handa@m17n.org>
3538
3539 * language/korea-util.el (korean-key-bindings): Change the binding
3540 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
3541 same command.
3542
3543 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
3544
3545 Sync with Tramp 2.1.16.
3546
3547 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
3548
3549 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
3550 when a loading of a package fails. Completion function for rsync
3551 is `tramp-completion-function-alist-ssh'.
3552 (all): Replace all calls of `split-string' and
3553 `tramp-split-string' by `tramp-compat-split-string'.
3554 (tramp-default-method): Use `tramp-compat-process-running-p'.
3555 (tramp-default-proxies-alist): Allow also Lisp forms.
3556 (tramp-remote-path): Add choice "Private Directories".
3557 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
3558 (tramp-domain-regexp): Allow also "-", "_" and ".".
3559 (tramp-end-of-output): Remove newlines, and add "$" at the end.
3560 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
3561 (tramp-debug-message): Insert header line in debug buffer.
3562 (tramp-handle-directory-files-and-attributes-with-stat):
3563 Care about filenames with spaces, or starting with "-".
3564 (tramp-handle-dired-uncache): New defun.
3565 (tramp-handle-insert-directory): Don't flush the directory from
3566 cache, this is handled by `dired-uncache' now.
3567 (tramp-handle-insert-file-contents): Improve error handling.
3568 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3569 Quote `tramp-end-of-output'.
3570 (tramp-action-password): Improve trace message.
3571 (tramp-check-for-regexp): Both echoes must be present, before removing.
3572 (tramp-open-connection-setup-interactive-shell): Trace coding system.
3573 (tramp-compute-multi-hops): Eval cons cells of
3574 `tramp-default-proxies-alist'.
3575 (tramp-maybe-open-connection): Use the same command pattern for
3576 first hop and further hops.
3577 (tramp-wait-for-output): Remove handling of newlines.
3578 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
3579 (tramp-split-string): Remove function. It is handled in
3580 tramp-compat now.
3581
3582 * net/tramp-cmds.el (tramp-bug):
3583 Recommend `tramp-cleanup-all-connections' in the bug mail.
3584
3585 * net/tramp-compat.el (tramp-compat-split-string)
3586 (tramp-compat-process-running-p): New defuns.
3587
3588 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
3589 for `dired-uncache'.
3590
3591 * net/tramp-gvfs.el: New package.
3592
3593 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3594 Add handler for `dired-uncache'.
3595 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
3596
3597 * net/trampver.el: Update release number. Make version check fit
3598 for SXEmacs 22.
3599
3600 2009-06-22 Jim Meyering <meyering@redhat.com>
3601
3602 Automatically handle .xz suffix (XZ-compressed files), too.
3603 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
3604 XZ is the successor to LZMA: <http://tukaani.org/xz/>
3605
3606 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
3607 Nick Roberts <nickrob@snap.net.nz>
3608
3609 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
3610 repository (http://sphinx.net.ru/hg/gdb-mi/).
3611
3612 2009-06-22 Glenn Morris <rgm@gnu.org>
3613
3614 * files.el (dir-locals-collect-mode-variables): Allow for any number of
3615 `mode' and `eval' entries. (Bug#3430)
3616
3617 * Makefile.in (ELCFILES): Add fadr.elc.
3618
3619 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
3620 differing behavior of \n and ^ in strings. (Bug#3385)
3621
3622 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
3623
3624 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
3625 property.
3626 (lisp-indent-function): Make it a defcustom.
3627
3628 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
3629
3630 * progmodes/gdb-ui.el: Replace with ...
3631 * progmodes/gdb-mi.el: ... this file.
3632 * progmodes/gud.el: Modify for gdb-mi.el.
3633
3634 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
3635
3636 * fadr.el: New file.
3637
3638 See ChangeLog.14 for earlier changes.
3639
3640 ;; Local Variables:
3641 ;; coding: utf-8
3642 ;; End:
3643
3644 Copyright (C) 2009 Free Software Foundation, Inc.
3645
3646 This file is part of GNU Emacs.
3647
3648 GNU Emacs is free software: you can redistribute it and/or modify
3649 it under the terms of the GNU General Public License as published by
3650 the Free Software Foundation, either version 3 of the License, or
3651 (at your option) any later version.
3652
3653 GNU Emacs is distributed in the hope that it will be useful,
3654 but WITHOUT ANY WARRANTY; without even the implied warranty of
3655 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3656 GNU General Public License for more details.
3657
3658 You should have received a copy of the GNU General Public License
3659 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
3660
3661 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1