1 2011-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
3 * progmodes/compile.el (compilation--flush-directory-cache):
4 New function, extracted from compilation--remove-properties.
5 (compilation--remove-properties, compilation--parse-region): Use it.
6 (compilation--previous-directory): Handle one more case.
7 (compilation-enable-debug-messages): Remove.
8 (compilation-parse-errors, compilation--flush-parse): Just remove the
9 left over debug messages.
11 2011-01-31 Sam Steingold <sds@gnu.org>
13 * progmodes/compile.el (compilation-enable-debug-messages):
14 Add a variable to make the parsing messages introduced in
15 2011-01-28T22:12:05Z!monnier@iro.umontreal.ca optional.
16 (compilation-parse-errors, compilation--flush-parse): Use it.
18 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
20 * net/rcirc.el: New customizable nick completion format.
21 (rcirc-nick-completion-format): New defcustom.
22 (rcirc-complete): Use it.
24 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
26 * net/rcirc.el: Clean log filenames (Bug#7933).
27 (rcirc-log-write): Use convert-standard-filename.
28 (rcirc-log-filename-function): Documentation updates.
30 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
32 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer):
33 Check report-emacs-bug-can-use-osx-open and use that if t.
34 (report-emacs-bug-can-use-osx-open): New function.
35 (report-emacs-bug): Rename can-xdg-email to can-insert-mail.
36 Check report-emacs-bug-can-use-osx-open also for can-insert-mail.
38 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
40 * vc/vc-dispatcher.el (vc-set-async-update): New function for
41 updating Dired or VC-dir buffers after async command completes.
43 * vc/vc-bzr.el (vc-bzr-async-command): Return the process buffer.
44 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-set-async-update.
46 * vc/vc-git.el (vc-git-merge-branch): Add FETCH_HEAD to branch
47 completions if it exists. Use vc-set-async-update.
48 (vc-git-pull): Use vc-set-async-update.
50 * vc/vc-hg.el (vc-hg-pull): Fix default-contents arg to
51 read-shell-command. Use vc-set-async-update.
52 (vc-hg-merge-branch): Use vc-set-async-update.
54 2011-01-29 Daiki Ueno <ueno@unixuser.org>
56 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED):
57 Don't presume KEYEXPIRED and KEYREVOKED to be a fatal error status
60 2011-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
62 * progmodes/compile.el: Avoid an N² behavior in grep.
63 (compilation--previous-directory): New fun.
64 (compilation--previous-directory-cache): New var.
65 (compilation--remove-properties): Flush it.
66 (compilation-directory-properties, compilation-error-properties):
67 Use the new fun to speed up looking for the current directory.
69 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
71 * vc/vc-hg.el (vc-hg-history): New var.
72 (vc-hg-pull): Perform default pull if called via Lisp by vc-pull.
73 (vc-hg-merge-branch): New function.
75 * vc/vc.el (vc-pull): Make vc-update an alias for this, instead of
78 * vc/vc-git.el (vc-git-branches, vc-git-pull)
79 (vc-git-merge-branch): New functions.
80 (vc-git-history): New var.
82 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
84 * vc/vc-dispatcher.el (vc-do-async-command): New function.
86 * vc/vc-bzr.el (vc-bzr-async-command): Convert into a wrapper for
89 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch):
92 2011-01-28 Leo <sdl.web@gmail.com>
94 * emacs-lisp/advice.el (ad-make-advised-docstring): Don't apply
95 highlighting to the "this function is advised" message.
97 * help-mode.el (help-mode-finish): Apply highlighting here, to
98 avoid clobbering by substitute-command-keys (Bug#6304).
100 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
102 * woman.el (woman0-roff-buffer): Process roff escape sequences
103 occurring prior to the first request (Bug#7843).
105 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
107 * progmodes/compile.el: Don't use font-lock any more.
108 (compilation-error-regexp-alist-alist): Change handling of makepp
109 so it preserves the warning/error distinction on subsequent files.
110 Simplify various rules.
111 (compilation-directory-properties): Use font-lock-face.
112 Add a compilation-message property.
113 (compilation-internal-error-properties): Use font-lock-face.
114 Don't set the compilation-debug property here.
115 (compilation--put-prop, compilation--remove-properties)
116 (compilation--parse-region, compilation--ensure-parse)
117 (compilation--ensure-parse): New functions.
118 (compilation-parse-errors): New function, largely inspired of
119 compilation-mode-font-lock-keywords. Set compilation-debug here.
120 (compilation--parsed): New var.
121 (compilation--flush-parse): Use compilation--ensure-parse.
122 (compilation-start): Don't call font-lock.
123 (compilation-turn-on-font-lock): Remove.
124 (compilation-setup): Don't set font-lock-extra-managed-props not change
125 other font-lock settings, other than keywords.
126 Don't activate font-lock-mode.
127 Set change-major-mode-hook and before-change-functions.
128 (compilation--unsetup): Remove properties and hooks.
129 (compilation-next-single-property-change): New function.
130 (compilation-next-error): Use it to parse when needed.
131 (compile-goto-error): Parse buffer as needed.
132 (compilation--compat-error-properties): Don't need a dummy `face'
135 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
137 * progmodes/compile.el: Use accessors for clarity and fix omake hack.
138 (compilation-process-setup-function): Fix docstring's false promises.
139 (compilation-error-regexp-alist-alist): Catch omake's continuous
140 recompilation message and avoid reuse of old markers.
141 (compilation-parse-errors-function): Declare obsolete.
142 (compilation-buffer-modtime): Remove.
143 (compilation--make-cdrloc, compilation--loc->col)
144 (compilation--loc->line, compilation--loc->file-struct)
145 (compilation--loc->marker, compilation--loc->visited)
146 (compilation--make-file-struct, compilation--file-struct->file-spec)
147 (compilation--file-struct->formats)
148 (compilation--file-struct->loc-tree): New macros. Use them.
149 (compilation--message): New defstruct. Use them.
150 (compilation-next-error-function): Don't mess with timestamps to try
151 and guess when to reparse.
153 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
155 * textmodes/tex-mode.el: Get rid of compilation-parse-errors-function
156 (tex-old-error-file-name): New function,
157 extracted from tex-compilation-parse-errors.
158 (tex-compilation-parse-errors): Remove.
159 (tex-error-regexp-alist): New var.
160 (tex-shell): Use it to avoid compilation-parse-errors-function.
162 * progmodes/grep.el (grep-regexp-alist): Tighten regexp.
163 (grep-mode-font-lock-keywords): Remove regexp that seems like
164 a left-over from before we used compile.el.
165 (grep-mode-font-lock-keywords): Call syntax-ppss-flush-cache when
166 modifying the buffer within with-silent-modifications.
168 * progmodes/compile.el: Cleanup text-properties namespace by using
169 `compilation-message' instead of `message', `compilation-directory'
170 instead of `directory', and `compilation-debug' instead of `debug'.
171 (compilation-last-buffer, compilation-parsing-end)
172 (compilation-error-list, compilation-old-error-list): Move to the
173 compatibility part of the code.
174 (compilation-error-properties): If `file' is a function, let it return
176 (compilation-mode-font-lock-keywords): Be more conservative with the
177 omake "^ *" pattern prefix, to try and minimize the risk of
178 pathologically slow regexp matching.
179 (compilation-start): Use inhibit-read-only.
180 (compilation--unsetup): New function.
181 (compilation-shell-minor-mode, compilation-minor-mode): Use it.
182 (compilation-filter): Minor tweaks.
183 (compilation-next-error-function): Try and avoid abusing variables.
184 (compilation--flush-file-structure): New fun.
185 (compilation-fake-loc): Use it to improve behavior when file is reused.
186 (debug-ignored-errors): Add "Moved past last ...".
187 (compilation--compat-error-properties)
188 (compilation--compat-parse-errors): Rename by doubling the "-".
190 Port features from the previous prolog.el to the new one.
191 * progmodes/prolog.el (prolog-system): Add GNU and ECLiPSe options.
192 (prolog-program-name, prolog-program-switches, prolog-consult-string)
193 (prolog-compile-string, prolog-prompt-regexp): Get rid of the <foo>-i
194 variable and use a function to compute the value dynamically.
195 (prolog-prompt-regexp): Add regexp for GNU Prolog.
196 (prolog-continued-prompt-regexp): Remove, unused.
197 (prolog-find-value-by-system): Try and use the value of prolog-system
198 in the *prolog* buffer if it helps.
199 (prolog-mode-keybindings-common): Bind C-c C-z unconditionally...
200 (prolog-zip-on): ..and check prolog-system and version here instead.
201 (prolog-inferior-self-insert-command): New command.
202 (prolog-inferior-mode-map): Use it.
203 (prolog-inferior-error-regexp-alist): New var.
204 (prolog-inferior-mode): Use it, with compilation-shell-minor-mode.
205 (prolog-input-filter): Use derived-mode-p.
206 (prolog-inferior-guess-flavor): New function.
207 (prolog-ensure-process): Use it. Use make-comint-in-buffer rather than
208 make-comint to avoid running comint-mode twice.
209 (prolog-inferior-buffer): New fun.
210 (prolog-old-process-region, prolog-old-process-file):
211 Don't call prolog-bsts here...
212 (prolog-build-prolog-command): ...do it here instead.
213 (prolog-old-process-region, prolog-old-process-file):
214 Use compilation-fake-loc and compilation-forget-errors.
215 (prolog-consult-compile-region): Use bolp.
217 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
219 * image-mode.el (image-display-size): Doc fix (Bug#7820).
221 2011-01-27 Sam Steingold <sds@gnu.org>
223 * midnight.el (clean-buffer-list-kill-never-buffer-names):
224 Remove "*server*" which is never created by emacs server.
226 2011-01-27 Deniz Dogan <deniz.a.m.dogan@gmail.com>
228 * vc/vc-bzr.el (vc-bzr-diff): Don't pass --diff-options unless
229 there are some diff switches.
231 2011-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
233 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
234 Copy change made to ruby-font-lock-syntactic-keywords.
236 * htmlfontify.el: Make it obey the font-lock-face text property.
237 Miscellaneous cleanup such as:
238 - Don't hide expressions after a closing paren.
239 - Move initial setq into let.
240 - Hoist common parts out of ifs.
241 (hfy-p-to-face, hfy-p-to-face-lennart): Remove.
242 (hfy-face-at): Use get-text-property instead.
243 (hfy-prop-invisible-p): Use invisible-p if available.
244 (htmlfontify-manual): Use \\[...].
245 (hfy-html-quote-regex): Use [...].
246 (hfy-combined-face-spec): Simplify.
247 (hfy-compile-face-map): Don't presume point-min==1.
248 (hfy-css-name, hfy-buffer, htmlfontify-buffer): Use \' rather than $ to
250 (hfy-text-p): η-reduce.
251 (hfy-tags-for-file): Receive cache-hash directly.
252 (hfy-mark-tag-names): Adjust call.
254 2011-01-27 Glenn Morris <rgm@gnu.org>
256 * msb.el (msb-after-load-hooks): Make it an obsolete alias.
257 (msb-after-load-hook): Remove eval-after-load wackiness.
259 2011-01-25 Sam Steingold <sds@gnu.org>
261 * vc/vc-svn.el (vc-svn-diff): Use `diff-command' instead of the
262 literal "diff" (important for windows-nt).
264 2011-01-25 Glenn Morris <rgm@gnu.org>
266 * emacs-lisp/copyright.el (copyright-at-end-flag)
267 (copyright-names-regexp): Add safety properties.
268 (copyright-year-ranges): New option.
269 (copyright-find-end): New function, split from copyright-update-year.
270 (copyright-update-year): Use copyright-find-end.
271 (copyright-fix-years): Optionally, convert years to ranges.
272 Handle years continued over comment lines.
273 Do not mess with the fill-prefix.
274 Do not call copyright-update.
275 (copyright-update-directory): Optionally, fix years rather than update.
276 Skip directories. Find files with only safe local vars.
278 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
280 * files.el (file-name-non-special): Only change buffer-file-name after
281 insert-file-contents if it's `visit'ing the file (bug#7854).
283 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
285 * dired.el (dired-revert): Doc fix (Bug#7758).
287 * simple.el (line-move-visual): Doc fix (Bug#7594).
289 2011-01-25 Nobuyoshi Nakada <nobu@ruby-lang.org>
291 * progmodes/ruby-mode.el (ruby-here-doc-beg-match): Fix for
292 here-doc which ends with an underscore.
293 (ruby-mode-set-encoding): Skip shebang line always.
294 (ruby-mode-map): Bind C-c C-c to comment-region.
295 (ruby-font-lock-keywords): Highlight literal hash key labels as symbols.
296 (ruby-forward-sexp): Stop after literal hash key labels.
297 (ruby-font-lock-syntactic-keywords): Highlight regexp after open
300 2011-01-25 Keitaro Miyazaki <keitaro.miyazaki@gmail.com> (tiny change)
302 * emacs-lisp/re-builder.el (reb-mode-map): Set case-fold-search in
303 the correct buffer (Bug#7650).
305 2011-01-25 Glenn Morris <rgm@gnu.org>
307 * comint.el (comint-mode): Doc fix. (Bug#7897)
309 * simple.el (do-auto-fill): Give it a doc string.
311 * button.el (make-text-button): Doc fix. (See bug#7881)
313 2011-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
315 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
316 Don't move backward, so as not to fall in an inf-loop (bug#7736).
318 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): (bug#7735)
319 Handle ?" and friends differently (e.g. don't use backrefs).
321 2011-01-24 Jay Belanger <jay.p.belanger@gmail.com>
323 * calc/calc.el (calc-default-power-reference-level)
324 (calc-default-field-reference-level): New variables.
325 * calc/calc-units.el (math-standard-units): Add dB and Np.
326 (math-logunits): New variable.
327 (math-extract-logunits, math-logcombine, calcFunc-luplus)
328 (calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
329 (calcFunc-fieldlevel, calcFunc-powerlevel, calc-level):
331 (math-find-base-units-rec): Add entry for ln(10).
332 * calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
333 (calc-ul-prefix-help): New function.
334 * calc/calc-ext.el (calc-init-extensions): Autoload new units
335 functions. Add keybindings for new units functions.
337 2011-01-22 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
339 * net/rcirc.el (rcirc-kill-buffer-hook): Flush logs when killing
340 rcirc buffers. (Bug#4940)
342 2011-01-22 Glenn Morris <rgm@gnu.org>
344 * emacs-lisp/copyright.el (copyright-find-copyright): New function,
345 split out from copyright-update-year.
346 (copyright-update): Don't mess with the GPL version if we don't own the
347 copyright. Update license regexp, and remove no longer needed
349 (copyright-fix-years): Use copyright-find-copyright.
351 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
353 * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
355 2011-01-22 Jari Aalto <jari.aalto@cante.net>
357 * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
358 (lm): Rename to landmark.
359 (lm-test-run): Rename to landmark-test-run.
361 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
363 * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in
364 "Case sensitive" menu item.
366 2011-01-22 Roland McGrath <roland@frob.com>
368 * comint.el (comint-replace-by-expanded-history-before-point): Fix
369 expansion of !$ and !!:N syntax to pick the indicated word (bug#7883).
371 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
373 * progmodes/js.el (js--regexp-literal): Count backslashes (bug#7882).
375 2011-01-22 Jari Aalto <jari.aalto@cante.net>
377 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
378 Assume foo(bar) is a manpage reference rather than some unquoted
381 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
383 * subr.el (shell-quote-argument): Properly quote \n (bug#7687).
384 Suggested by Flo <sensorflo@gmail.com>.
386 2011-01-22 Glenn Morris <rgm@gnu.org>
388 * progmodes/compile.el (compilation-error-regexp-alist):
389 Fix custom type. (Bug#7812)
391 2011-01-22 Ken Manheimer <ken.manheimer@gmail.com>
393 * allout.el (allout-prefixed-keybindings): Bind (prefixed) '#' to
394 allout-number-siblings, in keeping with what obtained due to
395 (now-defunct) allout-keybindings-list. Ditch repeat binding to
397 (allout-before-change-handler): Better expose spots affected by
400 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
402 * man.el (Man-highlight-references0): Use make-button (Bug#7881).
404 2011-01-22 Phil Hagelberg <phil@evri.com>
406 * pcmpl-unix.el (pcmpl-ssh-config-file): New option.
407 (pcmpl-ssh-known-hosts): Rename from pcmpl-ssh-hosts.
408 (pcmpl-ssh-config-hosts): New function.
409 (pcmpl-ssh-hosts): Use pcmpl-ssh-config-hosts in addition to
410 pcmpl-ssh-known-hosts.
412 2011-01-21 Jay Belanger <jay.p.belanger@gmail.com>
414 * calc/calc-undo.el (calc-undo): Autoload it.
415 * calc/calc-ext.el (calc-init-extensions): Remove keybindings
416 and autoload for `calc-undo'.
417 * calc/calc.el (calc-mode-map): Add keybindings for `calc-undo'.
419 * calc/calc-graph.el:
420 * calc/calc-map.el: Change `arglist' to `math-arglist' throughout.
422 2011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
424 * calc/calc-ext.el (calc-init-extensions): Map all `undo'
425 keybindings to `calc-undo'.
427 2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
429 Don't mess with *temp*.
430 * obsolete/spell.el: Move from textmodes/spell.el.
432 * term.el (term-read-input-ring):
433 * startup.el (display-startup-echo-area-message):
434 * progmodes/antlr-mode.el (antlr-directory-dependencies):
435 * comint.el (comint-read-input-ring): Use with-temp-buffer.
436 * international/mule.el (ctext-pre-write-conversion): Don't hardcode
439 2011-01-20 Ken Manheimer <ken.manheimer@gmail.com>
441 * allout.el: (allout-institute-keymap): Use fset instead of
444 (allout-hotspot-key-handler): Check for non-control-modified
445 bindings for hotspot characters if there are no control-modified
448 * allout.el: Summary - migrate to defining allout mode using
449 define-minor-mode instead of defun. Significantly clean-up
450 internal keymap provisions, refactoring and, in the process,
451 removing a lot of accumulated cruft.
453 allout-mode-map is now a keymap by virtue of being a defalias to
454 allout-mode-map-value, which contains the actual keymap structure.
456 (allout-mode): Use define-minor-mode rather than defun.
457 Remove now-unnecessary minor-mode setup activities from the body.
458 Specify :keymap as allout-mode-map so the minor-mode-map-alist
459 entry will be '(allout-mode . allout-mode-map) - see
460 allout-mode-map-value, below. Adjust docstring to track changes.
461 (allout-minor-mode): Remove this defalias, now that we're using
463 (allout-mode-map): Set value to be 'allout-mode-map. The actual
464 keymap is allout-mode-map-value, via defalias.
465 (allout-mode-map-value): The variable holding the actual mode
466 keymap structure, by virtue of defalias from allout-mode-map.
467 (allout-compose-and-institute-keymap): Rename from
468 allout-bind-keys, and including the binding-composition
469 functionality of the former produce-allout-mode-map and
470 allout-setup-mode-map.
471 (allout-institute-keymap): Take over the "setup" part of the former
472 allout-setup-mode-map. Reassign allout-mode-map-value value and
474 (allout-command-prefix) (allout-prefixed-keybindings)
475 (allout-unprefixed-keybindings):
476 Use allout-compose-and-institute-keymap to process the bindings.
477 (allout-unprefixed-keybindings): Remove extraneous '?' question
479 (allout-prefixed-keybindings): Elide binding to (prefixed) \C-h -
480 user can customize if they want to use that binding.
481 Bind allout-copy-topic-as-kill to (prefixed) \M-k.
482 Bind allout-up-current-level to (prefixed) \C-u. (I think i mistakenly
483 elided that, previously, instead of the one for \C-h.)
484 (allout-hotspot-key-handler): Remove attempt to resolve the key
485 through the literal key-string lookup on allout-keybindings-list.
486 That probably hasn't worked for a Long Time, and removal of
487 allout-keybindings-list further simplifies the keybindings
489 (allout-pre-command-business): Use allout-mode-map-value instead
491 (allout-preempt-trailing-ctrl-h): Remove. The user can customize
492 the bindings if they want to use a keybinding having a trailing
493 \C-h. No deprecation needed since this feature was never in a
495 (allout-keybindings-list): Remove. It's not been useful for a
496 while. (See allout-hotspot-key-handler changes, above.)
497 (produce-allout-mode-map): Remove. Consolidate into
498 allout-compose-and-institute-keymap.
499 (allout-mode-map-adjustments): Remove. No longer necessary with
500 removal of allout-preempt-trailing-ctrl-h.
501 (allout-setup-mode-map): Remove. Consolidate into
502 allout-compose-and-institute-keymap and allout-institute-keymap.
504 2011-01-20 Glenn Morris <rgm@gnu.org>
506 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
508 * simple.el (read-expression-history): Remove, it's in minibuf.c.
510 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
512 * subr.el (y-or-n-p): Revert 2011-01-07 change, removing ARGS.
514 * files.el (find-alternate-file, basic-save-buffer)
515 (basic-save-buffer-2, revert-buffer, recover-file)
516 (kill-buffer-ask, abort-if-file-too-large)
517 (set-visited-file-name, write-file, backup-buffer)
518 (basic-save-buffer, save-some-buffers):
519 * dired-aux.el (dired-compress-file): Callers changed.
521 2011-01-19 Glenn Morris <rgm@gnu.org>
523 * vc/vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
524 Also check the property status. (Bug#7861)
526 2011-01-18 Michael Albinus <michael.albinus@gmx.de>
528 * net/tramp.el (tramp-debug-message): Extend function exclude
529 list. Use `regexp-opt'.
531 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
533 * textmodes/tex-mode.el (tex-font-lock-verb): Make sure \verb
534 highlighting doesn't spill over subsequent lines.
536 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't re-evaluate the
537 keymap expression. Improve docstring.
539 * electric.el (electric-indent-post-self-insert-function):
540 Don't auto-indent for indent-to-left-margin, it's too often
543 2011-01-16 Tassilo Horn <tassilo@member.fsf.org>
545 * strokes.el (strokes-read-stroke): Re-fill strokes buffer with
546 spaces if the frame was resized, so that the full visible buffer
547 serves as canvas for strokes.
549 2011-01-16 Glenn Morris <rgm@gnu.org>
551 * info-xref.el (info-xref-docstrings): Replace cl function.
552 Also skip directories.
554 2011-01-16 Kevin Ryde <user42@zip.com.au>
556 * info-xref.el: Version 3.
557 (info-xref-check, info-xref-check-all): Move commentary details
558 into docstrings for better visibility.
559 Use compilation-mode for the results buffer.
560 (info-xref-output, info-xref-output-error, info-xref-with-output)
561 (info-xref-filename, info-xref-in-progress):
562 New internals for this.
563 (info-xref-check-list, info-xref-check-buffer)
564 (info-xref-check-all-custom): Use those.
565 (info-xref-output-buffer): Rename from info-xref-results-buffer.
566 (info-xref-output-heading): Rename from info-xref-filename-heading.
567 (info-xref-good, info-xref-bad, info-xref-xfile-alist)
568 (info-xref-filename-heading): Move to output managing section.
569 (info-xref-docstrings): New command checking "Info node `(foo)Bar'"
570 (info-xref-lock-file-p, info-xref-with-file): New helpers for it.
571 (info-xref-subfile-p): Move to generic section with those two.
572 (info-xref-check-node): New function split from
573 info-xref-check-buffer, shared by info-xref-docstrings.
574 (info-xref-goto-node-p): Move to a checking section with that func.
575 (info-xref-unavail): New counter.
576 (info-xref-check-node): Use it.
577 (info-xref-with-output): Show count of unavailables at end of output.
578 (info-xref-all-info-files): Exclude ".*" dotfiles. Ignore broken
579 symlinks. Exclude .texi files. Exclude Emacs backup files.
580 (info-xref-check-all-custom): Fix quietening viper-mode and
581 gnus-registry-install -- use setq not let so as not to unbind
584 2011-01-16 Juri Linkov <juri@jurta.org>
586 * isearch.el (isearch-abort): Don't quit if search has
587 an incomplete regexp (isearch-error is non-nil). (Bug#7534)
589 2011-01-15 Mark Diekhans <markd@soe.ucsc.edu>
591 * files.el (backup-buffer): Make last-resort backup file in
594 * subr.el (locate-user-emacs-file): If .emacs.d does not exist,
595 make it with permission 700.
597 2011-01-15 Kenichi Handa <handa@m17n.org>
599 * mail/rmailmm.el (rmail-mime-insert-header):
600 Set rmail-mime-coding-system to a cons whose car is the last coding
601 system used to decode the header.
602 (rmail-mime-find-header-encoding): New function.
603 (rmail-mime-insert-decoded-text):
604 Override rmail-mime-coding-system if it is a cons.
605 (rmail-show-mime): If only a header part was decoded, find the
606 coding system while ignoring mm-charset-override-alist.
608 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
610 * subr.el (event-start, event-end): Doc fix (Bug#7826).
612 2011-01-15 Kenichi Handa <handa@m17n.org>
614 * mail/rmailmm.el (rmail-mime-next-item)
615 (rmail-mime-previous-item): Delete them.
616 (rmail-mime-shown-mode): Recursively call for children.
617 (rmail-mime-hidden-mode): Delete the 2nd arg TOP.
619 (rmail-mime-raw-mode): Recursively call for children.
620 (rmail-mode-map): Change mapping of tab and backtab to
621 forward-button and backward-button respectively.
622 (rmail-mime-insert-tagline): Always insert "Hide" or "Show"
624 (rmail-mime-update-tagline): New function.
625 (rmail-mime-insert-text): Call rmail-mime-update-tagline if the
626 body display is changed.
627 (rmail-mime-toggle-button): Rename from rmail-mime-image.
628 (rmail-mime-image): Delete this button type.
629 (rmail-mime-toggle): New button type.
630 (rmail-mime-insert-bulk): Call rmail-mime-update-tagline if the
631 body display is changed. Change the save button label to "Save".
632 Don't process show/hide button here.
633 (rmail-mime-insert-multipart): Call rmail-mime-update-tagline if
634 the body display is changed. Unconditionally call
635 rmail-mime-insert for children.
636 (rmail-mime-handle): Update `display' vector of the just inserted
638 (rmail-mime-process): If mail-header-parse-content-type returns
639 nil, use "text/plain" as the fallback type.
640 (rmail-mime-insert): For raw-mode, recursively call
641 rmail-mim-insert for children.
642 (rmail-mime): Handle the case that the current buffer is not rmail
643 buffer (e.g. in summary buffer).
645 2011-01-15 Kenichi Handa <handa@m17n.org>
647 * mail/rmailmm.el (rmail-mime-next-item)
648 (rmail-mime-previous-item): Skip the body of a non-multipart
649 entity if a tagline is shown.
651 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
653 * tmm.el (tmm-get-keymap): Skip bindings without labels (bug#7721).
654 (tmm-prompt): Simplify.
655 (tmm-add-prompt): Remove unused var `win'.
657 * whitespace.el (global-whitespace-newline-mode): Fix call (bug#7810)
658 to minor mode which used nil accidentally to mean "turn off".
660 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
662 * net/tramp-sh.el (tramp-find-inline-compress)
663 (tramp-get-inline-coding): Quote command after pipe symbol for
664 local calls under W32. (Bug#6784)
666 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
668 * net/tramp.el (tramp-default-method): Initialize with pscp/plink
669 only when running under W32.
671 2011-01-15 Eli Zaretskii <eliz@gnu.org>
673 * progmodes/grep.el (grep-compute-defaults): Quote the program
674 file name after the pipe symbol in Grep templates. (Bug#6784)
675 * jka-compr.el (jka-compr-partial-uncompress): Likewise.
677 2011-01-15 Lennart Borgman <lennart.borgman@gmail.com>
679 * buff-menu.el (Buffer-menu-buffer-list): New var.
680 (Buffer-menu-revert-function, list-buffers-noselect): Use it, so a
681 restricted buffer list is not lost on revert (Bug#7749).
683 2011-01-15 Eric Hanchrow <eric.hanchrow@gmail.com>
685 * net/ldap.el (ldap-search-internal): Discard stderr output.
687 2011-01-15 Eli Zaretskii <eliz@gnu.org>
689 * files.el (directory-abbrev-alist): Doc fix. (Bug#7777)
691 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
693 * vc-bzr.el (vc-bzr-annotate-time): Tweak previous change.
695 2011-01-15 Kenichi Handa <handa@m17n.org>
697 * mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
698 part as a plain text.
699 (rmail-mime-process-multipart): Set the default content-type to
700 nil for unknown multipart subtypes (bug#7651).
702 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
704 * hexl.el (hexl-mode-old-*): Remove.
705 (hexl-mode--old-var-vals): New var to replace them.
706 (hexl-mode--minor-mode-p, hexl-mode--setq-local): New funs.
707 (hexl-mode, hexl-follow-line, hexl-activate-ruler):
708 Use them to set local vars (bug#7846).
709 (hexl-mode-exit): Use hexl-mode--old-var-vals to restore state.
710 (hexl-backward-short, hexl-backward-word, hexl-scroll-down)
711 (hexl-scroll-up, hexl-end-of-1k-page, hexl-end-of-512b-page): Simplify.
713 * vc/smerge-mode.el: Resolve comment conflicts more aggressively.
714 (smerge-resolve--normalize-re): New var.
715 (smerge-resolve--extract-comment, smerge-resolve--normalize): New funs.
716 (smerge-resolve): Use them.
717 * newcomment.el (comment-only-p): New function.
718 (comment-or-uncomment-region): Use it.
720 2011-01-14 Brent Goodrick <bgoodr@gmail.com> (tiny change)
722 * abbrev.el (prepare-abbrev-list-buffer): If listing local abbrev
723 table, get the value before switching to the output buffer. (Bug#7733)
725 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
727 * progmodes/python.el (python-mode): Don't impose font-lock (bug#3628).
729 2011-01-14 Kim F. Storm <storm@cua.dk>
731 * emulation/cua-base.el (cua--init-keymaps):
732 Remap exchange-point-and-mark in cua-global-keymap.
734 2011-01-14 Tassilo Horn <tassilo@member.fsf.org>
736 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach
739 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
741 * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label.
743 (easy-menu-create-menu, easy-menu-convert-item-1):
744 Use :label rather than nil for labels. Use `case'.
745 Add :enable as alias for :active.
746 (easy-menu-binding): Obey :label.
748 2011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
750 Use run-mode-hooks for major mode hooks (bug#513).
751 * textmodes/reftex-toc.el (reftex-toc-mode-map):
752 Rename from reftex-toc-map.
753 (reftex-toc-mode): Use define-derived-mode.
754 * textmodes/reftex-sel.el (reftex-select-shared-map): New map.
755 (reftex-select-label-mode-map, reftex-select-bib-mode-map):
756 Rename from reftex-select-(label|bib)-map. Move init into declaration.
757 (reftex-select-label-mode, reftex-select-bib-mode):
758 Use define-derived-mode.
759 * textmodes/reftex-index.el (reftex-index-phrases-mode-map)
760 (reftex-index-mode-map): Rename from reftex-index(-phrases)-map.
761 Move init into delcaration.
762 (reftex-index-mode, reftex-index-phrases-mode):
763 Use define-derived-mode.
764 * speedbar.el (speedbar-mode-syntax-table): Renaqme from
765 speedbar-syntax-table. Move init into declaration.
766 (speedbar-mode-map): Rename from speedbar-key-map.
767 Move init into declaration.
768 (speedbar-file-key-map): Move init into declaration.
769 (speedbar-mode): Use define-derived-mode.
770 * recentf.el (recentf-mode): Don't run hook (or message) redundantly.
771 * net/rcirc.el (rcirc-mode): Use run-mode-hooks.
772 * emacs-lisp/chart.el (chart-mode-map): Rename from chart-map.
773 (chart-face-list): Move initialization into declaration.
774 (chart-mode): Use define-derived-mode.
775 * calculator.el (calculator-mode-map): Move init into declaration.
776 (calculator-mode): Use define-derived-mode.
778 * mail/mail-utils.el (mail-strip-quoted-names): Make the regexp code
779 work for nested comments.
781 * progmodes/prolog.el: Use syntax-propertize. Further code cleanup.
782 (prolog-use-prolog-tokenizer-flag): Change default when
783 syntax-propertize can be used.
784 (prolog-syntax-propertize-function): New var.
785 (prolog-mode-variables): Move make-local-variable into `set'.
786 Don't make comment-column local since we don't set it.
787 Set comment-add (as it was in previous prolog.el). Use dolist.
788 Set syntax-propertize-function.
789 (prolog-mode, prolog-inferior-mode):
790 Call prolog(-inferior)-menu directly, not through the mode-hook.
791 (prolog-buffer-module, prolog-indent-level)
792 (prolog-paren-is-the-first-on-line-p, prolog-paren-balance)
793 (prolog-comment-limits, prolog-goto-comment-column):
794 Use line-(end|beginning)-position.
795 (prolog-build-prolog-command): Tighten up regexp.
796 (prolog-consult-compile): Move make-local-variable into `set'.
797 (prolog-consult-compile-filter, prolog-goto-next-paren)
798 (prolog-help-on-predicate, prolog-clause-info)
799 (prolog-mark-predicate): Don't let+setq.
800 (prolog-indent-line): Use indent-line-to.
801 Only call prolog-goto-comment-column if necessary.
802 (prolog-indent-level): Use bobp.
803 (prolog-first-pos-on-line): Remove, not used any more.
804 (prolog-in-string-or-comment): Use syntax-ppss if available.
805 (prolog-help-on-predicate): Use read-string.
806 (prolog-goto-predicate-info): Simplify.
807 (prolog-read-predicate): Use `default' rather than `initial'.
808 (prolog-temporary-file): Use make-temp-file to close a security hole.
809 (prolog-toggle-sicstus-sd): New command.
810 (prolog-electric-underscore, prolog-variables-to-anonymous):
811 Use dynamic-scoping as it was meant.
812 (prolog-menu): Move menu definitions to top-level.
813 Use a toggle-button for Sicstus's source debugger.
814 Change "Code" to the more usual "Prolog", and hence change "Prolog"
816 (prolog-inferior-menu): Reuse prolog-menu's help menu.
817 Move other menu definition to top-level.
819 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
821 * doc-view.el (doc-view-open-text): Use meaningful text buffer
822 name. Keep original document's directory as default-directory
824 (doc-view-initiate-display): Fall back to normal mode when
825 doc-view-mode cannot be enabled, also when extracting the document
826 text into a separate buffer (bug#6446).
828 * simple.el (shell-command): Don't error out if shell command
829 buffer contains text with non-nil read-only property when erasing
832 2011-01-13 Kim F. Storm <storm@cua.dk>
834 * ido.el (ido-may-cache-directory): Move "too-big" check later.
835 (ido-next-match, ido-prev-match): Fix stray reordering of matching
836 items when cycling through the matches.
838 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
840 * dired-x.el (dired-omit-verbose): New defcustom that allows
841 disabling the omit messages.
842 (dired-omit-expunge): Use it.
844 2011-01-13 Christian Ohler <ohler@gnu.org>
846 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: New files.
848 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
850 * font-lock.el (font-lock-verbose): Default to nil.
852 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
854 * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
855 (compose-mail): New arg RETURN-ACTION.
856 (compose-mail-other-window, compose-mail-other-frame): Likewise.
858 * mail/sendmail.el (mail-return-action): New var.
859 (mail-mode): Make it buffer-local.
860 (mail-bury): Obey it. Move special Rmail window handling to
862 (mail, mail-setup): New arg RETURN-ACTION.
863 (sendmail-user-agent-compose): Move from simple.el.
865 * mail/rmail.el (rmail-mail-return): New function.
866 (rmail-start-mail): Pass it to compose-mail.
868 2011-01-12 Chong Yidong <cyd@stupidchicken.com>
870 * menu-bar.el (menu-bar-custom-menu): Tweak Mule and Customize
871 menus. Add menu item for customize-themes.
873 * cus-theme.el (customize-themes):
874 * emacs-lisp/package.el (package--list-packages):
875 Use switch-to-buffer.
877 2011-01-11 Johan Bockgård <bojohan@gnu.org>
879 * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
881 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
883 * progmodes/prolog.el: Fix up coding convention and such.
884 (prolog-indent-width): Use the same default as in
885 previous prolog.el rather than tab-width which depends on which buffer
886 is current when the file is loaded.
887 (prolog-electric-newline-flag): Only enable if electric-indent-mode
889 (prolog-emacs): Remove. Use (featurep 'xemacs) instead.
890 (prolog-known-systems): Remove.
891 (prolog-mode-syntax-table, prolog-inferior-mode-map):
892 Move initialization into declaration.
893 (prolog-mode-map): Move initialization into declaration.
894 Remove system-specific mode-map vars, since they referred to the same
896 (prolog-mode-variables): Obey the user's preference w.r.t
897 adaptive-fill-mode. Prefer symbol-value to `eval'.
898 (prolog-mode-keybindings-edit): Add compatibility bindings.
899 (prolog-mode): Use define-derived-mode. Don't handle mercury here.
900 (mercury-mode-map): New var.
901 (mercury-mode, prolog-inferior-mode): Use define-derived-mode.
902 (prolog-ensure-process, prolog-process-insert-string)
903 (prolog-consult-compile): Use with-current-buffer.
904 (prolog-guess-fill-prefix): Simplify data flow.
905 (prolog-replace-in-string): New function to use instead of
907 (prolog-enable-sicstus-sd): Don't abuse `eval'.
908 (prolog-uncomment-region): Use `uncomment-region' when available.
909 (prolog-electric-colon, prolog-electric-dash): Use `eolp'.
910 (prolog-int-to-char, prolog-char-to-int): New functions to use instead
911 of int-to-char and char-to-int.
912 (prolog-mode-hook, prolog-inferior-mode-hook): Don't force font-lock.
914 2011-01-11 Stefan Bruda <stefan@bruda.ca>
916 * progmodes/prolog.el: Replace by a whole new file.
918 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
920 * subr.el (eval-after-load): Fix timing for features (bug#7769).
921 (declare-function, undefined, insert-for-yank)
922 (replace-regexp-in-string): Follow checkdoc's recommendations.
924 2011-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
926 * calendar/diary-lib.el (diary-mode): Refresh *Calendar* after
927 refreshing the diary buffer.
929 2011-01-10 Ken Manheimer <ken.manheimer@gmail.com>
931 * allout.el: Add 2011 to the file copyright.
932 (allout-encrypt-string): Prevent encryption from adding an extra
933 newline at the end of the topic body.
934 (allout-version): Increment to 2.3.
936 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
938 * net/dbus.el (dbus-unregister-service): Complete doc.
939 Fix call of dbus-error signal.
940 (dbus-register-property): Use `dont-register' keyword.
942 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
944 * net/dbus.el (dbus-unregister-service): Translate returned
945 integer into a symbol.
946 (dbus-register-property): Use `dbus-register-service' to do the
949 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
951 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
952 Suggested by Joakim Verona.
954 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
956 * wid-edit.el (visibility): Replace :on-image and :off-image
957 widget properties with :on-glyph and :off-glyph, for consistency
958 with the `visibility' widget.
959 (widget-toggle-value-create, widget-visibility-value-create):
960 Merge into a single function `widget-toggle-value-create'.
962 * cus-edit.el (custom-variable-value-create, custom-visibility)
963 (custom-face-edit-value-create, custom-face-value-create):
964 Replace :on-image and :off-image widget properties with :on-glyph and
965 :off-glyph, for consistency with the `visibility' widget.
967 2011-01-09 Andreas Schwab <schwab@linux-m68k.org>
969 * net/ldap.el (ldap-search-internal): Don't use eval.
971 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
973 * subr.el (read-char-choice): Use read-key.
975 * custom.el (custom-safe-themes): Rename from
976 custom-safe-theme-files. Add :risky tag.
977 (load-theme, custom-theme-load-confirm): Save sha1 hashes to
978 custom-safe-themes, not filenames. Suggested by Stefan Monnier.
980 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
982 * tool-bar.el (tool-bar-setup): Remove Help button. Remove label
983 from Search and add a label to Undo.
985 * vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
986 inappropriate buttons and adding :vert-only tags.
988 * progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
989 removal of Help tool-bar button. Remove Undo button for space.
991 * info.el (info-tool-bar-map): Add :vert-only tags.
993 2011-01-08 Tassilo Horn <tassilo@member.fsf.org>
995 * doc-view.el (doc-view-mode-p): Check for png or imagemagick
996 image backend support. Either of them is fine.
998 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
1000 * subr.el (y-or-n-p): Doc fix.
1002 * custom.el (custom-safe-theme-files): New defcustom.
1003 (custom-theme-load-confirm): New function.
1004 (load-theme): Load theme using `load', confirming with
1005 custom-theme-load-confirm if necessary.
1007 * subr.el (read-char-choice): New function, factored out from
1008 dired-query and hack-local-variables-confirm.
1010 * dired-aux.el (dired-query):
1011 * files.el (hack-local-variables-confirm): Use it.
1013 * dired-aux.el (dired-compress-file):
1014 * files.el (abort-if-file-too-large, find-alternate-file)
1015 (set-visited-file-name, write-file, backup-buffer)
1016 (basic-save-buffer, basic-save-buffer-2, save-some-buffers)
1017 (delete-directory, revert-buffer, recover-file, kill-buffer-ask):
1018 Use new format string args for y-or-n-p and yes-or-no-p.
1020 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
1022 * progmodes/compile.el (compilation-error-regexp-alist-alist)
1023 [gcc-include]: Tighten file name match, add match for column
1025 [gnu]: Remove unused group.
1027 2011-01-08 Glenn Morris <rgm@gnu.org>
1029 * makefile.w32-in (EMACSOPT): Add --no-site-lisp.
1031 * makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
1033 2011-01-07 Sam Steingold <sds@gnu.org>
1035 * w32-fns.el (w32-shell-name): Use `shell-file-name' instead of
1036 the `explicit-shell-file-name' because that is the
1037 non-interactive shell.
1039 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
1041 * subr.el (y-or-n-p): Accept format string args.
1043 2011-01-07 Glenn Morris <rgm@gnu.org>
1045 * Makefile.in (EMACSOPT): Add --no-site-lisp.
1047 2011-01-06 Ken Manheimer <ken.manheimer@gmail.com>
1049 * allout.el (allout-back-to-current-heading): Ensure return to
1050 the visible containing topic, rather than a collapsed one.
1051 (allout-view-change-hook): Remove hook that was deprecated long ago.
1052 (allout-exposure-change-hook): Remove documentation remarks
1053 concerning removed allout-view-change-hook.
1054 (allout-flag-region): Remove invocation of and documentation
1055 remarks concerning allout-view-change-hook.
1057 2011-01-06 Glenn Morris <rgm@gnu.org>
1059 * vc/vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time)
1060 (vc-bzr-annotate-extract-revision-at-line):
1061 Handle authors with embedded spaces. (Bug#7792)
1063 2011-01-05 Tassilo Horn <tassilo@member.fsf.org>
1065 * doc-view.el (doc-view-image-width): New variable.
1066 (doc-view-enlarge, doc-view-insert-image): Prefer imagemagick
1067 backend for PNG images, and do dynamic rescaling instead of
1068 reconverting the whole doc.
1070 2011-01-05 Glenn Morris <rgm@gnu.org>
1072 * emacs-lisp/rx.el (rx-repeat): Replace CL function.
1074 2011-01-04 Ken Manheimer <ken.manheimer@gmail.com>
1076 * allout.el: Reconcile with changes in line movement behavior for
1077 long text lines that cross more than a single physical window
1078 line, ie when truncate-lines is nil.
1079 (allout-next-visible-heading): Provide for change in line-move
1080 behavior on long lines when truncate-lines is nil. In that case,
1081 line-move can wind up on the same textual line when it moves to
1082 the next window line, and moving to the bullet position after the
1083 move yields zero advancement. Add logic to detect and compensate
1084 for the lack of progress.
1085 (allout-current-topic-collapsed-p): move-end-of-line respect for
1086 field boundaries is different when operating with body lines
1087 shorter than window width versus ones greater than window width,
1088 which can yield false negatives in this function. Avoid
1089 difference by applying move-end-of-line while field-text-motion is
1092 2011-01-04 Glenn Morris <rgm@gnu.org>
1094 * textmodes/rst.el (rst-compile-toolsets):
1095 Add pdf and s5 to option alist.
1097 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
1099 * net/dbus.el (dbus-register-property): Add optional parameter
1100 dont-register-service. Updated docstring accordingly.
1102 2011-01-04 Andreas Schwab <schwab@linux-m68k.org>
1104 * textmodes/rst.el (rst-compile-pdf-preview)
1105 (rst-compile-slides-preview): Remove extra line.
1107 2011-01-04 Glenn Morris <rgm@gnu.org>
1109 * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
1110 Add `pdf' and `s5' entries. Use `prog.py' if found, otherwise
1111 default to `prog' without a .py extension.
1112 (rst-compile-pdf-preview, rst-compile-slides-preview):
1113 Use program names from rst-compile-toolsets, rather than hard-coding.
1114 (rst-portable-mark-active-p): Fix presumed typo.
1116 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1118 * term/w32-win.el (dynamic-library-alist): Set up correctly for
1119 libpng versions both before and after 1.4.0. (Bug#7716)
1121 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1123 * time.el (display-time-mode): Mention display-time-interval in
1124 the doc string. (Bug#7713)
1126 2011-01-02 Kenichi Handa <handa@m17n.org>
1128 * mail/rmailmm.el (rmail-mime-parse): Perform parsing in
1129 condition-case and return an error message string if something
1131 (rmail-show-mime): Adjust for the above change. Insert the
1132 header by rmail-mime-insert-header.
1134 2011-01-02 Kenichi Handa <handa@m17n.org>
1136 * mail/rmailmm.el: New key bindings for rmail-mime-next-item,
1137 rmail-mime-previous-item, and rmail-mime-toggle-hidden.
1138 (rmail-mime-mbox-buffer)
1139 (rmail-mime-view-buffer, rmail-mime-coding-system): New variables.
1140 (rmail-mime-entity): Argument changed. All codes handling an
1141 entity object are changed.
1142 (rmail-mime-entity-header, rmail-mime-entity-body): Adjust for
1144 (rmail-mime-entity-children, rmail-mime-entity-handler)
1145 (rmail-mime-entity-tagline): New functions.
1146 (rmail-mime-message-p): New function.
1147 (rmail-mime-save): Bind rmail-mime-mbox-buffer.
1148 (rmail-mime-entity-segment, rmail-mime-next-item)
1149 (rmail-mime-previous-item, rmail-mime-shown-mode)
1150 (rmail-mime-hidden-mode, rmail-mime-raw-mode)
1151 (rmail-mime-toggle-raw, rmail-mime-toggle-hidden)
1152 (rmail-mime-insert-tagline, rmail-mime-insert-header):
1154 (rmail-mime-text-handler): Call rmail-mime-insert-text.
1155 (rmail-mime-insert-decoded-text): New function.
1156 (rmail-mime-insert-text): Call rmail-mime-insert-decoded-text.
1157 (rmail-mime-insert-image): Argument changed. Caller changed.
1158 (rmail-mime-image): Call rmail-mime-toggle-hidden.
1159 (rmail-mime-set-bulk-data): New funciton.
1160 (rmail-mime-insert-bulk): Argument changed.
1161 (rmail-mime-multipart-handler): Return t.
1162 (rmail-mime-process-multipart): Argument changed.
1163 Handle "multipart/alternative" here.
1164 (rmail-mime-process): Argument changed.
1165 (rmail-mime-parse): Bind rmail-mime-mbox-buffer.
1166 (rmail-mime-insert): Argument changed. Handle raw display mode.
1167 (rmail-mime): Argument changed. Handle toggling of raw display
1169 (rmail-show-mime): Bind rmail-mime-mbox-buffer and
1170 rmail-mime-view-buffer.
1171 (rmail-insert-mime-forwarded-message): Likewise.
1172 (rmail-search-mime-message): Likewise. Don't bind rmail-buffer.
1174 * mail/rmail.el (rmail-show-message-1): If rmail-enable-mime is
1175 non-nil, handle the header in rmail-show-mime-function.
1177 2011-01-02 Leo <sdl.web@gmail.com>
1179 * help-fns.el (describe-variable): Fix previous change.
1181 2011-01-02 Juri Linkov <juri@jurta.org>
1183 * isearch.el (isearch-lazy-highlight-error): New variable.
1184 (isearch-lazy-highlight-new-loop): Compare `isearch-error' and
1185 `isearch-lazy-highlight-error'. Set `isearch-lazy-highlight-error'
1186 to the current value of `isearch-error' (Bug#7468).
1188 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
1190 * help-fns.el (describe-variable): Don't emit trailing whitespace
1193 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
1195 * textmodes/rst.el (rst-compile-pdf-preview)
1196 (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
1198 2011-01-02 Kevin Gallagher <Kevin.Gallagher@boeing.com>
1200 * emulation/edt-mapper.el: Override mapping of function keys so
1201 that the later call to read-key-sequence works.
1203 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1205 * mail/smtpmail.el (smtpmail-send-it): Write queued mail body with
1206 Unix EOLs. (Bug#7589)
1208 2011-01-02 Leo <sdl.web@gmail.com>
1210 * eshell/em-hist.el (eshell-previous-matching-input): Signal error
1211 if point is not behind eshell-last-output-end (Bug#7585).
1213 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
1215 * files.el (file-local-variables-alist):
1216 Make permanent-local (bug#7767).
1218 2011-01-02 Glenn Morris <rgm@gnu.org>
1220 * version.el (emacs-copyright): Set short copyright year to 2011.
1222 2011-01-02 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1224 * mail/mail-utils.el (mail-strip-quoted-names): Avoid clobbering
1225 an existing temp buffer. (Bug#7746)
1227 2011-01-02 Glenn Morris <rgm@gnu.org>
1229 * mail/mail-utils.el (mail-mbox-from): Handle From: headers with
1230 multiple addresses. (Bug#7760)
1232 2011-01-01 Ken Manheimer <ken.manheimer@gmail.com>
1234 * allout.el (allout-auto-fill): Do not infinitely recurse - use
1235 do-auto-fill if everything points back to allout-auto-fill.
1236 (allout-mode-deactivate-hook): Declare obsolete, in favor of
1237 standard-formed minor-mode deactivate hook, allout-mode-off-hook.
1239 2010-12-31 Michael Albinus <michael.albinus@gmx.de>
1241 * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
1244 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
1246 * doc-view.el (doc-view-set-doc-type): New function refactored
1248 (doc-view-fallback-mode): New function.
1249 (doc-view-mode): Use it.
1250 (doc-view-mode-maybe): New function that checks if doc-view-mode
1251 can be used and falls back to the next best mode otherwise.
1253 * files.el (auto-mode-alist): Use doc-view-mode-maybe for PDF,
1254 DVI, OpenDocument, and MS Office files.
1256 2010-12-30 Andreas Schwab <schwab@linux-m68k.org>
1258 * emacs-lisp/rx.el (rx-syntax): Fix typo.
1260 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
1262 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
1263 on a copy of auto-mode-alist, because that deletes with side
1266 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
1268 * doc-view.el (doc-view-mode, doc-view-toggle-display):
1269 Use normal-mode without doc-view-mode bindings in auto-mode-alist as
1270 fallback instead of hard coding fundamental mode.
1272 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
1274 * doc-view.el (doc-view-doc->txt): Handle OpenDocument (or MS
1275 Office) files also for searching.
1277 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
1279 * doc-view.el: Implement viewing of OpenDocument (and Microsoft
1280 Office) files. Not yet enabled via auto-mode-list.
1281 (doc-view-unoconv-program): New custom variable.
1282 (doc-view-mode-p): Handle new odf document type.
1283 (doc-view-odf->pdf): New conversion function.
1284 (doc-view-convert-current-doc): Call it for odf files.
1285 (doc-view-mode): Recognize newly supported file extensions.
1287 2010-12-30 Michael Albinus <michael.albinus@gmx.de>
1289 * net/tramp.el (tramp-default-method-alist)
1290 (tramp-default-user-alist)
1291 (tramp-local-host-regexp, tramp-prefix-domain-format)
1292 (tramp-prefix-domain-regexp): Set tramp-autoload cookie.
1295 * net/tramp-gvfs.el:
1297 * net/tramp-imap.el:
1299 * net/tramp-smb.el: Add tramp-autoload cookie for initialisation
1300 code of `tramp-default-method-alist' and `tramp-default-user-alist'.
1302 2010-12-29 Karl Fogel <kfogel@red-bean.com>
1304 * saveplace.el (save-place-alist-to-file): Save list sorted and
1305 pretty-printed, so that it is mergeable by line-based text merging,
1306 as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
1308 2010-12-28 Ken Manheimer <ken.manheimer@gmail.com>
1310 * allout.el (allout-v18/19-file-var-hack): Obsolete, remove.
1311 (allout-mode): Argument "toggle" => "force".
1312 Refine the docstring.
1313 Remove special provisions for reactivation, besides the 'force'
1315 Consolidate layout provisions coce directly into the activation
1316 condition branch, now that we've removed those provisions.
1317 (allout-unload-function): Explicitly activate the mode before
1318 deactivating, if it's initially deactivated.
1319 (allout-set-buffer-multibyte): Properly prevent byte-compiler
1320 warnings for version of function used only where
1321 set-buffer-multibyte is unavailable.
1323 2010-12-28 Chong Yidong <cyd@stupidchicken.com>
1325 * tool-bar.el (tool-bar-setup): Remove :enable conditions, which
1326 are handled by the menu-bar entries. As before, don't use
1327 :visibile to avoid changing the tool-bar.
1329 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
1331 * net/secrets.el (secrets-delete-alias): New defun.
1333 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
1335 * net/tramp.el (tramp-default-user-alist): Do not add "ssh" based
1336 methods, otherwise ~/.ssh/config would be ignored.
1338 2010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
1340 * emacs-lisp/rx.el: Make it a superset of sregex.
1341 (rx-constituents): Add `any => "."', mark `repeat' as taking any number
1342 of args, add `regex' alias.
1343 (rx-info): Add arg to distinguish head and standalone forms.
1344 (rx-check, rx-form): Pass the corresponding arg.
1346 (rx-repeat): Make it work for any number of args.
1347 (rx-syntax): Make it accept syntax chars as is.
1348 * obsolete/sregex.el: Move from emacs-lisp/.
1349 * emacs-lisp/re-builder.el: Remove sregex support.
1350 * emacs-lisp/edebug.el (sregexq, rx): Remove redundant defs.
1352 2010-12-25 Eli Zaretskii <eliz@gnu.org>
1354 * mouse.el (mouse-yank-primary): On MS-Windows, try the (emulated)
1355 PRIMARY first, then the clipboard. (Bug#7699)
1357 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
1359 * emacs-lisp/bytecomp.el (byte-compile-output-docform): Fix up use of
1362 2010-12-21 Chong Yidong <cyd@stupidchicken.com>
1364 * help-fns.el (find-lisp-object-file-name): Locate .emacs from
1365 .emacs.elc (Bug#7530).
1367 * wid-edit.el (widget-image-find): Remove bogus :ascent spec from
1368 image spec (Bug#7480).
1370 2010-12-21 Daiki Ueno <ueno@unixuser.org>
1372 * obsolete/pgg-parse.el, obsolete/pgg-pgp5.el, obsolete/pgg-pgp.el,
1373 * obsolete/pgg-gpg.el, obsolete/pgg-def.el, obsolete/pgg.el:
1376 2010-12-20 Leo <sdl.web@gmail.com>
1378 * dnd.el (dnd-get-local-file-name): Unhex of file name shall
1379 always be performed (Bug#7680).
1381 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
1383 * menu-bar.el (menu-bar-kill-ring-save): Make obsolete.
1384 (menu-bar-edit-menu): Bind "Copy" to kill-ring-save. Don't use
1387 * color.el: Move from gnus/.
1389 * vc/diff.el (diff-better-file-name): Function deleted.
1390 abbreviating file names causes problems with shell-quote-argument.
1391 (diff-no-select): Just use expand-file-name.
1393 * tool-bar.el (tool-bar--image-expression): New function.
1394 (tool-bar-local-item, tool-bar--image-exp): Use it.
1395 (tool-bar-setup): Initialize tool-bar-separator-image-expression.
1396 Use :enable instead of :visible to avoid changing the tool-bar
1397 configuration unnecessarily.
1399 * info.el (info-tool-bar-map): Add separators.
1401 2010-12-17 Ken Brown <kbrown@cornell.edu>
1403 * loadup.el: Use version numbers in Cygwin build.
1405 2010-12-17 Ryan Twitchell <metatheorem@gmail.com> (tiny change)
1407 * ido.el (ido-file-internal): Ask for confirmation before
1408 overwriting an existing file (Bug#1238).
1410 2010-12-16 Chong Yidong <cyd@stupidchicken.com>
1412 * tool-bar.el (tool-bar-setup): Add separators.
1414 * menu-bar.el (featurep): Use menu-bar-separator.
1416 2010-12-16 Ken Manheimer <ken.manheimer@gmail.com>
1418 Migrate allout encryption provisions from pgg to epg.
1420 * allout.el (allout-toggle-current-subtree-encryption)
1421 (allout-toggle-subtree-encryption): Adjust docstrings to reflect
1422 defaulting policy and other changes. Change fetch-pass to keymode-cue,
1423 for simpler universal argument interpretation.
1424 (allout-toggle-subtree-encryption): Adjust docstring to describe
1425 changed encryption provisions. Change fetch-pass to keymode-cue, for
1426 simpler universal argument interpretation. Remove provisions for
1427 handling key type and identity - they'll all be within
1428 allout-encrypt-string or epg/epg or even contained all the way in gpg.
1429 (allout-encrypt-string): Include keymode-cue, for optionally prompting
1430 for keypair recipients (universal argument > 1) and, in addition,
1431 associating the specified recipients with the outline (universal
1432 argument > 4) using a file local variable setting for
1433 'epa-file-encrypt-to'.
1434 Require epa, for recipients handling.
1435 Change how regexp filtering elements are named.
1436 Describe the problem with caching of incorrect symmetric-decryption
1438 Use the epa-passphrase-callback-function, in case the user is using
1440 Support saving of the selected keypair recipients when invoked with a
1442 Remove obsolete arguments 'fetch-pass', 'target-cache-id', 'retried'.
1444 Establish epg-context with armoring and default epg-protocol.
1445 Remove all passphrase cache, verification, and hinting code.
1446 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling):
1447 No longer used, delete.
1448 (allout-mode): Adjust docstring to describe changed encryption
1449 provisions. Describe the problem with caching of incorrect
1450 symmetric-decryption keys.
1451 (allout-obtain-passphrase, allout-epg-passphrase-callback-function)
1452 (allout-make-passphrase-state, allout-passphrase-state-passphrase)
1453 (allout-encrypted-key-info, allout-update-passphrase-mnemonic-aids)
1454 (allout-get-encryption-passphrase-verifier, allout-verify-passphrase):
1457 2010-12-16 Daiki Ueno <ueno@unixuser.org>
1459 * epa-file.el (epa-file-select-keys): Accept 'silent to inhibit
1460 key selection prompt; make 'silent as default (Bug#7487).
1462 2010-12-16 Leo <sdl.web@gmail.com>
1464 * eshell/eshell.el (eshell-directory-name):
1465 Use locate-user-emacs-file (Bug#7578).
1467 2010-12-15 Glenn Morris <rgm@gnu.org>
1469 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
1471 2010-12-15 Jari Aalto <jari.aalto@cante.net>
1472 Scott Evans <gse@antisleep.com>
1474 * rect.el (rectange--default-line-number-format)
1475 (rectangle-number-line-callback): New functions.
1476 (rectangle-number-lines): New command, bound to C-x r N (Bug#4382).
1478 2010-12-15 Chong Yidong <cyd@stupidchicken.com>
1480 * rect.el (operate-on-rectangle-lines, string-rectangle-string):
1481 Delete unused variables.
1482 (move-to-column-force): Remove function obsolete since 21.2.
1484 2010-12-14 Michael Albinus <michael.albinus@gmx.de>
1486 * net/tramp.el (tramp-temp-buffer-file-name): Make it permanent-local.
1487 (tramp-handle-insert-file-contents): Do not set permanent-local
1490 * net/tramp-cache.el (tramp-persistency-file-name):
1491 Use `locate-user-emacs-file' if fboundp.
1493 * net/tramp-sh.el (tramp-methods): Add "ksu".
1494 (tramp-default-user-alist): Add "ksu". Use `regexp-opt' for
1497 2010-12-14 Glenn Morris <rgm@gnu.org>
1499 * progmodes/js.el: Doc't require font-lock, etags, or easymenu.
1500 (find-tag-marker-ring): Declare.
1501 (js-find-symbol): Require etags.
1503 * mail/sendmail.el: Don't require rmail or mailalias when compiling.
1505 (mail-alias-file): Don't autoload. Doc fix.
1506 (mail-bury-selects-summary, mail-send-nonascii): Don't autoload.
1507 (mail-mailer-swallows-blank-line): Default to nil. Doc fix.
1508 Mark as obsolete, and risky.
1509 (mail-setup): Simplify.
1511 * mail/mailalias.el (build-mail-aliases): Make it interactive.
1512 * mail/sendmail.el (build-mail-aliases): Update autoload.
1514 * dired.el (dired-trivial-filenames, dired-chown-program)
1515 (dired-auto-revert-buffer): Remove autoload cookies.
1516 * mail/sendmail.el (mail-recover-1): Require 'dired.
1518 * dired.el (dired-subdir-switches, dired-chown-program)
1519 (dired-use-ls-dired, dired-chmod-program, dired-touch-program):
1520 Make into defcustoms.
1521 (dired-chown-program): Simplify initialization.
1523 * mail/mail-utils.el: No need to require lisp-mode, it's in loadup.
1525 2010-12-13 Romain Francoise <romain@orebokech.com>
1527 * net/gnutls.el (gnutls-negotiate): Fix setting of default trustfiles.
1529 2010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1531 * net/netrc.el (netrc-point-at-eol): Remove the unused
1532 netrc-point-at-old and netrc-bound-and-true-p bindings.
1533 (netrc-parse): Cache the netrc contents.
1535 2010-12-13 Eli Zaretskii <eliz@gnu.org>
1537 * subr.el (posn-col-row): Evaluate header-line-format in the
1538 context of the POSITION window's buffer.
1540 2010-12-13 Glenn Morris <rgm@gnu.org>
1542 * subr.el (member-ignore-case, run-mode-hooks, insert-for-yank-1)
1543 (with-silent-modifications): Doc fixes.
1545 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
1547 * net/tramp.el (tramp-action-password, tramp-process-actions):
1548 Revert previous from. Use `save-restriction'.
1550 2010-12-13 Stephen Berman <stephen.berman@gmx.net>
1552 * calendar/diary-lib.el (diary-list-sexp-entries):
1553 Handle case of no newline at end of file. (Bug#7536)
1555 2010-12-13 Glenn Morris <rgm@gnu.org>
1557 * mail/smtpmail.el (smtpmail-send-it): Revert previous change.
1559 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
1561 * net/tramp.el (tramp-action-password): Delete region, do not narrow.
1562 (tramp-process-actions): Do not widen.
1564 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1565 Protect buffer-modified value. (Bug#7557)
1567 2010-12-13 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
1569 * log-edit.el (log-edit-changelog-entries):
1570 Regexp quote filename. (Bug#7505)
1572 2010-12-13 Tom Breton <tehom@panix.com>
1574 * cus-edit.el (custom-save-all):
1575 Bind print-length and print-level to nil. (Bug#7581)
1577 2010-12-13 Glenn Morris <rgm@gnu.org>
1579 * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
1580 Run hooks to update menu contents. (Bug#7586)
1582 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
1583 file names, for the sake of MS Windows. (Bug#7588)
1585 2010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
1587 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
1588 empty lines without a leading space.
1590 2010-12-13 Leo <sdl.web@gmail.com>
1592 * dired-aux.el (dired-do-redisplay): Postpone dired-after-readin-hook
1593 while mapping over marks (Bug#6810).
1595 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
1597 * image-dired.el (image-dired-db-file)
1598 (image-dired-temp-image-file, image-dired-gallery-dir)
1599 (image-dired-temp-rotate-image-file): Set default values relative
1600 to image-dired-dir (Bug#7518).
1602 2010-12-13 Lawrence Mitchell <wence@gmx.li>
1604 * format.el (format-decode-run-method): Pass args FROM and TO, not
1605 point-min and point-max, to shell-command-on-region (Bug#7488).
1607 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
1609 * frame.el (blink-cursor-mode): Make default t for ns.
1611 2010-12-13 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1613 * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
1615 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
1617 * comint.el (comint-dynamic-list-input-ring)
1618 (comint-dynamic-complete-filename)
1619 (comint-replace-by-expanded-filename)
1620 (comint-dynamic-simple-complete)
1621 (comint-dynamic-list-filename-completions)
1622 (comint-dynamic-list-completions): Doc fix (Bug#7499).
1624 * subr.el (posn-x-y, posn-object-x-y, posn-object-width-height):
1627 2010-12-13 Martin Rudalics <rudalics@gmx.at>
1629 * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil
1632 2010-12-13 W. Martin Borgert <debacle@debian.org> (tiny change)
1634 * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode.
1637 2010-12-13 Eli Zaretskii <eliz@gnu.org>
1639 * files.el (file-relative-name): Handle UNC file names on
1640 DOS/Windows. (Bug#4674)
1642 2010-12-13 Daiki Ueno <ueno@unixuser.org>
1644 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
1645 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
1646 (epg-context-set-passphrase-callback): Mention that the callback
1647 is not called when used with GnuPG 2.x.
1649 2010-12-13 Glenn Morris <rgm@gnu.org>
1651 * ps-print.el (ps-line-lengths-internal, ps-nb-pages):
1652 Ensure ps-footer-font-size-internal is initialized.
1653 Call ps-get-page-dimensions before trying to use ps-font-for-text.
1655 2010-12-13 Kenichi Handa <handa@m17n.org>
1657 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
1658 within condition-case.
1659 (rmail-show-mime): Don't use condition-case.
1660 (rmail-search-mime-message): New function.
1661 (rmail-search-mime-message-function): Set to
1662 rmail-search-mime-message.
1664 2010-12-13 Leo <sdl.web@gmail.com>
1666 * ido.el (ido-common-initialization): New function. (bug#3274)
1668 (ido-completing-read): Call it.
1670 2010-12-12 Karl Fogel <kfogel@red-bean.com>
1672 * bookmark.el (bookmark-name-from-full-record): Rename back to
1673 this original name from `bookmark-name-from-record' reverting part
1674 of 2010-12-08T08:09:27Z!kfogel@red-bean.com / kfogel@red-bean.com-20101208080927-5j9jqnb2xvcw4ogm.
1675 As Drew Adams pointed out, there was no reason to cause churn for
1676 third-party callers.
1678 2010-12-12 Alan Mackenzie <acm@muc.de>
1680 * progmodes/cc-engine.el (c-forward-type): Before scanning a
1681 template arglist, check that the current language supports this.
1683 2010-12-11 Glenn Morris <rgm@gnu.org>
1685 * vc/vc-bzr.el (vc-bzr-state-heuristic): Also check that the executable
1686 state of the file matches. (Bug#7544)
1687 (vc-bzr-register, vc-bzr-checkin)
1688 (vc-bzr-annotate-extract-revision-at-line): Doc fixes.
1689 (vc-directory-exclusion-list): Remove unnecessary eval-after-load.
1691 * textmodes/sgml-mode.el (sgml-xml-guess): Add .xhtml extension.
1693 2010-12-11 Karel Klíč <kklic@redhat.com>
1695 * files.el (auto-mode-alist): Use html-mode for *.xhtml. (Bug#7606)
1697 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1699 Derive from prog-mode, use derived-mode-p, and fix up various
1700 minor style issues in lisp/progmodes.
1702 * progmodes/vhdl-mode.el (vhdl-mode):
1703 * progmodes/verilog-mode.el (verilog-mode):
1704 * progmodes/vera-mode.el (vera-mode):
1705 * progmodes/sql.el (sql-mode):
1706 * progmodes/scheme.el (scheme-mode):
1707 * progmodes/perl-mode.el (perl-mode):
1708 * progmodes/octave-inf.el (inferior-octave-mode):
1709 * progmodes/autoconf.el (autoconf-mode):
1710 * progmodes/m4-mode.el (m4-mode):
1711 * progmodes/inf-lisp.el (inferior-lisp-mode):
1712 * progmodes/idlwave.el (idlwave-mode):
1713 * progmodes/icon.el (icon-mode):
1714 * progmodes/idlw-help.el (idlwave-help-mode):
1715 * progmodes/dcl-mode.el (dcl-mode):
1716 * progmodes/idlw-shell.el (idlwave-shell-mode):
1717 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
1718 (ebrowse-member-mode, ebrowse-electric-position-mode):
1719 Use define-derived-mode.
1721 * progmodes/xscheme.el (exit-scheme-interaction-mode)
1722 (xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
1723 (xscheme-debugger-mode-p, xscheme-send-string-1):
1724 * progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
1725 (tcl-load-file, tcl-restart-with-file):
1726 * progmodes/ps-mode.el (ps-run-running):
1727 * progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
1728 * progmodes/js.el (js--get-all-known-symbols):
1729 * progmodes/inf-lisp.el (inferior-lisp-proc):
1730 * progmodes/idlwave.el (idlwave-beginning-of-statement)
1731 (idlwave-template, idlwave-update-buffer-routine-info)
1732 (idlwave-update-current-buffer-info)
1733 (idlwave-get-routine-info-from-buffers, idlwave-choose)
1734 (idlwave-scan-class-info, idlwave-fix-keywords)
1735 (idlwave-list-buffer-load-path-shadows):
1736 * progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
1737 (idlwave-toolbar-remove):
1738 * progmodes/idlw-shell.el (idlwave-shell-save-and-action)
1739 (idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
1740 (idlwave-shell-menu-def):
1741 * progmodes/idlw-complete-structtag.el
1742 (idlwave-prepare-structure-tag-completion):
1743 * progmodes/gud.el (gud-set-buffer):
1744 * progmodes/f90.el (f90-backslash-not-special):
1745 * progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
1747 * progmodes/xscheme.el (xscheme-start)
1748 (local-set-scheme-interaction-buffer, scheme-interaction-mode):
1749 * progmodes/which-func.el (which-function):
1750 * progmodes/vhdl-mode.el (vhdl-set-style):
1751 * progmodes/verilog-mode.el (verilog-set-compile-command)
1752 (verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
1753 (verilog-set-define, verilog-auto-reeval-locals):
1754 * progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
1755 * progmodes/simula.el (simula-mode):
1756 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
1757 * progmodes/python.el (python-check, python-mode):
1758 * progmodes/prolog.el (prolog-mode-variables):
1759 * progmodes/gud.el (gud-tooltip-activate-mouse-motions):
1760 * progmodes/ebrowse.el (ebrowse-view-file-other-frame):
1761 * progmodes/delphi.el (delphi-mode):
1762 * progmodes/cc-styles.el (c-setup-paragraph-variables):
1763 * progmodes/cc-mode.el (c-basic-common-init, c-common-init)
1764 (c-font-lock-init): Move make-local-variable to their setq.
1766 * progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
1767 (vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
1769 * progmodes/sh-script.el (sh-require-final-newline): Remove.
1770 (sh-set-shell): Don't set require-final-newline since it's already done
1772 * progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
1773 since we never set it.
1774 * progmodes/ebrowse.el (ebrowse-set-tree-indentation):
1775 Use read-string and standard prompt.
1776 * progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
1777 * progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
1778 (meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
1779 (meta-common-mode-map): Rename from meta-mode-map.
1780 Remove C-m binding, which is a user preference, not mode specific.
1781 (meta-common-mode): New major mode; replace meta-common-initialization.
1782 * progmodes/js.el (js-mode): Call syntax-propertize rather than messing
1783 around with font-lock.
1784 * progmodes/etags.el (select-tags-table-mode):
1785 Derive from special-mode.
1786 * progmodes/octave-mod.el (octave-mode):
1787 * progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
1788 (gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
1789 (gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
1790 Let define-derived-mode do its job.
1791 * progmodes/cpp.el (cpp-edit-mode-map):
1792 Move initialization into declaration.
1793 (cpp-edit-mode): Use define-derived-mode.
1794 (cpp-edit-load): Use derived-mode-p.
1795 * progmodes/mixal-mode.el (mixal-mode):
1796 * progmodes/f90.el (f90-mode):
1797 * progmodes/cfengine.el (cfengine-mode): Don't bother setting
1798 require-final-newline since prog-mode does it already.
1799 * progmodes/cc-cmds.el (c-update-modeline): Use match-string.
1800 * progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
1801 * progmodes/antlr-mode.el: Require cc-mode upfront.
1802 (antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
1804 (antlr-directory-dependencies, antlr-show-makefile-rules):
1806 (antlr-language-option): Don't assume point-min==1.
1807 (antlr-mode): Use define-derived-mode.
1808 * progmodes/ada-mode.el: Use derived-mode-p.
1809 (ada-mode): Use define-derived-mode.
1810 Use hack-local-variables-hook.
1812 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1814 * textmodes/texinfo.el (texinfo-mode-map): Bind texinfo-insert-@end.
1815 (texinfo-mode): Don't disable adaptive-fill-mode.
1816 (texinfo-insert-block): Adjust cursor placement for blocks with arg.
1817 (texinfo-insert-@end, texinfo-insert-braces, texinfo-insert-@code)
1818 (texinfo-insert-@dfn, texinfo-insert-@email, texinfo-insert-@emph)
1819 (texinfo-insert-@example, texinfo-insert-@file, texinfo-insert-@item)
1820 (texinfo-insert-@kbd, texinfo-insert-@node, texinfo-insert-@noindent)
1821 (texinfo-insert-@quotation, texinfo-insert-@samp)
1822 (texinfo-insert-@strong, texinfo-insert-@table, texinfo-insert-@var)
1823 (texinfo-insert-@uref): Use define-skeleton.
1824 (texinfo-insert-@-with-arg): Delete.
1826 2010-12-10 Eli Zaretskii <eliz@gnu.org>
1828 * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
1829 nil, do quote archive member names. (Bug#6144)
1831 2010-12-10 Glenn Morris <rgm@gnu.org>
1833 * files.el (diff-no-select): Declare.
1835 * mail/emacsbug.el (report-emacs-bug): Use mail-user-agent properties.
1836 (report-emacs-bug-create-existing-bugs-buffer): Avoid free variables.
1838 * comint.el (comint-input-ring-file-name): Doc fix.
1840 2010-12-09 Eli Zaretskii <eliz@gnu.org>
1842 * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
1844 (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>:
1845 Use them instead of `nil' and `>', respectively.
1846 (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
1848 (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
1849 and menu-bar-positive-p instead of `nil' and `>', respectively.
1852 2010-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1854 * whitespace.el (whitespace-newline-mode): Code fix.
1856 2010-12-09 Glenn Morris <rgm@gnu.org>
1858 * play/landmark.el (lm-print-y,s,noise-int, lm-print-y,s,noise):
1859 Rename functions without commas, update callers.
1861 2010-12-08 Jeff Dairiki <dairiki@dairiki.org> (tiny change)
1863 * whitespace.el (whitespace-cleanup-region):
1864 Clean up spaces before tabs. (Bug#7582)
1866 2010-12-08 Karl Fogel <kfogel@red-bean.com>
1868 * bookmark.el: Adjust parameter names and doc strings to resolve
1869 confusion over whether "bookmark" meant a bookmark name or a
1870 bookmark record. Along the way, shorten one function's name for
1871 similar reasons. (Issue #7548)
1872 (bookmark-name-from-record): New name for
1873 `bookmark-name-from-full-record'. All callers changed.
1874 (bookmark-get-bookmark, bookmark-get-bookmark-record)
1875 (bookmark-default-annotation-text, bookmark-prop-get, bookmark-prop-set)
1876 (bookmark-get-annotation, bookmark-set-annotation)
1877 (bookmark-get-filename, bookmark-set-filename)
1878 (bookmark-get-position, bookmark-set-position)
1879 (bookmark-get-front-context-string, bookmark-set-front-context-string)
1880 (bookmark-get-rear-context-string, bookmark-set-rear-context-string)
1881 (bookmark-get-handler, bookmark-edit-annotation, bookmark--jump-via)
1882 (bookmark-handle-bookmark, bookmark-location, bookmark-show-annotation):
1883 Rename `bookmark' parameter to `bookmark-name-or-record', to
1884 clearly show its role, and shorten or adjust doc strings accordingly.
1885 (bookmark-set-name): Same, and pass the parameter directly to
1886 `bookmark-get-bookmark' instead of redundantly doing the callee's work.
1887 (bookmark-default-annotation-text, bookmark-send-edited-annotation)
1888 (bookmark-relocate, bookmark-insert-location, bookmark-insert)
1889 (bookmark-delete): Rename `bookmark' parameter to `bookmark-name',
1890 and in some cases shorten doc string accordingly.
1891 (bookmark-rename): Change `old' and `new' parameters to `old-name'
1892 and `new-name', and adjust an internal variable to avoid confusion.
1893 (bookmark-jump, bookmark-jump-noselect): Clarify `bookmark'
1894 parameter in doc string.
1896 2010-12-08 Glenn Morris <rgm@gnu.org>
1898 * progmodes/gdb-mi.el (gdb): Try to initialize comint input history
1899 from gdb's history file. (Bug#7575)
1901 * mail/emacsbug.el (report-emacs-bug):
1902 Try to handle some other mail clients.
1904 2010-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
1906 * files.el (dir-locals-collect-variables): Don't let errors stop us.
1907 Use string-prefix-p.
1908 (file-name-version-regexp): New var.
1909 (file-name-sans-versions):
1910 * jka-cmpr-hook.el (jka-compr-build-file-regexp): Use it,
1911 (jka-compr-get-compression-info): Use dolist.
1912 (jka-compr-compression-info-list): Don't bother specifying
1913 version/backup regexps.
1915 2010-12-07 Tassilo Horn <tassilo@member.fsf.org>
1917 * simple.el (just-one-space): Make argument n default to 1 if
1920 2010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
1922 * electric.el (electric-indent-post-self-insert-function):
1923 Delete trailing newlines even if we don't reindent.
1925 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1927 * minibuffer.el (completion-at-point): Remove the `arg'.
1928 * bindings.el (complete-symbol): Move back from minibuffer.el.
1930 2010-12-06 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1932 * simple.el (just-one-space): Delete newlines for negative arg.
1934 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1936 * ansi-color.el (ansi-color-unfontify-region): Replace by trivial def.
1937 (ansi-color-filter-apply): Simplify.
1938 (ansi-color-apply): Use `font-lock-face' rather than `face'.
1940 2010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1942 * vc/vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
1944 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
1946 * dired.el (dired-use-ls-dired): Set default to a special
1947 "unspecified" value.
1948 (dired-insert-directory): When called the first time, check
1949 whether "ls --dired" succeeds and set dired-use-ls-dired (Bug#7546).
1951 2010-12-04 Tak Ota <Takaaki.Ota@am.sony.com>
1953 * replace.el: Add "collect" feature to occur.
1954 (occur-collect-regexp-history): New var.
1955 (occur-read-primary-args): Return a replace string for nlines,
1957 (occur): Extend the meaning of nlines.
1959 2010-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
1961 * progmodes/which-func.el (which-func-ff-hook): Log the error message.
1962 (which-func-update-1): Distinguish symbols from strings.
1963 (which-function): Stay within 80 columns.
1965 2010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
1967 * subr.el (with-demoted-errors): Distinguish symbols from strings.
1969 * newcomment.el (comment-styles): Add docs to each style (bug#7509).
1971 (comment-style): Use comment-styles's docs to describe values.
1973 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
1975 * term/common-win.el (x-setup-function-keys): Restore ns-new-frame
1976 and ns-show-prefs (Bug#7535).
1978 * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
1979 bindings (Bug#7535).
1981 2010-12-03 Glenn Morris <rgm@gnu.org>
1983 * nxml/nxml-mode.el: Require rng-nxml.
1984 (rng-nxml-mode-init, nxml-enable-unicode-char-name-sets):
1985 Remove declarations.
1987 * nxml/nxml-mode.el, nxml/nxml-outln.el, nxml/rng-loc.el:
1988 * nxml/rng-nxml.el, nxml/rng-valid.el:
1989 Remove leading `*' from defcustom docs.
1991 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
1992 (normal-top-level-add-to-load-path, tty-handle-args):
1993 Convert comments to basic doc-strings.
1995 * net/browse-url.el (browse-url-url-at-point)
1996 (browse-url-default-browser): Remove autoload cookies.
1998 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
1999 Remove more undefined cl functions.
2001 * vc/diff.el (diff-sentinel): Make new arguments optional.
2002 * ibuf-ext.el (diff-sentinel): Update declaration.
2004 2010-12-03 Daiki Ueno <ueno@unixuser.org>
2006 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
2007 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
2008 (epg-context-set-passphrase-callback): Mention that the callback
2009 is not called when used with GnuPG 2.x.
2011 2010-12-02 Michael Albinus <michael.albinus@gmx.de>
2013 * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
2014 (tramp-file-name-port): Check also for `tramp-default-port'.
2015 (tramp-get-connection-name): New defun.
2016 (tramp-get-connection-process): Use it.
2017 (tramp-debug-message): Extend function exclude list.
2018 (tramp-drop-volume-letter): Fix doc string.
2020 * net/tramp-cmds.el: Remove solved todo item.
2024 * net/tramp-gvfs.el:
2026 * net/tramp-imap.el:
2027 * net/tramp-smb.el: Fix regexps added to `tramp-default-method-alist'
2028 and `tramp-default-user-alist', respectively.
2030 * net/tramp-gw.el (tramp-gw-open-connection):
2031 Use `tramp-get-connection-name' and `tramp-get-connection-buffer'.
2033 * net/tramp-imap.el (tramp-imap-make-iht): Use just
2034 `tramp-file-name-port'.
2036 * net/tramp-sh.el (tramp-methods): Add recursive options to "pscp"
2037 and "psftp". Exchange "%k" marker with options.
2038 (tramp-do-copy-or-rename-file, tramp-sh-handle-file-local-copy):
2039 Compute size of link target.
2040 (tramp-do-copy-or-rename-file-out-of-band). Move setting of
2041 `tramp-current-*' up due to gateway methods. Optimze computing of
2042 copy arguments. Use `tramp-get-connection-name' and
2043 `tramp-get-connection-buffer'. Improve debug messages.
2044 (tramp-compute-multi-hops): Remove port determination.
2045 (tramp-maybe-open-connection): Use `tramp-get-connection-name'.
2047 * net/trampver.el: Update release number.
2049 2010-12-02 Glenn Morris <rgm@gnu.org>
2051 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
2052 Avoid infinite loop over windows. (Bug#7492)
2054 * progmodes/flymake.el (flymake-check-file-limit):
2055 Allow nil to mean "no limit".
2056 (flymake-check-patch-master-file-buffer): Update for above change.
2057 Allow a .tex file-name extension to be optional.
2058 (flymake-master-tex-init): Also match \include statements.
2060 2010-11-30 Sam Steingold <sds@gnu.org>
2062 * nxml/nxml-mode.el (nxml-parent-document): Add a variable.
2063 (nxml-parent-document-set): A function to set `nxml-parent-document'.
2064 (nxml-mode): Define using `define-derived-mode' instead of `defun'.
2065 (nxml-mode-hook): Remove `defcustom' (auto-defined by
2066 define-derived-mode').
2067 * nxml/rng-valid.el (rng-dtd-trivial-p): Add a helper function for
2068 users who want to call `nxml-parent-document-set'.
2070 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
2072 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
2073 stand-alone lines, since that is handled by log-edit-match-to-eoh
2076 2010-11-27 Eduard Wiebe <usenet@pusto.de>
2078 * dired.el (dired-get-filename): Replace backslashes with slashes
2079 in file names on MS-Windows, needed by `locate'. (Bug#7308)
2080 * locate.el (locate-default-make-command-line): Don't consider
2081 drive letter and root directory part of
2082 `directory-listing-before-filename-regexp'. (Bug#7308)
2083 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
2085 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2087 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
2088 of :smie-open/close-alist.
2089 (smie-next-sexp): Make it accept a "start token" as argument.
2090 (smie-indent-keyword): Be careful not to misidentify tokens that span
2091 more than one line, as empty lines. Add argument `token'.
2093 2010-11-27 Kenichi Handa <handa@m17n.org>
2095 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
2096 multipart subtypes, insert all as usual.
2098 * mail/rmail.el: Require rfc2047.
2100 2010-11-27 Kenichi Handa <handa@m17n.org>
2102 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
2103 (rmail-mime-entity-disposition)
2104 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
2105 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
2106 (rmail-mime-save): Handle the case that the button's `data' is a
2108 (rmail-mime-insert-text): New function.
2109 (rmail-mime-insert-image): Handle the case that DATA is a MIME entity.
2110 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
2111 (rmail-mime-insert-bulk): New function mostly copied from the old
2112 rmail-mime-bulk-handler.
2113 (rmail-mime-multipart-handler): Just call rmail-mime-process-multipart.
2114 (rmail-mime-process-multipart): New function mostly copied from
2115 the old rmail-mime-multipart-handler.
2116 (rmail-mime-show): Just call rmail-mime-process.
2117 (rmail-mime-process): New function mostly copied from the old
2119 (rmail-mime-insert-multipart, rmail-mime-parse)
2120 (rmail-mime-insert, rmail-show-mime)
2121 (rmail-insert-mime-forwarded-message)
2122 (rmail-insert-mime-resent-message): New functions.
2123 (rmail-insert-mime-forwarded-message-function): Set to
2124 rmail-insert-mime-forwarded-message.
2125 (rmail-insert-mime-resent-message-function): Set to
2126 rmail-insert-mime-resent-message.
2128 * mail/rmailsum.el: Require rfc2047.
2129 (rmail-header-summary): Handle multiline Subject: field.
2130 (rmail-summary-line-decoder): Change the default to
2131 rfc2047-decode-string.
2133 * mail/rmail.el (rmail-enable-mime): Change the default to t.
2134 (rmail-mime-feature): Change the default to `rmailmm'.
2135 (rmail-quit): Delete the specifal code for rmail-enable-mime.
2136 (rmail-display-labels): Likewise.
2137 (rmail-show-message-1): Check rmail-enable-mime, and use
2138 rmail-show-mime-function for a MIME message. Decode the headers
2139 according to RFC2047.
2141 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2143 * progmodes/which-func.el (which-func-imenu-joiner-function):
2144 Return a string, as expected.
2145 (which-function-mode): Make sure we stop any previous timer before
2148 2010-11-27 Michael Albinus <michael.albinus@gmx.de>
2150 * net/tramp.el (tramp-default-method-alist)
2151 (tramp-default-user-alist, tramp-default-proxies-alist):
2152 Adapt custom options type. (Bug#7445)
2154 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
2156 * progmodes/python.el: Add Ipython support (Bug#5390).
2157 (python-shell-prompt-alist)
2158 (python-shell-continuation-prompt-alist): New options.
2159 (python--set-prompt-regexp): New function.
2160 (inferior-python-mode, run-python, python-shell):
2161 Require ansi-color. Use python--set-prompt-regexp to set the comint
2162 prompt based on the Python interpreter.
2163 (python--prompt-regexp): New var.
2164 (python-check-comint-prompt)
2165 (python-comint-output-filter-function): Use it.
2166 (run-python): Use a pipe (Bug#5694).
2168 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
2170 * progmodes/python.el (run-python): Doc fix.
2171 (python-keep-current-directory-in-path): New var (Bug#7454).
2173 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
2175 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
2176 Prompt user before actually printing.
2178 2010-11-27 Glenn Morris <rgm@gnu.org>
2180 * startup.el (package-enable-at-startup, package-initialize):
2181 Remove unnecessary declarations.
2183 2010-11-27 Eli Zaretskii <eliz@gnu.org>
2185 * international/characters.el (glyphless-char-display-control):
2186 Exclude newline and TAB from the c0-control group.
2188 2010-11-27 Glenn Morris <rgm@gnu.org>
2190 * mail/sendmail.el (build-mail-aliases): Doc fix for autoload.
2191 (expand-mail-aliases): Remove unnecessary autoload.
2193 * allout.el (allout-command-prefix, allout-mode-map): Declare.
2195 * shell.el (shell-dir-cookie-re): Move definition before use.
2197 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
2198 Replace undefined CL functions.
2200 2010-11-26 Eli Zaretskii <eliz@gnu.org>
2202 * simple.el (prog-mode): Set bidi-paragraph-direction to
2205 * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
2207 2010-11-26 Glenn Morris <rgm@gnu.org>
2209 * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
2210 diary-outlook-formats can be sensitive to calendar-date-style.
2211 (diary-outlook-formats): Simplify the default setting.
2212 (diary-from-outlook-internal): Pass subject and body as arguments.
2213 Use dolist rather than dotimes. Don't save the diary buffer.
2214 (diary-from-outlook-gnus, diary-from-outlook-rmail):
2215 Pass subject and body as explicit arguments to the -internal function.
2217 2010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2219 * mail/rfc2368.el (rfc2368-parse-mailto-url): Unfold URLs before
2220 parsing them. This makes mailto:...?subject=foo\nbar work.
2222 2010-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
2224 * vc/diff.el (diff): Fix last change.
2226 2010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
2228 * emacs-lisp/pcase.el: Improve pcase-let. Use "pcase--" prefix.
2229 (pcase--dontcare-upats): New var.
2230 (pcase-let, pcase-let*): Generate better code.
2231 Accept the same bodies as `let'.
2232 (pcase-dolist): New macro.
2233 (pcase--trivial-upat-p): New helper function.
2234 (pcase--expand): Strip leading "(let nil" if any.
2236 2010-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
2238 * mail/mailclient.el (browse-url): Require.
2239 (mailclient-send-it): Bind `browse-url-mailto-function' to nil to
2240 use the external browser function to send the mail (bug#7469).
2242 * net/browse-url.el (browse-url-browser-function): Revert the
2243 default back to the previous value, since the new value broke
2245 (browse-url-mailto-function): New variable for mailto: URLs.
2246 (browse-url): Use the new variable for mailto: URLs.
2248 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
2250 * eshell/esh-cmd.el (eshell-parse-command):
2251 * eshell/esh-arg.el (eshell-parse-arguments):
2252 * eshell/em-script.el (eshell-source-file):
2253 Use with-silent-modifications.
2255 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
2257 * vc/vc.el (vc-merge): Remove optional arg PROMPT. Always prompt
2258 for a merge location.
2260 * vc/vc-bzr.el (vc-bzr-pull): Remove unused var.
2261 (vc-bzr-merge-branch): Always prompt.
2262 (vc-bzr-async-command): Use the full branch filename.
2264 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
2266 * shell.el (shell): Use current-buffer by default if it's already
2267 a shell mode buffer and its process is dead.
2268 Suggested by Jose E. Marchesi <jemarch@gnu.org>.
2270 2010-11-23 Tassilo Horn <tassilo@member.fsf.org>
2272 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
2273 Mention that the keywords should be comma separated.
2275 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
2277 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
2278 Accept optional prefix arg meaning to prompt for a command.
2279 (vc-update): Use vc-BACKEND-pull if available. Accept optional
2280 prefix arg meaning to prompt for a command.
2281 (vc-pull): Alias for vc-update.
2283 * vc/vc-bzr.el (vc-bzr-admin-branchconf, vc-bzr-history): New vars.
2284 (vc-bzr--branch-conf, vc-bzr-async-command, vc-bzr-pull)
2285 (vc-bzr-merge-branch): New functions, implementing merge-branch
2286 and pull operations.
2288 2010-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
2290 * Makefile.in: Fix up last merge.
2292 * vc/diff.el (diff-old-temp-file, diff-new-temp-file): Remove.
2293 (diff-sentinel): Get them as arguments instead.
2294 (diff-old-file, diff-new-file, diff-extra-args): Remove.
2295 (diff-file-local-copy, diff-better-file-name): New funs.
2296 (diff-no-select): Rename from diff-into-buffer.
2297 Support buffers additionally to files. Move `buf' arg. Don't display buf.
2298 Prefer closures to buffer-local variables.
2299 (diff): Adjust accordingly.
2300 (diff-buffer-with-file): Move from files.el.
2301 * files.el (diff-buffer-with-file): Move to vc/diff.el.
2302 (diff-buffer-internal): Remove.
2303 (diff-buffer-buffer): Remove.
2304 (save-some-buffers-action-alist): Use diff-no-select so as not to guess
2305 the buffer name used, and so as not to mess up windows and frames.
2307 2010-11-22 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
2309 * files.el: Make revert work with diff-buffer-with-file (bug#7277).
2310 (diff-buffer-internal): New function extracted from diff-buffer-with-file
2311 (diff-buffer-with-file): Use it.
2312 * vc/diff.el (diff-into-buffer): New fun, extracted from diff.
2315 2010-11-22 Tassilo Horn <tassilo@member.fsf.org>
2317 * textmodes/reftex-ref.el (reftex-goto-label): Use the current
2318 \ref's or \pageref's value as default instead of initial input.
2320 2010-11-21 Michael Albinus <michael.albinus@gmx.de>
2322 * files.el (backup-by-copying-when-mismatch): The default value is
2325 * startup.el (normal-top-level):
2326 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
2327 `backup-by-copying-when-mismatch'.
2329 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
2331 * tool-bar.el (tool-bar-setup): Remove save as, print and customize.
2333 2010-11-21 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2335 * progmodes/python.el (python-font-lock-keywords):
2336 Highlight top-level augmented assignments (Bug#6445).
2338 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
2340 * term/ns-win.el (ns-right-control-modifier)
2341 (ns-right-command-modifier): Defvar them.
2343 * cus-start.el (all): Add ns-right-control-modifier and
2344 ns-right-command-modifier (Bug#7458).
2346 2010-11-20 Glenn Morris <rgm@gnu.org>
2348 * emacs-lisp/authors.el (authors-ignored-files)
2349 (authors-valid-file-names, authors-renamed-files-alist): Add entries.
2351 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
2353 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs)
2354 (report-emacs-bug-parse-query-results)
2355 (report-emacs-bug-create-existing-bugs-buffer): Pass through
2356 keywords used for querying the bug database to show them in the
2357 existing bugs buffer.
2359 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
2361 * tool-bar.el (tool-bar-setup): Add some :vert-only keywords.
2363 * info.el (info-tool-bar-map): Add some :vert-only keywords.
2365 2010-11-20 Eli Zaretskii <eliz@gnu.org>
2367 * international/characters.el (glyphless-char-display-control):
2368 Make it a defcustom, with update-glyphless-char-display as its
2370 (top level): Don't call update-glyphless-char-display.
2372 2010-11-20 Michael Albinus <michael.albinus@gmx.de>
2374 Sync with Tramp 2.2.0.
2376 * net/tramp.el (tramp-handle-insert-file-contents): Don't use
2377 `file-remote-p' (due to compatibility).
2379 * net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
2380 (tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
2382 * net/trampver.el: Update release number.
2384 2010-11-20 Eli Zaretskii <eliz@gnu.org>
2386 * faces.el (glyphless-char): Define value for `pc'.
2388 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
2390 Implemented a bug querying mechanism.
2391 * mail/emacsbug.el (report-emacs-bug-tracker-url): New variable.
2392 (report-emacs-bug-create-existing-bugs-buffer)
2393 (report-emacs-bug-parse-query-results)
2394 (report-emacs-bug-query-existing-bugs): New functions.
2396 2010-11-19 Tassilo Horn <tassilo@member.fsf.org>
2398 * textmodes/reftex-ref.el (reftex-goto-label): If point is inside
2399 a \ref{} or \pageref{} macro, then use its value as initial input.
2401 2010-11-19 Jay Belanger <jay.p.belanger@gmail.com>
2403 * calc/calc-units.el (math-build-units-table-buffer):
2404 calc/README: Mention that the TeX specific units won't use the
2405 `tex' prefix in TeX mode.
2406 calc/calc-lang.el (math-variable-table): Don't use the `tex'
2407 prefix for units in TeX mode.
2409 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2411 * simple.el (kill-new, kill-append, kill-region):
2412 * comint.el (comint-kill-region): Make the yank-handler argument
2415 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2417 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
2418 that are both openers (resp. closers) and something else.
2419 (smie-grammar): Loosen definition of valid values.
2420 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
2421 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
2422 (smie-indent-after-keyword): Adjust users.
2423 (smie-indent-keyword): Don't indent empty lines.
2425 * vc-hg.el (vc-hg-program): New var.
2426 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
2427 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
2429 2010-11-18 Glenn Morris <rgm@gnu.org>
2431 * emacs-lisp/autoload.el (autoload-find-destination): The function
2432 coding-system-eol-type may return non-numeric values. (Bug#7414)
2434 2010-11-18 Ulrich Mueller <ulm@gentoo.org>
2436 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
2438 2010-11-18 Eli Zaretskii <eliz@gnu.org>
2440 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
2442 2010-11-18 Chong Yidong <cyd@stupidchicken.com>
2444 * textmodes/picture.el (picture-mouse-set-point): Don't use
2445 posn-col-row; explicitly compute the motion based on the posn at
2446 the window-start (Bug#7390).
2448 2010-11-18 Glenn Morris <rgm@gnu.org>
2450 * novice.el (disabled-command-function):
2451 Fix 2009-11-15 change. (Bug#7384)
2453 2010-11-18 Glenn Morris <rgm@gnu.org>
2455 * calendar/calendar.el (diary-iso-date-forms): Make elements
2456 mutually exclusive. (Bug#7377)
2458 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2460 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
2461 when filling the remaining "unconstrained" values.
2463 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2465 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
2468 * files.el (safe-local-variable-p): Gracefully handle errors.
2470 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
2471 Use smie-indent-virtual when indenting relative to an opener.
2472 (smie-rule-separator): Use smie-rule-parent.
2473 (smie-indent-keyword): Consult rules, even for openers at bol.
2474 (smie-indent-comment-close): Try to align closer's content.
2476 2010-11-18 Glenn Morris <rgm@gnu.org>
2478 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
2480 2010-11-18 Glenn Morris <rgm@gnu.org>
2482 * printing.el (pr-menu-bind): Doc fix.
2484 * speedbar.el (speedbar-toggle-images): Doc fix.
2486 * progmodes/python.el (python-shell): Doc fix.
2488 * wid-edit.el (widget-field-use-before-change)
2489 (widget-use-overlay-change): Doc fixes.
2491 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2493 Minor cleanup to improve style.
2494 * textmodes/rst.el (rst-update-section): Use point-marker.
2495 (rst-get-decoration): Eliminate unneeded assignment.
2496 (rst-promote-region, rst-straighten-decorations)
2497 (rst-section-tree, rst-adjust): Use point-marker.
2498 (rst-toc-mode-mouse-goto): Avoid setq.
2499 (rst-shift-region-guts, rst-shift-region-left)
2500 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2)
2501 (rst-convert-bullets-to-enumeration): Use copy-marker.
2503 * minibuffer.el (completion-fail-discreetly): New var.
2504 (completion--do-completion): Use it.
2506 * electric.el (electric-pair-pairs): New var.
2507 (electric-pair-post-self-insert-function): Use it.
2508 (electric-layout-post-self-insert-function): Don't insert a before
2509 newline unless it's actually needed.
2511 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2513 * progmodes/python.el (run-python): Explain why we remove the current
2514 directory from sys.path. Suggested by Eric Hanchrow <erich@cozi.com>.
2516 * progmodes/grep.el (grep-regexp-alist): Tighten the regexp (bug#7378).
2518 2010-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2520 * progmodes/octave-mod.el: Rely on elecric-*-modes.
2521 (octave-mode-map): Don't bind ;, SPC, and LF.
2522 (octave-auto-indent, octave-auto-newline): Remove.
2523 (electric-layout-rules): Declare.
2524 (octave-mode): Set electric-layout-rules.
2525 (octave-indent-new-comment-line): Use reindent-then-newline-and-indent.
2526 (octave-reindent-then-newline-and-indent, octave-electric-semi)
2527 (octave-electric-space): Remove.
2529 * electric.el (electric-layout-mode): New minor mode.
2530 (electric--after-char-pos): New function.
2531 (electric-indent-post-self-insert-function): Use it.
2532 (electric-layout-rules): New var.
2533 (electric-layout-post-self-insert-function): New function.
2534 (electric-indent-mode): Make them interact better.
2536 2010-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2538 * emacs-lisp/checkdoc.el (checkdoc-syntax-table): Fix last change.
2539 (checkdoc-sentencespace-region-engine, checkdoc-this-string-valid)
2540 (checkdoc-proper-noun-region-engine): Use with-syntax-table.
2542 2010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
2544 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
2545 Make sure to check inside the word (Bug#6761).
2547 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
2549 * startup.el (command-line): If the cursorColor resource is set,
2550 change the cursor face-spec (Bug#7392).
2552 2010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
2554 The main features of the following allout.el changes are:
2555 - implement user customization for the allout key bindings
2556 - add a customization control by which the user can inhibit use of
2557 a trailing Ctrl-H, so by default it's reserved for use with
2558 describe-prefix-bindings
2559 - adapt to new version of called-interactively-p, while
2560 maintaining backwards compatibility with old version
2561 - fix hotspot navigation so i works properly with meta-modified keys
2563 * allout.el (allout-keybindings, allout-bind-keys)
2564 (allout-keybindings-binding, allout-prefixed-keybindings)
2565 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
2566 (allout-keybindings-list, allout-mode-map-adjustments)
2567 (allout-setup-mode-map): Establish allout-mode keymaps as user
2568 customizable settings, and also establish a customizable setting which
2569 regulates whether or not a trailing control-h is reserved for use with
2570 describe-prefix-bindings - and inhibit it by default, so that control-h
2571 *is* reserved for describe-prefix-bindings unless the user changes it.
2573 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
2574 and accurately between modified and unmodified events, and handle
2575 modified events more comprehensively.
2577 * allout.el (allout-substring-no-properties):
2578 Alias to use or provide version of `substring-no-properties'.
2579 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
2581 * allout.el (allout-next-single-char-property-change):
2582 Alias to use or provide version of `next-single-char-property-change'.
2583 (allout-annotate-hidden, allout-hide-by-annotation):
2584 Use `allout-next-single-char-property-change'.
2586 * allout.el (allout-select-safe-coding-system):
2587 Alias to use or provide version of `select-safe-coding-system'.
2588 (allout-toggle-subtree-encryption):
2589 Use `allout-select-safe-coding-system'.
2591 * allout.el (allout-set-buffer-multibyte):
2592 Alias to use or provide version of `set-buffer-multibyte'.
2593 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
2595 * allout.el (allout-called-interactively-p): Macro for using the
2596 different versions of called-interactively-p identically, depending on
2597 the subroutine's argument signature.
2598 (allout-back-to-current-heading, allout-beginning-of-current-entry):
2599 Use `(interactive "p")' instead of `(called-interactively-p)'.
2601 * allout.el (allout-init, allout-ascend, allout-end-of-level)
2602 (allout-previous-visible-heading, allout-forward-current-level)
2603 (allout-backward-current-level, allout-show-children):
2604 Use `allout-called-interactively-p' instead of `called-interactively-p'.
2606 * allout.el (allout-before-change-handler):
2607 Exempt edits to the (overlaid) character after the allout outline
2608 bullet from edit confirmation prompt.
2610 * allout.el (allout-add-resumptions):
2611 Ensure that it respects correct buffer for keybindings.
2613 * allout.el (allout-beginning-of-line):
2614 Use `allout-previous-single-char-property-change' alias for the sake of
2615 diverse compatibility.
2617 * allout.el (allout-end-of-line):
2618 Use `allout-mark-active-p' to encapsulate respect for mark activity.
2620 2010-11-13 Chong Yidong <cyd@stupidchicken.com>
2622 * frame.el (frame-notice-user-settings): Don't clobber other
2623 user-set parameters when calling face-set-after-frame-default in
2624 response to background-color parameter (Bug#7373).
2626 2010-11-13 Eli Zaretskii <eliz@gnu.org>
2628 * international/characters.el (glyphless-char-display-control):
2629 Rename from glyphless-char-control; all users changed. Doc fix.
2630 Signal an error if display method is not one of the recognized
2633 2010-11-13 Michael Albinus <michael.albinus@gmx.de>
2635 * net/tramp-compat.el (tramp-compat-line-beginning-position)
2636 (tramp-compat-line-end-position): Remove them.
2638 * net/tramp.el (tramp-parse-rhosts-group)
2639 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
2640 (tramp-parse-hosts-group, tramp-parse-passwd-group)
2641 (tramp-parse-netrc-group, tramp-parse-putty-group)
2642 * net/tramp-cmds.el (tramp-append-tramp-buffers)
2643 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
2644 (tramp-sh-handle-file-selinux-context)
2645 (tramp-sh-handle-file-name-all-completions)
2646 (tramp-sh-handle-insert-directory)
2647 (tramp-sh-handle-expand-file-name, tramp-find-executable)
2648 (tramp-wait-for-output, tramp-send-command-and-read)
2649 * net/tramp-smb.el (tramp-smb-read-file-entry)
2650 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
2652 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
2654 (tramp-remote-coding-commands): Add an alternative using "base64
2655 -d -i". This is needed for older base64 versions from GNU
2656 coreutils. Reported by Klaus Reichl
2657 <Klaus.Reichl@thalesgroup.com>.
2659 2010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
2661 * simple.el (count-words-region): New function.
2663 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2665 * shell.el (shell-dir-cookie-re): New custom variable.
2666 (shell-dir-cookie-watcher): New function.
2668 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
2669 and compilation-mode (bug#7350).
2671 * vc/smerge-mode.el (smerge-refine): Choose better default part to
2672 highlight when one of them is empty.
2674 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
2676 (skeleton-newline): New function.
2677 (skeleton-internal-1): Use it.
2679 * simple.el (open-line): `newline' may strip trailing space.
2681 2010-11-12 Kevin Ryde <user42@zip.com.au>
2683 * international/mule-cmds.el (princ-list): Use mapc.
2685 2010-11-12 Glenn Morris <rgm@gnu.org>
2687 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
2688 Use it to replace all instances of "*Compile-Log*"
2690 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2692 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
2695 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2697 * progmodes/modula2.el: Use SMIE and skeleton.
2698 (m2-mode-syntax-table): (*..*) can be nested.
2699 Add //...\n. Fix paren syntax.
2700 (m2-mode-map): Remove LF and TAB bindings.
2701 (m2-indent): Add safety property.
2702 (m2-smie-grammar): New var.
2703 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
2704 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
2705 (m2-mode): Use define-derived-mode.
2706 (m2-newline, m2-tab): Remove.
2707 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
2708 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
2709 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
2710 (m2-import): Use define-skeleton.
2712 2010-11-11 Glenn Morris <rgm@gnu.org>
2714 * obsolete/lucid.el: Don't warn about any CL functions in this file.
2716 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
2717 (ls-lisp-verbosity): Add custom :set-after property.
2718 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
2719 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
2720 (ls-lisp-insert-directory): Update caller.
2721 (ls-lisp-set-options): New function.
2722 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
2725 * play/landmark.el (lm-prompt-for-move):
2726 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
2728 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
2730 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
2731 (idlwave-study-twins): Prefix dynamic local variable `name'.
2732 (idlwave-routine-twin-compare): Update for above change.
2734 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
2735 Prefix dynamic local variables `name', `kwd', and `link'.
2736 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
2737 * progmodes/idlw-complete-structtag.el
2738 (idlwave-complete-structure-tag-help):
2739 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
2740 (idlwave-complete-sysvar-tag-help)
2741 (idlwave-complete-class-structure-tag-help):
2742 Update for above name changes.
2744 2010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2746 * net/browse-url.el (browse-url-browser-function): Change the
2747 default to use `browse-url-mail' on mailto: URLs.
2749 2010-11-10 Chong Yidong <cyd@stupidchicken.com>
2751 * emacs-lisp/package.el (package-read-all-archive-contents):
2752 Reset package-archive-contents to nil before re-reading.
2754 2010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
2756 * textmodes/flyspell.el (flyspell-word): Do not re-check words
2757 already found as misspellings by (flyspell-large-region), just
2758 do highlighting (bug#7322).
2760 2010-11-10 Glenn Morris <rgm@gnu.org>
2762 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
2764 * emulation/edt.el (edt-with-position): New macro.
2765 (edt-find-forward, edt-find-backward, edt-find-next-forward)
2766 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
2767 (edt-paragraph-forward, edt-paragraph-backward): Use it.
2769 * emulation/tpu-extras.el (tpu-with-position): New macro.
2770 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
2772 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
2774 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
2775 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
2776 (texinfo-master-menu, texinfo-insert-node-lines)
2777 (texinfo-multiple-files-update):
2778 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
2779 Use line-beginning-position.
2781 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
2782 No recent Emacs supports system-type `emx'.
2784 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
2785 (ada-command-separator, ada-default-prj-properties)
2786 (ada-find-any-references): Update for above name change.
2788 * dirtrack.el (dirtrack-directory-function)
2789 (dirtrack-canonicalize-function):
2790 * filecache.el (file-cache-completion-ignore-case)
2791 (file-cache-case-fold-search, file-cache-ignore-case):
2792 * term.el (serial-port-is-file-p): Cosmetic change.
2794 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
2795 Remove non-existent `windows-95' system-type.
2796 * dired.el (dired-chown-program): Remove non-existent `linux'
2799 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
2800 (ping-program-options): Remove non-existent `linux' system-type.
2802 * startup.el (package-initialize): Update declaration.
2804 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
2805 (ls-lisp-handle-switches): Use time-less-p.
2806 (ls-lisp-format-time): Use float-time.
2808 * textmodes/remember.el (remember-time-to-seconds): Remove.
2809 (remember-store-in-mailbox): Use float-time.
2811 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
2813 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
2814 never a real function.
2815 (with-no-warnings): Remove compat stub, now unused.
2816 (time-less-p): Doc fix.
2817 (time-to-number-of-days): Simplify.
2819 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
2821 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
2822 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
2823 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
2824 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
2825 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
2827 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
2828 (eshell-shuffle-files, eshell-shorthand-tar-command)
2829 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
2830 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
2831 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
2832 Prefix dynamic local variable `matches'.
2834 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
2835 Prefix dynamic local variable `skeleton'.
2837 2010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
2839 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
2840 in mail buffer; make yank-action always a command that yanks original
2843 2010-11-09 Glenn Morris <rgm@gnu.org>
2845 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
2847 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2849 * minibuffer.el (minibuffer-completion-help): Specify the end of the
2850 completion field (bug#7211).
2852 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
2853 Fix handling of backslash escapes.
2854 (python-quote-syntax): Adjust accordingly.
2856 2010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
2858 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
2859 (vc-mtn-workfile-branch): Adjust to new output format.
2861 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2863 * international/mule-cmds.el (princ-list): Mark as obsolete.
2865 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2867 * emacs-lisp/smie.el: New package.
2869 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
2871 * files.el (backup-by-copying-when-mismatch):
2872 Set `permanent-local' property.
2874 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
2875 `permanent-local' property for `backup-by-copying-when-mismatch'.
2877 2010-11-09 Eli Zaretskii <eliz@gnu.org>
2879 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
2881 2010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
2883 * progmodes/verilog-mode.el (verilog-insert-one-definition)
2884 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
2885 AUTOINOUT for SV style multidimensional arrays, bug294.
2886 Reported by Eric Mastromarchi.
2887 (verilog-preprocess): Use with-current-buffer and
2888 font-lock-fontify-buffer to cleanup style issues.
2890 2010-11-09 Glenn Morris <rgm@gnu.org>
2892 * locate.el (locate, locate-mode): Doc fixes.
2894 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
2896 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
2897 user for confirmation.
2898 (server-force-stop): Use it.
2899 (server-start): Use server-force-stop for kill-emacs-hook, to
2900 avoid user interaction while killing Emacs.
2902 2010-11-09 Glenn Morris <rgm@gnu.org>
2904 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
2905 (meta-indent-line): Simplify.
2907 * vc/emerge.el (emerge-line-number-in-buf):
2908 * textmodes/ispell.el (ispell-region):
2909 * textmodes/fill.el (current-fill-column):
2910 * progmodes/xscheme.el (xscheme-send-current-line):
2911 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
2912 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
2913 * progmodes/sh-script.el (sh-handle-prev-do):
2914 * progmodes/meta-mode.el (meta-indent-line):
2915 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
2917 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
2918 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
2919 * progmodes/fortran.el (fortran-looking-at-if-then):
2920 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
2921 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
2922 (cperl-find-pods-heres):
2923 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
2924 * net/quickurl.el (quickurl-list-insert):
2925 * net/ldap.el (ldap-search-internal):
2926 * net/eudc.el (eudc-expand-inline):
2927 * mail/sendmail.el (sendmail-send-it):
2928 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
2929 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
2930 (viper-brac-function):
2931 * calc/calc-yank.el (calc-do-grab-region):
2932 * calc/calc-keypd.el (calc-keypad-press):
2933 * term.el (term-move-columns, term-insert-spaces):
2934 * speedbar.el (speedbar-highlight-one-tag-line):
2935 * simple.el (current-word):
2936 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
2937 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
2939 * hippie-exp.el (he-line-beg):
2940 * epa.el (epa--marked-keys):
2941 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
2942 (dired-update-file-line, dired-add-entry, dired-remove-entry)
2943 (dired-relist-entry):
2944 * buff-menu.el (Buffer-menu-buffer):
2945 * array.el (current-line):
2946 * allout.el (allout-resolve-xref)
2947 (allout-latex-verbatim-quote-curr-line):
2948 Replace yet more uses of end-of-line etc with line-end-position, etc.
2950 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2952 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
2953 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
2954 (checkdoc-syntax-table): Initialize in the declaration.
2955 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
2956 the mode on unconditionally.
2958 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
2959 (extent-end-position, extent-start-position): Remove setf method for
2960 non-existing functions (bug#7319).
2962 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
2964 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
2965 (smie-precs->prec2): Rename from smie-precs-precedence-table.
2966 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
2967 (smie-prec2->grammar): Rename from smie-prec2-levels.
2968 (smie-grammar): Rename from smie-op-levels.
2969 (smie-indent--hanging-p): Rename from smie-hanging-p.
2970 (smie-rule-hanging-p): New alias.
2971 (smie-indent--bolp): Rename from smie-bolp.
2972 (smie-indent--hanging-p): New alias.
2973 (smie--token): New dynamically bound variable.
2974 (smie-indent--parent): New function.
2975 (smie-rule-parent-p): Use it; rename from smie-parent-p.
2976 (smie-rule-next-p): Rename from smie-next-p.
2977 (smie-rule-prev-p): Rename from smie-prev-p.
2978 (smie-rule-sibling-p, smie-rule-parent)
2979 (smie-indent--separator-outdent, smie-rule-separator): New functions.
2980 (smie-rule-separator-outdent): New var.
2981 (smie-indent--rule): Merge with smie-indent--column.
2982 (smie-indent-forward-token, smie-indent-backward-token):
2983 Also recognize close parens.
2984 (smie-indent-keyword): Don't use smie-indent--column any more.
2985 (smie-indent-after-keyword): Ignore closers by default.
2986 (smie-indent-line): Use with-demoted-errors.
2987 * progmodes/octave-mod.el (octave-smie-grammar):
2988 Rename from octave-smie-op-levels.
2989 (octave-smie-rules): Adjust to new behavior.
2990 * progmodes/prolog.el (prolog-smie-grammar):
2991 Rename from prolog-smie-op-levels.
2993 2010-11-07 Glenn Morris <rgm@gnu.org>
2995 * eshell/esh-util.el (subst-char-in-string)
2996 (directory-files-and-attributes): These compatibility definitions are
2997 not needed on any version of Emacs since at least 21.4.
2999 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
3000 (verilog-get-end-of-line): Remove.
3001 (verilog-within-string, verilog-re-search-forward-substr)
3002 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
3003 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
3004 Use point-at-bol, point-at-eol.
3005 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
3007 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
3008 (electric-pascal-terminate-line, pascal-set-auto-comments)
3009 (pascal-indent-paramlist, pascal-indent-declaration)
3010 (pascal-get-lineup-indent, pascal-func-completion)
3011 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
3012 Use point-at-bol, point-at-eol.
3013 * progmodes/flymake.el (flymake-line-beginning-position)
3014 (flymake-line-end-position): Remove.
3015 (flymake-highlight-line): Use point-at-bol, point-at-eol.
3016 * eshell/esh-util.el (line-end-position, line-beginning-position):
3017 Remove compat definitions.
3019 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3021 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
3022 Use line-end-position.
3024 * emacs-lisp/chart.el (chart-zap-chars):
3025 * play/decipher.el (decipher-set-map):
3026 * progmodes/ada-mode.el (ada-get-current-indent)
3027 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
3028 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
3029 * progmodes/ada-xref.el (ada-initialize-runtime-library)
3030 (ada-get-all-references):
3031 * progmodes/cperl-mode.el (cperl-electric-paren)
3032 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
3033 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
3034 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
3035 (cperl-word-at-point-hard):
3036 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
3037 (idlwave-shell-filename-string, idlwave-shell-batch-command)
3038 (idlwave-shell-display-line):
3039 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
3040 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
3041 * progmodes/js.el (js--re-search-forward-inner)
3042 (js--re-search-backward-inner):
3043 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
3044 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
3045 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
3046 * textmodes/flyspell.el (flyspell-process-localwords):
3047 * textmodes/ispell.el (ispell-buffer-local-parsing)
3048 (ispell-buffer-local-dict, ispell-buffer-local-words):
3049 Use point-at-bol and point-at-eol.
3051 * speedbar.el (speedbar-generic-item-info)
3052 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
3053 (speedbar-add-indicator, speedbar-check-vc-this-line)
3054 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
3055 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
3056 Replace more uses of end-of-line etc with line-end-position.
3058 2010-11-06 Glenn Morris <rgm@gnu.org>
3060 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
3061 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
3062 (texinfo-delete-existing-pointers, texinfo-find-pointer)
3063 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
3064 (texinfo-multiple-files-update):
3065 * textmodes/table.el (table--probe-cell-left-up)
3066 (table--probe-cell-right-bottom):
3067 * textmodes/picture.el (picture-tab-search):
3068 * textmodes/page-ext.el (pages-copy-header-and-position)
3069 (pages-directory-for-addresses):
3070 * progmodes/vera-mode.el (vera-get-offset):
3071 * progmodes/simula.el (simula-calculate-indent):
3072 * progmodes/python.el (python-pdbtrack-overlay-arrow):
3073 * progmodes/prolog.el (end-of-prolog-clause):
3074 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
3075 * progmodes/icon.el (indent-icon-exp):
3076 * progmodes/etags.el (tag-re-match-p):
3077 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
3078 * progmodes/ebnf2ps.el (ebnf-begin-file):
3079 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
3080 (dcl-save-local-variable):
3081 * play/life.el (life-setup):
3082 * play/gametree.el (gametree-looking-at-ply):
3083 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
3084 * mail/sendmail.el (mail-mode-auto-fill):
3085 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
3086 * emacs-lisp/edebug.el (edebug-overlay-arrow):
3087 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
3088 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
3089 (woman-tab-to-tab-stop, WoMan-warn-ignored):
3090 * type-break.el (type-break-file-keystroke-count):
3091 * term.el (term-replace-by-expanded-history-before-point)
3092 (term-skip-prompt, term-extract-string):
3093 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
3094 (speedbar-contract-line, speedbar-toggle-line-expansion)
3095 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
3096 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
3097 * sort.el (sort-skip-fields):
3098 * skeleton.el (skeleton-internal-list):
3099 * simple.el (line-move-finish, line-move-to-column):
3100 * shell.el (shell-forward-command):
3101 * misc.el (copy-from-above-command):
3102 * makesum.el (double-column):
3103 * ebuff-menu.el (electric-buffer-update-highlight):
3104 * dired.el (dired-move-to-end-of-filename):
3105 * dframe.el (dframe-popup-kludge):
3106 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
3107 * arc-mode.el (archive-get-lineno):
3108 Use line-end-position and line-beginning-position.
3110 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
3111 (idlwave-study-twins): Prefix dynamic local `class'.
3112 (idlwave-routine-twin-compare): Update for above name change.
3114 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
3115 Use boundp tests to silence compiler. Update for changed name of
3116 bytecomp-filename variable.
3118 * emulation/viper-cmd.el (viper-read-string-with-history):
3119 Prefix dynamic local `initial'.
3120 (viper-minibuffer-standard-hook): Update for above name change.
3122 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
3123 (elint-init-form): Update for above name change.
3125 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
3126 local variables `cbeg' and `cend' a prefix.
3127 (mail-extr-voodoo): Update for above name change.
3129 * textmodes/reftex-toc.el (reftex-toc-do-promote)
3130 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
3131 (reftex-toc-promote-action): Doc fix.
3133 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
3134 `prompt', `data' a prefix.
3135 (reftex-select-post-command-hook, reftex-select-callback)
3136 (reftex-select-mouse-accept, reftex-select-read-cite):
3137 Update for above name changes.
3139 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
3140 `refstyle' to reftex-refstyle.
3141 (reftex-offer-label-menu): Update for above name change.
3142 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
3143 `refstyle' name change.
3145 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
3146 with with-current-buffer.
3147 (diff, template): Give dynamic local variables a prefix.
3148 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
3149 (emerge-line-number-in-buf): Update for above name change.
3150 (emerge-combine-versions-internal): Rename local `template' to
3151 emerge-combine-template.
3152 (emerge-combine-versions-edit): Update for above name change.
3154 2010-11-06 Ralf Angeli <angeli@caeruleus.net>
3156 * textmodes/reftex-cite.el
3157 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
3158 entries with whitespace after \bibitem.
3159 (reftex-create-bibtex-file): Match entries containing numbers and
3160 symbol constituents. Make sure that entries with whitespace at
3161 various places are found.
3163 2010-11-05 Christian Millour <cm@abtela.com> (tiny change)
3165 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
3167 2010-11-05 Jan Djärv <jan.h.d@swipnet.se>
3169 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
3171 2010-11-05 Glenn Morris <rgm@gnu.org>
3173 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
3174 (woman2-roff-buffer): Give local variable `request' a prefix.
3175 (woman0-macro): Rename argument `request' in the same way.
3176 (woman-request): New name for `request' dynamic variable.
3177 (woman-unquote, woman-forward-arg): Update for above name change.
3178 (woman1-roff-buffer): Give local variable `unquote' a prefix.
3179 (woman1-unquote): New name for `unquote' dynamic variable.
3180 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
3181 (woman-translations): Rename from `translations'. No longer global.
3182 (woman2-tr, woman-translate): Update for above name change.
3183 (woman-translate): Check for bound variable.
3184 (woman2-roff-buffer): Give local variable `translations' a prefix.
3186 * play/doctor.el: Give all local variables a prefix. Update callers.
3187 (doc$, doctor-put-meaning): Use backquote.
3189 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
3190 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
3192 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
3193 variables bytes, ptr, op a prefix.
3194 (disassemble-offset): Update for above change.
3196 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
3198 * emacs-lisp/package.el (package-unpack): Remove no-op.
3199 (package--builtins, package--dir): Doc fix.
3200 (package-activate-1, package-activate, package-install)
3201 (package-compute-transaction): Fix error message.
3202 (package-delete): Use delete-directory. Omit system packages.
3203 (package-initialize): Set package-alist to nil first.
3204 (package-menu-mark-delete, package-menu-mark-install): Don't add
3205 symbols that are inconsistent with the package state.
3206 (package-menu-execute): Perform deletions and installations as
3207 single batch operations.
3209 2010-11-03 Glenn Morris <rgm@gnu.org>
3211 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
3212 (props): Remove unnecessary declaration.
3214 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
3215 set-process-query-on-exit-flag.
3217 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
3218 (reftex-toc-do-promote): Remove unused local `mpos'.
3219 (reftex-toc-restore-region): Make `mpos' local to this function.
3221 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
3223 * play/landmark.el (lm-losing-threshold): Correct spelling.
3224 (lm-human-plays): Use new name.
3226 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
3227 (gomoku-human-plays): Use new name.
3229 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
3230 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
3231 (gomoku-score-trans-table, gomoku-winning-threshold)
3232 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
3234 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
3236 * emacs-lisp/package.el: Don't put built-in packages in
3237 package-alist, to avoid loading inefficiencies.
3238 (package-built-in-p): Make VERSION optional, and treat it as a
3239 minimum acceptable version.
3240 (package-activate): Search separately for built-in packages.
3241 Emit a warning if a dependency fails.
3242 (define-package): Handle most common case, where there is no
3243 obsolete package, first.
3244 (package-compute-transaction): Print required version in error.
3245 (package--initialized): New variable.
3246 (list-packages): Use it.
3247 (package-initialize): Optional arg NO-ACTIVATE. Don't put
3248 built-in packages in packages-alist; keep it separate.
3249 Set package--initialized.
3250 (describe-package): Avoid activating packages as a side-effect.
3251 Search separately for built-in packages.
3252 (describe-package-1): Handle the case where an elpa package is
3253 simultaneously built-in and available/installed.
3254 (package-installed-p, package--generate-package-list):
3255 Search separately for built-in packages.
3256 (package-load-descriptor): Doc fix.
3258 2010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
3260 * progmodes/perl-mode.el (perl-syntax-propertize-function):
3261 Handle __DATA__ and __END__.
3263 2010-11-02 Noah Friedman <friedman@splode.com>
3265 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
3266 nil, do not ask to recompile files that are not already compiled,
3267 and do not recompile them.
3269 2010-11-02 Chong Yidong <cyd@stupidchicken.com>
3271 * emacs-lisp/package.el (package-initialize): Ensure that
3272 obsoleted built-in packages are not in package-activated-list
3274 (describe-package-1): Make the "installed" status override
3277 2010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3279 * subr.el (version-separator, version-regexp-alist): Remove '*'
3281 (version-list-<=, version<=, version=): Doc fix.
3283 2010-11-01 Kenichi Handa <handa@m17n.org>
3285 * faces.el (glyphless-char): Inherit underline for tty.
3287 2010-11-01 Kenichi Handa <handa@m17n.org>
3289 Implement various display methods for glyphless characters.
3291 * international/characters.el (char-acronym-table): New variable.
3292 (glyphless-char-control): New variable.
3293 (update-glyphless-char-display): New funciton.
3295 * faces.el (glyphless-char): New face.
3297 2010-11-01 Glenn Morris <rgm@gnu.org>
3299 * calendar/holidays.el (general-holidays, oriental-holidays)
3300 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
3301 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
3302 the definitions of their targets.
3304 * emacs-lisp/smie.el (smie): New custom group.
3305 (smie-blink-matching-inners, smie-indent-basic): Add :group.
3307 * faces.el (xw-defined-colors, x-setup-function-keys):
3308 * mouse-sel.el (x-select-text):
3309 * term/w32console.el (x-setup-function-keys): Update declarations.
3311 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
3313 * textmodes/ispell.el (comment-add): Declare.
3315 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
3318 * info.el (finder-keywords-hash, package-alist): Declare.
3320 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
3322 * finder.el (finder-compile-keywords): Don't use intern-soft,
3323 since package names may not yet exist in the obarray.
3325 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
3327 * vc/vc-arch.el (vc-arch-checkin):
3328 * vc/vc-cvs.el (vc-cvs-checkin):
3329 * vc/vc-mtn.el (vc-mtn-checkin):
3330 * vc/vc-rcs.el (vc-rcs-checkin):
3331 * vc/vc-sccs.el (vc-sccs-checkin):
3332 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
3333 since 2010-04-21 commit by Stefan Monnier.
3335 2010-11-01 Glenn Morris <rgm@gnu.org>
3337 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
3339 * startup.el (package-enable-at-startup, package-initialize):
3342 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
3345 2010-10-31 Julien Danjou <julien@danjou.info>
3347 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
3348 (byte-recompile-directory):
3349 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
3350 Use `byte-recompile-file'.
3352 2010-10-31 Glenn Morris <rgm@gnu.org>
3354 * cus-start.el: Handle standard values via a keyword.
3355 Only set version property if specified.
3356 (cursor-in-non-selected-windows, menu-bar-mode)
3357 (tool-bar-mode, show-trailing-whitespace):
3358 Do not specify standard values.
3359 (transient-mark-mode, temporary-file-directory): Use :standard.
3361 2010-10-31 Jan Djärv <jan.h.d@swipnet.se>
3363 * term/x-win.el (x-get-selection-value): New function that gets
3364 PRIMARY with type as specified in x-select-request-type. (Bug#6802).
3366 2010-10-31 Michael Albinus <michael.albinus@gmx.de>
3368 * net/tramp.el (tramp-handle-insert-file-contents): For root,
3369 preserve owner and group when editing files. (Bug#7289)
3371 2010-10-31 Glenn Morris <rgm@gnu.org>
3373 * speedbar.el (speedbar-mode):
3374 * play/fortune.el (fortune-in-buffer, fortune):
3375 * play/gomoku.el (gomoku-mode):
3376 * play/landmark.el (lm-mode):
3377 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
3378 Replace inappropriate uses of toggle-read-only. (Bug#7292)
3380 * select.el (x-selection): Mark it as an obsolete alias.
3382 2010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3384 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
3385 major-mode (bug#7284).
3387 2010-10-31 Glenn Morris <rgm@gnu.org>
3389 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
3390 rather than just an unused variable that inherits from the real one.
3392 2010-10-31 Alan Mackenzie <acm@muc.de>
3394 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
3395 This fixes bug #7185.
3397 2010-10-30 Chong Yidong <cyd@stupidchicken.com>
3399 * startup.el (command-line): Search for package directories, and
3400 don't load package.el if none are found.
3402 * emacs-lisp/package.el (describe-package, list-packages):
3403 Call package-initialize if it has not been called yet.
3405 2010-10-30 Alan Mackenzie <acm@muc.de>
3407 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
3408 which fontifies the tail of an enum.
3409 (c-basic-matchers-after): Insert a call to the above new function.
3410 This fixes bug #7264.
3412 2010-10-30 Glenn Morris <rgm@gnu.org>
3414 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
3415 tool-bar-mode, transient-mark-mode. (Bug#7306)
3416 Include the :set property in the dumped Emacs.
3418 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3420 SMIE: change indent rules format, improve smie-setup.
3421 * emacs-lisp/smie.el (smie-precs-precedence-table)
3422 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
3423 Mark them pure so the tables gets built at compile time.
3424 (smie-bnf-precedence-table): Store the closer-alist in the table.
3425 (smie-prec2-levels): Preserve the closer-alist.
3426 (smie-blink-matching-open): Be more forgiving in case of indentation.
3427 (smie-hanging-p): Rename from smie-indent--hanging-p.
3428 (smie-bolp): Rename from smie-indent--bolp.
3429 (smie--parent, smie--after): New dynamic vars.
3430 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
3431 (smie-indent-rules): Remove.
3432 (smie-indent--offset-rule): Remove fun.
3433 (smie-rules-function): New var.
3434 (smie-indent--rule): New fun.
3435 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
3436 (smie-indent-exps): Use it.
3437 (smie-setup): Setup paren blinking; add keyword args for token
3438 functions; extract closer-alist from op-levels.
3439 (smie-indent-debug-log): Remove var.
3440 (smie-indent-debug): Remove fun.
3441 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
3442 (prolog-smie-rules): New fun to replace it.
3443 (prolog-mode-variables): Simplify.
3444 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
3445 it's setup automatically.
3446 (octave-smie-indent-rules): Remove.
3447 (octave-smie-rules): New fun to replace it.
3448 (octave-mode): Simplify.
3450 2010-10-29 Glenn Morris <rgm@gnu.org>
3452 * files.el (temporary-file-directory): Remove (already defined in C).
3453 * cus-start.el: Add temporary-file-directory.
3455 * abbrev.el (abbrev-mode):
3456 * composite.el (auto-composition-mode):
3457 * menu-bar.el (menu-bar-mode):
3458 * simple.el (transient-mark-mode):
3459 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
3460 that they do not define the associated variables twice.
3461 * simple.el (transient-mark-mode): Remove defvar.
3462 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
3463 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
3464 Handle multiple groups, and also custom-delayed-init-variables.
3465 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
3467 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3469 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
3470 (pcase-if): Add one minor optimization.
3471 (pcase-split-equal): Rename from pcase-split-eq.
3472 (pcase-split-member): Rename from pcase-split-memq.
3473 (pcase-u1): Add strings to the member optimization.
3474 Add `guard' variant of predicates.
3475 (pcase-q1): Add string patterns.
3477 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3479 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
3481 2010-10-28 Glenn Morris <rgm@gnu.org>
3483 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
3484 Move menu-bar related settings to ../menu-bar.el.
3485 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
3486 Move ns-specific settings here from term/ns-win.el.
3488 * simple.el (x-selection-owner-p): Remove unused declaration.
3490 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3492 * minibuffer.el (completion-cycling): New var (bug#7266).
3493 (minibuffer-complete, completion--do-completion):
3494 Use completion--flush-all-sorted-completions.
3495 (minibuffer-complete): Only cycle if completion-cycling is set.
3496 (completion--flush-all-sorted-completions): Unset completion-cycling.
3497 (minibuffer-force-complete): Set completion-cycling.
3498 (completion-all-sorted-completions): Move declaration before first use.
3500 2010-10-28 Leo <sdl.web@gmail.com>
3502 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
3503 which changes the order of matches seen by users (bug#7231).
3505 2010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
3507 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3508 Don't confuse -omega as "-o mega".
3510 2010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
3512 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
3513 (log-edit-author): New dynamic var.
3514 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
3515 to return the author if different from committer.
3516 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
3518 * play/landmark.el: Adjust commenting convention.
3519 (lm-nil-score): Rename from nil-score.
3520 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
3521 (OOOOscore): Move into a let in lm-score-trans-table.
3522 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
3524 * electric.el (electric-indent-chars): Autoload.
3525 * progmodes/octave-mod.el (octave-mode):
3526 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
3527 (ruby-mode-abbrev-table): Merge initialization and declaration.
3529 2010-10-27 Glenn Morris <rgm@gnu.org>
3531 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
3534 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
3536 * term/ns-win.el: Restore require of cl when compiling.
3537 (menu-bar-final-items): Remove non-existent `windows' menu.
3538 (ns-handle-nxopen): Optionally handle the temp-case.
3539 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
3540 (ns-insert-file, ns-find-file): Use `pop'.
3542 2010-10-26 Glenn Morris <rgm@gnu.org>
3544 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
3546 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
3548 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
3550 * term/common-win.el (x-setup-function-keys): Remove most of the
3551 keymappings. Comment on the remaining ones.
3553 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
3555 * server.el (server-port): New option. (Bug#854)
3556 (server-start): Use server-port.
3558 2010-10-26 Glenn Morris <rgm@gnu.org>
3560 * term/ns-win.el (ns-version-string): Remove unused declaration.
3561 (ns-invocation-args): Change to x-invocation-args.
3562 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
3563 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
3564 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
3565 Use x-invocation-args instead of ns-invocation-args.
3566 (ns-initialize-window-system, handle-args-function-alist):
3567 Use x-handle-args instead of ns-handle-args.
3568 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
3569 * startup.el (command-line-ns-option-alist): Replace
3570 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
3571 ns-handle-iconic with the x- equivalents.
3573 * term/common-win.el (x-select-enable-clipboard):
3574 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
3576 * term/ns-win.el: No need to require cl when compiling.
3577 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
3578 (xw-defined-colors): Use the common-win definitions.
3579 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
3580 (ns-handle-iconic): Make it an alias for x-handle-iconic.
3581 * term/common-win.el (x-select-text, x-alternatives-map)
3582 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
3583 * loadup.el [ns]: Load common-win.
3585 2010-10-26 Daiki Ueno <ueno@unixuser.org>
3587 * epa-mail.el (epa-mail-encrypt): Handle local-part only
3588 recipients; expand mail aliases (Bug#7280).
3590 2010-10-25 Glenn Morris <rgm@gnu.org>
3592 * term/common-win.el (x-handle-switch): Simplify with pop.
3593 Optionally handle numeric switches.
3594 (x-handle-numeric-switch): Just call x-handle-switch.
3595 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
3596 (x-handle-name-switch, x-handle-display, x-handle-args):
3599 * term/ns-win.el: Do not require easymenu.
3600 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
3601 <spell>: Move adjustments to menu-bar.el.
3602 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
3603 <separator-undo, spell>: Move ns-win's adjustments here.
3604 * loadup.el [ns]: Do not load easymenu.
3606 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3608 * image.el (image-checkbox-checked, image-checkbox-unchecked):
3611 * startup.el (fancy-startup-tail): Instead of using inline images,
3612 refer to image files from etc/.
3614 * wid-edit.el (checkbox): Likewise.
3615 (widget-image-find): Center image specs.
3617 2010-10-24 Glenn Morris <rgm@gnu.org>
3619 * term/ns-win.el (x-select-text): Doc fix.
3620 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
3621 (x-select-text): Move to term/common-win.
3622 * term/w32-win.el (xw-defined-colors): Move to common-win.
3623 * term/x-win.el (xw-defined-colors, x-alternatives-map)
3624 (x-setup-function-keys, x-select-text): Move to common-win.
3625 * term/common-win.el (x-select-text, x-alternatives-map)
3626 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
3629 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
3631 * net/mairix.el (mairix-searches-mode-map):
3632 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
3634 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
3636 * verilog-mode.el (verilog-directive-re): Make this variable
3637 auto-built for efficiency of execution and updating.
3638 (verilog-extended-complete-re): Support 'pure' fucntion & task
3639 declarations (these have no bodies).
3640 (verilog-beg-of-statement): General cleanup to enable support of
3641 'pure' fucntion & task declarations (these have no bodies).
3642 These efforts together fix Verilog bug210 from veripool; which was also
3643 noticed by Steve Pearlmutter.
3644 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
3645 (verilog-directive-nest-re, verilog-set-auto-endcomments):
3646 Support `elsif. Reported by Shankar Giri.
3647 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
3648 attribute handling for lining up declarations and assignments.
3649 (verilog-beg-of-statement-1): Fix issue where continued declaration
3650 is indented differently if it is after a begin..end clock.
3651 (verilog-in-attribute-p, verilog-skip-backward-comments)
3652 (verilog-skip-forward-comment-p): Support proper treatment of
3653 attributes by indent code. Reported by Jeff Steele.
3654 (verilog-in-directive-p): Fix comment to correctly describe function.
3655 (verilog-backward-up-list, verilog-in-struct-region-p)
3656 (verilog-backward-token, verilog-in-struct-p)
3657 (verilog-in-coverage-p, verilog-do-indent)
3658 (verilog-pretty-declarations): Use verilog-backward-up-list as
3659 wrapper around backward-up-list inorder to properly skip comments.
3660 Reported by David Rogoff.
3661 (verilog-property-re, verilog-endcomment-reason-re)
3662 (verilog-beg-of-statement, verilog-set-auto-endcomments)
3663 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
3664 of if). Reported by Max Bjurling and
3665 (verilog-calc-1): Fix for clocking block in modport
3666 declaration. Reported by Brian Hunter.
3668 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
3670 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
3671 (verilog-gate-keywords, verilog-read-sub-decls)
3672 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
3673 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
3674 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
3675 (verilog-read-decls): Fix spaces in V2K module parameters causing
3676 mis-identification as interfaces, bug287.
3677 (verilog-read-decls): Fix not treating "parameter string" as a
3678 parameter in AUTOINSTPARAM.
3679 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
3680 treating `elsif similar to `endif inside AUTOSENSE.
3681 (verilog-do-indent): Implement correct automatic or static task or
3682 function end comment highlight. Reported by Steve Pearlmutter.
3683 (verilog-font-lock-keywords-2): Fix highlighting of single
3684 character pins, bug264. Reported by Michael Laajanen.
3685 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
3686 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
3687 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
3688 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
3689 (verilog-pretty-expr): Fix interactive arguments, bug272.
3690 Reported by Mark Johnson.
3691 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
3692 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
3693 bug269. Suggested by Gary Delp.
3694 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
3695 (verilog-preprocessor, verilog-set-compile-command):
3696 Create verilog-preprocess and verilog-preprocessor to show
3697 preprocessed output.
3698 (verilog-get-beg-of-line, verilog-get-end-of-line)
3699 (verilog-modi-file-or-buffer, verilog-modi-name)
3700 (verilog-modi-point, verilog-within-string): Move defmacro's
3701 before first use to avoid warning. Reported by Steve Pearlmutter.
3702 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
3703 (verilog-colorize-region, verilog-highlight-buffer)
3704 (verilog-highlight-includes, verilog-highlight-modules)
3705 (verilog-highlight-region, verilog-mode): Rename colorize to
3706 highlight to match other packages. Disable module highlighting,
3707 as received speed complaints, reenable for experimentation only
3708 using new verilog-highlight-modules.
3709 (verilog-read-decls): Fix regexp stack overflow in very large
3710 AUTO_TEMPLATEs, bug250.
3711 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
3712 (verilog-scan): Create verilog-save-buffer-state to standardize
3713 making insignificant changes that shouldn't call hooks.
3714 (verilog-save-no-change-functions, verilog-save-scan-cache)
3715 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
3716 Create verilog-save-no-change-functions to wrap verilog-scan
3717 preservation, and fix to work with nested preserved calls.
3718 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
3719 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
3720 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
3721 (verilog-submit-bug-report): Update variable list to be complete.
3722 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
3723 breaking on-the-fly font-locking.
3724 (verilog-colorize-buffer, verilog-colorize-include-files)
3725 (verilog-colorize-include-files-buffer, verilog-colorize-region)
3726 (verilog-load-file-at-mouse, verilog-load-file-at-point)
3727 (verilog-mode, verilog-read-inst-module-matcher): With point on a
3728 AUTOINST cell instance name, middle mouse button now finds-file on
3729 it. Suggested by Brad Dobbie.
3730 (verilog-alw-get-temps, verilog-auto-reset)
3731 (verilog-auto-sense-sigs, verilog-read-always-signals)
3732 (verilog-read-always-signals-recurse): Fix loop indexes being
3733 AUTORESET. AUTORESET now assumes any variables in the
3734 initialization section of a for() should be ignored.
3735 Reported by Dan Dever.
3736 (verilog-error-font-lock-keywords)
3737 (verilog-error-regexp-emacs-alist)
3738 (verilog-error-regexp-xemacs-alist): Fix error detection of
3739 Cadence HAL, reported by David Asher. Repair drift between the
3740 three similar error variables.
3741 (verilog-modi-lookup, verilog-modi-lookup-cache)
3742 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
3743 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
3744 Fix slow verilog-auto expansion on very large files.
3745 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
3746 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
3747 "{1*2{...". Broke in last revision.
3748 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
3749 submodule connections with replications "{#{a},#{b}}".
3751 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
3753 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
3754 Fix typo in docstring.
3756 2010-10-24 Kenichi Handa <handa@m17n.org>
3758 * face-remap.el (text-scale-adjust): Call read-event with a proper
3761 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3763 * emacs-lisp/unsafep.el: Don't mark functions that display
3764 messages as safe. Suggested by Johan Bockgård.
3766 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3768 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
3769 Turn comments into docstrings.
3771 * minibuffer.el (completion--replace): Move point where it belongs
3772 when there's a common suffix (bug#7215).
3774 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3776 Merge read-color and facemenu-read-color (Bug#7242).
3778 * faces.el (read-color): Use the completion code from
3779 facemenu-read-color. Require match in completion. Doc fix.
3781 * facemenu.el (facemenu-read-color): Alias for read-color.
3782 (facemenu-set-foreground, facemenu-set-background):
3785 * frame.el (set-background-color, set-foreground-color)
3786 (set-cursor-color, set-mouse-color, set-border-color):
3789 2010-10-24 Leo <sdl.web@gmail.com>
3791 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
3792 argument of delete-file and delete-directory (Bug#7011).
3794 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3796 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
3799 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
3801 * emacs-lisp/package.el (package--generate-package-list): Make the
3802 *Packages* buffer read-only.
3804 2010-10-24 Alan Mackenzie <acm@muc.de>
3806 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
3807 result of `c-beginning-of-decl-1' between invocations of a lambda
3808 function (Bug #7265).
3810 2010-10-24 Daiki Ueno <ueno@unixuser.org>
3812 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
3813 executable is not available on the system (Bug#7268).
3815 2010-10-24 Glenn Morris <rgm@gnu.org>
3817 * select.el (selection-coding-system, next-selection-coding-system):
3818 Sync doc with C versions.
3820 * w32-vars.el (x-select-enable-clipboard):
3821 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
3822 * term/common-win.el (x-select-enable-clipboard): Move here.
3824 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
3825 definition of C variable.
3827 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
3828 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
3829 Don't redefine things that are defined in C.
3830 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
3831 (show-trailing-whitespace, auto-hscroll-mode)
3832 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
3833 Set up the appropriate custom properties.
3835 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3838 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
3839 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
3840 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
3841 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
3843 2010-10-23 Glenn Morris <rgm@gnu.org>
3845 * textmodes/flyspell.el (flyspell-mode): If there was an error,
3848 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
3849 Sync docs with C version.
3851 * term/ns-win.el (xw-defined-colors):
3852 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
3854 * term/pc-win.el (x-select-enable-clipboard):
3855 * term/x-win.el (x-select-enable-clipboard):
3856 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
3858 * comint.el (comint-password-prompt-regexp): Make it less vague.
3861 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
3863 * help.el (finder-by-keyword): Remove unnecessary autoload.
3865 2010-10-22 Glenn Morris <rgm@gnu.org>
3867 * loadup.el: Unconditionally load float-sup.
3868 * paren.el (show-paren-delay):
3869 * emacs-lisp/float-sup.el:
3870 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
3871 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
3872 (lazy-lock-stealth-verbose): Assume float support.
3873 * ps-print.el: Assume float support on Emacs.
3874 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
3875 Remove non-float branch.
3877 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
3878 src/Makefile no longer being pre-processed.
3880 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
3882 * emacs-lisp/find-func.el (find-library): Use test-completion.
3884 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3886 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
3888 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
3890 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
3891 space in stat format string.
3892 (tramp-send-command): Unset $PS1 when using here documents, in
3893 order not to get several prompts.
3894 (tramp-get-inline-coding): Return `nil' in case of errors.
3896 2010-10-21 Daiki Ueno <ueno@unixuser.org>
3898 * hexl.el (hexl-mode, hexl-mode-exit):
3899 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
3900 (hexl-revert-buffer-function): New function.
3901 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
3903 2010-10-19 Alan Mackenzie <acm@muc.de>
3905 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
3906 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
3907 that these keywords aren't wrongly matched as identifiers.
3909 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
3910 setting of c-new-BEG and c-new-END from c-before-change to
3911 c-after-change. (Bug#7181)
3913 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3915 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
3918 * custom.el (custom-theme-set-variables): Likewise.
3919 (load-theme): Add custom-theme-set-faces and
3920 custom-theme-set-variables to safe-functions while loading.
3921 (custom-enabled-themes): Mark as risky.
3923 2010-10-18 Julien Danjou <julien@danjou.info>
3925 * bindings.el: Remove end dashes in default mode-line-format.
3927 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3929 * bindings.el (global-map): Bind C-d to delete-char and deletechar
3930 to delete-forward-char.
3932 * simple.el (normal-erase-is-backspace-mode): Remap delete to
3933 deletechar, and hence delete-forward-char.
3935 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3937 * repeat.el (repeat): Use read-key (bug#6256).
3939 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3941 * emacs-lisp/unsafep.el: Don't mark functions that display
3942 messages as safe. Suggested by Johan Bockgård.
3944 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3946 * minibuffer.el (completion--replace): Move point where it belongs
3947 when there's a common suffix (bug#7215).
3949 2010-10-19 Kenichi Handa <handa@m17n.org>
3951 * international/characters.el: Add category '|' (word breakable)
3952 to fullwidth characters.
3954 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
3956 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
3957 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
3958 order to make stat results a float. Patch by Andreas Schwab
3959 <schwab@linux-m68k.org>.
3961 2010-10-18 Julien Danjou <julien@danjou.info>
3963 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
3964 hidden by `make-pointer-invisible'.
3966 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3968 * files.el (locate-file-completion-table): Strip non-matching elements
3969 before checking length of list (bug#7238).
3971 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
3973 * custom.el (custom-theme-set-variables): Mark as a safe function.
3974 (load-theme): Check forms using unsafep.
3976 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
3978 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
3980 * textmodes/ispell.el (ispell-aspell-find-dictionary):
3981 Fix aspell data file searching (bug#7230).
3983 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
3985 * cus-theme.el (custom-theme--migrate-settings): New var.
3986 (customize-create-theme): Allow editing the `user' theme.
3987 (custom-theme-add-variable, custom-theme-add-var-1)
3988 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
3989 to the front of each variable or face widget.
3990 (custom-theme-write): Save theme settings in the correct order.
3991 Optionally, remove saved settings from user customizations.
3992 (custom-theme-write-variables, custom-theme-write-faces):
3993 Save only the checked widgets.
3994 (customize-themes): Add a link for migrating custom settings.
3996 * custom.el (custom-declare-theme, provide-theme):
3997 Use custom-theme-name-valid-p.
3998 (custom-theme-name-valid-p): Remove checks that are now
3999 unnecessary since themes no longer obey load-path.
4001 * cus-edit.el (custom-variable-value-create): For the simple
4002 style, hide documentation string when hidden.
4004 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
4006 * cus-edit.el (custom-variable, custom-face): Combine the
4007 :inhibit-magic and :display-style properties into a single
4008 :custom-style property.
4009 (custom-toggle-hide-variable, custom-toggle-hide-face):
4010 New functions. If hiding an edited value, save it to :shown-value.
4011 (custom-variable-value-create, custom-face-value-create): Use them.
4012 (custom-magic-reset): Allow magic property to be unset.
4014 * custom.el: Custom themes no longer use load-path.
4015 (custom-theme-load-path): New option. Change built-in theme
4017 (custom-enabled-themes): Add custom-theme-load-path dependency.
4018 (custom-theme--load-path): New function.
4019 (load-theme, custom-available-themes): Use it.
4021 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
4022 (customize-themes): Link to custom-theme-load-path variable.
4023 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
4024 :custom-style property.
4026 * themes/*.el: Moved to etc/.
4028 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
4030 * textmodes/reftex-cite.el
4031 (reftex-extract-bib-entries-from-thebibliography): Do not move
4032 point when searching for \bibitem entries. Match entries with
4033 spaces or tabs in front of arguments.
4035 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
4037 * cus-theme.el (customize-create-theme): Delete overlays after
4038 erasing. If given a THEME arg, display only the faces of that arg
4039 instead of custom-theme--listed-faces.
4040 (custom-theme-variable-menu, custom-theme-variable-action)
4041 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
4042 (custom-theme-add-variable, custom-theme-add-face): Apply value
4043 from the theme settings, instead of the current value.
4044 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
4045 (custom-theme-visit-theme): Allow calling outside theme buffers.
4046 (custom-theme-merge-theme): Don't enable the theme when merging.
4047 (custom-theme-write-variables, custom-theme-write-faces): Use the
4048 :shown-value properties to save buffer values, not global ones.
4049 (customize-themes): Display a warning about user customizations.
4051 * cus-edit.el (custom-variable-value-create)
4052 (custom-face-value-create): Obey new special properties
4053 :shown-value and :inhibit-magic.
4055 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
4057 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
4058 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
4061 2010-10-14 Kenichi Handa <handa@m17n.org>
4063 * mail/rmail.el (rmail-show-message-1): Catch an error of
4064 base64-decode-region and just show an error message (bug#7165).
4066 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
4067 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
4068 a font-spec (bug#7197).
4070 2010-10-14 Glenn Morris <rgm@gnu.org>
4072 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
4074 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
4076 * international/mule.el (define-coding-system):
4077 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
4078 * composite.el (compose-region): Fix typo in docstring.
4080 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
4082 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
4083 only after checking the theme-face property.
4085 * faces.el (face-spec-reset-face): Reset all attributes in one
4086 single call to set-face-attribute.
4087 (face-spec-match-p): Make it a defsubst.
4088 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
4089 (x-create-frame-with-faces, tty-create-frame-with-faces)
4090 (tty-set-up-initial-frame-faces): Don't recompute face specs in
4091 frame-set-background-mode, since they are recomputed immediately
4092 afterwards in face-set-after-frame-default.
4093 (face-set-after-frame-default): Minor optimization.
4094 (cursor): Provide non-trivial defface spec.
4096 * custom.el (custom-theme-recalc-face): Simplify.
4098 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
4100 * calc/calc-alg.el (math-var): Rename from `var'.
4101 (math-is-polynomial, math-is-poly-rec): Replace `var'
4104 * calc/calcalg2.el (math-var): Rename from `var'.
4105 (calcFunc-table, math-scan-for-limits): Replace `var'
4108 2010-10-13 Glenn Morris <rgm@gnu.org>
4110 * subr.el (last): Deal with dotted lists (reported in bug#7174).
4112 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
4114 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
4116 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4118 * net/tls.el (tls-program): Remove spurious %s from openssl.
4119 (tls-starttls-switches): Remove starttls hack.
4120 (open-tls-stream): Ditto.
4121 (tls-find-starttls-argument): Ditto.
4123 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4125 * image.el (image-library-alist): Declare as obsolete alias.
4126 (image-type-available-p): Use `dynamic-library-alist'.
4128 * term/w32-win.el (dynamic-library-alist):
4129 Use instead of `image-library-alist'.
4131 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
4133 * subr.el (last): Make it faster. (Bug#7174)
4135 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
4137 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
4139 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
4141 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
4142 (describe-theme-1): Extract doc from unloaded themes.
4144 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
4146 * themes/tango-theme.el:
4147 * themes/tango-dark-theme.el:
4148 * themes/wheatgrass-theme.el: New files.
4150 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
4152 * cus-theme.el (describe-theme, customize-themes)
4153 (custom-theme-save): New commands.
4154 (custom-new-theme-mode-map): Bind C-x C-s.
4155 (custom-new-theme-mode): Use custom--initialize-widget-variables.
4156 (customize-create-theme): New optional arg THEME.
4157 (custom-theme-revert): Use it.
4158 (custom-theme-visit-theme): Remove dead code.
4159 (custom-theme-merge-theme): Use custom-available-themes.
4160 (custom-theme-write): Make interactive.
4161 (custom-theme-write): Use custom-theme-name-valid-p.
4162 (describe-theme-1, custom-theme-choose-revert)
4163 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
4165 (custom-theme-allow-multiple-selections): New option.
4166 (custom-theme-choose-mode): New major mode.
4168 * custom.el (custom-theme-set-variables): Remove dead code.
4169 Obey custom--inhibit-theme-enable.
4170 (custom--inhibit-theme-enable): New var.
4171 (provide-theme): Obey it.
4172 (load-theme): Replace load with manual read/eval, in order to
4173 check for correctness. Use custom-theme-name-valid-p.
4174 (custom-theme-name-valid-p): New function.
4175 (custom-available-themes): Use it.
4177 * cus-edit.el (custom--initialize-widget-variables): New function.
4178 (Custom-mode): Use it.
4180 * cus-face.el (custom-theme-set-faces): Remove dead code.
4181 Obey custom--inhibit-theme-enable.
4183 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
4185 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
4187 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
4189 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
4191 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
4192 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
4193 (mac-right-option-modifier): New alias for ns-right-option-modifier.
4195 * cus-start.el (all): ns-right-alternate-modifier is new.
4197 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4199 * emacs-lisp/lisp.el (lisp-completion-at-point):
4200 Use emacs-lisp-mode-syntax-table for the whole function.
4202 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
4204 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
4205 instead of font-lock-mode before adding keywords.
4206 Remove hi-lock-mode off code. Remove inhibit hack.
4207 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
4208 non-nil; removed hook inhibit hack.
4210 2010-10-12 Glenn Morris <rgm@gnu.org>
4212 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
4213 (load-path-shadows-find): ... to this.
4214 (list-load-path-shadows): Update for above change.
4216 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
4218 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
4220 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
4221 Fix comment for declare-function.
4223 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
4225 * custom.el (custom-fix-face-spec): New function; code moved from
4226 custom-face-edit-fix-value.
4227 (custom-push-theme): Use it when checking if a face has been
4228 changed outside customize.
4229 (custom-available-themes): New function.
4230 (load-theme): Use it.
4232 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
4234 * custom.el (custom-push-theme): Cleanup (use cond).
4235 (disable-theme): Recompute the saved-face property.
4236 (custom-theme-recalc-face): Follow face alias before setting prop.
4238 * image.el (image-checkbox-checked, image-checkbox-unchecked):
4239 New variables, containing checkbox images.
4241 * startup.el (fancy-startup-tail):
4242 * wid-edit.el (checkbox): Use them.
4244 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
4246 * shell.el (shell-mode-map):
4247 * progmodes/modula2.el (m2-mode-map):
4248 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
4249 * play/mpuz.el (mpuz-mode-map):
4250 * play/landmark.el (lm-mode-map):
4251 * play/decipher.el (decipher-mode-map):
4252 * play/5x5.el (5x5-mode-map):
4253 * net/telnet.el (telnet-mode-map):
4254 * net/quickurl.el (quickurl-list-mode-map):
4255 * net/mairix.el (mairix-searches-mode-map):
4256 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
4257 * net/dig.el (dig-mode-map):
4258 * mail/mspools.el (mspools-mode-map):
4259 * hexl.el (hexl-mode-map):
4260 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
4261 (wordstar-C-o-map, wordstar-C-q-map):
4262 * emacs-lisp/edebug.el (edebug-eval-mode-map):
4263 * emacs-lisp/chart.el (chart-map):
4264 * edmacro.el (edmacro-mode-map):
4265 * erc/erc-list.el (erc-list-menu-mode-map):
4266 * array.el (array-mode-map): Declare and define in one step.
4268 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
4270 2010-10-10 Daiki Ueno <ueno@unixuser.org>
4272 * epa.el (epa-passphrase-callback-function): Display filename
4273 passed as the 3rd arg.
4274 * epa-file.el (epa-file-passphrase-callback-function):
4275 Pass filename to epa-passphrase-callback-function.
4277 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
4279 * cus-edit.el (custom-face-widget-to-spec)
4280 (custom-face-get-current-spec, custom-face-state): New functions.
4281 (custom-face-set, custom-face-mark-to-save)
4282 (custom-face-value-create, custom-face-state-set): Use them.
4284 * cus-theme.el (custom-theme--listed-faces): New var.
4285 (customize-create-theme): Use *Custom Theme* as the buffer name.
4286 Set revert-buffer-function. Optional arg BUFFER. Insert all
4287 faces listed in custom-theme--listed-faces.
4288 (custom-theme-revert): New function.
4289 (custom-theme-add-variable, custom-theme-add-face): Insert at the
4291 (custom-theme-write): Prompt for theme name if empty.
4292 (custom-theme-write-variables): Use dolist.
4293 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
4295 2010-10-09 Alan Mackenzie <acm@muc.de>
4297 Enhance fontification of declarators to take account of the
4298 presence/absence of "typedef".
4300 * cc-engine.el (c-forward-type): New &optional param
4302 (c-forward-decl-or-cast-1): cdr of return value now indicates the
4303 presence of either or both of a "struct"-like keyword and "typedef".
4305 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
4306 fontification of declarators which follow a "}".
4307 (c-font-lock-declarations): Fontify declarators according to the
4308 presence/absence of "typedef".
4310 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
4312 (c-typedef-decl-key): New lang variable built from
4313 c-typedef-decl-kwds.
4315 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
4317 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
4318 since that's too annoying. Move the filter groups commands to
4321 * epa.el (epa-passphrase-callback-function): Say what we're
4322 querying the password for.
4324 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
4325 behaviour, don't bury the ibuffer buffer when visiting other buffers.
4327 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
4329 * cus-edit.el (custom-commands, custom-buffer-create-internal)
4330 (custom-magic-value-create): Pad button tags with spaces.
4331 (custom-face-edit): New variable.
4332 (custom-face-value-create): Determine whether to use the usual
4333 face editor here, instead of using custom-face-selected.
4334 Pass face defaults to custom-face-edit widget.
4335 (custom-face-selected, custom-display-unselected): Delete widgets.
4336 (custom-display-unselected-match): Function removed.
4337 (custom-face-set, custom-face-mark-to-save):
4338 Accept custom-face-edit widgets as the direct widget child.
4340 * wid-edit.el (widget--completing-widget): New var.
4341 (widget-default-complete): Bind it when doing completion.
4342 (widget-string-complete, widget-file-complete): Use it.
4344 2010-10-09 Glenn Morris <rgm@gnu.org>
4346 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
4347 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
4348 (holiday-hebrew-misc): Small simplifications.
4350 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
4352 * net/browse-url.el: Don't require thingatpt, term, dired,
4353 executable, or w3-auto when compiling.
4354 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
4356 (browse-url-text-emacs): Require term.
4358 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
4360 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
4362 2010-10-08 Glenn Morris <rgm@gnu.org>
4364 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
4366 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
4367 (shadows-compare-text-p): Make it an obsolete alias for...
4368 (load-path-shadows-compare-text): ... new name.
4369 (find-emacs-lisp-shadows): Update for above name change.
4370 (load-path-shadows-same-file-or-nonexistent): New name for the old
4371 shadow-same-file-or-nonexistent.
4373 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
4375 * minibuffer.el (completion--some, completion--do-completion)
4376 (minibuffer-complete-and-exit, minibuffer-completion-help)
4377 (completion-basic-try-completion)
4378 (completion-basic-all-completions)
4379 (completion-pcm--find-all-completions): Use lexical-let to
4380 avoid some false matches in variable completion (Bug#7056)
4382 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
4384 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
4386 2010-10-08 Leo <sdl.web@gmail.com>
4388 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
4389 return non-nil if the file exists (Bug#7090).
4391 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
4393 * minibuffer.el (completion--replace):
4394 Better preserve markers (bug#7138).
4396 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
4398 * server.el (server-process-filter): Doc fix.
4400 2010-10-08 Drew Adams <drew.adams@oracle.com>
4402 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
4404 2010-10-08 Glenn Morris <rgm@gnu.org>
4406 * vc/ediff-wind.el (ediff-setup-control-frame):
4407 * vc/ediff-ptch.el (ediff-default-backup-extension):
4408 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
4409 (ediff-exec-process): Remove system-types emx, windows-95.
4411 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
4413 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
4415 * cus-edit.el (custom-variable, custom-face): Doc fix.
4416 (custom-face-edit): Add value-create attribute.
4417 (custom-face-edit-value-create)
4418 (custom-face-edit-value-visibility-action): New functions.
4419 Hide unused face attributes by default, and add a visibility toggle.
4420 (custom-face-edit-deactivate): Show empty values with shadow face.
4421 (custom-face-selected): Only use this for face specs with default
4423 (custom-face-value-create): Cleanup.
4425 * wid-edit.el (widget-checklist-value-create): Use dolist.
4426 (widget-checklist-match-find): Make second arg optional.
4428 2010-10-07 Glenn Morris <rgm@gnu.org>
4430 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
4433 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
4434 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
4435 load-path-shadows-mode, update references.
4436 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
4437 Rename variable and button.
4438 (list-load-path-shadows): Update button caller.
4440 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4442 * emacs-lisp/smie.el (smie-bnf-classify): New function.
4443 (smie-bnf-precedence-table): Use it to remember the closers/openers.
4444 (smie-merge-prec2s): Handle those new entries.
4445 (smie-prec2-levels): Only set precedence to nil for actual
4447 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
4448 that is now unnecessary.
4450 2010-10-07 Miles Bader <miles@gnu.org>
4452 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
4454 2010-10-07 Glenn Morris <rgm@gnu.org>
4456 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
4457 (mail-position-on-field): Remove declarations.
4458 (mail-position-on-field): Autoload it.
4459 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
4460 and mail-header-end. Don't require sendmail.
4462 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
4463 (shadow-mode): New mode.
4464 (shadow-find-file): New button.
4465 (list-load-path-shadows): Use shadow-mode and buttons.
4467 * iimage.el (iimage-version): Remove.
4468 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
4469 Turn into defcustoms.
4470 (iimage-mode-map): Give it a doc string.
4472 * calendar/appt.el (appt-activate): Give a warning rather than an error
4473 if there is no diary-file.
4475 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
4477 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4478 Use `tramp-handle-find-backup-file-name'.
4480 2010-10-06 Glenn Morris <rgm@gnu.org>
4482 * font-core.el (font-lock-defaults-alist): Remove variable.
4483 (font-lock-mode): Doc fix.
4484 (font-lock-default-function): Do not consult font-lock-defaults-alist.
4485 * font-lock.el (font-lock-refresh-defaults): Doc fix.
4486 (font-lock-set-defaults): Doc fix.
4487 Do not consult font-lock-defaults-alist.
4489 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
4491 * emacs-lisp/cl.el: No longer provide cl-19.
4493 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
4495 * net/tramp.el (tramp-handle-directory-files-and-attributes)
4496 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
4497 New defuns, taken from tramp-smb.el.
4498 (tramp-coding-system-change-eol-conversion)
4499 (tramp-set-process-query-on-exit-flag): Remove.
4501 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
4502 (tramp-compat-coding-system-change-eol-conversion)
4503 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
4506 * net/tramp-gvfs.el:
4507 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
4508 by `tramp-compat-set-process-query-on-exit-flag'.
4510 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
4511 Use `tramp-handle-directory-files-and-attributes',
4512 `tramp-handle-file-exists-p' and
4513 `tramp-handle-file-newer-than-file-p'.
4514 (tramp-imap-handle-file-exists-p)
4515 (tramp-imap-handle-file-executable-p)
4516 (tramp-imap-handle-file-readable-p)
4517 (tramp-imap-handle-directory-files-and-attributes)
4518 (tramp-imap-handle-file-newer-than-file-p): Remove.
4520 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
4521 by `tramp-compat-set-process-query-on-exit-flag' and
4522 `tramp-coding-system-change-eol-conversion' by
4523 `tramp-compat-coding-system-change-eol-conversion'.
4525 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4526 Use `tramp-handle-directory-files-and-attributes',
4527 `tramp-handle-file-exists-p' and
4528 `tramp-handle-file-newer-than-file-p'.
4529 (tramp-smb-handle-directory-files-and-attributes)
4530 (tramp-smb-handle-file-exists-p)
4531 (tramp-smb-handle-file-newer-than-file-p): Remove.
4532 (tramp-smb-maybe-open-connection):
4533 Replace `tramp-set-process-query-on-exit-flag' by
4534 `tramp-compat-set-process-query-on-exit-flag'.
4536 2010-10-05 Glenn Morris <rgm@gnu.org>
4538 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
4540 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
4542 Continue reorganization of load dependencies. (Bug#7156)
4544 * net/tramp.el (tramp-handle-file-local-copy-hook)
4545 (tramp-delete-temp-file-function): Move down.
4546 (tramp-exists-file-name-handler): Move up.
4547 (tramp-register-file-name-handlers): Simplify autoload.
4548 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
4549 (tramp-handle-directory-files, tramp-handle-dired-uncache)
4550 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
4551 (tramp-handle-file-name-completion)
4552 (tramp-handle-file-name-directory)
4553 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
4554 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
4555 (tramp-handle-find-backup-file-name)
4556 (tramp-handle-insert-file-contents, tramp-handle-load)
4557 (tramp-handle-substitute-in-file-name)
4558 (tramp-handle-unhandled-file-name-directory)
4559 (tramp-mode-string-to-int, tramp-local-host-p)
4560 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
4562 * net/tramp-gvfs.el (top):
4563 * net/tramp-smb.el (top): Do not require 'tramp-sh.
4565 * net/tramp-sh.el (all): Move several objects to tramp.el, see
4566 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
4568 2010-10-04 Glenn Morris <rgm@gnu.org>
4570 * calendar/appt.el (appt-add): Ensure reminders are enabled.
4571 (appt-activate): Give status messages.
4573 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4575 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
4576 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
4577 `gnutls-negotiate' (formerly `starttls-negotiate').
4578 Remove trivial wrapper `starttls-open-stream'.
4580 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
4582 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
4583 log-outgoing commands.
4584 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
4585 to create a buffer local revert-buffer-function variable.
4586 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
4587 revert-buffer-function lambda.
4589 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4591 * net/gnutls.el (starttls-negotiate): Use the plist interface to
4592 `gnutls-boot'. Make TYPE the only required parameter.
4593 Allow TRUSTFILES and KEYFILES to be lists.
4594 (open-ssl-stream): Use it.
4596 2010-10-03 Glenn Morris <rgm@gnu.org>
4598 * subr.el (directory-sep-char): Remove obsolete variable.
4599 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
4602 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
4603 * vc/vc.el (vc-static-header-alist): Doc fix.
4604 * vc/vc-cvs.el (vc-cvs-header):
4605 * vc/vc-rcs.el (vc-rcs-header):
4606 * vc/vc-sccs.el (vc-sccs-header):
4607 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
4608 * obsolete/vc-mcvs.el (vc-mcvs-header):
4609 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
4612 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4614 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
4615 Remove obsolete use of binary-overwrite-mode (Bug#7001).
4617 2010-10-03 Glenn Morris <rgm@gnu.org>
4619 * obsolete/x-menu.el: Remove file, obsolete since 21.1
4621 * textmodes/rst.el (rst-font-lock-keywords-function):
4624 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
4626 * printing.el: Drop Emacs 20 code.
4628 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
4629 without having used appt.el already).
4631 * subr.el (make-local-hook): Remove function obsolete since 21.1.
4632 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
4633 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
4635 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
4636 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
4638 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
4639 (charset-width, find-charset-region, chars-in-region, forward-point)
4640 (encode-coding-string, coding-system-p, ccl-execute-on-string)
4641 (define-ccl-program, multibyte-string-p, string-make-multibyte):
4642 Remove compatibility cruft (none of these are used by ps*.el).
4644 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
4646 * subr.el (booleanp): Return t instead of a list (Bug#7086).
4648 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4650 * server.el (server-process-filter, server-return-error):
4651 Give emacsclient time to shut down after receiving an error string.
4653 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
4655 * files.el (remote-file-name-inhibit-cache): New defcustom.
4657 * time.el (display-time-file-nonempty-p):
4658 Use `remote-file-name-inhibit-cache'.
4660 * net/tramp.el (tramp-completion-reread-directory-timeout):
4663 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
4664 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
4665 `remote-file-name-inhibit-cache'. Check also for an integer
4666 value. Add/increase counter when `tramp-verbose' >= 10.
4667 (tramp-set-file-property): Add/increase counter when
4668 `tramp-verbose' >= 10.
4670 * net/tramp-cmds.el (tramp-cleanup-all-connections)
4671 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
4672 (tramp-bug): Set tramp-autoload cookie. Report all interned
4673 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
4674 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
4675 characters only in strings.
4677 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
4678 to backward compatibility.
4680 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
4681 (tramp-handle-file-name-all-completions)
4682 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
4683 (tramp-open-connection-setup-interactive-shell):
4684 Call `tramp-cleanup-connection' directly.
4686 2010-10-02 Glenn Morris <rgm@gnu.org>
4688 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
4690 * subr.el (char-bytes): Remove obsolete function.
4692 * isearch.el (isearch-return-char): Remove obsolete function.
4694 * mouse.el: No longer provide mldrag.
4695 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
4696 Remove obsolete aliases.
4698 * comint.el (comint-kill-output): Remove obsolete alias.
4700 * composite.el (decompose-composite-char): Remove obsolete function.
4701 * ps-def.el (decompose-composite-char): Remove unused function.
4703 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
4705 * outline.el (outline-visible): Remove obsolete function.
4707 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
4708 * faces.el (internal-find-face, internal-get-face)
4709 (frame-update-faces, frame-update-face-colors)
4710 (x-frob-font-weight, x-frob-font-slant)
4711 (internal-frob-font-weight, internal-frob-font-slant)
4712 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
4713 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
4714 (x-make-font-bold-italic): Remove functions and aliases, obsolete
4716 * emulation/viper-util.el (viper-get-face):
4717 * obsolete/lucid.el (find-face, get-face): Use facep.
4718 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
4719 Remove unused functions.
4720 * vc/ediff-util.el (ediff-submit-report): Doc fix.
4722 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
4723 delete tempfile if interrupted during compilation.
4725 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4727 * net/tls.el (tls-starttls-switches): Give up on using starttls with
4729 (tls-program): Add --insecure to be consistent with the defaults from
4730 openssl s_client. Now all three commands are insecure.
4732 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4734 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
4735 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
4736 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
4738 2010-10-01 Glenn Morris <rgm@gnu.org>
4740 * obsolete/sc.el: Remove file.
4742 * files.el (temporary-file-directory): On darwin, also try
4743 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
4745 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
4747 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
4748 Let's not break compatibility gratuitously, shall we?
4750 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4752 * net/tls.el (tls-starttls-switches): New variable.
4753 (tls-find-starttls-argument): Use it.
4754 (open-tls-stream): Ditto.
4756 * net/netrc.el (netrc-credentials): Return the value of the "default"
4758 (netrc-machine): Ditto.
4760 2010-09-30 Eli Zaretskii <eliz@gnu.org>
4762 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
4764 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
4766 * server.el (server-start): Don't write pid to the authentication file.
4767 (server-create-tty-frame): Don't send pid.
4768 (server-process-filter): Send pid at the start of every connection.
4770 2010-09-30 Glenn Morris <rgm@gnu.org>
4772 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
4773 (show-all-diary-entries): Remove obsolete function aliases.
4775 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
4776 Remove options, obsolete since 22.1.
4777 (appt-display-format, appt-display-message):
4778 Remove backwards-compatibility code.
4779 (appt-check): No longer check appt-issue-message.
4780 (appt-make-list): No longer autoload it. Doc fix. No longer
4781 activate the package.
4783 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4785 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
4786 (starttls-negotiate): Just call boot, and let the handshake be
4787 triggered from the read loop.
4789 2010-09-29 Glenn Morris <rgm@gnu.org>
4791 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
4792 not displaying the diary.
4793 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
4794 * calendar/appt.el (appt-check): No longer need to kill diary.
4796 * calendar/diary-lib.el (diary-list-entries): Move the
4797 "Preparing..." message entirely here.
4798 (diary-simple-display, diary-fancy-display): Move "Preparing..."
4799 messages to diary-list-entries.
4800 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
4801 diary-display-function.
4803 * calendar/diary-lib.el (diary-include-other-diary-files):
4804 Trap some recursive includes.
4806 * calendar/appt.el (appt-activate): Check diary file.
4808 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
4810 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
4813 * calendar/time-date.el: No need to require cl for Emacs 21.
4815 2010-09-28 Glenn Morris <rgm@gnu.org>
4817 * calendar/appt.el (appt-check): Minor simplification.
4819 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
4821 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
4824 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
4826 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
4827 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
4829 2010-09-27 Kenichi Handa <handa@m17n.org>
4831 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
4834 2010-09-27 Kenichi Handa <handa@m17n.org>
4836 * international/mule.el (define-coding-system): Docstring fixed.
4838 * international/mule-diag.el (describe-character-set): Use princ
4839 with proper print-length and print-level instead of insert.
4841 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
4843 * window.el (walk-windows): Doc fix (bug#7105).
4845 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
4847 * emacs-lisp/float-sup.el (e): Remove.
4849 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4851 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
4853 (starttls-negotiate): Use it.
4855 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4857 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
4860 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
4862 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
4864 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4866 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
4868 * net/netrc.el (netrc-store-data): New function.
4870 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4872 * net/gnutls.el: GnuTLS glue code to set up a connection.
4874 2010-09-25 Julien Danjou <julien@danjou.info>
4876 * notifications.el: Call dbus-register-signal only if it is bound.
4878 2010-09-25 Glenn Morris <rgm@gnu.org>
4880 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
4881 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
4882 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
4883 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
4884 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
4885 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
4886 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
4887 * eshell/esh-util.el, eshell/esh-var.el:
4888 Remove leading `*' from docs of faces and defcustoms.
4890 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
4892 * eshell/em-ls.el (eshell-ls-archive-regexp):
4893 * eshell/esh-util.el (eshell-tar-regexp):
4894 * ibuffer.el (ibuffer-compressed-file-name-regexp):
4895 * info.el (Info-suffix-list):
4896 * international/mule.el (auto-coding-alist):
4897 * woman.el (woman-file-regexp, woman-file-compression-regexp):
4898 * progmodes/etags.el (tags-compression-info-list):
4899 Support xz compression.
4901 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
4903 * files.el (get-free-disk-space): Don't assume the "df" output
4904 columns line up (Bug#6995).
4906 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
4908 * finder.el (finder-unknown-keywords):
4909 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
4910 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
4912 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
4914 * server.el (server-start): Revert part of 2010-08-08 change. Using
4915 address 127.0.0.1 for local host is now done in Fmake_network_process.
4917 2010-09-24 Glenn Morris <rgm@gnu.org>
4919 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
4920 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
4921 * textmodes/css-mode.el, textmodes/dns-mode.el:
4922 Move autoloaded auto-mode-alist entries to files.el.
4923 * files.el (auto-mode-alist): Move entries here.
4925 2010-09-23 Glenn Morris <rgm@gnu.org>
4927 * isearch.el (isearch-lazy-highlight-cleanup)
4928 (isearch-lazy-highlight-initial-delay)
4929 (isearch-lazy-highlight-interval)
4930 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
4931 * net/net-utils.el (ipconfig-program-options):
4932 Move aliases to options before the associated definitions.
4934 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4936 * newcomment.el (comment-normalize-vars): Better test validity of
4939 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4941 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
4942 (float-e): New name for `e'.
4943 (degrees-to-radians, radians-to-degrees):
4944 * calendar/solar.el (solar-longitude):
4945 * calculator.el (calculator-registers, calculator-funcall):
4946 * textmodes/artist.el (artist-spray-random-points):
4947 * play/bubbles.el (bubbles--initialize-images): Use new names.
4949 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
4951 Update to CEDET 1.0's version of EIEIO.
4953 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
4955 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
4956 (eieio-default-eval-maybe): Eval val instead of unquoting only.
4957 (class-precedence-list): If class is nil, return nil.
4958 (eieio-generic-call): If class of first input arg is nil, don't
4959 look up static methods, and do check for primary methods.
4960 (initialize-instance): See if the default needs to be evaluated
4961 during the constructor.
4962 (eieio-perform-slot-validation-for-default): Don't do the check
4963 for values that will eventually be evaluated.
4964 (eieio-eval-default-p): New function.
4965 (eieio-default-eval-maybe): Use it.
4967 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
4969 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
4970 method-invocation-order.
4971 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
4972 (eieio-class-precedence-dfs): Compute class precedence list using
4974 (eieio-class-precedence-bfs): Compute class precedence list using
4976 (eieio-class-precedence-c3): Compute class precedence list using
4978 (class-precedence-list): New function.
4979 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
4980 (inconsistent-class-hierarchy): New error symbol.
4981 (call-next-method): Stow the replacement argument list for future
4982 call-next-method invocations.
4984 2010-09-23 Glenn Morris <rgm@gnu.org>
4986 * calendar/appt.el (appt-check): If not displaying the diary,
4987 use (diary 1) to only get the entries we need.
4988 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
4989 that it is in day order. (Bug#7019)
4991 * calendar/appt.el (appt-check): Rather than showing the diary,
4992 just turn off invisible display, and only if needed.
4994 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
4996 2010-09-23 Glenn Morris <rgm@gnu.org>
4998 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
4999 (byte-compile-defvar, byte-compile-cl-warn):
5000 Start warnings with lower-case, like the majority.
5002 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
5004 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
5006 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
5007 * files.el (auto-mode-alist): Move ld-script entries here, further down
5010 * vc/add-log.el: Don't require timezone when compiling.
5011 (timezone-make-date-sortable): Autoload it.
5012 (change-log-sortable-date-at): Don't require timezone.
5013 Use `ignore-errors'.
5015 * comint.el (comint-use-prompt-regexp-instead-of-fields):
5016 Move alias before definition, so it does not need autoloading.
5018 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
5019 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
5020 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
5021 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
5022 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
5023 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
5024 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
5025 * textmodes/tex-mode.el, textmodes/two-column.el:
5026 Remove leading `*' from docs of defcustoms etc.
5028 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
5030 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
5032 2010-09-22 Dan Christensen <jdc@uwo.ca>
5034 * calendar/time-date.el (date-to-time): Try using parse-time-string
5035 first before using the slower timezone-make-date-arpa-standard.
5037 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
5039 * calendar/time-date.el (format-seconds): Comment fix.
5041 2010-09-22 Glenn Morris <rgm@gnu.org>
5043 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
5044 is not automatically buffer-local.
5046 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
5048 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
5049 (smie-indent-comment): Be more careful with comment-start-skip.
5050 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
5051 (smie-indent-functions): Use them.
5053 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
5055 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
5057 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
5059 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
5060 tool-bar-position. Don't modify frame parameters here.
5061 (menu-bar-options-save): Add tool-bar-position.
5063 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
5065 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5067 * textmodes/reftex-parse.el (reftex-what-macro)
5068 (reftex-context-substring): Let-bind forward-sexp-function to nil
5069 since we don't need/want to treat \begin...\end as a block (bug#7053).
5071 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
5073 * simple.el (blink-matching-open): Use syntax-class.
5075 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
5076 Set invisibility spec for pascal's outline mode.
5077 (pascal-outline-change): Clean up calling convention.
5078 (pascal-show-all, pascal-hide-other-defuns): Update callers.
5080 * progmodes/prolog.el (prolog-smie-forward-token)
5081 (prolog-smie-backward-token): New functions.
5082 (prolog-mode-variables): Use them to parse "!," correctly.
5083 Set up smie-blink-matching for ".".
5085 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
5087 (ispell-region, ispell-process-line): Update users.
5089 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
5092 * textmodes/ispell.el: Fix commenting convention.
5093 (ispell-parse-output): Simplify, use push.
5094 (ispell-region): Use match-string-no-properties.
5095 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
5096 (ispell-minor-mode): Use define-minor-mode.
5097 (ispell-message): Remove unused var `skip-regexp'.
5098 (ispell-add-per-file-word-list): Use dynamic let-binding.
5099 Try and use the proper comment marker.
5101 * mail/sendmail.el: Fix commenting convention.
5102 (sendmail-send-it): Use line-beginning-position.
5104 * help-fns.el (describe-variable): Add original value, if applicable.
5106 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
5108 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
5110 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
5112 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5114 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
5115 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
5116 (smie-prec2-levels): Use them to better diagnose precedence cycles.
5117 (smie-blink-matching-check): Don't signal a mismatch if car is t.
5118 (smie-blink-matching-open): Rewrite to remove assumptions, so that
5119 something like "." can also be a closer.
5120 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
5121 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
5122 Rename internal functions to use "--". Update callers.
5124 * frame.el (make-frame-names-alist): Don't list frames on other displays.
5126 * fringe.el (fringe-styles): New var.
5127 (fringe-mode, fringe-query-style): Use it.
5129 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
5131 * progmodes/sql.el: Version 2.8
5132 (sql-login-params): Update widget structure; changes still needed.
5133 (sql-product-alist): Add :list-all and :list-table features for
5134 SQLite, Postgres and MySQL products.
5135 (sql-redirect): Handle default value.
5136 (sql-execute, sql-execute-feature): New functions.
5137 (sql-read-table-name): New function.
5138 (sql-list-all, sql-list-table): New functions. User API.
5139 (sql-mode-map, sql-interactive-mode-map): Add key definitions
5140 for above functions.
5141 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
5142 for above functions.
5143 (sql-postgres-login-params): Add user and database defaults.
5144 (sql-buffer-live-p): Bug fix.
5145 (sql-product-history): New variable.
5146 (sql-read-product): New function. Use it.
5147 (sql-set-product, sql-product-interactive): Use it.
5148 (sql-connection-history): New variable.
5149 (sql-read-connection): New function. Use it.
5150 (sql-connect): New function.
5151 (sql-for-each-login): Redesign function interface.
5152 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
5153 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
5154 (sql-comint): Check for program. Existing live buffer.
5155 (sql-comint-postgres): Add port parameter.
5157 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5159 * emacs-lisp/warnings.el: Fix commenting convention.
5160 (display-warning): Use special mode and make the buffer read-only.
5162 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
5164 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
5165 empty string when it follows a repeated or optional pattern.
5167 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
5169 * indent.el (indent-according-to-mode): Apply syntax-propertize.
5170 (indent-region): Use indent-according-to-mode.
5172 2010-09-18 Eli Zaretskii <eliz@gnu.org>
5174 * fringe.el (fringe-mode): Doc fix.
5176 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
5178 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
5179 refreshing the preview buffer.
5181 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
5183 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
5184 (latex-syntax-propertize-rules): New consts; replace
5185 tex-font-lock-syntactic-keywords.
5186 (tex-env-mark, latex-env-before-change): New functions.
5187 (latex-electric-env-pair-mode): New minor mode.
5188 (tex-font-lock-verb): Change arguments; do move point.
5189 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
5190 representation as a form of comment.
5191 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
5192 (doctex-syntax-propertize-rules): New const; replaces
5193 doctex-font-lock-syntactic-keywords.
5194 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
5196 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
5197 (fortran-make-syntax-propertize-function): New function; replaces
5198 fortran-font-lock-syntactic-keywords.
5199 (fortran-mode): Use it.
5200 (fortran-line-length): Use it. Improve interactive spec.
5202 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
5203 (syntax-propertize-rules): Add var-ref case. Fix offset computation
5204 when adding surrounding \(..\).
5206 * progmodes/js.el (js-mode): Fix last change (bug#7054).
5208 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
5210 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
5211 Use with-current-buffer.
5213 * isearch.el (isearch-face): Rename from `isearch'.
5214 (isearch-highlight): Use new name.
5216 2010-09-17 Eli Zaretskii <eliz@gnu.org>
5218 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
5219 5, for `half' width fringes. (Bug#6933)
5221 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
5223 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5224 (byte-compile-defvar): "foo/bar" does not lack a prefix.
5226 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
5228 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
5230 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
5231 in calculating new frame position. Add more space between new and
5232 parent on the left (Bug#7048).
5234 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
5236 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
5239 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
5241 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
5243 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
5244 obsolete alias for x-selection-value.
5246 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
5248 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
5250 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
5253 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
5255 * net/tramp-compat.el (tramp-compat-with-temp-message)
5256 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
5257 (tramp-compat-process-put): New defuns.
5259 * net/tramp.el (top):
5260 * net/tramp-gvfs.el (top):
5261 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
5263 * net/tramp.el (tramp-progress-reporter-update):
5264 Use `tramp-compat-funcall'.
5266 * net/tramp.el (tramp-process-actions):
5267 * net/tramp-gvfs.el (tramp-handle-vc-registered):
5268 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
5269 (tramp-get-remote-stat, tramp-get-remote-readlink):
5270 Use `tramp-compat-with-temp-message'.
5272 * net/tramp-sh.el (top): Require 'cl.
5273 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
5274 (tramp-open-connection-setup-interactive-shell):
5275 Use `tramp-compat-process-put'.
5277 2010-09-15 Alan Mackenzie <acm@muc.de>
5279 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
5281 (c-forward-<>-arglist-recur): Fix an infinite recursion.
5283 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
5285 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
5286 `lexical' for warnings related to lexical scoping.
5287 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
5288 global vars which don't have a prefix and could hence affect lexical
5289 scoping in unrelated files.
5291 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
5293 * net/imap.el: Revert back to version
5294 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
5297 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
5299 * obsolete/old-whitespace.el (whitespace-unload-function):
5300 Explicitly pass `obarray' to `unintern' to avoid a warning.
5302 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5304 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
5305 Add `when' argument. Update callers.
5307 * subr.el (unintern): Declare the obarray arg mandatory.
5309 2010-09-14 Glenn Morris <rgm@gnu.org>
5311 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
5314 * calendar/diary-lib.el (diary-included-files): New variable.
5315 (diary-list-entries): Maybe initialize diary-included-files.
5316 (diary-include-other-diary-files): Append to diary-included-files.
5317 * calendar/appt.el (appt-update-list): Also check the members of
5318 diary-included-files. (Bug#6999)
5319 (appt-check): Doc fix.
5321 2010-09-14 David Reitter <david.reitter@gmail.com>
5323 * simple.el (line-move-visual): Do not truncate goal column to
5324 integer size. (Bug#7020)
5326 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5328 * repeat.el (repeat): Allow repeating when the last event is a click.
5329 Suggested by Drew Adams (bug#6256).
5331 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
5333 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
5334 Replace setting HGRCPATH to "" by some less invasive --config options.
5336 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5338 * font-lock.el (font-lock-beginning-of-syntax-function):
5341 2010-09-14 Glenn Morris <rgm@gnu.org>
5343 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
5344 and tool-bar modes. (Bug#6211)
5345 (menu-bar-mode): Move setting of standard-value after the
5346 minor-mode definition, otherwise it seems to have no effect.
5348 2010-09-14 Masatake YAMATO <yamato@redhat.com>
5350 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
5351 Fix typo. (Bug#6976)
5353 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5355 * whitespace.el: Allow cleaning up blanks without blank
5356 visualization (Bug#6651). Adjust help window for
5357 whitespace-toggle-options (Bug#6479). Allow to use fill-column
5358 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
5359 (whitespace-style): Add new value 'face. Adjust docstring.
5360 (whitespace-space, whitespace-hspace, whitespace-tab):
5361 Adjust foreground property face.
5362 (whitespace-line-column): Adjust docstring and type declaration.
5363 (whitespace-style-value-list, whitespace-toggle-option-alist)
5364 (whitespace-help-text): Adjust const initialization.
5365 (whitespace-toggle-options, global-whitespace-toggle-options):
5367 (whitespace-display-window, whitespace-interactive-char)
5368 (whitespace-style-face-p, whitespace-color-on): Adjust code.
5369 (whitespace-help-scroll): New fun.
5371 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
5373 * calendar/time-date.el (format-seconds): Comment fix.
5375 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
5377 * progmodes/sql.el: Version 2.7.
5378 (sql-buffer-live-p): Improve detection.
5379 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
5380 (sql-set-sqli-buffer): Use it.
5381 (sql-product-interactive): Run `sql-set-sqli-hook'.
5382 (sql-rename-buffer): Code cleanup.
5383 (sql-redirect, sql-redirect-value): New functions. More to come.
5385 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
5387 Port tramp-related Makefile changes of 2010-09-08T14:42:54Z!michael.albinus@gmx.de, 2010-09-13T15:17:01Z!michael.albinus@gmx.de to Windows.
5388 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
5389 (TRAMP_SRC): New macro.
5390 ($(lisp)/net/tramp-loaddefs.el): New target.
5392 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
5394 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
5396 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
5398 * net/tramp.el (top): Don't show loading message. Require just
5399 'tramp-compat, everything else is required there.
5400 Use `ignore-errors' where appropriate.
5401 (tramp-inline-compress-start-size, tramp-copy-size-limit)
5402 (tramp-terminal-type, tramp-end-of-output)
5403 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
5404 (tramp-completion-function-alist-ssh)
5405 (tramp-completion-function-alist-telnet)
5406 (tramp-completion-function-alist-su)
5407 (tramp-completion-function-alist-putty, tramp-remote-path)
5408 (tramp-remote-process-environment, tramp-sh-extra-args)
5409 (tramp-actions-before-shell, tramp-uudecode)
5410 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
5411 (tramp-perl-file-attributes)
5412 (tramp-perl-directory-files-and-attributes)
5413 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
5414 (tramp-perl-encode, tramp-perl-decode)
5415 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
5416 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
5417 (tramp-handle-make-symbolic-link, tramp-handle-load)
5418 (tramp-handle-file-name-as-directory)
5419 (tramp-handle-file-name-directory)
5420 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
5421 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
5422 (tramp-do-file-attributes-with-ls)
5423 (tramp-do-file-attributes-with-perl)
5424 (tramp-do-file-attributes-with-stat)
5425 (tramp-handle-set-visited-file-modtime)
5426 (tramp-handle-verify-visited-file-modtime)
5427 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
5428 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
5429 (tramp-handle-file-selinux-context)
5430 (tramp-handle-set-file-selinux-context)
5431 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
5432 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
5433 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
5434 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
5435 (tramp-handle-file-ownership-preserved-p)
5436 (tramp-handle-directory-file-name, tramp-handle-directory-files)
5437 (tramp-handle-directory-files-and-attributes)
5438 (tramp-do-directory-files-and-attributes-with-perl)
5439 (tramp-do-directory-files-and-attributes-with-stat)
5440 (tramp-handle-file-name-all-completions)
5441 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
5442 (tramp-handle-copy-file, tramp-handle-copy-directory)
5443 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
5444 (tramp-do-copy-or-rename-file-via-buffer)
5445 (tramp-do-copy-or-rename-file-directly)
5446 (tramp-do-copy-or-rename-file-out-of-band)
5447 (tramp-handle-make-directory, tramp-handle-delete-directory)
5448 (tramp-handle-delete-file)
5449 (tramp-handle-dired-recursive-delete-directory)
5450 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
5451 (tramp-handle-insert-directory)
5452 (tramp-handle-unhandled-file-name-directory)
5453 (tramp-handle-expand-file-name)
5454 (tramp-handle-substitute-in-file-name)
5455 (tramp-handle-executable-find, tramp-process-sentinel)
5456 (tramp-handle-start-file-process, tramp-handle-process-file)
5457 (tramp-handle-call-process-region, tramp-handle-shell-command)
5458 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
5459 (tramp-handle-insert-file-contents)
5460 (tramp-handle-insert-file-contents-literally)
5461 (tramp-handle-find-backup-file-name)
5462 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
5463 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
5464 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
5465 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
5466 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
5467 (tramp-find-file-exists-command, tramp-open-shell)
5468 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
5469 (tramp-open-connection-setup-interactive-shell)
5470 (tramp-local-coding-commands, tramp-remote-coding-commands)
5471 (tramp-find-inline-encoding, tramp-call-local-coding-command)
5472 (tramp-inline-compress-commands, tramp-find-inline-compress)
5473 (tramp-compute-multi-hops, tramp-maybe-open-connection)
5474 (tramp-send-command, tramp-wait-for-output)
5475 (tramp-send-command-and-check, tramp-barf-unless-okay)
5476 (tramp-send-command-and-read, tramp-mode-string-to-int)
5477 (tramp-convert-file-attributes, tramp-check-cached-permissions)
5478 (tramp-file-mode-from-int, tramp-file-mode-permissions)
5479 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
5480 (tramp-method-out-of-band-p, tramp-local-host-p)
5481 (tramp-get-remote-path, tramp-get-remote-tmpdir)
5482 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
5483 (tramp-get-test-command, tramp-get-test-nt-command)
5484 (tramp-get-file-exists-command, tramp-get-remote-ln)
5485 (tramp-get-remote-perl, tramp-get-remote-stat)
5486 (tramp-get-remote-readlink, tramp-get-remote-trash)
5487 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
5488 (tramp-get-local-uid, tramp-get-local-gid)
5489 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
5491 (tramp-methods, tramp-default-method-alist)
5492 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
5493 Move initialization to tramp-sh.el.
5494 (tramp-temp-name-prefix): Make it a defconst.
5495 (tramp-dissect-file-name): Don't check anymore for multi-hop
5497 (tramp-debug-outline-regexp): Add a docstring.
5498 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
5499 (tramp-get-debug-buffer): Use it.
5501 * net/tramp-cache.el (top): Set tramp-autoload cookie for
5502 initialization forms.
5503 (tramp-set-connection-property): Don't protect `tramp-message'
5504 call, it isn't necessary any longer.
5505 (tramp-dump-connection-properties): Use `ignore-errors'.
5507 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
5508 'password-cache and 'auth-source.
5510 * net/tramp-gvfs.el (top):
5511 * net/tramp-smb.el (top): Require 'tramp-sh.
5513 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
5515 * net/tramp-sh.el: New file, derived from tramp.el.
5516 (top): Initialize `tramp-methods', `tramp-default-method-alist',
5517 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
5518 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
5519 Use `ignore-errors' where appropriate.
5520 (tramp-sh-file-name-handler-alist): Rename from
5521 `tramp-file-name-handler-alist'.
5522 (tramp-send-command-and-check): Return t or nil. Remove all
5523 `zerop' checks, where called.
5524 (tramp-handle-set-file-modes)
5525 (tramp-do-copy-or-rename-file-directly)
5526 (tramp-handle-delete-directory, tramp-handle-delete-file)
5527 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
5528 (tramp-sh-file-name-handler, tramp-send-command-and-check)
5529 (tramp-get-remote-ln): Set tramp-autoload cookie.
5531 * net/tramp-fish.el: Remove file.
5533 2010-09-13 Daiki Ueno <ueno@unixuser.org>
5535 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
5536 buffer-file-name to avoid file-locking. (Bug#7026)
5538 2010-09-13 Julien Danjou <julien@danjou.info>
5540 * notifications.el (notifications-notify): Add support for
5541 image-path and sound-name.
5542 (notifications-specification-version): Add this variable.
5544 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5546 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
5548 2010-09-12 Leo <sdl.web@gmail.com>
5550 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
5551 (rcirc-completion-start): New variables.
5552 (rcirc-nick-completions): Rename to rcirc-completions.
5553 (rcirc-nick-completion-start-offset): Delete.
5554 (rcirc-completion-at-point): New function for constructing
5555 completion data for both nicks and irc commands. Add to
5556 completion-at-point-functions in rcirc mode.
5557 (rcirc-complete): Rename from rcirc-nick-complete; use
5558 rcirc-completion-at-point.
5559 (defun-rcirc-command): Update rcirc-client-commands.
5561 2010-09-11 Glenn Morris <rgm@gnu.org>
5563 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
5564 atomically, to avoid parallel build errors. (Bug#4196)
5566 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
5568 * progmodes/sql.el: Version 2.6
5569 (sql-dialect): Synonym for "sql-product".
5570 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
5571 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
5572 Set "sql-buffer" to buffer name not buffer object so multiple sql
5573 interactive buffers work properly. Reverts misguided changes in
5575 (sql-comint): Make sure different buffer name is used if "*SQL*"
5576 buffer is for a different product.
5577 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
5579 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
5580 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
5581 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
5582 Accept new buffer name or prompt for one.
5583 (sql-port): Default to zero.
5584 (sql-comint-mysql): Handle "sql-port" as a numeric.
5585 (sql-port-history): Delete unused variable.
5586 (sql-get-login): Default "sql-port" to a number.
5587 (sql-product-alist): Correct Postgres prompt and terminator regexp.
5588 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
5589 "sqlite3" executables.
5590 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
5591 (sql-buffer-live-p): New function.
5592 (sql-mode-menu, sql-send-string): Use it.
5593 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
5595 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
5596 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
5598 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5600 * net/netrc.el (netrc-credentials): New convenience function.
5602 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
5604 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
5605 to replace texinfo-font-lock-syntactic-keywords.
5606 (texinfo-mode): Use it.
5608 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
5609 Use syntax-propertize-function.
5611 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
5612 replace sgml-font-lock-syntactic-keywords.
5613 (sgml-mode): Use it.
5615 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
5616 since we don't use it.
5618 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
5620 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
5622 (vhdl-fontify-buffer): Adjust.
5624 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
5625 replace tcl-font-lock-syntactic-keywords.
5628 * progmodes/simula.el (simula-syntax-propertize-function): New var to
5629 replace simula-font-lock-syntactic-keywords.
5630 (simula-mode): Use it.
5632 * progmodes/sh-script.el (sh-st-symbol): Remove.
5633 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
5634 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
5635 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
5636 (sh-font-lock-paren): Set syntax-multiline.
5637 (sh-font-lock-syntactic-keywords): Remove.
5638 (sh-syntax-propertize-function): New function to replace it.
5641 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
5642 Define while compiling.
5643 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
5644 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
5645 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
5646 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
5647 (ruby-here-doc-end-syntax): Only define when
5648 syntax-propertize is not available.
5649 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
5651 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
5652 (electric-indent-chars): Silence bytecompiler.
5653 (ruby-mode): Use prog-mode, syntax-propertize-function, and
5654 electric-indent-chars.
5656 * progmodes/python.el (python-syntax-propertize-function): New var to
5657 replace python-font-lock-syntactic-keywords.
5658 (python-mode): Use it.
5659 (python-quote-syntax): Simplify and adjust to new use.
5661 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
5662 replace perl-font-lock-syntactic-keywords.
5663 (perl-syntax-propertize-special-constructs): New fun to replace
5664 perl-font-lock-special-syntactic-constructs.
5665 (perl-font-lock-syntactic-face-function): New fun.
5666 (perl-mode): Use it.
5668 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
5669 to replace octave-font-lock-close-quotes.
5670 (octave-syntax-propertize-function): New function to replace
5671 octave-font-lock-syntactic-keywords.
5672 (octave-mode): Use it.
5674 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
5675 replaces mixal-font-lock-syntactic-keywords.
5676 (mixal-mode): Use it.
5678 * progmodes/make-mode.el (makefile-syntax-propertize-function):
5679 New var; replaces makefile-font-lock-syntactic-keywords.
5680 (makefile-mode): Use it.
5681 (makefile-imake-mode): Adjust.
5683 * progmodes/js.el (js--regexp-literal): Define while compiling.
5684 (js-syntax-propertize-function): New var; replaces
5685 js-font-lock-syntactic-keywords.
5688 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
5689 replaces gdb-script-font-lock-syntactic-keywords.
5690 (gdb-script-mode): Use it.
5692 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
5693 (fortran--font-lock-syntactic-keywords): New var.
5694 (fortran-line-length): Update syntax-propertize-function and
5695 fortran--font-lock-syntactic-keywords.
5697 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
5699 * progmodes/cfengine.el (cfengine-mode):
5700 Use syntax-propertize-function.
5701 (cfengine-font-lock-syntactic-keywords): Remove.
5703 * progmodes/autoconf.el (autoconf-mode):
5704 Use syntax-propertize-function.
5705 (autoconf-font-lock-syntactic-keywords): Remove.
5707 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
5708 (ada-after-change-function, ada-initialize-syntax-table-properties)
5709 (ada-handle-syntax-table-properties): Only define when
5710 syntax-propertize is not available.
5711 (ada-mode): Use syntax-propertize-function.
5713 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
5714 (font-lock-fontify-syntactic-keywords-region): Move handling of
5715 font-lock-syntactically-fontified to...
5716 (font-lock-default-fontify-region): ...here.
5717 Let syntax-propertize-function take precedence.
5718 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
5720 * emacs-lisp/syntax.el (syntax-propertize-function)
5721 (syntax-propertize-chunk-size, syntax-propertize--done)
5722 (syntax-propertize-extend-region-functions): New vars.
5723 (syntax-propertize-wholelines, syntax-propertize-multiline)
5724 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
5725 (syntax-propertize): New functions.
5726 (syntax-propertize-rules): New macro.
5727 (syntax-ppss-flush-cache): Set syntax-propertize--done.
5728 (syntax-ppss): Call syntax-propertize.
5730 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
5732 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
5734 * textmodes/ispell.el (ispell-init-process): Improve comments.
5735 XEmacs compatibility changes regarding (add-hook) 'local option
5736 and (set-process-query-on-exit-flag).
5738 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
5740 * net/tramp-cache.el (tramp-parse-connection-properties):
5741 Set tramp-autoload cookie.
5743 2010-09-09 Glenn Morris <rgm@gnu.org>
5745 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
5746 (imagemagick-register-types): Doc fix.
5748 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
5750 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
5752 * progmodes/js.el (require): Require is already "eval-and-compile".
5753 (js--re-search-forward): Avoid `eval'. Preserve the error data.
5754 (js--re-search-backward): Use js--re-search-forward.
5756 * progmodes/fortran.el (fortran-line-length): Don't recompute
5757 syntactic keywords redundantly a second time.
5759 * progmodes/ada-mode.el: Replace "(set '" with setq.
5760 (ada-mode): Simplify.
5761 (ada-create-case-exception, ada-adjust-case-interactive)
5762 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
5763 (ada-search-ignore-string-comment, ada-move-to-start)
5764 (ada-move-to-end): Use with-syntax-table.
5766 * font-lock.el (save-buffer-state): Remove `varlist' arg.
5767 (font-lock-unfontify-region, font-lock-default-fontify-region):
5768 Update usage correspondingly.
5769 (font-lock-fontify-syntactic-keywords-region):
5770 Set parse-sexp-lookup-properties buffer-locally here.
5771 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
5773 * simple.el (blink-matching-open): Don't burp if we can't find a match.
5775 2010-09-08 Glenn Morris <rgm@gnu.org>
5777 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
5778 Error if not compiled with -DBYTE_CODE_METER.
5780 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5781 Ignore dir-locals-file.
5783 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
5785 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5787 (compilation-error-regexp-alist-alist): Rule out ": " in file names
5788 for the `gnu' messages.
5789 (compilation-set-skip-threshold): New command.
5790 (compilation-start): Use \' rather than $.
5791 (compilation-forget-errors): Use clrhash.
5793 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
5795 * textmodes/ispell.el (ispell-valid-dictionary-list):
5798 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
5800 Migrate to Tramp 2.2. Rearrange load dependencies.
5801 (Bug#1529, Bug#5448, Bug#5705)
5803 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
5804 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
5805 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
5807 * net/tramp.el (top): Remove all other tramp-* loads except
5808 tramp-compat.el. Remove all changes to tramp-unload-hook for
5809 other tramp-* packages. Rearrange defun order. Change calls of
5810 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
5811 `tramp-compat-octal-to-decimal' to new function names.
5812 (tramp-terminal-type, tramp-initial-end-of-output)
5813 (tramp-methods, tramp-foreign-file-name-handler-alist)
5814 (tramp-tramp-file-p, tramp-completion-mode-p)
5815 (tramp-send-command-and-check, tramp-get-remote-path)
5816 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
5817 (tramp-shell-quote-argument): Set tramp-autoload cookie.
5818 (with-file-property, with-connection-property): Move to
5820 (tramp-local-call-process, tramp-decimal-to-octal)
5821 (tramp-octal-to-decimal): Move to tramp-compat.el.
5822 (tramp-handle-shell-command): Do not require 'shell.
5823 (tramp-compute-multi-hops): No special handling for tramp-gw-*
5825 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
5827 * net/tramp-cache.el (top): Require 'tramp. Add to
5828 `tramp-unload-hook'.
5829 (tramp-cache-data, tramp-get-file-property)
5830 (tramp-set-file-property, tramp-flush-file-property)
5831 (tramp-flush-directory-property, tramp-get-connection-property)
5832 (tramp-set-connection-property, tramp-flush-connection-property)
5833 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
5835 (with-file-property, with-connection-property): New defuns, moved
5837 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
5840 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
5841 (tramp-version): Set tramp-autoload cookie.
5843 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
5844 changes to tramp-unload-hook for other tramp-* packages. Add to
5845 `tramp-unload-hook'.
5846 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
5847 (tramp-compat-call-process): New defuns, moved from tramp.el.
5849 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
5850 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5851 Add to `tramp-unload-hook'. Change call of
5852 `tramp-compat-decimal-to-octal' to new function name.
5853 (tramp-fish-method): Make it a defconst.
5854 (tramp-fish-file-name-p): Make it a defsubst.
5855 (tramp-fish-method, tramp-fish-file-name-handler)
5856 (tramp-fish-file-name-p): Set tramp-autoload cookie.
5858 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
5859 `tramp-foreign-file-name-handler-alist'. Add to
5860 `tramp-unload-hook'.
5861 (tramp-ftp-method): Make it a defconst.
5862 (tramp-ftp-file-name-p): Make it a defsubst.
5863 (tramp-ftp-method, tramp-ftp-file-name-handler)
5864 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
5866 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
5867 `tramp-foreign-file-name-handler-alist'. Add to
5868 `tramp-unload-hook'. Change checks, whether package can be
5870 (tramp-gvfs-file-name-p): Make it a defsubst.
5871 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
5872 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
5873 (tramp-gvfs-handle-file-directory-p): New defun.
5874 (tramp-gvfs-file-name-handler-alist): Use it.
5876 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
5877 `tramp-foreign-file-name-handler-alist'. Add to
5878 `tramp-unload-hook'.
5879 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
5880 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
5882 (tramp-gw-tunnel-method, tramp-gw-socks-method)
5883 (tramp-gw-open-connection): Set tramp-autoload cookie.
5885 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
5886 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5887 Add to `tramp-unload-hook'. Change checks, whether package can be
5889 (tramp-imap-file-name-p): Make it a defsubst.
5890 (tramp-imap-method, tramp-imaps-method)
5891 (tramp-imap-file-name-handler)
5892 (tramp-imap-file-name-p): Set tramp-autoload cookie.
5894 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
5895 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5896 Add to `tramp-unload-hook'. Change checks, whether package can be
5897 loaded. Change call of `tramp-compat-decimal-to-octal' to new
5899 (tramp-smb-tunnel-method): Make it a defconst.
5900 (tramp-smb-file-name-p): Make it a defsubst.
5901 (tramp-smb-method, tramp-smb-file-name-handler)
5902 (tramp-smb-file-name-p): Set tramp-autoload cookie.
5904 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
5905 (tramp-uuencode-region): Set tramp-autoload cookie.
5907 * net/trampver.el (top) Add to `tramp-unload-hook'.
5908 (tramp-version, tramp-bug-report-address): Set tramp-autoload
5909 cookie. Update release number.
5911 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
5913 * textmodes/ispell.el (ispell-start-process): Make sure original
5914 arg list is properly initialized (Bug#6993, Bug#6994).
5916 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
5918 * files.el (directory-abbrev-alist): Use \` as default regexp.
5920 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
5921 chars like - or ] (bug#6984).
5922 (rx-any-condense-range): Explode 2-char ranges.
5924 2010-09-06 Glenn Morris <rgm@gnu.org>
5926 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
5928 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
5930 * textmodes/bibtex.el:
5931 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
5933 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5935 * net/imap.el (imap-message-map): Remove optional buffer parameter,
5936 since no callers use it.
5937 (imap-message-get): Ditto.
5938 (imap-message-put): Ditto.
5939 (imap-mailbox-map): Ditto.
5940 (imap-mailbox-put): Ditto.
5941 (imap-mailbox-get): Ditto.
5942 (imap-mailbox-get): Revert last change for this function.
5944 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5946 * net/imap.el (imap-fetch-safe): Remove function, and alter all
5947 callers to use `imap-fetch' instead. According to the comments, this
5948 should be safe, since all other IMAP clients use the 1:* syntax.
5949 (imap-enable-exchange-bug-workaround): Remove.
5950 (imap-debug): Remove -- doesn't seem very useful.
5952 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5954 * net/imap.el (imap-log): New convenience function used throughout
5955 instead of repeating the same code all over the place.
5957 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
5959 * mouse.el (mouse-save-then-kill): Save region to kill-ring
5960 when mouse-drag-copy-region is non-nil (Bug#6956).
5962 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
5964 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
5965 Improve regexps (Bug#6987).
5966 (dired-sort-toggle): Search more robustly for -t flag.
5968 * files.el (get-free-disk-space): Search more robustly for
5969 "available" column. Suggested by Ehud Karni
5970 <ehud@unix.mvs.co.il>.
5972 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
5974 * international/uni-bidi.el:
5975 * international/uni-category.el:
5976 * international/uni-combining.el:
5977 * international/uni-decimal.el:
5978 * international/uni-mirrored.el:
5979 * international/uni-name.el: Regenerate.
5981 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5983 * electric.el (electric-indent-post-self-insert-function):
5984 Don't reindent with a sloppy indentation function.
5986 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
5987 border case in change-log-mode.
5989 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
5991 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5992 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
5993 Recognize leading tab in gcc-include regexp. Ignore names with
5994 leading "from" or "in" in gnu regexp (Bug#6937).
5996 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5998 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
5999 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
6000 (ispell-start-process): Avoid setq and simplify logic.
6001 (ispell-init-process): Setup kill-buffer-hook locally when needed.
6002 (kill-buffer-hook): Don't use it globally with code that uses
6003 expand-file-name since that may call kill-buffer via
6004 code_conversion_restore.
6006 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
6008 * emacs-lisp/package.el (package-directory-list): Only call
6009 file-name-nondirectory on a string.
6011 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
6013 * emacs-lisp/package.el (package--download-one-archive):
6014 Ensure that archive-contents is valid before saving it.
6015 (package-activate-1, package-mark-obsolete, define-package)
6016 (package-compute-transaction, package-list-maybe-add): Use push.
6018 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
6020 Use SMIE's blink-paren for octave-mode.
6021 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
6022 Backslashes do not escape single-quotes, single-quotes do.
6023 (octave-block-else-regexp, octave-block-end-regexp)
6024 (octave-block-match-alist): Remove.
6025 (octave-smie-bnf-table): New var, with old content.
6026 (octave-smie-op-levels): Use it.
6027 (octave-smie-closer-alist): New var.
6028 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
6029 (octave-blink-matching-block-open): Remove.
6030 (octave-reindent-then-newline-and-indent, octave-electric-semi)
6031 (octave-electric-space): Let self-insert-command run expand-abbrev and
6034 * electric.el (electricity): New group.
6035 (electric-indent-chars): New var.
6036 (electric-indent-post-self-insert-function): New fun.
6037 (electric-indent-mode): New minor mode.
6038 (electric-pair-skip-self): New custom.
6039 (electric-pair-post-self-insert-function): New function.
6040 (electric-pair-mode): New minor mode.
6042 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
6043 calcAlg-blink-matching-open.
6044 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
6045 (calc-do-alg-entry): Only touch the part of the keymap that varies.
6046 Use the new blink-matching-check-function.
6048 Provide blink-matching support to SMIE.
6049 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
6050 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
6051 (smie-blink-matching-check, smie-blink-matching-open): New functions.
6053 * simple.el (newline): Fix last change to properly remove itself from
6056 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
6058 * simple.el (newline): Eliminate optimization.
6059 Use post-self-insert-hook to set hard-newline and things before
6060 running post-self-insert-hook.
6061 (blink-matching-check-mismatch): New function.
6062 (blink-matching-check-function): New variable.
6063 (blink-matching-open): Use them.
6064 Skip back forward over prefix chars skipped by forward-sexp.
6065 Don't check if the parens are backslash escaped.
6066 (blink-paren-post-self-insert-function): Check backslash escaping here.
6068 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
6070 * emacs-lisp/package.el (package-menu-mode-map):
6071 Change package-menu-revert bindings to revert-buffer.
6072 (package-menu-mode): Set revert-buffer-function.
6073 (package-menu-revert): Doc fix.
6075 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
6077 * textmodes/ispell.el (ispell-init-process): Use "~/" as
6078 `default-directory' unless using Ispell per-directory personal
6079 dictionaries and not in a mini-buffer under XEmacs.
6080 (kill-buffer-hook): Do not kill ispell process on exit when
6081 `ispell-process-directory' is "~/". (Bug#6143)
6083 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
6085 * simple.el (kill-new): Call interprogram-cut-function with only
6088 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
6089 Remove cut buffer from error message.
6091 * term/x-win.el (x-select-text):
6092 * term/pc-win.el (x-selection-value):
6093 * term/ns-win.el (x-selection-value):
6094 * eshell/em-term.el:
6095 * w32-fns.el (x-get-selection-value):
6096 * mouse-sel.el (mouse-sel-set-selection-function):
6097 * frame.el (display-selections-p): Remove cut-buffer in documentation.
6099 * term/x-win.el: Update documentation for x-last-selected-text-*.
6100 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
6101 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
6102 (x-select-text): Remove argument PUSH, update documentation.
6103 Remove cut-buffer code.
6104 (x-selection-value-internal): Was previously x-selection-value.
6105 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
6106 Update documentation, remove cut-buffer code.
6107 Call x-selection-value-internal.
6108 (x-clipboard-yank): Call x-selection-value-internal.
6109 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
6111 * term/pc-win.el (x-last-selected-text):
6112 x-cut-buffer-or-selection-value renamed to x-selection-value
6113 (x-select-text): Remove argument PUSH, update documentation.
6115 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
6116 x-cut-buffer-or-selection-value renamed to x-selection-value
6117 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
6118 (x-select-text): Remove argument PUSH, update documentation.
6120 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
6122 * w32-fns.el (x-last-selected-text):
6123 x-cut-buffer-or-selection-value renamed to x-selection-value.
6124 (x-cut-buffer-max): Remove.
6125 (x-select-text): Remove argument PUSH, update documentation.
6127 * simple.el (interprogram-cut-function): Remove mention of PUSH.
6129 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
6131 * mouse-sel.el (mouse-sel-get-selection-function):
6132 x-cut-buffer-or-selection-value renamed to x-selection-value.
6133 (x-select-text): Remove optional push.
6135 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
6137 * simple.el (blink-paren-function): Move from C to here.
6138 (blink-paren-post-self-insert-function): New function.
6139 (post-self-insert-hook): Use it.
6141 * emacs-lisp/pcase.el (pcase-split-memq):
6142 Fix overenthusiastic optimisation.
6143 (pcase-u1): Handle the case of a lambda pred.
6145 2010-08-31 Kenichi Handa <handa@m17n.org>
6147 * international/mule-cmds.el (standard-display-european-internal):
6148 Setup standard-display-table for 8-bit characters by storing 8-bit
6149 characters in the element vector.
6151 * disp-table.el (standard-display-8bit):
6152 Setup standard-display-table for 8-bit characters by storing 8-bit
6153 characters in the element vector.
6154 (standard-display-european): Likewise.
6156 2010-08-31 Masatake YAMATO <yamato@redhat.com>
6158 * textmodes/nroff-mode.el (nroff-view): New command.
6159 (nroff-mode-map): Bind it to C-c C-c.
6161 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
6163 * emacs-lisp/smie.el (smie-down-list): New command.
6165 Remove old indentation and navigation code on octave-mode.
6166 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
6167 smie-down-list rather than add a binding for octave-down-block.
6168 (octave-mark-block, octave-blink-matching-block-open):
6169 Rely on forward-sexp-function.
6170 (octave-fill-paragraph): Don't narrow, so you can use
6171 indent-according-to-mode.
6172 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
6173 (octave-in-block-p, octave-re-search-forward-kw)
6174 (octave-re-search-backward-kw, octave-indent-calculate)
6175 (octave-end-as-array-index-p, octave-block-end-offset)
6176 (octave-scan-blocks, octave-forward-block, octave-backward-block)
6177 (octave-down-block, octave-backward-up-block, octave-up-block)
6178 (octave-before-magic-comment-p, octave-indent-line): Remove.
6180 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
6182 * emacs-lisp/package.el (package--read-archive-file): Just use
6183 `read', to avoid copying an additional string.
6184 (package-menu-mode): Set header-line-format here.
6185 (package-menu-refresh, package-menu-revert): Signal an error if
6186 not in the Package Menu.
6187 (package-menu-package-list): New var.
6188 (package--generate-package-list): Operate on the current buffer;
6189 don't assume that it is *Packages*, since the user may rename it.
6190 Allow persistent package listings and sort keys using
6191 package-menu-package-list and package-menu-package-sort-key.
6192 (package-menu--version-predicate): Fix version calculation.
6193 (package-menu-sort-by-column): Don't select the window.
6194 (package--list-packages): Create the *Packages* buffer.
6195 Set package-menu-package-list-key.
6196 (list-packages): Sorting by status is now the default.
6197 (package-buffer-info): Use match-string-no-properties.
6198 (define-package): Add a &rest argument for future proofing, but
6200 (package-install-from-buffer, package-install-buffer-internal):
6201 Merge into a single function, package-install-from-buffer.
6202 (package-install-file): Change caller.
6204 * finder.el: Load finder-inf using `require'.
6205 (finder-list-matches): Sorting by status is now the default.
6206 (finder-compile-keywords): Simpify printing.
6208 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
6210 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
6211 (octave-mode-map): Remove special bindings for forward/backward-block
6212 and octave-backward-up-block. Use smie-close-block.
6213 (octave-continuation-marker-regexp): New var.
6214 (octave-continuation-regexp): Use it.
6215 (octave-operator-table, octave-smie-op-levels)
6216 (octave-operator-regexp, octave-smie-indent-rules): New vars.
6217 (octave-smie-backward-token, octave-smie-forward-token): New funs.
6218 (octave-mode): Use SMIE.
6219 (octave-close-block): Delete.
6221 2010-08-30 Eli Zaretskii <eliz@gnu.org>
6223 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
6224 CLIPBOARD, not in PRIMARY. (Bug#6944)
6226 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
6228 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
6230 (smie-indent-column): Allow indirection through variables.
6232 * composite.el (save-buffer-state): Delete, unused.
6233 * font-lock.el (save-buffer-state): Use with-silent-modifications.
6234 (font-lock-default-fontify-region): Use with-syntax-table.
6235 * jit-lock.el (with-buffer-unmodified): Remove.
6236 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
6238 Use `declare' in defmacros.
6239 * window.el (save-selected-window):
6240 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
6241 * progmodes/python.el (def-python-skeleton):
6242 * net/dbus.el (dbus-ignore-errors):
6243 * jka-cmpr-hook.el (with-auto-compression-mode):
6244 * international/mule.el (with-category-table):
6245 * emacs-lisp/timer.el (with-timeout):
6246 * emacs-lisp/lisp-mnt.el (lm-with-file):
6247 * emacs-lisp/eieio.el (with-slots):
6248 * emacs-lisp/easymenu.el (easy-menu-define):
6249 * emacs-lisp/debug.el (debugger-env-macro):
6250 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
6251 (Multiple-value-call, Multiple-value-prog1):
6252 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
6253 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
6254 edebug rule to definition.
6255 * emacs-lisp/lisp-mode.el (save-selected-window)
6256 (with-current-buffer, combine-after-change-calls)
6257 (with-output-to-string, with-temp-file, with-temp-buffer)
6258 (with-temp-message, with-syntax-table, read-if, eval-after-load)
6259 (dolist, dotimes, when, unless):
6260 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
6262 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
6264 * finder.el: Require `package'.
6265 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
6266 (finder-package-info): Var deleted.
6267 (finder-keywords-hash, finder--builtins-alist): New vars.
6268 (finder-compile-keywords): Compute package--builtins and
6269 finder-keywords-hash instead of finder-keywords-hash, respecting
6270 the "Package" header.
6271 (finder-unknown-keywords, finder-list-matches):
6272 Use finder-keywords-hash and package--list-packages.
6273 (finder-mode): Don't set font-lock-defaults.
6274 (finder-exit): We don't use "*Finder-package*" and "*Finder
6275 Category*" buffers anymore.
6277 * emacs-lisp/package.el (package--builtins-base): Var deleted.
6278 (package--builtins): Set default value to nil.
6279 (package-initialize): Load precomputed value of package--builtins
6281 (package-alist, package-compute-transaction)
6282 (package-download-transaction): Improve docstring.
6283 (package-read-all-archive-contents): Do not change
6284 package--builtins here.
6285 (list-packages): Make package-list-packages an alias for this.
6286 Sort by status by default.
6287 (package--list-packages): Add optional PACKAGES arg.
6288 (describe-package-1): Use font-lock-face property. For built-in
6289 packages, insert file commentary.
6290 (package--generate-package-list): Rename from
6291 package-list-packages-internal; all callers changed. Add optional
6292 PACKAGES arg. Add alphabetical sort fallbacks.
6293 (package-menu--version-predicate, package-menu--status-predicate)
6294 (package-menu--description-predicate)
6295 (package-menu--name-predicate): New functions.
6297 * info.el (Info-finder-find-node): Search package-alist instead of
6298 finder-package-info.
6300 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
6302 * subr.el (version-regexp-alist): Don't use "a" and "b" for
6304 (version-to-list): Handle versions like "10.3d".
6306 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6308 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
6309 (macroexp-accumulate): Use `declare'.
6311 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6313 * whitespace.el (whitespace-style): Adjust type declaration.
6315 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
6317 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
6318 empty argument to gvfs-copy.
6320 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
6322 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
6323 handle new TRASH arg of `delete-file'.
6325 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
6327 * net/tramp.el (tramp-handle-insert-directory): Don't use
6328 `forward-word', its default syntax could be changed.
6330 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6331 Michael Albinus <michael.albinus@gmx.de>
6333 Implement compression for inline methods.
6335 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
6336 (tramp-copy-size-limit): Allow also nil.
6337 (tramp-inline-compress-commands): New defconst.
6338 (tramp-find-inline-compress, tramp-get-inline-compress)
6339 (tramp-get-inline-coding): New defuns.
6340 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
6341 replaced by `tramp-get-inline-coding'.
6342 (tramp-handle-file-local-copy, tramp-handle-write-region)
6343 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
6345 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
6347 Detect ssh 'ControlMaster' argument automatically in some cases.
6349 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
6350 (tramp-default-method): Use it.
6352 2010-08-26 Karel Klíč <kklic@redhat.com>
6354 * net/tramp.el (tramp-file-name-for-operation):
6355 Add file-selinux-context.
6357 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
6359 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
6361 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
6363 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
6366 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
6368 * progmodes/js.el: Make indentation more customizable (Bug#6914).
6369 (js-paren-indent-offset, js-square-indent-offset)
6370 (js-curly-indent-offset): New options.
6371 (js--proper-indentation): Use them.
6373 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
6375 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
6376 instead of inspecting font-lock properties (Bug#6916).
6378 2010-08-26 David Reitter <david.reitter@gmail.com>
6380 * server.el (server-visit-files): Run pre-command-hook and
6381 post-command-hook for each buffer while it is current (Bug#6910).
6382 (server-execute): Do not run hooks here.
6384 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
6386 Sync with Tramp 2.1.19.
6388 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6389 (tramp-reporter-dump-variable, tramp-load-report-modules)
6390 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
6391 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
6393 * net/tramp-compat.el (top): Do not autoload
6394 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
6395 only when `start-file-process' is not bound.
6396 (byte-compile-not-obsolete-vars): Define if not bound.
6397 (tramp-compat-funcall): New defmacro.
6398 (tramp-compat-line-beginning-position)
6399 (tramp-compat-line-end-position)
6400 (tramp-compat-temporary-file-directory)
6401 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
6402 (tramp-compat-copy-file, tramp-compat-copy-directory)
6403 (tramp-compat-delete-file, tramp-compat-delete-directory)
6404 (tramp-compat-number-sequence, tramp-compat-process-running-p):
6406 (tramp-advice-file-expand-wildcards): Do not use
6407 `tramp-handle-file-remote-p'.
6408 (tramp-compat-make-temp-file): Simplify fallback implementation.
6409 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6410 (tramp-compat-copy-tree): Remove function.
6411 (tramp-compat-delete-file): New defun.
6412 (tramp-compat-delete-directory): Provide implementation for older
6414 (tramp-compat-file-attributes): Handle only
6415 `wrong-number-of-arguments' error.
6417 * net/tramp-fish.el (tramp-fish-handle-copy-file):
6418 Add PRESERVE_SELINUX_CONTEXT.
6419 (tramp-fish-handle-delete-file): Add TRASH arg.
6420 (tramp-fish-handle-directory-files-and-attributes):
6421 Do not use `tramp-fish-handle-file-attributes.
6422 (tramp-fish-handle-file-local-copy)
6423 (tramp-fish-handle-insert-file-contents)
6424 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
6426 * net/tramp-gvfs.el (top): Require url-util.
6427 (tramp-gvfs-mount-point): Remove.
6428 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
6429 and `set-file-selinux-context'.
6430 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
6431 (tramp-gvfs-handle-file-selinux-context)
6432 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6433 (with-tramp-dbus-call-method): Format trace message.
6434 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6435 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
6436 Implement backup call, when operation on local files fails.
6437 Use progress reporter. Flush properties of changed files.
6438 (tramp-gvfs-handle-delete-file): Add TRASH arg.
6439 Use `tramp-compat-delete-file'.
6440 (tramp-gvfs-handle-expand-file-name): Expand "~/".
6441 (tramp-gvfs-handle-make-directory): Make more traces.
6442 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
6443 (tramp-gvfs-url-file-name): Hexify file name in url.
6444 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
6445 into account for the resulting file name.
6446 (tramp-gvfs-handler-askquestion): Preserve current message, in
6447 order to let progress reporter continue afterwards. (Bug#6257)
6448 Return dummy mountpoint, when the answer is "no".
6449 See `tramp-gvfs-maybe-open-connection'.
6450 (tramp-gvfs-handler-mounted-unmounted)
6451 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
6452 attribute "default_location". Set "prefix" property.
6453 Handle default-location.
6454 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
6455 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
6456 exists. Raise an error, if not (due to a corresponding answer
6457 "no" in interactive questions, for example).
6458 Use `tramp-compat-funcall'.
6460 * net/tramp-imap.el (top): Autoload `epg-make-context'.
6461 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6462 (tramp-imap-do-copy-or-rename-file)
6463 (tramp-imap-handle-insert-file-contents)
6464 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
6465 (tramp-imap-handle-delete-file): Add TRASH arg.
6467 * net/tramp-smb.el (tramp-smb-handle-copy-file):
6468 Add PRESERVE-SELINUX-CONTEXT.
6469 (tramp-smb-handle-copy-file)
6470 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6471 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
6472 Use `with-progress-reporter'.
6473 (tramp-smb-handle-delete-file): Add TRASH arg.
6475 * net/tramp.el (tramp-methods): Move hostname to the end in all
6476 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
6478 (tramp-verbose): Describe verbose level 9.
6479 (tramp-completion-function-alist)
6480 (tramp-file-name-regexp, tramp-chunksize)
6481 (tramp-local-coding-commands, tramp-remote-coding-commands)
6482 (with-connection-property, tramp-completion-mode-p)
6483 (tramp-action-process-alive, tramp-action-out-of-band)
6484 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6485 (tramp-exists-file-name-handler): Fix docstring.
6486 (tramp-remote-process-environment): Use `format' instead of
6487 `concat'. Protect version string by apostroph.
6488 (tramp-shell-prompt-pattern): Do not use a shy group in case of
6490 (tramp-file-name-regexp-unified)
6491 (tramp-completion-file-name-regexp-unified): On W32 systems, do
6492 not regard the volume letter as remote filename. (Bug#5447)
6493 (tramp-perl-file-attributes)
6494 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
6495 (tramp-vc-registered-read-file-names): Read input as
6496 here-document, otherwise the command could exceed maximum length
6498 (tramp-file-name-handler-alist): Add `file-selinux-context' and
6499 `set-file-selinux-context'.
6500 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
6501 backtrace functions.
6502 (tramp-error-with-buffer): Don't show the connection buffer when
6503 we are in completion mode.
6504 (tramp-progress-reporter-update, tramp-remote-selinux-p)
6505 (tramp-handle-file-selinux-context)
6506 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
6507 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
6509 (with-progress-reporter): New defmacro.
6510 (tramp-debug-outline-regexp): New defconst.
6511 (top, tramp-rfn-eshadow-setup-minibuffer)
6512 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
6513 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
6514 (tramp-completion-mode-p, tramp-check-for-regexp)
6515 (tramp-open-connection-setup-interactive-shell)
6516 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
6517 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
6518 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
6519 Use `tramp-compat-funcall'.
6520 (tramp-handle-make-symbolic-link): Flush file properties.
6521 (tramp-handle-load, tramp-handle-file-local-copy)
6522 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6523 (tramp-handle-vc-registered, tramp-maybe-send-script)
6524 (tramp-find-shell): Use `with-progress-reporter'.
6525 (tramp-do-file-attributes-with-stat): Add space in format string,
6526 in order to work around a bug in pdksh. Reported by Gilles Pion
6528 (tramp-handle-verify-visited-file-modtime): Do not send a command
6529 when the connection is not established.
6530 (tramp-handle-set-file-times): Simplify the check for utc.
6531 (tramp-handle-directory-files-and-attributes)
6532 (tramp-get-remote-path): Use `copy-tree'.
6533 (tramp-completion-handle-file-name-all-completions): Ensure, that
6534 non remote files are still checked. Oops.
6535 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6536 Handle PRESERVE-SELINUX-CONTEXT.
6537 (tramp-do-copy-or-rename-file): Add progress reporter.
6538 (tramp-do-copy-or-rename-file-directly): Do not use
6539 `tramp-handle-file-remote-p'.
6540 (tramp-do-copy-or-rename-file-out-of-band):
6541 Use `tramp-compat-delete-directory'.
6542 (tramp-do-copy-or-rename-file-out-of-band)
6543 (tramp-compute-multi-hops, tramp-maybe-open-connection):
6544 Use `format-spec-make'.
6545 (tramp-handle-delete-file): Add TRASH arg.
6546 (tramp-handle-dired-uncache): Flush directory cache, not only file
6548 (tramp-handle-expand-file-name)
6549 (tramp-completion-handle-file-name-all-completions)
6550 (tramp-completion-handle-file-name-completion):
6551 Use `tramp-connectable-p'.
6552 (tramp-handle-start-file-process): Set connection property "vec".
6553 Use it, in order to invalidate file caches. Check only for
6554 `remote-tty' process property.
6555 Implement tty setting. (Bug#4604, Bug#6360)
6556 (tramp-file-name-for-operation): Add `call-process-region' and
6557 `set-file-selinux-context'.
6558 (tramp-find-foreign-file-name-handler)
6559 (tramp-advice-make-auto-save-file-name)
6560 (tramp-set-auto-save-file-modes): Remove superfluous check for
6561 `stringp'. This is done inside `tramp-tramp-file-p'.
6562 (tramp-file-name-handler): Trace 'quit. Catch the error for some
6563 operations when we are in completion mode. This gives the user
6564 the chance to correct the file name in the minibuffer.
6565 (tramp-completion-mode-p): Use `non-essential'.
6566 (tramp-handle-file-name-all-completions): Backward/ XEmacs
6567 compatibility: Use `completion-ignore-case' if
6568 `read-file-name-completion-ignore-case' does not exist.
6569 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
6570 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6572 (tramp-action-password): Hide password prompt before next run.
6573 (tramp-process-actions): Widen connection buffer for the trace.
6574 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
6575 process property. Trace stty settings if `tramp-verbose' >= 9.
6576 Apply workaround for IRIX64 bug. Move argument of last
6577 `tramp-send-command' where it belongs to.
6578 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
6579 front of `login-args'.
6580 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
6581 on "/dev/null" instead of "/".
6582 (tramp-get-ls-command-with-dired): Make test for "--dired"
6584 (tramp-set-auto-save-file-modes): Adapt version check.
6585 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
6586 (tramp-handle-process-file): Call the program in a subshell, in
6587 order to preserve working directory.
6588 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
6589 `tramp-remote-sh' from `tramp-methods'.
6590 (tramp-get-ls-command): Make test for "--color=never" stronger.
6591 (tramp-check-for-regexp): Use (forward-line 1).
6593 * net/trampver.el: Update release number.
6595 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
6597 * help.el (help-map): Bind `C-h P' to describe-package.
6599 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
6601 * emacs-lisp/package.el (package-refresh-contents): Catch errors
6602 when downloading archives.
6603 (describe-package-1): Add package commentary.
6604 (package-install-button-action): New function.
6605 (package-menu-mode-map): Bind ? to package-menu-describe-package.
6606 (package-menu-view-commentary): Function removed.
6607 (package-list-packages-internal): Hide the `package' package too.
6609 2010-08-25 Kenichi Handa <handa@m17n.org>
6611 * language/misc-lang.el ("Arabic"): New language environment.
6612 Setup composition-function-table for Arabic characters.
6614 * international/fontset.el (setup-default-fontset): Fix typo for
6615 arabic OTF spec (fini->fina).
6617 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
6619 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
6622 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6624 * whitespace.el: Allow cleaning up blanks without blank
6625 visualization (Bug#6651). Adjust help window for
6626 whitespace-toggle-options (Bug#6479). Allow to use fill-column
6627 instead of whitespace-line-column (from EmacsWiki). New version
6629 (whitespace-style): Add new value 'face. Adjust docstring.
6630 (whitespace-space, whitespace-hspace, whitespace-tab):
6631 Adjust foreground property face.
6632 (whitespace-line-column): Adjust docstring and type declaration.
6633 (whitespace-style-value-list, whitespace-toggle-option-alist)
6634 (whitespace-help-text): Adjust const initialization.
6635 (whitespace-toggle-options, global-whitespace-toggle-options):
6637 (whitespace-display-window, whitespace-interactive-char)
6638 (whitespace-style-face-p, whitespace-color-on): Adjust code.
6639 (whitespace-help-scroll): New fun.
6641 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
6643 * emacs-lisp/package.el (list-packages): Alias for
6644 package-list-packages.
6646 2010-08-24 Kevin Ryde <user42@zip.com.au>
6648 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
6651 * progmodes/ruby-mode.el (ruby): Add defgroup.
6653 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
6655 * progmodes/python.el: Add Ipython support (Bug#5390).
6656 (python-shell-prompt-alist)
6657 (python-shell-continuation-prompt-alist): New options.
6658 (python--set-prompt-regexp): New function.
6659 (inferior-python-mode, run-python, python-shell):
6660 Require ansi-color. Use python--set-prompt-regexp to set the comint
6661 prompt based on the Python interpreter.
6662 (python--prompt-regexp): New var.
6663 (python-check-comint-prompt)
6664 (python-comint-output-filter-function): Use it.
6665 (run-python): Use a pipe (Bug#5694).
6667 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
6669 * progmodes/python.el (python-send-region): Send a different
6670 Python command if Ipython is in use.
6671 (python-check-version): Use a Python command to find the version.
6673 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
6675 * mouse.el (mouse-yank-primary): Avoid setting primary when
6676 deactivating the mark (Bug#6872).
6678 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
6680 * progmodes/python.el (python-block-pairs): Allow use of "finally"
6681 with "else" (Bug#3991).
6683 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
6685 * net/dbus.el: Accept UNIX domain sockets as bus address.
6686 (top): Don't initialize `dbus-registered-objects-table' anymore,
6687 this is done in dbusbind,c.
6688 (dbus-check-event): Adapt test for bus.
6689 (dbus-return-values-table, dbus-unregister-service)
6690 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
6693 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
6695 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
6697 2010-08-22 Juri Linkov <juri@jurta.org>
6699 * simple.el (read-extended-command): New function with the logic
6700 for `completing-read' moved to Elisp from `execute-extended-command'.
6701 Use `function-called-at-point' in `minibuffer-default-add-function'
6702 to get a command name for M-n (bug#5364, bug#5214).
6704 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6706 * startup.el (command-line-1): Issue warning for ignored arguments
6707 --unibyte, etc (Bug#6886).
6709 2010-08-22 Leo <sdl.web@gmail.com>
6711 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
6712 (ignore, bright, dim, keyword): Split list of nicknames before
6713 passing to rcirc-add-or-remove (Bug#6894).
6715 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6717 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
6719 2010-08-22 Leo <sdl.web@gmail.com>
6721 Fix buffer-list rename&refresh after killing a buffer in ido.
6722 * ido.el: Revert Óscar's.
6723 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
6724 Remember the buffers at head, rather than their name.
6725 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
6727 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
6728 Stefan Monnier <monnier@iro.umontreal.ca>
6730 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
6731 extra backslash added to each line (bug#6890).
6733 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
6735 * subr.el (read-key): Don't echo keystrokes (bug#6883).
6737 2010-08-22 Glenn Morris <rgm@gnu.org>
6739 * menu-bar.el (menu-bar-games-menu): Add landmark.
6741 2010-08-22 Glenn Morris <rgm@gnu.org>
6743 * align.el (align-regexp): Make group and spacing arguments
6744 use the interactive defaults when non-interactive. (Bug#6698)
6746 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
6747 expansion, so as not to need sendmail.
6748 (mail-text-start): Remove declaration.
6749 (rmail-retry-failure): Require sendmail.
6751 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6753 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
6755 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
6757 * progmodes/flymake.el (flymake-start-syntax-check-process):
6758 Use `start-file-process' in order to let it run also on remote hosts.
6760 2010-08-22 Kenichi Handa <handa@m17n.org>
6762 * files.el: Add `word-wrap' as safe local variable.
6764 2010-08-22 Glenn Morris <rgm@gnu.org>
6766 * woman.el (woman-translate): Case matters. (Bug#6849)
6768 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6770 * simple.el (kill-region): Doc fix (Bug#6787).
6772 2010-08-22 Glenn Morris <rgm@gnu.org>
6774 * calendar/diary-lib.el (diary-header-line-format):
6775 Fit it to the window, not the frame.
6777 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
6779 * subr.el (ignore-errors): Add debug declaration.
6781 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
6783 * whitespace.el (whitespace-color-off): Remove post-command-hook
6786 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
6788 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
6790 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
6792 * cus-edit.el (custom-group-value-create): Add extra newline
6793 before end line (Bug#6876).
6795 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
6797 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
6798 when extending it. Before killing on the second click, check if
6799 the buffer is the correct one. Doc fix.
6800 (mouse-secondary-save-then-kill): Allow usage without first
6801 calling mouse-start-secondary, by defaulting to point. Don't save
6802 an empty secondary selection. Doc fix.
6804 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6806 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
6807 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
6809 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
6810 Adjust initialization.
6811 (whitespace-bob-marker, whitespace-eob-marker)
6812 (whitespace-buffer-changed): New vars.
6813 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
6814 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
6815 (whitespace-post-command-hook, whitespace-display-char-on):
6817 (whitespace-looking-back, whitespace-buffer-changed): New funs.
6818 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
6820 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
6822 * files.el (locate-file-completion-table): Only list the .el and .elc
6823 extensions if there's no other choice (bug#5955).
6825 * facemenu.el (facemenu-self-insert-data): New var.
6826 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
6828 (facemenu-add-face): Use them.
6830 * simple.el (blink-matching-open): Obey forward-sexp-function.
6832 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
6834 * simple.el (prog-mode-map): New var.
6835 (prog-indent-sexp): New command.
6837 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
6839 * progmodes/prolog.el (smie): Require.
6841 * emacs-lisp/smie.el (smie-default-backward-token)
6842 (smie-default-forward-token): Strip properties.
6843 (smie-next-sexp): Be more careful with associative operators.
6844 (smie-forward-sexp-command): Generalize.
6845 (smie-backward-sexp-command): Simplify.
6846 (smie-closer-alist): New var.
6847 (smie-close-block): New command.
6848 (smie-indent-debug-log): New var.
6849 (smie-indent-offset-rule): Add a few more cases.
6850 (smie-indent-column): New function.
6851 (smie-indent-after-keyword): Use it.
6852 (smie-indent-keyword): Use it.
6853 Fix up the opener code's point position.
6854 (smie-indent-comment): Only applies at BOL.
6855 (smie-indent-debug): New command.
6857 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
6858 declarations that are useful before running the macro.
6860 2010-08-18 Joakim Verona <joakim@verona.se>
6862 * image.el (imagemagick-types-inhibit): New variable.
6863 (imagemagick-register-types): New function.
6864 * image-mode.el (image-transform-properties): New function.
6865 (image-transform-set-scale, image-transform-fit-to-height)
6866 (image-transform-set-rotation, image-transform-set-resize)
6867 (image-transform-fit-to-width, image-transform-fit-to-height):
6869 (image-toggle-display-image): Support image transforms.
6871 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
6873 * image.el (create-animated-image): Don't add heuristic mask to image
6876 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
6878 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
6879 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
6881 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
6883 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
6885 Font-lock '...' strings, plus various simplifications and fixes.
6886 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
6887 (octave-font-lock-close-quotes): New function.
6888 (octave-font-lock-syntactic-keywords): New var.
6889 (octave-mode): Use it. Set beginning-of-defun-function.
6890 (octave-mode-map): Don't override the <foo>-defun commands.
6891 (octave-mode-menu): Pass it directly to easy-menu-define;
6892 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
6893 (octave-block-match-alist): Fix up last change so that
6894 octave-close-block uses the more specific keyword.
6895 (info-lookup-mode): Silence byte-compiler.
6896 (octave-beginning-of-defun): Not interactive any more.
6898 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
6899 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
6900 (octave-completion-at-point-function): Make sure point is within
6902 (octave-reindent-then-newline-and-indent):
6903 Use reindent-then-newline-and-indent.
6904 (octave-add-octave-menu): Remove.
6906 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
6908 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
6909 (report-emacs-bug-can-use-xdg-email): New functions.
6910 (report-emacs-bug): Set can-xdg-email to result of
6911 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
6912 \C-cm to report-emacs-bug-insert-to-mailer and add help text
6915 * net/browse-url.el (browse-url-default-browser): Add cond
6916 for browse-url-xdg-open.
6917 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
6919 2010-08-17 Glenn Morris <rgm@gnu.org>
6921 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
6922 (c-fontify-recorded-types-and-refs): Define for compiler.
6923 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
6926 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
6929 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
6931 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
6933 (tramp-handle-process-file): Call the program in a subshell, in
6934 order to preserve working directory.
6935 (tramp-action-password): Hide password prompt before next run.
6936 (tramp-process-actions): Widen connection buffer for the trace.
6938 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6940 * net/rcirc.el (rcirc-log-process-buffers): New option.
6941 (rcirc-print): Use it.
6942 (rcirc-generate-log-filename): New function.
6943 (rcirc-log-filename-function): Change default to
6944 rcirc-generate-log-filename (Bug#6828).
6946 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
6948 * simple.el (deactivate-mark): If select-active-regions is `only',
6949 only set selection for temporarily active regions.
6951 * cus-start.el: Change defcustom for select-active-regions.
6953 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
6955 * mouse.el (mouse--drag-set-mark-and-point): New function.
6956 (mouse-drag-track): Use LOCATION arg to push-mark.
6957 Use mouse--drag-set-mark-and-point to take click-count into
6958 consideration when updating point and mark (Bug#6840).
6960 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
6962 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6963 Give the Ruby rule a lower priority than Gnu (Bug#6778).
6965 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
6967 * font-lock.el (lisp-font-lock-keywords-2):
6968 Add combine-after-change-calls, condition-case-no-debug,
6969 with-demoted-errors, and with-silent-modifications (Bug#6025).
6971 2010-08-14 Kevin Ryde <user42@zip.com.au>
6973 * emacs-lisp/copyright.el (copyright-update-year)
6974 (copyright-update): Temporary switch-to-buffer to ensure the
6975 buffer change being queried is visible (Bug#5394).
6977 2010-08-14 Tom Tromey <tromey@redhat.com>
6979 * progmodes/etags.el (tags-file-name): Mark safe if stringp
6982 2010-08-14 Eli Zaretskii <eliz@gnu.org>
6984 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
6987 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
6989 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
6990 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
6991 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
6992 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
6993 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
6994 Call menu-bar-set-tool-bar-position.
6996 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6998 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
6999 comment style (bug#6834).
7000 * progmodes/scheme.el (scheme-mode-syntax-table):
7001 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
7002 "b" flag in "' 14b" syntax.
7004 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
7005 for (un)commenting the region and performing completion.
7006 (octave-mode-menu): Use standard commands for help and completion.
7007 (octave-mode-syntax-table): Support %{..%} comments (sort of).
7008 (octave-mode): Use define-derived-mode.
7009 Set completion-at-point-functions and don't set columns.
7010 Don't disable adaptive-fill-regexp.
7011 (octave-describe-major-mode, octave-comment-region)
7012 (octave-uncomment-region, octave-comment-indent)
7013 (octave-indent-for-comment): Remove.
7014 (octave-indent-calculate): Rename from calculate-octave-indent.
7015 (octave-indent-line, octave-fill-paragraph): Update caller.
7016 (octave-initialize-completions): No need to make an alist.
7017 (octave-completion-at-point-function): New function.
7018 (octave-complete-symbol): Use it.
7019 (octave-insert-defun): Use define-skeleton.
7021 * progmodes/octave-mod.el (octave-mode): Set comment-add.
7022 (octave-mode-map): Use comment-dwim (bug#6829).
7024 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
7026 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
7027 indentation of inserted comment.
7029 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
7031 * faces.el (region): Add type gtk that uses gtk colors.
7033 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
7034 Handle theme-name change.
7036 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
7038 * progmodes/sql.el: Version 2.5
7039 (sql-product-alist): Add :prompt-cont-regexp property for several
7041 (sql-prompt-cont-regexp): New variable.
7042 (sql-output-newline-count, sql-output-by-send):
7043 New variables. Record number of newlines in input text.
7044 (sql-send-string): Handle multiple filters and count newlines.
7045 (sql-send-magic-terminator): Count terminator newline.
7046 (sql-interactive-remove-continuation-prompt): Filters output to
7047 remove continuation prompts; one for each newline.
7048 (sql-interactive-mode): Set up new variables, prompt regexp and
7050 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
7051 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
7053 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7055 * emacs-lisp/pcase.el: New file.
7057 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
7059 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
7060 as here-document, otherwise the command could exceed maximum
7061 length of command line.
7062 (tramp-handle-vc-registered): Call script accordingly.
7063 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
7065 2010-08-10 Kenichi Handa <handa@m17n.org>
7067 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
7070 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
7072 * emacs-lisp/package.el (package-version-split)
7073 (package--version-first-nonzero, package-version-compare):
7075 (package-directory-list, package-load-all-descriptors)
7076 (package--built-in, package-activate, define-package)
7077 (package-installed-p, package-compute-transaction)
7078 (package-read-all-archive-contents)
7079 (package--add-to-archive-contents, package-buffer-info)
7080 (package-tar-file-info, package-list-packages-internal):
7081 Use version-to-list and version-list-*.
7083 * emacs-lisp/package-x.el (package-upload-buffer-internal):
7084 Use version-to-list.
7085 (package-upload-buffer-internal): Use version-list-<=.
7087 2010-08-09 Kenichi Handa <handa@m17n.org>
7089 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
7092 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
7094 * tutorial.el (tutorial--default-keys): C-d is now bound to
7095 delete-forward-char (Bug#6826).
7097 * mouse.el (mouse-drag-track): Remove accidentally-removed check
7098 for `double' value of mouse-1-click-follows-link (Bug#6807).
7100 2010-08-08 Johan Bockgård <bojohan@gnu.org>
7102 * replace.el (replace-highlight): Bind isearch-forward and
7103 isearch-error, ensuring that highlighting is updated if the user
7104 switches the search direction (Bug#6808).
7106 * isearch.el (isearch-lazy-highlight-forward): New var.
7107 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
7108 (isearch-lazy-highlight-update): Use it.
7110 2010-08-08 Kenichi Handa <handa@m17n.org>
7112 * international/mule.el (define-charset): Store NAME as :base property.
7113 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
7114 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
7115 current priority. Force using the designation of the specific
7116 charset by adding `charset' text property. Improve the whole algorithm.
7118 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
7120 * emulation/pc-select.el (pc-selection-mode-hook)
7121 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
7122 (pc-selection-mode): Fix typos in docstrings.
7124 2010-08-08 Kenichi Handa <handa@m17n.org>
7126 * language/cyrillic.el: Don't add "microsoft-cp1251" to
7127 ctext-non-standard-encodings-alist here.
7129 * international/mule.el (ctext-non-standard-encodings-alist):
7130 Add "koi8-r" and "microsoft-cp1251".
7131 (ctext-standard-encodings): New variable.
7132 (ctext-non-standard-encodings-table): List only elements for
7133 non-standard encodings.
7134 (ctext-pre-write-conversion): Adjust for the above change.
7135 Check ctext-standard-encodings.
7137 * international/mule-conf.el (compound-text): Doc fix.
7138 (ctext-no-compositions): Doc fix.
7139 (compound-text-with-extensions): Doc fix.
7141 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7143 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
7145 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
7147 * progmodes/which-func.el (which-func-format): Split help-echo text
7148 into lines, like other mode-line tooltips.
7150 * server.el (server-start): When using TCP sockets, force IPv4
7151 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
7153 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7155 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
7157 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
7159 * term.el (term-delimiter-argument-list): Reflow docstring.
7160 (term-read-input-ring, term-write-input-ring, term-send-input)
7161 (term-bol, term-erase-in-display, serial-supported-or-barf):
7162 Fix typos in docstrings.
7164 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7166 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
7168 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
7170 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
7172 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
7174 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
7175 Fix typo in docstring (bug#6747).
7177 2010-08-08 Leo <sdl.web@gmail.com>
7179 * eshell/esh-io.el (eshell-get-target): Better detection of
7180 read-only file (Bug#6762).
7182 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
7184 * align.el (align-default-spacing): Doc fix.
7185 (align-region-heuristic, align-regexp): Fix typos in docstrings.
7187 2010-08-08 Stephen Peters <speters@itasoftware.com>
7189 * calendar/icalendar.el
7190 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
7191 (icalendar--get-weekday-numbers): New.
7192 (icalendar--convert-recurring-to-diary): Handle multiple byday
7193 values in weekly rules. (Bug#6766)
7195 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
7197 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
7198 (icalendar--create-uid, icalendar-export-region)
7199 (icalendar--parse-summary-and-rest): Code formatting.
7201 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
7203 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
7204 to italicize headers.
7205 (calc-highlight-selections-with-faces): New variable.
7206 (calc-selected-face, calc-nonselected-face): New faces.
7208 * calc/calccomp.el (math-comp-highlight-string): Use
7209 `calc-highlight-selections-with-faces' to determine how to highlight
7212 * calc/calc-sel.el (calc-show-selections): Change message to when
7213 using faces to highlight selections.
7215 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
7217 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
7218 Add SQLite 3 keywords, functions and datatypes.
7219 (sql-interactive-mode): Remove `comint-process-echoes' set to t
7222 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
7224 * simple.el (select-active-regions): Move to keyboard.c.
7225 (deactivate-mark): Used saved-region-selection.
7226 (select-active-region): Function removed.
7227 (activate-mark, set-mark, push-mark-command)
7228 (handle-shift-selection): Don't call it.
7229 (keyboard-quit): Avoid adding the region to the window selection.
7231 * mouse.el (mouse-drag-track): Remove hacks to deal with old
7232 select-active-regions implementation.
7233 (mouse-yank-at-click): Doc fix.
7235 * cus-start.el: Add custom declaration for select-active-regions.
7237 2010-08-07 Eli Zaretskii <eliz@gnu.org>
7239 * simple.el (delete-forward-char): Doc fix.
7241 * tutorial.el (help-with-tutorial): Hack safe file-local variables
7242 after reading the tutorial.
7244 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
7246 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph):
7247 Fix for the case that a C style comment has its delimiters alone on
7248 their respective lines.
7250 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
7252 * net/tramp.el (tramp-handle-start-file-process): Set connection
7254 (tramp-process-sentinel): Use it for flushing the cache.
7255 We cannot do it via the process buffer, the buffer could be deleted
7256 already when running the sentinel.
7258 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
7260 * comint.el (comint-mode): Make directory tracking functions
7261 functional on remote files. (Bug#6764)
7263 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
7265 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
7267 2010-08-05 Eli Zaretskii <eliz@gnu.org>
7269 * emacs-lisp/find-gc.el (find-gc-source-files):
7270 Rename unexec.c => unexcoff.c.
7272 * emacs-lisp/authors.el (authors-fixed-entries):
7273 Rename unexec.c => unexcoff.c.
7275 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
7277 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
7278 cache, not only file cache.
7279 (tramp-process-sentinel): New defun.
7280 (tramp-handle-start-file-process): Use it, in order to invalidate
7283 2010-08-03 Leo <sdl.web@gmail.com>
7285 * server.el (server-start): Simplify loop.
7287 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
7289 * frame.el (screen-height, screen-width, set-screen-width)
7290 (set-screen-height): Remove ancient compatibility aliases.
7292 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
7293 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
7295 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
7296 that change current buffer.
7298 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7300 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
7301 beginning of the string. Use `string-match-p'. (Bug#6765)
7303 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
7305 * cus-start.el (x-gtk-use-system-tooltips): New variable.
7307 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
7309 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
7310 (package--builtins): Tweak descriptions.
7311 (package-print-package): Upcase descriptions if necessary.
7312 Show all built-in packages in font-lock-builtin-face.
7313 (package-list-packages-internal): Omit "emacs" package.
7314 Show status of built-in packages as "built-in".
7316 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
7318 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
7319 before killing to preserve the primary selection (Bug#6701).
7321 * term/x-win.el (x-select-text): Doc fix.
7323 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
7325 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
7326 (objc-font-lock-extra-types):
7327 * progmodes/cc-mode.el (c-basic-common-init):
7328 * progmodes/cc-langs.el (c-make-mode-syntax-table)
7329 (c++-make-template-syntax-table)
7330 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
7331 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
7332 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
7333 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
7334 * progmodes/cc-fonts.el (c-make-inverse-face)
7335 (c-basic-matchers-after):
7336 * progmodes/cc-engine.el (c-forward-keyword-clause)
7337 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
7338 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
7339 (c-guess-continued-construct, c-guess-basic-syntax):
7340 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
7341 The above functions were modified or created.
7343 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
7345 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
7347 2010-07-31 Eli Zaretskii <eliz@gnu.org>
7349 * files.el (bidi-paragraph-direction): Define safe local values.
7351 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
7352 language-info-alist. Remove outdated FIXME in a comment.
7354 2010-07-31 Alan Mackenzie <acm@muc.de>
7356 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
7357 Auto-fill broken in C/C++ modes.
7359 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
7361 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
7362 (menu-bar-showhide-tool-bar-menu-customize-disable)
7363 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
7364 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
7365 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
7366 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
7367 make a menu for Options => toolbar that can move it.
7369 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
7371 * emacs-lisp/package-x.el (package--make-rss-entry):
7372 (package-maint-add-news-item, package--update-news)
7373 (package-upload-buffer-internal): New arg ARCHIVE-URL.
7375 * emacs-lisp/package.el (package-archive-url): Rename from
7377 (package-install): Doc fix.
7378 (package-download-single, package-download-tar, package-install)
7379 (package-menu-view-commentary): Callers changed.
7381 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
7383 * net/tramp.el (tramp-handle-start-file-process): Check only for
7384 `remote-tty' process property.
7385 (tramp-open-shell): Don't check for tty.
7386 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
7389 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
7392 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
7394 * emacs-lisp/package.el (package-load-list, package-archives)
7395 (package-archive-contents, package-user-dir)
7396 (package-directory-list, package--builtins, package-alist)
7397 (package-activated-list, package-obsolete-alist): Mark as risky.
7399 2010-07-28 Phil Hagelberg <phil@evri.com>
7401 Add support for non-default package repositories.
7402 * emacs-lisp/package.el (package-archive-base): Var deleted.
7403 (package-archives): New variable.
7404 (package-archive-contents): Doc fix.
7405 (package-load-descriptor): Do nothing if descriptor file is missing.
7406 (package--write-file-no-coding): New function.
7407 (package-unpack-single): Use it.
7408 (package-archive-id): New function.
7409 (package-download-single, package-download-tar)
7410 (package-menu-view-commentary): Use it.
7411 (package-installed-p): Make second argument optional.
7412 (package-read-all-archive-contents): New function.
7413 (package-initialize): Use it.
7414 (package-read-archive-contents): Add ARCHIVE argument.
7415 (package--add-to-archive-contents): New function.
7416 (package-install): Don't call package-read-archive-contents.
7417 (package--download-one-archive): Store archive file in a
7418 subdirectory of package-user-dir.
7419 (package-menu-execute): Remove spurious line movement.
7421 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
7423 * cus-start.el (tool-bar-style): Add text-image-horiz.
7425 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
7427 * progmodes/gud.el (gud-common-init): Check for remoteness of
7428 `file', and not of `default-directory'.
7430 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
7432 * net/tramp.el (tramp-methods): Move hostname to the end in all
7433 ssh `tramp-login-args'.
7434 (tramp-verbose): Describe verbose level 9.
7435 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
7436 (tramp-open-connection-setup-interactive-shell): Trace stty
7437 settings if `tramp-verbose' >= 9.
7438 (tramp-handle-start-file-process): Implement tty setting.
7439 (Bug#4604, Bug#6360)
7441 * net/tramp-cmds.el (tramp-bug): Recommend setting of
7442 `tramp-verbose' to 9.
7444 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
7446 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
7447 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
7448 Remove references to package `lisp-re' (bug#4369).
7450 2010-07-27 Tom Tromey <tromey@redhat.com>
7452 * progmodes/js.el (js-mode):
7453 * progmodes/make-mode.el (makefile-mode):
7454 * progmodes/simula.el (simula-mode):
7455 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
7457 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
7459 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
7461 * time.el (display-time-day-and-date): Remove spurious * in docstring.
7462 (display-time-world-buffer-name, display-time-world-mode-map):
7463 Fix typos in docstrings.
7465 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
7467 * image-mode.el (image-display-size): New function.
7468 (image-forward-hscroll, image-next-line, image-eol, image-eob)
7469 (image-mode-fit-frame): Use it (Bug#6639).
7471 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
7473 * dired.el (dired-buffers-for-dir): Handle list values of
7474 dired-directory (Bug#6636).
7476 2010-07-26 Sam Steingold <sds@gnu.org>
7478 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
7479 Do not call `x-get-selection' the second time, reuse the value.
7481 2010-07-26 Daiki Ueno <ueno@unixuser.org>
7483 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
7484 which consist of control chars only. Suggested by Richard Stallman.
7486 2010-07-25 Daiki Ueno <ueno@unixuser.org>
7488 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
7489 exists before passing an error to find-file-not-found-functions
7492 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
7494 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
7495 Remove leading nil element, adjust values.
7496 (tetris-shapes, tetris-shape-scores):
7497 Change representation of shapes and remove some redundancy.
7498 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
7499 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
7500 Adjust for working with new representation of shapes.
7501 (tetris-shape-rotations): New function.
7502 (tetris-move-bottom, tetris-move-left, tetris-move-right)
7503 (tetris-rotate-prev, tetris-rotate-next):
7504 Adjust for working with the new version of tetris-test-shape.
7506 2010-07-23 Markus Triska <markus.triska@gmx.at>
7508 * progmodes/ps-mode.el: Use comint (bug#5954).
7509 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
7510 (ps-mode-other-newline): Simplify.
7511 (ps-run-mode): Derive from comint-mode instead of
7512 fundamental-mode, yielding input history etc.
7513 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
7514 (ps-run-send-string): Adapt for comint-mode.
7515 (ps-run-newline): Remove now unneeded function.
7517 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
7519 * net/tramp.el (tramp-methods): Move hostname to the end in all
7520 plink `tramp-login-args'.
7522 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
7524 * net/tramp.el (tramp-open-shell): New defun.
7525 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7528 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
7530 * net/tramp.el (tramp-file-name-regexp-unified)
7531 (tramp-completion-file-name-regexp-unified): On W32 systems, do
7532 not regard the volume letter as remote filename. (Bug#5447)
7534 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
7536 * custom.el (custom-declare-variable): Give a clearer error message
7537 when the docstring is missing (bug#6476).
7539 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
7541 * progmodes/sql.el: Version 2.4. Improved Login prompting.
7542 (sql-login-params): New widget definition.
7543 (sql-oracle-login-params, sql-mysql-login-params)
7544 (sql-solid-login-params, sql-sybase-login-params)
7545 (sql-informix-login-params, sql-ingres-login-params)
7546 (sql-ms-login-params, sql-postgres-login-params)
7547 (sql-interbase-login-params, sql-db2-login-params)
7548 (sql-linter-login-params): Use it.
7549 (sql-sqlite-login-params): Use it; Define "database" parameter as
7551 (sql-sqlite-program): Change to "sqlite3".
7552 (sql-comint-sqlite): Make sure database name is complete.
7553 (sql-for-each-login): New function.
7554 (sql-connect, sql-save-connection): Use it.
7555 (sql-get-login-ext): New function.
7556 (sql-get-login): Use it.
7557 (sql-make-alternate-buffer-name): Handle :file parameters.
7559 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
7561 * dired.el (dired-no-confirm): Document value t and fix defcustom to
7562 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
7564 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
7566 * dired.el (dired-mode-map): Use command remapping (bug#6632).
7568 2010-07-22 Lawrence Mitchell <wence@gmx.li>
7570 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
7572 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
7574 * net/tramp.el (tramp-get-ls-command)
7575 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
7578 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
7580 * progmodes/sql.el: Version 2.3.
7581 (sql-connection-alist): Change keys from symbols to strings;
7582 enhanced the widget definition.
7583 (sql-mode-menu): Add submenu to select connections.
7584 (sql-interactive-mode-menu): Add "Save Connection" item.
7585 (sql-add-product): Fix menu item.
7586 (sql-get-product-feature): Improved error handling.
7587 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
7588 (sql-make-alternate-buffer-name): Simplified.
7589 (sql-product-interactive): Handle missing product.
7590 (sql-connect): Support string keys, minor improvements.
7591 (sql-save-connection): New function.
7592 (sql-connection-menu-filter): New function.
7594 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
7596 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
7597 (tramp-open-connection-setup-interactive-shell):
7598 Apply workaround for IRIX64 bug. Move argument of last
7599 `tramp-send-command' where it belongs to.
7601 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
7603 * net/tramp.el (tramp-perl-file-attributes)
7604 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
7605 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
7606 front of `login-args'.
7608 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
7610 * time.el (display-time-world-mode): Define with `define-derived-mode'.
7611 Set `show-trailing-whitespace' to nil.
7612 (display-time-world-display): Simplify.
7614 2010-07-18 Alan Mackenzie <acm@muc.de>
7616 Enhance `c-file-style' in file/directory local variables.
7617 * progmodes/cc-mode.el (c-count-cfss): New function.
7618 (c-before-hack-hook): Call `c-set-style' differently according to
7619 whether c-file-style was set in file or directory local
7622 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
7624 * progmodes/sql.el: Version 2.2.
7625 (sql-product, sql-user, sql-database, sql-server, sql-port):
7626 Use defcustom :safe keyword rather than putting safe-local-variable
7628 (sql-password): Use defcustom :risky keyword rather than putting
7629 risky-local-variable property.
7630 (sql-oracle-login-params, sql-sqlite-login-params)
7631 (sql-solid-login-params, sql-sybase-login-params)
7632 (sql-informix-login-params, sql-ingres-login-params)
7633 (sql-ms-login-params, sql-postgres-login-params)
7634 (sql-interbase-login-params, sql-db2-login-params)
7635 (sql-linter-login-params): Add `port' option.
7636 (sql-get-product-feature): Add NO-INDIRECT parameter.
7637 (sql-comint-oracle, sql-comint-sybase)
7638 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
7639 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
7640 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
7641 (sql-comint-linter): Rename sql-connect-* functions to
7643 (sql-product-alist, sql-mode-menu): Rename as above and
7644 :sqli-connect-func to :sqli-comint-func.
7645 (sql-connection): New variable.
7646 (sql-interactive-mode): Set it.
7647 (sql-connection-alist): New variable.
7648 (sql-connect): New function.
7649 (sql--alt-buffer-part, sql--alt-if-not-empty)
7650 (sql-make-alternate-buffer-name): Improved alternative buffer name.
7652 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7654 * image-mode.el (image-bookmark-make-record): Do not set context
7655 in an image (Bug#6650).
7657 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
7659 * simple.el (select-active-region): New function.
7660 (push-mark-command, set-mark, activate-mark)
7661 (handle-shift-selection): Use it.
7662 (deactivate-mark): Don't check for size of region.
7664 * mouse.el (mouse-drag-track): Use select-active-region.
7666 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
7668 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
7671 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
7673 * term/x-win.el (x-select-enable-primary): Change default to nil.
7674 (x-select-enable-clipboard): Add :version keyword.
7676 * mouse.el (mouse-drag-copy-region):
7677 * simple.el (select-active-regions): Likewise.
7679 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
7681 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
7682 (vc-coding-system-for-diff): Use it to decide whether to inherit
7683 from the file the EOL format for reading the diffs of that file.
7686 2010-07-16 Eli Zaretskii <eliz@gnu.org>
7688 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
7689 unibyte, so compressed attachments are not compressed again.
7691 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
7693 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
7694 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
7695 (tramp-find-shell): Simplify setting connection property.
7696 (tramp-get-ls-command): Make test for "--color=never" stronger.
7698 2010-07-15 Simon South <ssouth@member.fsf.org>
7700 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
7701 blocks within record declarations (i.e. variant parts) correctly.
7703 2010-07-15 Simon South <ssouth@member.fsf.org>
7705 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
7706 over literal tokens when parsing so newlines aren't "absorbed" by
7707 single-line comments. Corrects the indentation of case blocks
7708 that have a comment on the first line.
7710 2010-07-14 Karl Fogel <kfogel@red-bean.com>
7712 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
7713 by Drew Adams (Bug#5504).
7715 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
7717 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
7718 now that Unicode is used (Bug#6594).
7720 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
7722 * term/x-win.el (x-select-enable-clipboard): Default to t.
7723 (x-initialize-window-system): Don't overwrite Paste menu item.
7725 * simple.el (select-active-regions): Default to t.
7726 (push-mark-command): Don't overwrite primary with empty string.
7728 * mouse.el: Bind mouse-2 to mouse-yank-primary.
7729 (mouse-drag-copy-region): Default to nil.
7731 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
7732 Cut/Copy/Paste menu bar items.
7734 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7736 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
7737 Patch applied by Karl Fogel.
7739 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
7740 and `bookmark-current-buffer' if they have been already set in
7741 another buffer (e.g gnus-art).
7743 2010-07-13 Karl Fogel <kfogel@red-bean.com>
7744 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7746 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
7748 * bookmark.el (bookmark-make-record-default): Allow unneeded
7749 information to be omitted from the record.
7751 Adjust declarations and calls:
7753 * info.el (bookmark-make-record-default): Adjust declaration.
7754 (Info-bookmark-make-record): Adjust call.
7756 * woman.el (bookmark-make-record-default): Adjust declaration.
7757 (woman-bookmark-make-record): Adjust call.
7759 * man.el (bookmark-make-record-default): Adjust declaration.
7760 (Man-bookmark-make-record): Adjust call.
7762 * image-mode.el (bookmark-make-record-default): Adjust declaration.
7764 * doc-view.el (bookmark-make-record-default): Adjust declaration.
7766 2010-07-13 Karl Fogel <kfogel@red-bean.com>
7768 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
7769 This is also from Thierry Volpiatto's patch in bug #6444. However,
7770 because it was extraneous to the functional change in that patch,
7771 and causes a re-indendation, I am committing it separately.
7773 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7775 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
7776 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
7777 Patch applied by Karl Fogel (Bug#6444).
7779 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
7781 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
7783 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
7785 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
7786 Dempsky; bug#5084). Remove incorrect binding for S-tab.
7787 (ns-alternatives-map): Change S-tab binding to backtab
7790 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
7793 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
7795 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
7798 * language/tv-util.el (tai-viet-re): Remove format.
7800 2010-07-12 Kenichi Handa <handa@m17n.org>
7802 * language/hebrew.el: Remove no-byte-compile declaration.
7803 Change coding: tag to utf-8. Register hebrew-shape-gstring in
7804 composition-function-table for 3-character looking back.
7805 (hebrew-font-get-precomposed): New function.
7806 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
7808 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
7810 * mouse.el (mouse-drag-track): Handle select-active-regions
7813 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
7815 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
7816 empty argument to gvfs-copy.
7818 2010-07-10 Glenn Morris <rgm@gnu.org>
7820 * calendar/calendar.el (calendar-week-end-day): New function.
7821 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
7822 Respect calendar-week-start-day. (Bug#6606)
7823 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
7824 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
7825 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
7826 respect calendar-week-start-day.
7828 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7830 * simple.el (use-region-p): Doc fix (Bug#6607).
7832 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
7834 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7835 Add regexps for cucumber and ruby.
7837 2010-07-08 Daiki Ueno <ueno@unixuser.org>
7839 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
7840 (epa-file-insert-file-contents): Hack to prevent
7841 find-file from opening empty buffer when decryption failed
7844 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
7846 * textmodes/ispell.el (ispell-alternate-dictionary):
7847 Use file-readable-p.
7848 Return nil if no word-list is found at default locations.
7849 (ispell-complete-word-dict): Default to nil.
7850 (ispell-command-loop): Use 'word-list' when using lookup-words.
7851 (lookup-words): Use ispell-complete-word-dict or
7852 ispell-alternate-dictionary. Check for word-list availability
7853 and handle errors if needed with better messages (Bug#6539).
7854 (ispell-complete-word): Use ispell-complete-word-dict or
7855 ispell-alternate-dictionary.
7857 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
7859 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
7860 builtins (BufferError, BytesWarning, WindowsError; callables
7861 bin, bytearray, bytes, format, memoryview, next, print; __package__).
7863 2010-07-07 Glenn Morris <rgm@gnu.org>
7865 * play/zone.el (top-level): Do not require timer, tabify, or cl.
7866 (zone-shift-left): Ignore intangibility, and any errors from
7868 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
7869 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
7870 deleting, and copying text properties.
7871 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
7872 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
7873 to point-max is hard.
7874 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
7875 (zone-fill-out-screen): Ignore intangibility.
7877 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
7879 * menu-bar.el (menu-bar-mode):
7880 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
7883 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
7884 word/line selection (Bug#6565).
7886 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7888 * net/dbus.el (dbus-send-signal): Declare function.
7890 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
7892 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
7893 (dbus-register-property): New optional argument EMITS-SIGNAL.
7894 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
7896 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
7898 * mouse.el (mouse-drag-overlay): Variable deleted.
7899 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
7900 (mouse--remap-link-click-p): New function.
7901 (mouse-drag-track): Handle dragging by using temporary Transient
7902 Mark mode, instead of a special overlay.
7903 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
7906 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
7909 2010-07-02 Juri Linkov <juri@jurta.org>
7911 * autoinsert.el (auto-insert-alist): Fix readability
7912 by using dotted pair notation for lambda.
7914 2010-07-02 Juri Linkov <juri@jurta.org>
7916 * faces.el (read-face-name): Rename arg `string-describing-default'
7917 to `default'. Doc fix. Display the default value in quotes
7918 in the prompt. With empty input, return the `default' arg,
7919 unless the default value is a string (in which case return nil).
7920 (describe-face): Replace the string `default' arg of `read-face-name'
7921 with the symbol `default'.
7923 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
7925 * emulation/viper-cmd.el (viper-delete-backward-char)
7926 (viper-del-backward-char-in-insert)
7927 (viper-del-backward-char-in-replace, viper-change)
7928 (viper-backward-indent): Replace delete-backward-char with
7929 delete-char (Bug#6552).
7931 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
7933 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
7935 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7937 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
7938 argument passed to frame-creation-function (Bug#5378).
7940 * faces.el (x-handle-named-frame-geometry)
7941 (x-handle-reverse-video, x-create-frame-with-faces)
7942 (face-set-after-frame-default, tty-create-frame-with-faces):
7943 Don't separately consult default-frame-alist. It is now passed as the
7946 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
7948 * startup.el (command-line): Don't call tool-bar-setup in a
7951 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7953 * ruler-mode.el (ruler--save-header-line-format): New fun.
7954 (ruler-mode): Use it as a setter function, so as not to overwrite
7955 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
7957 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
7959 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
7960 (vc-root-diff, vc-print-root-log, vc-log-incoming)
7961 (vc-log-outgoing): Use it.
7962 (vc-diff-internal): Set diff-vc-backend.
7964 * vc/diff-mode.el (diff-vc-backend): New var.
7966 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
7968 * dynamic-setting.el (font-setting-change-default-font):
7969 Remove call to message.
7971 2010-06-28 Kenichi Handa <handa@m17n.org>
7973 * international/quail.el (quail-insert-kbd-layout): Fix the
7974 showing of untranslated characters.
7976 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
7978 * simple.el (delete-active-region): New option.
7979 (delete-backward-char): Implement in Lisp.
7980 (delete-forward-char): New command.
7982 * mouse.el (mouse-region-delete-keys): Deleted.
7983 (mouse-show-mark): Simplify.
7985 * bindings.el (global-map): Bind delete and DEL, the former to
7986 delete-forward-char.
7988 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
7990 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
7991 (ruby-mode): Bind indent-line-function (Bug#5119).
7993 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
7995 * startup.el (command-line): Recognize "0" X resource value.
7997 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
7999 * startup.el (command-line): Use X resources to set the value of
8000 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
8002 * menu-bar.el (menu-bar-mode):
8003 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
8004 Set init-value to t.
8006 * frame.el (frame-notice-user-settings): Don't change
8007 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
8008 vice versa (Bug#2249).
8010 2010-06-26 Eli Zaretskii <eliz@gnu.org>
8012 * w32-fns.el (w32-convert-standard-filename): Doc fix.
8014 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
8016 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
8017 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
8019 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
8020 default directories are expanded (Bug#6143).
8022 2010-06-24 Juri Linkov <juri@jurta.org>
8024 * minibuffer.el (completions-format): Change default from nil to
8025 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
8027 2010-06-24 Juri Linkov <juri@jurta.org>
8029 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
8030 buffer-locally to lambda that re-runs the vc diff command.
8033 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
8035 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
8036 echo area is in use (Bug#3412).
8038 2010-06-22 Glenn Morris <rgm@gnu.org>
8040 * textmodes/texinfmt.el (texinfo-format-region)
8041 (texinfo-raise-lower-sections, texinfo-format-separate-node)
8042 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
8043 (texinfo-format-option, texinfo-noindent):
8044 Use line-beginning-position and line-end-position.
8046 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
8047 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
8048 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
8051 2010-06-21 Karl Fogel <kfogel@red-bean.com>
8053 * play/zone.el (zone-fall-through-ws): Fix next-line ->
8054 forward-line fallout.
8056 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
8058 * mouse.el (mouse-appearance-menu): Add docstring.
8060 * help.el (describe-key): Print up-event using key-description.
8062 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
8064 * net/zeroconf.el (zeroconf-resolve-service)
8065 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
8066 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
8068 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
8070 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
8072 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
8074 Avoid displaying files with a nil state in vc-dir.
8075 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
8076 cases that cause insertion.
8077 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
8080 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
8082 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
8084 2010-06-29 Leo <sdl.web@gmail.com>
8086 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
8088 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
8090 * generic-x.el (bat-generic-mode): Fix regexp for command line
8091 switches (Bug#5719).
8093 2010-06-27 Masatake YAMATO <yamato@redhat.com>
8095 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
8096 of nconc to avoid pure storage error (Bug#6239).
8098 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
8100 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
8101 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
8102 bindings of bookmark-automatically-show-annotations (Bug#6515).
8104 2010-06-25 Eli Zaretskii <eliz@gnu.org>
8106 * arc-mode.el (archive-zip-extract): Don't quote the file name on
8107 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
8109 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
8111 * comint.el (make-comint, make-comint-in-buffer): Mention return
8112 value in the docstrings. (Bug#6498)
8114 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
8116 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
8117 since it is not present when using some non-default switches.
8119 2010-06-23 Karl Fogel <kfogel@red-bean.com>
8121 * simple.el (compose-mail): Fix doc string to refer to
8122 `compose-mail-user-agent-warnings', instead of to the
8123 nonexistent `compose-mail-check-user-agent'.
8125 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
8127 Fix an indentation bug:
8129 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
8130 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
8133 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
8134 (c-clear->-pair-props-if-match-before): now return t when they've
8135 cleared properties, nil otherwise.
8136 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
8137 by taking account of the existing value.
8139 * progmodes/cc-defs.el
8140 (c-clear-char-property-with-value-function): Fix this to clear the
8141 property rather than overwriting it with nil.
8143 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
8145 * emacs-lisp/package.el (package-print-package): Add link to
8146 package description via describe-package.
8147 (describe-package-1): List package requirements. Add button to
8148 perform installation.
8149 (package-menu-describe-package): New command.
8151 * help-mode.el (help-package): New button type.
8153 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
8155 * emacs-lisp/package.el: Move package-list-packages binding to
8157 (describe-package, describe-package-1, package--dir): New funs.
8158 (package-activate-1): Use package--dir.
8160 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
8162 * help-mode.el (help-package-def): New button type.
8164 * menu-bar.el: Move package-list-packages binding here from
8167 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
8169 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
8171 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8173 * emacs-lisp/edebug.el (edebug-read-list):
8174 Phase out old-style backquotes.
8176 2010-06-17 Juri Linkov <juri@jurta.org>
8178 * help-mode.el (help-mode): Set buffer-local variable
8179 revert-buffer-function to help-mode-revert-buffer.
8180 (help-mode-revert-buffer): New function.
8182 * info.el (Info-revert-find-node): Check for major-mode Info-mode
8183 before popping to "*info*" (like in other Info functions).
8184 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
8185 old-history-forward. Pop to old-buffer-name or "*info*" to
8186 recreate the killed buffer. Set Info-history-forward from
8187 old-history-forward.
8188 (Info-breadcrumbs-depth): Add :group and :version.
8190 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
8192 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
8194 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
8196 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
8197 for languages like Portuguese with pt_{BR,PT} and no plain pt.
8199 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
8201 * emacs-lisp/package.el (package-menu-mode-map):
8202 Move initialization into declaration.
8204 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
8206 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
8208 * emacs-lisp/package.el (package-archive-base): Point to
8210 (package-enable, package-load-list): New defcustoms.
8211 (package-user-dir, package-directory-list): Turn into defcustoms.
8212 Don't include package-user-dir in package-directory-list.
8213 (package--builtins-base): Don't include Emacs as a "package".
8214 (package-subdirectory-regexp): New var.
8215 (package-load-all-descriptors, package-compute-transaction)
8216 (package-download-transaction): Obey package-load-list.
8217 (package-activate-1): Rename from package-do-activate.
8218 (package-list-packages-internal): Check package-load-list.
8219 (package-load-descriptor, package-generate-autoloads)
8220 (package-unpack, package-unpack-single)
8221 (package--read-archive-file, package-delete):
8222 Use expand-file-name.
8224 * emacs-lisp/package-x.el: New file. Package uploading
8225 functionality split out from package.el.
8227 * startup.el (command-line): Load packages after reading init file.
8229 2010-06-17 Tom Tromey <tromey@redhat.com>
8231 * emacs-lisp/package.el: New file.
8233 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
8235 Fix vc-annotate for renamed files when using Git.
8236 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
8237 ls-files. Doe not pass the object as a file name to cat-file, it
8239 (vc-git-annotate-command): Pass the file name using -- to avoid
8240 ambiguity with the revision.
8241 (vc-git-previous-revision): Pass a relative file name.
8243 2010-06-22 Glenn Morris <rgm@gnu.org>
8245 * progmodes/js.el (js-mode-map): Use standard capitalization and
8246 ellipses for menu entries.
8248 * wid-edit.el (widget-complete): Doc fix.
8250 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
8252 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
8254 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
8256 Fix annotating other revisions for renamed files in vc-annotate.
8257 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
8258 VC backend. Use it when non-nil.
8259 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
8262 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
8263 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
8264 Do not pass the file name to the 'previous-revision call when we
8265 don't want a file diff. (Bug#6489)
8267 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
8269 Fix finding revisions for renamed files in vc-annotate.
8270 * vc/vc.el (vc-find-revision): Add an optional argument for
8271 the VC backend. Use it when non-nil.
8272 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
8273 backend to vc-find-revision. (Bug#6487)
8275 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
8277 Fix reading file names in Git annotate buffers.
8278 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
8279 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
8281 2010-06-20 Alan Mackenzie <acm@muc.de>
8283 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
8284 in file local variables, set it first.
8286 2010-06-19 Glenn Morris <rgm@gnu.org>
8288 * descr-text.el (describe-char-unicode-data): Insert separating
8289 space when needed. (Bug#6422)
8291 * progmodes/idlwave.el (idlwave-action-and-binding):
8292 Fix typo in 2009-12-03 change. (Bug#6450)
8294 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
8296 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
8297 handling for `lambda' (misunderstanding).
8299 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
8301 * calc/calc-poly.el (math-accum-factors): Make sure that
8302 constants aren't distributed after they are factored out.
8304 2010-06-16 Juri Linkov <juri@jurta.org>
8306 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
8307 `list-colors-print'. (Bug#6332)
8309 * subr.el (read-quoted-char): Fix up last change (bug#6290).
8311 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
8313 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
8314 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
8316 * font-lock.el (font-lock-major-mode): Rename from
8317 font-lock-mode-major-mode to distinguish it from
8318 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
8319 (font-lock-set-defaults):
8320 * font-core.el (font-lock-default-function): Adjust users.
8321 (font-lock-mode): Don't set it at all.
8323 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
8325 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
8327 2010-06-16 Glenn Morris <rgm@gnu.org>
8329 * calendar/appt.el (appt-time-msg-list): Doc fix.
8330 (appt-check): Let-bind appt-warn-time.
8331 (appt-add): Make the 3rd argument optional.
8332 Simplify argument names. Doc fix. Check for integer WARNTIME.
8333 Only add WARNTIME to the output list if non-nil.
8335 2010-06-16 Ivan Kanis <apple@kanis.eu>
8337 * calendar/appt.el (appt-check): Let the 3rd element of
8338 appt-time-msg-list specify the warning time.
8339 (appt-add): Add new argument with the warning time. (Bug#5176)
8341 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
8343 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
8344 older than version 1.6. (Bug#6361)
8346 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
8348 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
8349 used by cl-do-arglist. (Bug#6408)
8351 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
8353 * textmodes/ispell.el (ispell-dictionary-base-alist):
8354 Fix portuguese casechars/not-casechars for missing 'çÇ'.
8355 Suggested by Rolando Pereira (bug#6434).
8357 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
8359 * facemenu.el (list-colors-sort): Doc fix.
8361 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
8363 * progmodes/sql.el (sql-connect-mysql): Fix typo.
8365 2010-06-14 Juri Linkov <juri@jurta.org>
8367 Add sort option `list-colors-sort'. (Bug#6332)
8368 * facemenu.el (color-rgb-to-hsv): New function.
8369 (list-colors-sort): New defcustom.
8370 (list-colors-sort-key): New function.
8371 (list-colors-display): Doc fix. Sort list according to the option
8373 (list-colors-print): Add HSV values to `help-echo' property of
8376 2010-06-14 Juri Linkov <juri@jurta.org>
8378 * compare-w.el: Move to the "vc" subdirectory.
8380 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
8382 * image-mode.el (image-mode-map): Remap left-char and right-char.
8384 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
8386 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
8388 * term/common-win.el (x-colors): Add all the color names defined
8389 in rgb.txt (Bug#6332).
8391 * facemenu.el (list-colors-print): Don't print extra names if it
8392 will overflow the window width.
8394 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
8397 2010-06-12 Eli Zaretskii <eliz@gnu.org>
8399 * files.el (make-directory): Doc fix (bug#6396).
8401 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
8403 * net/tramp.el (tramp-remote-process-environment): Protect version
8404 string by apostroph.
8405 (tramp-shell-prompt-pattern): Do not use a shy group in case of
8407 (tramp-file-name-for-operation): Add `call-process-region'.
8408 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
8410 * net/tramp-compat.el (top): Do not autoload
8411 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
8412 only when `start-file-process' is not bound.
8413 (tramp-advice-file-expand-wildcards): Do not use
8414 `tramp-handle-file-remote-p'.
8415 (tramp-compat-make-temp-file): Handle the case, that
8416 `make-temp-file' has no third argument EXTENSION.
8418 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
8420 * makefile.w32-in (WINS_BASIC): Include new directory vc.
8422 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
8424 2010-06-11 Juri Linkov <juri@jurta.org>
8426 * finder.el (finder-known-keywords): Add keyword "vc"
8427 for version control.
8429 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
8430 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
8431 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
8432 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
8434 2010-06-11 Juri Linkov <juri@jurta.org>
8436 Move version control related files to the "vc" subdirectory.
8437 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
8438 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
8439 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
8440 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
8441 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
8442 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
8443 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
8444 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
8445 Move files to the "vc" subdirectory.
8447 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
8449 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
8452 2010-06-11 Stephen Eglen <stephen@gnu.org>
8454 * shell.el: Bind `shell-resync-dirs' to M-RET.
8456 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
8458 * notifications.el: Move file from lisp/net, because it is
8459 supposed to talk locally to the user.
8461 2010-06-10 Julien Danjou <julien@danjou.info>
8463 * net/notifications.el (notifications-on-action-signal)
8464 (notifications-on-closed-signal): Pass notification id as first
8465 argument to the callback functions. Add docstrings.
8466 (notifications-notify): Fix docstring.
8468 2010-06-10 Glenn Morris <rgm@gnu.org>
8470 * emacs-lisp/authors.el (authors-ignored-files)
8471 (authors-valid-file-names): Add some files.
8473 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
8475 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
8476 merge conflict, giving preference to the emacs-23 version of the code.
8478 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8480 * emacs-lisp/advice.el (ad-compile-function):
8481 Define warning-suppress-types before we let-bind it (bug#6275).
8483 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
8484 declare it, make it buffer-local and permanent-local (bug#6324).
8485 (vc-resynch-window): Adjust name.
8486 * vc-hooks.el (vc-find-file-hook): Adjust name.
8488 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
8490 * net/notifications.el (notifications-notify): Fix docstring.
8492 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
8494 Update to Unicode 6.0.0 beta.
8495 * international/charprop.el: Update copyright.
8496 * international/mule-cmds.el (ucs-names): Update character ranges.
8497 * international/uni-bidi.el:
8498 * international/uni-category.el:
8499 * international/uni-combining.el:
8500 * international/uni-comment.el:
8501 * international/uni-decimal.el:
8502 * international/uni-decomposition.el:
8503 * international/uni-digit.el:
8504 * international/uni-lowercase.el:
8505 * international/uni-mirrored.el:
8506 * international/uni-name.el:
8507 * international/uni-numeric.el:
8508 * international/uni-old-name.el:
8509 * international/uni-titlecase.el:
8510 * international/uni-uppercase.el: Regenerate.
8512 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
8514 * emacs-lisp/smie.el (comment-string-strip): Declare function.
8515 (smie-precs-precedence-table): Fix typo in docstring.
8517 * vc-mtn.el (log-edit-extract-headers): Declare function.
8519 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
8521 * net/notifications.el (dbus-register-signal): Declare function.
8522 (notifications-notify): Fix typos and reflow docstring.
8524 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8526 Improve VC create/retrieve tag/branch.
8527 * vc.el (vc-create-tag): Do not read the directory name for VCs
8528 with repository revision granularity. Adjust the tag/branch
8529 prompt. Reset VC properties.
8530 (vc-retrieve-tag): Do not read the directory name for VCs
8531 with repository revision granularity. Reset VC properties.
8533 2010-06-09 Julien Danjou <julien@danjou.info>
8535 * net/notifications.el: New file.
8537 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8539 Add optional support for resetting VC properties.
8540 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
8541 call vc-file-clearprops when true.
8542 (vc-resynch-buffer): Add new optional argument, pass it down.
8543 (vc-resynch-buffers-in-directory): Likewise.
8545 Improve support for special markup in the VC commit message.
8546 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
8547 * vc-hg.el (vc-hg-checkin): Add support for Date:.
8548 * vc-git.el (vc-git-checkin):
8549 * vc-bzr.el (vc-bzr-checkin): Likewise.
8551 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8553 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
8554 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
8556 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
8558 * iimage.el: Remove images as soon as the underlying text is modified.
8559 (iimage-modification-hook): New function.
8560 (iimage-mode-buffer): Use it.
8562 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8564 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
8565 smie-indent-offset-after. Add :prev case. Make a bit more generic.
8566 (smie-indent-virtual): Remove `virtual' arg. Update callers.
8567 (smie-indent-keyword): Add handling of open-paren keywords.
8568 (smie-indent-comment-continue): Don't assume comment-continue.
8570 2010-06-07 Martin Rudalics <rudalics@gmx.at>
8572 * window.el (pop-to-buffer): Remove the conditional that
8573 compares new-window and old-window, so it will reselect
8574 the selected window unconditionally.
8575 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
8577 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8579 * emacs-lisp/smie.el (smie-indent-offset-after)
8580 (smie-indent-forward-token, smie-indent-backward-token): New functions.
8581 (smie-indent-after-keyword): Use them.
8582 (smie-indent-fixindent): Only applies to the indentation of the BOL.
8583 (smie-indent-keyword): Tweak the black magic.
8584 (smie-indent-comment-continue): Strip comment-continue before use.
8585 (smie-indent-functions): Indent comments before keywords.
8587 2010-06-06 Juri Linkov <juri@jurta.org>
8589 * isearch.el (isearch-lazy-highlight-search): Fix looping
8590 by checking for empty match. This syncs this loop with the
8591 similar loop in `isearch-search'. (Bug#6362)
8593 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
8595 * net/dbus.el (dbus-register-method): Declare function.
8596 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
8597 (dbus-introspect): Doc fix.
8598 (dbus-event-bus-name, dbus-introspect-get-interface)
8599 (dbus-introspect-get-argument): Reflow docstrings.
8601 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
8603 vc-log-incoming/vc-log-outgoing fixes for Git.
8604 * vc-git.el (vc-git-log-view-mode): Fix font lock for
8605 incoming/outgoing logs.
8606 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
8607 instead of vc-git-compute-remote.
8608 (vc-git-compute-remote): Remove.
8610 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
8612 * term/common-win.el (x-colors): Add "dark green" and "dark
8613 turquoise" (Bug#6332).
8615 2010-06-04 Juri Linkov <juri@jurta.org>
8617 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
8618 Instead of setting `replace' to t and replacing the same string
8619 with itself, don't do certain actions when
8620 kill-do-not-save-duplicates is non-nil and string is equal to car
8621 of kill-ring: don't call menu-bar-update-yank-menu, don't push
8622 interprogram-paste strings to kill-ring, and don't push the input
8623 argument `string' to kill-ring.
8624 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
8626 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
8628 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
8630 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
8632 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
8633 (tramp-gvfs-handler-mounted-unmounted)
8634 (tramp-gvfs-connection-mounted-p): Handle default-location.
8636 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
8637 move files to trash.
8639 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
8641 * international/mule-cmds.el (nonascii-insert-offset)
8642 (nonascii-translation-table): Add obsolescence information.
8644 * international/mule.el (make-translation-table-from-vector): Doc fix.
8646 2010-06-03 Glenn Morris <rgm@gnu.org>
8648 * desktop.el (desktop-clear-preserve-buffers):
8649 Add "*Warnings*" buffer. (Bug#6336)
8651 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
8653 vc-log-incoming/vc-log-outgoing improvements for Git.
8654 * vc-git.el (vc-git-log-outgoing): Use the same format as the
8656 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
8658 Add bindings for vc-log-incoming and vc-log-outgoing.
8659 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
8660 and vc-log-outgoing.
8661 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
8662 and vc-log-outgoing.
8664 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
8666 * net/rcirc.el (rcirc-sort-nicknames): Remove.
8667 (rcirc-handler-366): Always sort nicknames.
8669 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8671 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
8673 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
8675 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
8677 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
8679 * net/rcirc.el (rcirc-sort-nicknames): Change default.
8680 (rcirc-sort-nicknames-join): Avoid setq.
8682 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8684 * net/rcirc.el (rcirc-sort-nicknames): New custom.
8685 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
8686 (rcirc-handler-366): Use them.
8688 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
8690 Split smie-indent-calculate into more manageable chunks.
8691 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
8692 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
8693 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
8694 (smie-indent-exps): Extract from smie-indent-calculate.
8695 (smie-indent-functions): New var.
8696 (smie-indent-functions): Use them.
8698 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
8700 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
8701 (smie-indent-calculate): Simplify and cleanup.
8703 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
8705 * net/tramp-gvfs.el (top): Require url-util.
8706 (tramp-gvfs-mount-point): Remove.
8707 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
8709 (with-tramp-dbus-call-method): Format trace message.
8710 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
8711 Implement backup call, when operation on local files fails.
8712 Use progress reporter. Flush properties of changed files.
8713 (tramp-gvfs-handle-make-directory): Make more traces.
8714 (tramp-gvfs-url-file-name): Hexify file name in url.
8715 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
8716 into account for the resulting file name.
8717 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
8718 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
8719 (tramp-gvfs-handler-mounted-unmounted)
8720 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
8721 attribute "default_location". Set "prefix" property.
8722 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
8723 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
8724 exists. Raise an error, if not (due to a corresponding answer
8725 "no" in interactive questions, for example).
8727 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
8729 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
8731 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
8733 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
8736 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
8738 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
8739 * vc-git.el (vc-git-compute-remote): New function.
8740 (vc-git-log-outgoing): Use it instead of hard coding a value.
8741 (vc-git-log-incoming): New function.
8743 Improve state updating for VC tag commands.
8744 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
8745 to update the state of all buffers in the directory.
8747 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
8749 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8751 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
8752 `file-directory-p' to the filename part rather than to the whole text.
8754 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8756 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
8758 2010-05-31 Drew Adams <drew.adams@oracle.com>
8760 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
8762 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
8764 * subr.el (momentary-string-display): Just use read-event to read
8765 the exit event (Bug#6238).
8767 2010-05-30 Eli Zaretskii <eliz@gnu.org>
8769 * international/mule.el (define-coding-system): Doc fix (bug#6313).
8771 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
8773 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
8774 Suggested by Eli Zaretskii <eliz@gnu.org>.
8776 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
8778 * minibuffer.el (completion-file-name-table): Don't return a boundary
8779 past the end of `string' (bug#6299).
8780 (completion--file-name-table): Delegate to completion-file-name-table
8781 for the `boundaries' case.
8783 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
8785 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
8788 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
8789 `path-separator', but maintain compatibility with Emacs 20.2.
8791 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
8793 * server.el (server-process-filter): Receive parent-id argument
8795 (server-create-window-system-frame): New arg. Pass parent-id as
8798 2010-05-29 Eli Zaretskii <eliz@gnu.org>
8800 Bidi-sensitive word movement with arrow keys.
8801 * subr.el (right-arrow-command, left-arrow-command): Move to
8804 * bindings.el (right-char, left-char): Move from subr.el and
8805 rename from right-arrow-command and left-arrow-command.
8806 (right-word, left-word): New functions.
8807 (global-map) <right>: Bind to right-char.
8808 (global-map) <left>: Bind to left-char.
8809 (global-map) <C-right>: Bind to right-word.
8810 (global-map) <C-left>: Bind to left-word.
8812 * ls-lisp.el (ls-lisp-classify-file): New function.
8813 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
8814 (ls-lisp-classify): Call ls-lisp-classify-file.
8815 (insert-directory): Remove blanks from switches.
8817 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
8819 * ansi-color.el: Delete unused escape sequences (Bug#6085).
8820 (ansi-color-drop-regexp): New constant.
8821 (ansi-color-apply, ansi-color-filter-region)
8822 (ansi-color-apply-on-region): Delete unrecognized control sequences.
8823 (ansi-color-apply): Build string list before calling concat.
8825 2010-05-28 Juri Linkov <juri@jurta.org>
8827 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
8828 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
8831 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8833 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
8834 to ignored backtrace functions.
8835 (with-progress-reporter): Expand docstring.
8836 (tramp-handle-delete-file): Implement TRASH argument.
8837 (tramp-get-remote-trash): New defun.
8839 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8841 * net/tramp-compat.el (tramp-compat-delete-file):
8842 Use `symbol-value' for backward compatibility.
8844 * net/tramp.el (tramp-handle-make-symbolic-link)
8846 (tramp-do-copy-or-rename-file-via-buffer)
8847 (tramp-do-copy-or-rename-file-directly)
8848 (tramp-do-copy-or-rename-file-out-of-band)
8849 (tramp-handle-process-file, tramp-handle-call-process-region)
8850 (tramp-handle-shell-command, tramp-handle-file-local-copy)
8851 (tramp-handle-insert-file-contents, tramp-handle-write-region)
8852 (tramp-delete-temp-file-function): Use `delete-file' instead
8853 of `tramp-compat-delete-file'.
8855 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
8856 (tramp-fish-handle-make-symbolic-link)
8857 (tramp-fish-handle-process-file): Use `delete-file' instead
8858 of `tramp-compat-delete-file'.
8860 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
8861 Use `delete-file' instead of `tramp-compat-delete-file'.
8863 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
8864 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
8865 `tramp-compat-delete-file'.
8867 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
8868 Use `delete-file' instead of `tramp-compat-delete-file'.
8870 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8871 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
8872 (tramp-smb-handle-write-region): Use `delete-file' instead of
8873 `tramp-compat-delete-file'.
8874 (tramp-smb-handle-delete-directory): Use 'trash as arg.
8876 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8878 * dired.el (dired-delete-file): New arg TRASH.
8879 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
8880 (dired-do-flagged-delete, dired-do-delete): Use trash.
8882 * speedbar.el (speedbar-item-delete): Allow trashing.
8884 * files.el (delete-directory): New arg TRASH.
8886 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
8887 (ange-ftp-rename-remote-to-remote)
8888 (ange-ftp-rename-local-to-remote)
8889 (ange-ftp-rename-remote-to-local, ange-ftp-load)
8890 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
8892 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
8895 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
8896 handle new TRASH arg of `delete-file'.
8898 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
8899 (tramp-handle-make-symbolic-link, tramp-handle-load)
8900 (tramp-do-copy-or-rename-file-via-buffer)
8901 (tramp-do-copy-or-rename-file-directly)
8902 (tramp-do-copy-or-rename-file-out-of-band)
8903 (tramp-handle-process-file, tramp-handle-call-process-region)
8904 (tramp-handle-shell-command, tramp-handle-file-local-copy)
8905 (tramp-handle-insert-file-contents, tramp-handle-write-region)
8906 (tramp-delete-temp-file-function): Use null TRASH arg in
8907 tramp-compat-delete-file call.
8909 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
8910 (tramp-fish-handle-delete-file)
8911 (tramp-fish-handle-make-symbolic-link)
8912 (tramp-fish-handle-process-file): Use null TRASH arg in
8913 `tramp-compat-delete-file' call.
8915 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
8916 arg in `tramp-compat-delete-file' call.
8918 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
8919 (tramp-gvfs-handle-write-region): Use null TRASH arg in
8920 `tramp-compat-delete-file' call.
8922 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
8923 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
8924 `tramp-compat-delete-file' call.
8926 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8927 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
8928 (tramp-smb-handle-write-region): Use null TRASH arg in
8929 tramp-compat-delete-file call.
8930 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
8931 (tramp-smb-handle-delete-file): Rename arg.
8933 * diff.el (diff-sentinel):
8934 * epg.el (epg--make-temp-file, epg-decrypt-string)
8935 (epg-verify-string, epg-sign-string, epg-encrypt-string):
8936 * jka-compr.el (jka-compr-partial-uncompress)
8937 (jka-compr-call-process, jka-compr-write-region):
8938 * server.el (server-sentinel): Remove optional arg from
8939 delete-file, reverting 2010-05-03 change.
8941 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8943 * progmodes/verilog-mode.el (verilog-type-font-keywords):
8944 Use font-lock-constant-face, not obsolete font-lock-reference-face.
8946 2010-05-27 Kenichi Handa <handa@m17n.org>
8948 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
8949 element of GSTRING is nil.
8951 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
8953 * emacs-lisp/smie.el (smie-forward-token-function)
8954 (smie-backward-token-function): New vars.
8955 (smie-backward-sexp, smie-forward-sexp)
8956 (smie-indent-hanging-p, smie-indent-calculate): Use them.
8957 (smie-default-backward-token): Rename from smie-backward-token and
8959 (smie-default-forward-token): Rename from smie-forward-token and
8961 (smie-next-sexp): Handle nil results from next-token.
8962 (smie-indent-calculate): Add a new case for special `fixindent' comments.
8964 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8966 * progmodes/verilog-mode.el (verilog-type-font-keywords):
8967 Use font-lock-constant-face, not obsolete font-lock-reference-face.
8969 2010-05-27 Masatake YAMATO <yamato@redhat.com>
8971 * htmlfontify.el (hfy-face-resolve-face): New function.
8972 (hfy-face-to-style): Use it (Bug#6279).
8974 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
8976 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
8977 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
8979 2010-05-26 Glenn Morris <rgm@gnu.org>
8981 * emulation/edt.el (edt-load-keys): Use locate-library.
8983 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
8985 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
8986 (log-edit-changelog-entries): Doc fix.
8987 (log-edit-changelog-insert-entries): Args changed.
8988 Rename relative filenames in ChangeLog entries. Delete tabs.
8989 (log-edit-insert-changelog-entries): Reorganize return value of
8990 `log-edit-changelog-entries' to pass filenames to
8991 log-edit-changelog-insert-entries.
8993 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8995 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
8996 `image-dired-dired-insert-marked-thumbs' to
8997 `image-dired-dired-toggle-marked-thumbs'.
8999 * image-dired.el: Require cl when compiling.
9000 (image-dired-dired-toggle-marked-thumbs): Rename from
9001 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
9002 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
9003 to 'no-dir. Skip files whose names don't match
9004 `image-file-name-regexp'. When file has a thumbnail overlay,
9005 delete it. (Bug#5270)
9007 2010-05-25 Juri Linkov <juri@jurta.org>
9009 * image-mode.el (image-mode): Add image-after-revert-hook to
9011 (image-after-revert-hook): New function. (Bug#5669)
9013 2010-05-25 Juri Linkov <juri@jurta.org>
9015 * image.el (image-animated-p): When delay between animated images
9016 is 0, set it to 10 (0.1 sec). (Bug#6258)
9018 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
9020 * net/tramp.el (tramp-handle-insert-directory): Don't use
9021 `forward-word', its default syntax could be changed.
9023 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
9025 * net/tramp.el (tramp-progress-reporter-update): New defun.
9026 (with-progress-reporter): Use it.
9027 (tramp-process-actions):
9028 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
9029 Preserve current message, in order to let progress reporter continue
9030 afterwards. (Bug#6257)
9032 2010-05-25 Glenn Morris <rgm@gnu.org>
9034 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
9037 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
9039 * net/rcirc.el (rcirc-default-user-name): Change to "user".
9040 (rcirc-default-full-name): Change to "unknown".
9041 (rcirc-user-name-history): Add variable.
9043 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
9044 Jonathan Rockway <jon@jrock.us>
9046 * net/rcirc.el (rcirc-server-alist): Add :pass.
9047 (rcirc): When prompting for connection parameters, also prompt for
9048 username and password.
9049 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
9050 value to server when connecting.
9052 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9054 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
9055 (smie-merge-prec2s): Pass the tables as separate args.
9056 (smie-bnf-precedence-table): Adjust call accordingly.
9057 (smie-prec2-levels): Set levels at the end.
9059 Replace Lisp calls to delete-backward-char by delete-char.
9060 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
9061 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
9062 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
9063 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
9064 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
9065 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
9066 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
9067 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
9068 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
9069 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
9070 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
9071 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
9072 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
9073 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
9074 delete-backward-char by calls to delete-char.
9076 2010-05-25 Kenichi Handa <handa@m17n.org>
9078 * language/hebrew.el (hebrew-shape-gstring): New function.
9079 Register it in composition-function-table for all Hebrew combining
9082 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9084 * epa.el (epa--select-keys): Don't explicitly delete the window since
9085 that can fail (e.g. sole window in frame). Use dedication instead.
9087 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
9089 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
9091 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
9093 * image.el (image-refresh): Define as an alias for image-flush.
9095 * image-mode.el (image-toggle-display-image): Caller changed.
9097 2010-05-21 Juri Linkov <juri@jurta.org>
9099 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
9100 Remove "all" from grep-files-aliases. Split grep-files-aliases by
9101 whitespace, call wildcard-to-regexp on substrings and concat them
9102 with "\\|". (Bug#6114)
9104 2010-05-21 Alan Mackenzie <acm@muc.de>
9106 * progmodes/cc-engine.el (c-parse-state-get-strategy):
9107 Replace parameter `here' with `here-' and `here-plus', which sandwich
9108 any pertinent CPP construct.
9109 (c-remove-stale-state-cache-backwards): Fix a bug which happens
9110 when doing (c-parse-state) in a CPP construct: Exclude any "new"
9111 CPP construct from taking part in the scanning.
9113 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
9115 * net/tramp.el (tramp-do-copy-or-rename-file)
9116 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
9117 Tune `with-progress-reporter' messages.
9118 (tramp-handle-vc-registered):
9119 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
9120 (tramp-fish-handle-insert-file-contents)
9121 (tramp-fish-maybe-open-connection):
9122 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9123 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
9124 (tramp-imap-handle-insert-file-contents)
9125 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
9127 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
9129 * add-log.el (change-log-font-lock-keywords):
9130 Highlight all authors in multi-author entries.
9132 * smerge-mode.el (smerge-refine-ignore-whitespace)
9133 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
9134 Fix typos in docstrings.
9135 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
9137 2010-05-21 Glenn Morris <rgm@gnu.org>
9139 * progmodes/fortran.el (fortran-mode):
9140 * progmodes/f90.el (f90-mode): Derive from prog-mode.
9142 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
9143 having a relative path in src/Makefile.in.
9145 2010-05-20 Kevin Ryde <user42@zip.com.au>
9147 * help-mode.el (help-make-xrefs): For Info node links turn
9148 newlines into spaces. Link node names with newlines are matched
9149 by help-xref-info-regexp and buttonized, this change ensures they
9150 can be followed successfully with RET. (Bug#6206)
9152 2010-05-20 Juri Linkov <juri@jurta.org>
9154 * locate.el (locate): Use pop-to-buffer instead of
9155 switch-to-buffer-other-window. (Bug#6204)
9157 2010-05-20 Juri Linkov <juri@jurta.org>
9159 * replace.el (replace-highlight): Fix lazy-highlighting
9160 for `M-s w str M-% str RET'.
9162 2009-12-15 Masatake YAMATO <yamato@redhat.com>
9164 * isearch.el (isearch-yank-word-or-char): Pull next subword
9165 when `subword-mode' is activated. (Bug#6220)
9167 2010-05-20 Mark A. Hershberger <mah@everybody.org>
9169 * isearch.el (isearch-update-post-hook): New hook.
9170 (isearch-update): Use the new hook. (Bug#6225)
9172 2010-05-20 Juri Linkov <juri@jurta.org>
9174 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
9175 [f1], [help], and (char-to-string help-char) instead of "\C-h".
9178 2010-05-20 Juri Linkov <juri@jurta.org>
9180 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
9183 2010-05-20 Juri Linkov <juri@jurta.org>
9185 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
9186 FILE-NAME to read from the minibuffer when called interactively
9187 with prefix argument instead of using buffer-file-name.
9188 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
9190 * dired.el: Update autoloads.
9192 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
9194 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
9195 nxml-finish-element, for consistency with SGML mode.
9197 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
9200 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
9202 * composite.el: Require cl when compiling.
9203 (reference-point-alist, compose-gstring-for-graphic)
9204 (compose-gstring-for-terminal): Fix typos in docstrings.
9206 2010-05-19 Juri Linkov <juri@jurta.org>
9208 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
9209 set-window-parameter.
9211 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
9213 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
9215 (tramp-maybe-open-connection): Use it.
9217 2010-05-19 Eli Zaretskii <eliz@gnu.org>
9219 * simple.el (move-end-of-line): Make sure we are at line beginning
9220 before backing up to end of previous line.
9222 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
9224 * password-cache.el (password-cache-remove): Fix docstring.
9226 * net/secrets.el: Autoload the widget functions.
9227 (secrets-search-items, secrets-create-item)
9228 (secrets-get-attributes, secrets-expand-item): Attributes will be
9229 stored on the password database without leading ":", as all other
9231 (secrets-mode): Fix docstring.
9232 (secrets-show-secrets): Provide it as autoloaded command only when
9233 D-Bus support is available. Check existence of Secret Service API.
9235 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
9237 * indent.el (indent-region): Deactivate region (bug#6200).
9239 2010-05-19 Glenn Morris <rgm@gnu.org>
9241 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
9243 2010-05-19 Kenichi Handa <handa@m17n.org>
9245 * composite.el: Register compose-gstring-for-graphic in
9246 composition-function-table only for combining characters (Mn, Mc, Me).
9248 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
9250 * calc/calc-trail.el (calc-trail-isearch-forward)
9251 (calc-trail-isearch-backward): Ensure that the new window
9252 point is set correctly.
9254 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
9256 * subr.el (read-quoted-char): Resolve modifiers after key
9257 remapping (bug#6212).
9259 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
9261 Add visualization code for secrets.
9262 * net/secrets.el (secrets-mode): New major mode.
9263 (secrets-show-secrets, secrets-show-collections)
9264 (secrets-expand-collection, secrets-expand-item)
9265 (secrets-tree-widget-after-toggle-function)
9266 (secrets-tree-widget-show-password): New defuns.
9268 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
9270 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
9271 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
9272 handled in smie-next-sexp.
9273 (smie-indent-calculate): Provide a starting indentation (so the
9274 recursion is well-founded ;-).
9276 Fix handling of non-associative equal levels.
9277 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
9278 when it's not needed.
9279 (smie-op-left, smie-op-right): New functions.
9280 (smie-next-sexp): New function, extracted from smie-backward-sexp.
9281 Better handle equal levels to distinguish the associative case from
9282 the "multi-keyword construct" case.
9283 (smie-backward-sexp, smie-forward-sexp): Use it.
9285 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
9287 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
9289 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
9290 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
9292 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
9294 Provide a simple generic indentation engine and use it for Prolog.
9295 * emacs-lisp/smie.el: New file.
9296 * progmodes/prolog.el (prolog-smie-op-levels)
9297 (prolog-smie-indent-rules): New var.
9298 (prolog-mode-variables): Use them to configure SMIE.
9299 (prolog-indent-line, prolog-indent-level): Remove.
9301 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
9303 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
9304 order before computing the averages.
9306 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
9308 * calc/calc-vec.el (calc-histogram):
9309 (calcFunc-histogram): Allow vectors as inputs.
9310 (math-vector-avg): New function.
9312 * calc/calc-ext.el (math-group-float): Have the number of digits
9313 being grouped depend on the radix (Bug#6189).
9315 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
9317 * version.el (emacs-copyright, emacs-version): Don't define here,
9318 now that emacs.c defines it.
9320 2010-05-15 Eli Zaretskii <eliz@gnu.org>
9322 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
9323 "Describe Language Environment" menu item.
9325 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
9327 Bidi-sensitive movement with arrow keys.
9328 * subr.el (right-arrow-command, left-arrow-command): New functions.
9330 * bindings.el (global-map): Bind them to right and left arrow keys.
9332 Don't override standard definition of convert-standard-filename.
9333 * files.el (convert-standard-filename):
9334 Call w32-convert-standard-filename and dos-convert-standard-filename on
9335 the corresponding systems.
9337 * w32-fns.el (w32-convert-standard-filename): Rename from
9338 convert-standard-filename. Doc fix.
9340 * dos-fns.el (dos-convert-standard-filename): Doc fix.
9341 (convert-standard-filename): Don't defalias.
9342 (register-name-alist, make-register, register-value)
9343 (set-register-value, intdos): Obsolete aliases for the
9344 corresponding dos-* functions and variables.
9345 (dos-intdos): Add a doc string.
9347 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
9349 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
9350 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
9351 (math-compose-tex-func):
9352 * calc/calccomp.el (math-compose-expr):
9353 * calc/calc-ext.el (math-format-flat-expr-fancy):
9354 * calc/calc-store.el (calc-read-var-name):
9355 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
9357 * calc/calc.el (var-π, var-φ, var-γ): New variables.
9358 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
9359 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
9360 (math-standard-units): Add units.
9362 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
9364 * progmodes/asm-mode.el (asm-mode):
9365 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
9367 * pcomplete.el (pcomplete-completions-at-point): New function,
9368 extracted from pcomplete-std-complete.
9369 (pcomplete-std-complete): Use it.
9371 2010-05-15 Glenn Morris <rgm@gnu.org>
9373 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
9374 Remove references to CVS, RCS and Old directories.
9376 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
9378 * calc/calc-bin.el (math-format-twos-complement): Group digits when
9381 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
9383 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
9384 (sh-mode-syntax-table): Give it a default value instead.
9385 (sh-header-marker): Make buffer-local.
9386 (sh-mode): Move make-local-variable to the corresponding setq.
9387 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
9388 Use complete-with-action.
9390 * simple.el (prog-mode): New (abstract) major mode.
9391 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
9392 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
9394 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
9396 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
9397 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
9398 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
9399 (sql-make-alternate-buffer-name, sql-placeholders-filter)
9400 (sql-escape-newlines-filter, sql-input-sender)
9401 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
9403 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
9405 Add TeX open-block and close-block keybindings to SGML, and vice versa.
9407 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
9408 latex-open-block and C-c / to latex-close-block.
9410 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
9411 and C-c C-e to sgml-close-tag.
9413 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
9415 * net/tramp.el (with-progress-reporter): Create reporter object
9416 only when the message would be displayed. Handle nested calls.
9417 (tramp-handle-load, tramp-handle-file-local-copy)
9418 (tramp-handle-insert-file-contents, tramp-handle-write-region)
9419 (tramp-maybe-send-script, tramp-find-shell):
9420 Use `with-progress-reporter'.
9421 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
9424 * net/tramp-smb.el (tramp-smb-handle-copy-file)
9425 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
9426 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
9427 Use `with-progress-reporter'.
9429 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
9431 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
9432 process everytime when spellchecking from the minibuffer (bug#6143).
9434 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
9436 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
9438 * dos-fns.el: Add "dos-" prefix for namespace control.
9439 (convert-standard-filename): Define as alias for
9440 dos-convert-standard-filename but only if applicable.
9442 2010-05-12 Alan Mackenzie <acm@muc.de>
9444 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
9445 Push the mark at the start of these functions when appropriate.
9447 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
9449 * minibuffer.el (completion-cycle-threshold): New custom var.
9450 (completion--do-completion): Use it.
9451 (minibuffer-complete): Use cycling if appropriate.
9453 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
9455 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
9456 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
9458 2010-05-11 Juri Linkov <juri@jurta.org>
9460 * scroll-all.el (scroll-all-check-to-scroll):
9461 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
9463 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
9465 * iimage.el (iimage-mode-map): Move initialization into declaration.
9466 (iimage-mode-buffer): Use with-silent-modifications.
9467 Simplify calling convention. Adjust callers.
9468 (iimage-mode): Don't run hook redundantly.
9470 * minibuffer.el (completion-pcm--pattern->regex):
9471 Fix last change (bug#6160).
9473 2010-05-10 Juri Linkov <juri@jurta.org>
9475 Remove nodes visited during Isearch from the Info history.
9476 * info.el (Info-isearch-initial-history)
9477 (Info-isearch-initial-history-list): New variables.
9478 (Info-isearch-start): Record initial values of
9479 Info-isearch-initial-history and Info-isearch-initial-history-list.
9480 Add Info-isearch-end to isearch-mode-end-hook.
9481 (Info-isearch-end): New function.
9483 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
9485 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
9486 format string, in order to work around a bug in pdksh.
9487 Reported by Gilles Pion <gpion@lfdj.com>.
9488 (tramp-handle-verify-visited-file-modtime): Do not send a command
9489 when the connection is not established.
9490 (tramp-handle-set-file-times): Simplify the check for utc.
9492 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
9494 Fix use of `filter-buffer-substring' (rework previous change).
9495 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
9496 (cua-repeat-replace-region):
9497 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
9498 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
9499 (cua-cut-region-to-global-mark): Use it.
9501 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
9503 * progmodes/sql.el: Version 2.1.
9504 (sql-product-alist): Redesign structure of product info.
9505 (sql-product, sql-user, sql-server, sql-database): Safe variables.
9506 (sql-port, sql-port-history): New variables.
9507 (sql-interactive-product): New variable.
9508 (sql-send-terminator): New variable.
9509 (sql-imenu-generic-expression): Add "Types" imenu entry.
9510 (sql-oracle-login-params, sql-sqlite-login-params)
9511 (sql-mysql-login-params, sql-solid-login-params)
9512 (sql-sybase-login-params, sql-informix-login-params)
9513 (sql-ingres-login-params, sql-ms-login-params)
9514 (sql-postgres-login-params, sql-interbase-login-params)
9515 (sql-db2-login-params, sql-linter-login-params)
9516 (sql-oracle-scan-on): New variables.
9517 (sql-mode-map): Add C-c C-i to start interactive mode.
9518 (sql-mode-menu): Update existing menu entries.
9519 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
9520 (sql-mode-oracle-font-lock-keywords)
9521 (sql-mode-postgres-font-lock-keywords)
9522 (sql-mode-ms-font-lock-keywords)
9523 (sql-mode-sybase-font-lock-keywords)
9524 (sql-mode-informix-font-lock-keywords)
9525 (sql-mode-interbase-font-lock-keywords)
9526 (sql-mode-ingres-font-lock-keywords)
9527 (sql-mode-solid-font-lock-keywords)
9528 (sql-mode-mysql-font-lock-keywords)
9529 (sql-mode-sqlite-font-lock-keywords)
9530 (sql-mode-db2-font-lock-keywords)
9531 (sql-mode-linter-font-lock-keywords): Update initialization to
9532 reduce run-time complexity.
9533 (sql-add-product, sql-del-product): New functions.
9534 (sql-set-product-feature, sql-get-product-feature): New functions.
9535 (sql-product-font-lock): Update product API.
9536 (sql-add-product-keywords): New function.
9537 (sql-highlight-product): Update product API.
9538 (sql-help-list-products): New function.
9539 (sql-help): Dynamically lists free and non-free products.
9540 (sql-get-login): Correct bug in handling history and added
9542 (sql-copy-column): Copy without properties.
9543 (sqli-input-sender): Apply filters to SQLi input.
9544 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
9545 Implement as a filter.
9546 (sql-escape-newlines-filter): Implement as a filter.
9547 (sql-remove-tabs-filter): New function.
9548 (sql-send-magic-terminator): New function.
9549 (sql-send-string): Implement magic terminator.
9550 (sql-send-region): Use `sql-send-string'.
9551 (sql-interactive-mode): Use product API.
9552 (sql-product-interactive): Use product API.
9553 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
9554 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
9555 (sql-db2, sql-linter): Use `sql-product-interactive'.
9556 (sql-connect): New function.
9557 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
9558 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
9559 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
9560 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
9563 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
9565 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
9566 New custom variable.
9567 (completion-pcm--string->pattern): Use it.
9568 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
9569 Make it handle any symbol as `any'.
9570 (completion-pcm--merge-completions): Extract common suffix for the new
9571 `prefix' symbol as well.
9572 (completion-substring--all-completions): Use the new `prefix' symbol.
9574 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
9576 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
9578 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
9579 (tramp-compat-funcall): New defmacro.
9580 (tramp-compat-line-beginning-position)
9581 (tramp-compat-line-end-position)
9582 (tramp-compat-temporary-file-directory)
9583 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
9584 (tramp-compat-copy-file, tramp-compat-copy-directory)
9585 (tramp-compat-delete-file, tramp-compat-delete-directory)
9586 (tramp-compat-number-sequence, tramp-compat-process-running-p)
9587 * net/tramp.el (top, with-progress-reporter)
9588 (tramp-rfn-eshadow-setup-minibuffer)
9589 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
9590 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
9591 (tramp-completion-mode-p, tramp-check-for-regexp)
9592 (tramp-open-connection-setup-interactive-shell)
9593 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
9594 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
9595 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
9596 * net/tramp-cmds.el (tramp-cleanup-all-connections)
9597 (tramp-reporter-dump-variable, tramp-load-report-modules)
9598 (tramp-append-tramp-buffers)
9599 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
9601 * net/tramp-imap.el (top): Autoload `epg-make-context'.
9603 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
9605 * progmodes/compile.el (compilation-buffer-modtime): Rename from
9606 buffer-modtime. Adjust users.
9608 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
9610 * international/mule.el (auto-coding-alist): Only purecopy
9611 car of each item, not the whole list (Bug#6083).
9613 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
9615 * progmodes/js.el (js-mode): Make paragraph variables local before
9616 calling c-setup-paragraph-variables (Bug#6071).
9618 2010-05-08 Eli Zaretskii <eliz@gnu.org>
9620 * composite.el (compose-region, reference-point-alist): Fix typos
9623 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
9625 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
9626 gnuplot's "set" command.
9628 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
9630 * abbrev.el (last-abbrev-text): Doc fix.
9631 (abbrev-prefix-mark): Don't escape parenthesis.
9633 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
9635 * composite.el (find-composition): Doc fix.
9637 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
9639 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
9640 (sql-oracle-program, sql-sqlite-options)
9641 (sql-query-placeholders-and-send): Doc fixes.
9642 (sql-set-product, sql-interactive-mode): Reflow docstrings.
9643 (sql-imenu-generic-expression, sql-buffer)
9644 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
9645 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
9646 (sql-mode-sybase-font-lock-keywords)
9647 (sql-mode-informix-font-lock-keywords)
9648 (sql-mode-interbase-font-lock-keywords)
9649 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
9650 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
9651 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
9652 (sql-product-feature, sql-highlight-product)
9653 (comint-line-beginning-position, sql-rename-buffer)
9654 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
9655 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
9656 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
9657 Fix typos in docstrings.
9659 2010-05-08 Juri Linkov <juri@jurta.org>
9661 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
9662 property instead of `invisible' and `after-string' (bug#5998).
9664 2010-05-08 Juri Linkov <juri@jurta.org>
9666 * image-mode.el (image-mode-as-text): Fix typo in docstring.
9668 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
9670 * filecache.el (file-cache-add-directory-list)
9671 (file-cache-add-directory-recursively): Fix typos in docstrings.
9673 2010-05-08 Kenichi Handa <handa@m17n.org>
9675 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
9676 (gujarati-composable-pattern): Fix typo.
9678 2010-05-08 Kenichi Handa <handa@m17n.org>
9680 * language/indian.el (oriya-composable-pattern)
9681 (tamil-composable-pattern, malayalam-composable-pattern):
9682 Add two-part vowels to "v" (vowel sign).
9684 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
9686 * files.el (copy-directory): Handle symlinks (Bug#5982).
9688 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
9690 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
9691 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
9694 2010-05-08 Glenn Morris <rgm@gnu.org>
9696 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
9698 * minibuffer.el (completion-at-point): Doc fix.
9700 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
9702 * electric.el (Electric-command-loop): Minor tweak.
9704 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
9705 better with dedicated windows.
9707 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
9709 * Version 23.2 released.
9711 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
9712 Stefan Monnier <monnier@iro.umontreal.ca>
9714 Highlight vendor specific properties.
9715 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
9716 (css-proprietary-property): New face.
9717 (css-font-lock-keywords): Use them.
9719 2010-05-07 Eli Zaretskii <eliz@gnu.org>
9721 * cus-start.el (all): Add native condition for tool-bar-* symbols.
9723 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
9725 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
9726 * files.el (auto-mode-alist): Remove redundant entries.
9728 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
9729 * simple.el (auto-save-mode): Move from files.el.
9730 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
9732 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
9734 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
9736 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
9738 * mail/binhex.el (binhex-decode-region-internal)
9739 * mail/uudecode.el (uudecode-decode-region-internal)
9740 * net/dns.el (dns-read-string-name, dns-write, dns-read)
9741 (dns-read-type, dns-query)
9742 * pgg-parse.el (pgg-parse-armor)
9743 * pgg.el (pgg-verify-region)
9744 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
9747 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
9749 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
9751 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
9753 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
9754 * emulation/cua-base.el (cua-repeat-replace-region):
9755 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
9756 (cua-cut-region-to-global-mark):
9757 Remove text properties with `set-text-properties'.
9759 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
9761 * net/tramp.el (top, with-progress-reporter):
9762 Use `symbol-function' inside `funcall'.
9764 * net/tramp-compat.el (tramp-compat-file-attributes)
9765 (tramp-compat-delete-file, tramp-compat-delete-directory):
9766 Handle only `wrong-number-of-arguments' error.
9768 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
9769 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
9772 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
9774 * minibuffer.el (completion--sreverse, completion--common-suffix):
9776 (completion-pcm--merge-completions): Extract common suffix when safe.
9778 * emacs-lisp/easy-mmode.el (define-minor-mode):
9779 Make :variable more flexible.
9780 * files.el (auto-save-mode): Use it to define using define-minor-mode.
9782 2010-05-05 Juri Linkov <juri@jurta.org>
9784 Add `slow' and `history' tags to the desktop data.
9786 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
9787 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
9788 (Info-finder-find-node): Require `finder.el' to be able
9789 to restore node from the desktop.
9790 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
9791 data `Info-history' and `slow' tag in the assoc list.
9792 (Info-restore-desktop-buffer): Don't restore nodes with the
9793 `slow' tag. Restore `Info-history'.
9795 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
9797 Add FORCE argument to `delete-file'.
9799 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
9800 forcing to delete the temporary file.
9801 (ange-ftp-delete-file): Add FORCE arg.
9802 (ange-ftp-rename-remote-to-remote)
9803 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
9804 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
9805 Force file deletion.
9807 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
9809 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
9810 (tramp-handle-make-symbolic-link, tramp-handle-load)
9811 (tramp-do-copy-or-rename-file-via-buffer)
9812 (tramp-do-copy-or-rename-file-directly)
9813 (tramp-do-copy-or-rename-file-out-of-band)
9814 (tramp-handle-process-file, tramp-handle-call-process-region)
9815 (tramp-handle-shell-command, tramp-handle-file-local-copy)
9816 (tramp-handle-insert-file-contents, tramp-handle-write-region)
9817 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
9819 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
9820 (tramp-fish-handle-make-symbolic-link)
9821 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
9823 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
9824 Use `tramp-compat-delete-file'.
9826 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
9827 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
9829 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
9830 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
9832 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
9833 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
9834 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
9835 Use `tramp-compat-delete-file'.
9837 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
9840 * subr.el (add-minor-mode): Use push.
9841 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
9842 * emulation/edt.el (edt-select-mode): Simplify.
9844 Use define-minor-mode in more cases.
9845 * term/tvi970.el (tvi970-set-keypad-mode):
9846 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
9847 (normal-erase-is-backspace-mode):
9848 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
9849 (set-scroll-bar-mode-1): (Re)move to its sole caller.
9850 (get-scroll-bar-mode): New function.
9851 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
9853 Use define-minor-mode for less obvious cases.
9854 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
9855 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
9856 * international/iso-ascii.el (iso-ascii-mode):
9857 * frame.el (auto-raise-mode, auto-lower-mode):
9858 * composite.el (global-auto-composition-mode): Use define-minor-mode.
9860 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
9862 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
9863 in order to see error messages for failed logins.
9865 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
9867 * diff.el (diff-sentinel):
9869 * epg.el (epg--make-temp-file, epg-decrypt-string)
9870 (epg-verify-string, epg-sign-string, epg-encrypt-string):
9872 * jka-compr.el (jka-compr-partial-uncompress)
9873 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
9875 * server.el (server-sentinel): Use delete-file's new FORCE arg
9878 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
9880 Use define-minor-mode where applicable.
9881 * view.el (view-mode):
9882 * type-break.el (type-break-query-mode)
9883 (type-break-mode-line-message-mode):
9884 * textmodes/reftex.el (reftex-mode):
9885 * term/vt100.el (vt100-wide-mode):
9886 * tar-mode.el (tar-subfile-mode):
9887 * savehist.el (savehist-mode):
9888 * ibuf-ext.el (ibuffer-auto-mode):
9889 * composite.el (auto-composition-mode):
9890 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
9891 Use define-minor-mode.
9892 (vhdl-mode): Use static mode-line format.
9893 (vhdl-mode-line-update): Delete.
9894 (vhdl-create-mode-menu, vhdl-activate-customizations)
9895 (vhdl-hs-minor-mode): Don't bother calling it.
9897 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
9899 * simple.el (with-wrapper-hook): Move.
9900 (buffer-substring-filters): Mark obsolete.
9901 (filter-buffer-substring-functions): New variable.
9902 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
9904 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
9905 Michael Albinus <michael.albinus@gmx.de>
9907 Implement compression for inline methods.
9909 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
9910 (tramp-copy-size-limit): Allow also nil.
9911 (tramp-inline-compress-commands): New defconst.
9912 (tramp-find-inline-compress, tramp-get-inline-compress)
9913 (tramp-get-inline-coding): New defuns.
9914 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
9915 replaced by `tramp-get-inline-coding'.
9916 (tramp-handle-file-local-copy, tramp-handle-write-region)
9917 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
9919 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
9921 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
9922 Remove unused functions.
9924 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
9925 Set find-tag-default-function as a variable rather than a property.
9927 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
9928 * progmodes/etags.el (tags-completion-at-point-function):
9929 Remove left over interactive spec. Add autoloading stub.
9930 (complete-tag): Use tags-completion-at-point-function.
9932 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
9934 * minibuffer.el (tags-completion-at-point-function): Fix return value.
9936 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
9938 * ido.el (ido-init-completion-maps): Remove C-v binding.
9939 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
9941 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
9943 * minibuffer.el (tags-completion-at-point-function): New function.
9944 (completion-at-point-functions): Use it.
9946 * progmodes/etags.el (complete-tag): Revert last change.
9948 2010-04-29 Alan Mackenzie <acm@muc.de>
9950 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
9951 off-by-one error (in end of macro position).
9953 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
9955 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
9956 firefox is absent. Don't autoload.
9957 (browse-url-galeon-program): Don't autoload.
9959 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
9961 * bindings.el (complete-symbol): Move into minibuffer.el.
9963 * minibuffer.el (complete-tag): Move from etags.el. If tags
9964 completion cannot be performed, return nil instead of signalling
9966 (completion-at-point): Make it an alias for complete-symbol.
9967 (complete-symbol): Move from bindings.el, and replace with the
9968 body of completion-at-point.
9970 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
9972 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
9974 * net/tramp.el (tramp-remote-selinux-p): New defun.
9975 (tramp-handle-file-selinux-context)
9976 (tramp-handle-set-file-selinux-context): Use it.
9978 2010-04-28 Sam Steingold <sds@gnu.org>
9980 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
9981 `safe-local-variable' if the value is a string or a symbol with
9982 the property `bug-reference-url-format'.
9984 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
9986 * progmodes/bug-reference.el (bug-reference-url-format):
9987 Revert 2010-04-27 change due to security risk.
9989 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
9991 Make it possible to locally disable a globally enabled mode.
9992 * simple.el (fundamental-mode): Run fundamental-mode-hook.
9993 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
9994 rather than kill-all-local-variables so it runs fundamental-mode-hook.
9995 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9996 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
9997 that subsequent hooks get a chance to disable it.
9999 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
10001 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10002 Avoid re-enabling a minor mode after the user turned the minor mode
10003 off if MODE-enable-in-buffers is run twice (typically once from
10004 fundamental-mode's after-change-major-mode-hook and a second time from
10005 run-mode-hook's own after-change-major-mode-hook).
10007 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
10009 2010-04-27 Sam Steingold <sds@gnu.org>
10011 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
10012 `safe-local-variable' if the value is a string or a function, as
10013 documented and implemented on 2010-04-02.
10015 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
10017 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
10018 when method is 'kill.
10020 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
10022 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
10023 condition in default directory check.
10024 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
10025 Kill ispell process when killing its associated buffer.
10027 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
10029 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
10030 but we aren't using it.
10032 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
10034 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
10035 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
10037 2010-04-24 Glenn Morris <rgm@gnu.org>
10039 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
10040 Ignore VCS-ignore files, and deleted nextstep preferences files.
10041 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
10042 (authors-ambiguous-files): New list.
10043 (authors-valid-file-names): Add some deleted files.
10044 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
10045 (authors-disambiguate-file-name): New function. (Bug#5501)
10046 (authors-canonical-file-name): Doc fix.
10047 Don't warn about obsolete files.
10048 (authors-canonical-file-name, authors-scan-el):
10049 Use authors-disambiguate-file-name.
10051 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
10052 Add autoload cookies.
10053 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
10054 (generated-autoload-file): Set file-local value to "htmlfontify.el".
10055 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
10056 They have definitions / compiler macros in cl.el.
10057 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
10058 Replace manual autoloads with generated ones.
10059 (htmlfontify-unload-rgb-file): Remove autoload.
10060 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
10062 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
10064 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
10065 (byte-compile-setq-default): Optimize for the
10066 single-var case and don't call byte-compile-form in this case to avoid
10067 inf-loop with byte-compile-set-default.
10069 * progmodes/compile.el (compilation-start): Abbreviate default directory.
10071 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
10073 Implement SELINUX backends.
10075 * net/tramp.el (tramp-file-name-handler-alist):
10076 Add `file-selinux-context' and `set-file-selinux-context'.
10077 (tramp-handle-file-selinux-context)
10078 (tramp-handle-set-file-selinux-context): New defuns.
10079 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
10080 Handle PRESERVE-SELINUX-CONTEXT.
10082 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10083 Add `file-selinux-context' and `set-file-selinux-context'.
10084 (tramp-gvfs-handle-file-selinux-context)
10085 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
10086 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
10088 * net/ange-ftp.el (ange-ftp-copy-file):
10089 * net/tramp-fish.el (tramp-fish-handle-copy-file):
10090 * net/tramp-imap.el (tramp-imap-handle-copy-file):
10091 * net/tramp-smb.el (tramp-smb-handle-copy-file):
10092 Add PRESERVE-SELINUX-CONTEXT.
10094 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
10096 Synchronize with Tramp repository.
10098 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
10099 (tramp-action-process-alive, tramp-action-out-of-band)
10100 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
10101 (tramp-exists-file-name-handler): Fix docstring.
10102 (with-progress-reporter): New defmacro.
10103 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
10104 (tramp-maybe-open-connection): Use it.
10106 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
10108 Detect ssh 'ControlMaster' argument automatically in some cases.
10110 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
10111 (tramp-default-method): Use it.
10113 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
10115 * net/tramp.el (tramp-handle-copy-file): Add new optional
10116 parameter `preserve-selinux-context'.
10117 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
10119 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
10121 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
10122 Ensure, that non remote files are still checked. Oops.
10124 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
10128 * icomplete.el (icomplete-completions): Use `non-essential'.
10130 * net/tramp.el (tramp-connectable-p): New defun.
10131 (tramp-handle-expand-file-name)
10132 (tramp-completion-handle-file-name-all-completions)
10133 (tramp-completion-handle-file-name-completion): Use it.
10135 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
10137 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
10139 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
10141 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
10143 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
10145 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
10148 * info.el (info-tool-bar-map): Add labels.
10150 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
10152 * cus-edit.el (custom-commands): Add labels for tool bar.
10153 (custom-buffer-create-internal, Custom-mode): Adjust for
10154 labels in custom-commands.
10156 * dynamic-setting.el: Renamed from font-setting.el.
10158 2010-04-21 John Wiegley <jwiegley@gmail.com>
10160 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
10161 toggles the use of virtual buffers.
10162 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
10163 (ido-toggle-virtual-buffers): New function.
10165 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
10167 Use `define-derived-mode'; fix window selection; doc fixes.
10168 * play/tetris.el (tetris, tetris-update-speed-function)
10169 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
10170 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
10171 (tetris-rotate-next, tetris-end-game, tetris-start-game)
10172 (tetris-pause-game): Fix typos in docstrings.
10173 (tetris-mode-map, tetris-null-map):
10174 Move initialization into declaration.
10175 (tetris-mode): Define with `define-derived-mode';
10176 set show-trailing-whitespace to nil.
10177 (tetris): Prefer window already displaying the "*Tetris*" buffer.
10179 2010-04-21 Karel Klíč <kklic@redhat.com>
10181 * files.el (backup-buffer): Handle SELinux context, and return it
10182 if a backup was made by renaming.
10183 (backup-buffer-copy): Set SELinux context to the target file.
10184 (basic-save-buffer): Set SELinux context of the newly written file.
10185 (basic-save-buffer-1): Now it also returns any SELinux context.
10186 (basic-save-buffer-2): Set SELinux context of the newly created file,
10188 * net/tramp.el (tramp-file-name-for-operation):
10189 Add file-selinux-context.
10191 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
10193 Make the log-edit comments use RFC822 format throughout.
10195 * vc.el (vc-checkin, vc-modify-change-comment):
10196 Adjust to new vc-start/finish-logentry.
10197 (vc-find-conflicted-file): New command.
10198 (vc-transfer-file): Adjust to new vc-checkin.
10199 (vc-next-action): Improve scoping.
10201 * vc-hg.el (vc-hg-log-edit-mode): Remove.
10202 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
10204 * vc-git.el (vc-git-log-edit-mode): Remove.
10205 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
10206 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
10208 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
10209 (vc-start-logentry): Remove argument `extra'.
10210 (vc-finish-logentry): Remove extra args.
10212 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
10213 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
10214 (vc-bzr-conflicted-files): New function.
10216 * log-edit.el (log-edit-extra-flags)
10217 (log-edit-before-checkin-process): Remove.
10218 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
10219 (log-edit-headers-alist): New var.
10220 (log-edit-header-contents-regexp): New const.
10221 (log-edit-match-to-eoh): New function.
10222 (log-edit-font-lock-keywords): Use them.
10223 (log-edit): Insert a "Summary:" header as default.
10224 (log-edit-mode): Mark font-lock rules as case-insensitive.
10225 (log-edit-done): Cleanup headers.
10226 (log-view-process-buffer): Remove.
10227 (log-edit-extract-headers): New function to replace it.
10229 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
10231 * subr.el (default-direction-reversed): Remove obsolescence info.
10233 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
10235 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
10238 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
10239 I.e. include text after point in the completion region.
10240 Also, return nil when we're not after/in a symbol.
10242 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
10243 default enable-multibyte-characters.
10245 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
10247 * international/mule.el: Help the user choose a valid coding-system.
10248 (read-buffer-file-coding-system): New function.
10249 (set-buffer-file-coding-system): Use it. Prompt the user if the
10250 coding-system cannot encode all the chars.
10252 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
10253 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
10254 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
10255 Don't use *vc-bzr-shelve*.
10257 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
10259 Fix the version number for added files.
10260 * vc-hg.el (vc-hg-working-revision): Check if the file is
10261 registered after hg parent fails (Bug#5961).
10263 2010-04-19 Glenn Morris <rgm@gnu.org>
10265 * htmlfontify.el (htmlfontify-buffer)
10266 (htmlfontify-copy-and-link-dir): Autoload entry points.
10268 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
10270 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
10271 name relative to the project root (Bug#5960).
10273 2010-04-19 Glenn Morris <rgm@gnu.org>
10275 * vc-git.el (vc-git-print-log): Doc fix.
10277 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
10279 * ido.el (ido-file-internal): Fix 2009-12-02 change.
10281 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
10283 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
10284 default settings (Bug#5928).
10286 2010-04-19 Glenn Morris <rgm@gnu.org>
10288 * progmodes/fortran.el (fortran-match-and-skip-declaration):
10290 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
10292 2010-04-19 Kenichi Handa <handa@m17n.org>
10294 * language/indian.el (malayalam-composable-pattern): Fix previous
10295 change (add U+0D4D "SIGN VIRAMA").
10296 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
10297 (tamil-composable-pattern): Fix typo in the regexp.
10298 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
10299 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
10300 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
10302 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
10304 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
10305 paragraph-separate (Bug#5821).
10307 2010-04-19 Juri Linkov <juri@jurta.org>
10309 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
10311 * info.el (Info-find-node-2): Comment out code that skips
10313 (Info-mouse-follow-link): New command.
10314 (Info-link-keymap): New keymap.
10315 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
10316 Return a string with links instead of inserting breadcrumbs
10317 to the Info buffer.
10318 (Info-fontify-node): Comment out code that inserts breadcrumbs.
10319 Instead of putting the `invisible' text property over the Info
10320 header, make an overlay over the Info header with the `invisible'
10321 property and `after-string' set to the string returned by
10322 `Info-breadcrumbs'.
10324 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
10326 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
10327 Reported by monkey@sandpframing.com.
10329 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
10331 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
10332 (tmm-get-keymap): Add key-binding shortcuts now that they're not
10333 available in the "keyseq cache" any more.
10335 * custom.el (defcustom): Add edebug spec.
10337 2010-04-18 Juri Linkov <juri@jurta.org>
10339 Test for special mode-class in view-buffer instead of view-file (bug#5513).
10341 * view.el (view-file, view-buffer): Move test for special mode-class
10342 from view-file to view-buffer.
10344 * tar-mode.el (tar-extract): Turn if's into one cond
10345 like in arc-mode.el.
10347 2010-04-18 Juri Linkov <juri@jurta.org>
10349 Add 7z archive format support (bug#5475).
10351 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
10352 (archive-7z-extract): New defcustom.
10353 (archive-find-type): Add magic string for 7z.
10354 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
10355 If `stderr-file' is non-nil, use `(t stderr-file)' for the
10356 `buffer' arg of `call-process'.
10357 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
10358 call the function `archive-7z-extract' with the variable
10359 `archive-7z-extract' let-bound to `archive-zip-extract'.
10360 (archive-7z-summarize, archive-7z-extract): New functions.
10362 * international/mule.el (auto-coding-alist):
10363 * files.el (auto-mode-alist): Add 7z file extension.
10365 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
10367 * loadup.el: Setup hash-cons for pure data.
10369 Fix duplicate entries in cedet's loaddefs.el files.
10370 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
10371 Should make most file-local generated-autoload-file unnecessary.
10372 (print-readably): Silence warnings.
10373 (autoload-find-destination): Take load-name as an arg to make sure
10374 it's the same as the one that will be in the file.
10375 (autoload-generate-file-autoloads): Adjust to above changes.
10376 Try to make the dataflow a bit simpler.
10378 * cvs-status.el (cvs-refontify): Remove unused.
10380 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
10382 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
10384 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
10385 twos-complement mode.
10387 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
10389 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
10390 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
10391 (calc-inverse): Add "Option" to message, as appropriate.
10392 (calc-hyperbolic): Add "Option" to message, as appropriate.
10393 (calc-option, calc-is-option): New functions.
10395 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
10396 (calc-option-prefix-help): New function.
10398 * calc/calc-misc.el (calc-help): Add "Option" entry.
10400 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
10401 (calc-option-flag): New variable.
10402 (calc-do): Set `calc-option-flag to nil.
10403 (calc-set-mode-line): Add "Opt " as appropriate.
10405 2010-04-16 Juri Linkov <juri@jurta.org>
10407 Move scrolling commands from simple.el to window.el
10408 because their primitives are implemented in window.c.
10410 * simple.el (scroll-error-top-bottom)
10411 (scroll-up-command, scroll-down-command, scroll-up-line)
10412 (scroll-down-line, scroll-other-window-down)
10413 (beginning-of-buffer-other-window, end-of-buffer-other-window):
10414 * window.el (scroll-error-top-bottom)
10415 (scroll-up-command, scroll-down-command, scroll-up-line)
10416 (scroll-down-line, scroll-other-window-down)
10417 (beginning-of-buffer-other-window, end-of-buffer-other-window):
10418 Move from simple.el to window.el because their primitives are
10419 implemented in window.c.
10421 2010-04-16 Juri Linkov <juri@jurta.org>
10423 * isearch.el (isearch-lookup-scroll-key): Check both
10424 `isearch-scroll' and `scroll-command' properties.
10425 (scroll-up, scroll-down): Remove `isearch-scroll' property.
10427 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
10429 * simple.el (scroll-up-command, scroll-down-command)
10430 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
10432 2010-04-15 Juri Linkov <juri@jurta.org>
10434 * simple.el (scroll-up-command, scroll-down-command)
10435 (scroll-up-line, scroll-down-line): Put `scroll-command'
10436 property on the these symbols. Remove them from
10437 `scroll-preserve-screen-position-commands'.
10439 * mwheel.el (mwheel-scroll): Put `scroll-command' and
10440 `isearch-scroll' properties on the `mwheel-scroll' symbol.
10441 Remove it from `scroll-preserve-screen-position-commands'.
10443 * isearch.el (isearch-allow-scroll): Doc fix.
10445 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
10447 * net/tramp.el (tramp-error-with-buffer): Don't show the
10448 connection buffer when we are in completion mode.
10449 (tramp-file-name-handler): Catch the error for some operations
10450 when we are in completion mode. This gives the user the chance to
10451 correct the file name in the minibuffer.
10453 2010-04-15 Glenn Morris <rgm@gnu.org>
10455 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
10457 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
10459 Simplify by using `define-derived-mode'.
10460 * info.el (Info-mode):
10461 * calendar/todo-mode.el (todo-mode):
10462 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
10463 (gomoku-mode-map): Move initialization into declaration.
10465 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
10468 * ido.el (ido-file-name-all-completions-1):
10469 * minibuffer.el (minibuffer-completion-help):
10470 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
10472 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
10474 * simple.el (non-essential): New var.
10476 Add a new field `location' to bookmarks for non-file bookmarks.
10477 * bookmark.el (bookmark-location): Use the new field, if present.
10478 (bookmark-insert-location): Undo last change, not needed any more.
10479 * man.el (Man-bookmark-make-record):
10480 * woman.el (woman-bookmark-make-record): Add `location' field.
10482 2010-04-14 Juri Linkov <juri@jurta.org>
10484 * simple.el (scroll-error-top-bottom): New defcustom.
10485 (scroll-up-command, scroll-down-command): Use it. Doc fix.
10487 * emulation/pc-select.el (pc-select-override-scroll-error):
10488 Obsolete in favor of `scroll-error-top-bottom'.
10490 2010-04-14 Juri Linkov <juri@jurta.org>
10492 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
10493 `scroll-up-command' and `M-v' to `scroll-down-command'.
10495 * emulation/cua-rect.el (cua--init-rectangles):
10496 * forms.el (forms--change-commands):
10497 * image-mode.el (image-mode-map):
10498 Remap scroll-down-command and scroll-up-command
10499 in addition to scroll-down and scroll-up.
10501 2010-04-14 Juri Linkov <juri@jurta.org>
10503 * mwheel.el (scroll-preserve-screen-position-commands):
10504 Add mwheel-scroll to this list of commands.
10506 * simple.el (scroll-preserve-screen-position-commands):
10507 Add scroll-up-command, scroll-down-command, scroll-up-line,
10508 scroll-down-line to this list of commands.
10510 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
10512 * obsolete/complete.el: Move from lisp/complete.el.
10514 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
10516 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
10517 to the minor mode function now turns the mode ON unconditionally.
10519 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
10521 * vc-dir.el (vc-dir-kill-line): New command.
10522 (vc-dir-mode-map): Bind it to C-k.
10524 * bookmark.el (bookmark-insert-location): Handle a nil filename.
10526 * woman.el: Add bookmark declarations to silence the compiler.
10527 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
10528 step to compatibility between man and woman bookmarks.
10529 Adjust for Man-default-bookmark-title renaming.
10530 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
10532 * man.el: Add bookmark declarations to silence the compiler.
10533 (Man-name-local-regexp): Make it match NAME as well.
10534 (Man-getpage-in-background): Return the buffer.
10535 (Man-notify-when-ready): Use `case'.
10536 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
10537 Don't hardcode "NAME". Simplify.
10538 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
10539 Rename from Man-bookmark-make-record.
10540 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
10541 we have the actual man-args. Use Man-getpage-in-background rather
10542 than `man' since the arg is already processed. Let bookmark.el do the
10543 window handling. Only wait for the relevant process.
10544 Don't forget to autoload.
10546 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
10548 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10550 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
10552 (woman-mode): Setup bookmark support.
10554 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
10555 (man-bookmark-jump): New functions.
10556 (Man-mode): Setup bookmark support.
10558 2010-04-10 Jari Aalto <jari.aalto@cante.net>
10560 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
10561 recognize ssh-keygen prompt (Bug#2817).
10563 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
10565 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
10567 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
10569 Synchronize with Tramp repository.
10571 * net/tramp.el (tramp-completion-function-alist)
10572 (tramp-file-name-regexp, tramp-chunksize)
10573 (tramp-local-coding-commands, tramp-remote-coding-commands):
10575 (tramp-remote-process-environment): Use `format' instead of `concat'.
10576 (tramp-handle-directory-files-and-attributes)
10577 (tramp-get-remote-path): Use `copy-tree'.
10578 (tramp-handle-file-name-all-completions): Backward/ XEmacs
10579 compatibility: Use `completion-ignore-case' if
10580 `read-file-name-completion-ignore-case' does not exist.
10581 (tramp-do-copy-or-rename-file-directly): Do not use
10582 `tramp-handle-file-remote-p'.
10583 (tramp-do-copy-or-rename-file-out-of-band):
10584 Use `tramp-compat-delete-directory'.
10585 (tramp-do-copy-or-rename-file-out-of-band)
10586 (tramp-compute-multi-hops, tramp-maybe-open-connection):
10587 Use `format-spec-make'.
10588 (tramp-find-foreign-file-name-handler)
10589 (tramp-advice-make-auto-save-file-name)
10590 (tramp-set-auto-save-file-modes): Remove superfluous check for
10591 `stringp'. This is done inside `tramp-tramp-file-p'.
10592 (tramp-debug-outline-regexp): New defconst.
10593 (tramp-get-debug-buffer): Use it.
10594 (tramp-check-for-regexp): Use (forward-line 1).
10595 (tramp-set-auto-save-file-modes): Adapt version check.
10597 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
10598 Wrap call of `featurep' for 2nd argument.
10599 (tramp-compat-make-temp-file): Simplify fallback implementation.
10600 (tramp-compat-copy-tree): Remove function.
10601 (tramp-compat-delete-directory): Provide implementation for older
10604 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
10605 Do not use `tramp-fish-handle-file-attributes.
10607 * net/trampver.el: Update release number.
10609 2010-04-10 Glenn Morris <rgm@gnu.org>
10611 * progmodes/compile.el (compilation-save-buffers-predicate):
10612 Add missing :version tag.
10614 2010-04-09 Sam Steingold <sds@gnu.org>
10616 * progmodes/compile.el (compilation-save-buffers-predicate):
10617 Remove the "autoload" cookie.
10619 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
10620 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
10621 and `bug-reference-prog-mode' can be used in hooks directly.
10623 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
10625 Add --author support to git commit.
10626 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
10627 (vc-git-log-edit-mode): New minor mode.
10628 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
10631 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
10633 * vc-hooks.el, vc-git.el: Improve documentation comments.
10635 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
10637 Fix some of the problems in defsubst* (bug#5728).
10638 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
10639 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
10641 2010-04-07 Sam Steingold <sds@gnu.org>
10643 * progmodes/compile.el (compilation-save-buffers-predicate):
10644 New custom variable.
10645 (compile, recompile): Pass it to `save-some-buffers'.
10647 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
10649 * wid-edit.el (widget-choose): Move cursor to the second line of
10650 the buffer (Bug#5695).
10652 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
10654 Add new VC methods: vc-log-incoming and vc-log-outgoing.
10655 * vc.el (vc-print-log-setup-buttons): New function split out from
10656 vc-print-log-internal.
10657 (vc-log-internal-common): New function, a parametrized version of
10658 vc-print-log-internal.
10659 (vc-print-log-internal): Just call vc-log-internal-common with the
10661 (vc-incoming-outgoing-internal):
10662 (vc-log-incoming, vc-log-outgoing): New functions.
10663 (vc-log-view-type): New permanent local variable.
10665 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
10667 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
10668 of the dynamic bound vc-short-log.
10669 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
10671 * vc-git.el (vc-git-log-outgoing): New function.
10672 (vc-git-log-view-mode): Use vc-log-view-type instead
10673 of the dynamic bound vc-short-log.
10675 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
10676 of the dynamic bound vc-short-log. Highlight the tag.
10677 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
10678 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
10679 (vc-hg-incoming-mode): Remove.
10680 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
10682 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
10684 Fix default-directory for vc-root-diff.
10685 * vc.el (vc-root-diff): Bind default-directory to the root
10686 directory for the diff command.
10688 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
10690 * progmodes/verilog-mode.el (verilog-forward-sexp):
10691 (verilog-calc-1): Support "disable fork" and "fork wait" multi
10692 word keywords, suggested by Steve Pearlmutter.
10693 (verilog-pretty-declarations): Support lineup of declarations in
10695 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
10696 fix bug for /* / comments.
10697 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
10698 Speed up and simplfy as this is never called with a bound.
10699 (verilog-pretty-declarations): Enhance to line up declarations
10700 inside a parameter list, suggested by Alan Morgan.
10701 (verilog-pretty-expr): Tune assignment regular expression match
10702 string for corner cases; also use markers instead of character
10703 number as indent changes the later.
10705 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
10707 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
10708 as missing keyword.
10709 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
10710 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
10711 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
10712 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
10714 (verilog-keywords):
10715 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
10716 1800-2009 keywords, including "global.".
10718 2010-04-06 John Wiegley <jwiegley@gmail.com>
10720 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
10721 appearing in buffer list (if a live buffer name matched a recentf
10722 file basename). Should use uniquify to offer a real solution.
10724 2010-04-06 John Wiegley <jwiegley@gmail.com>
10726 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
10727 comment to code, and add a :version tag.
10728 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
10730 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
10732 Enable recentf-mode if using virtual buffers.
10733 * ido.el (recentf-list): Declare for byte-compiler.
10734 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
10735 (ido-make-buffer-list): Simplify.
10736 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
10738 2010-04-05 Juri Linkov <juri@jurta.org>
10740 Scrolling commands which scroll a line instead of full screen.
10741 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
10743 * simple.el (scroll-up-line, scroll-down-line): New commands.
10744 Put property isearch-scroll=t on them.
10746 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
10749 2010-04-05 Juri Linkov <juri@jurta.org>
10751 Scrolling commands which do not signal errors at top/bottom.
10752 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
10754 * simple.el (scroll-up-command, scroll-down-command): New commands.
10755 Put property isearch-scroll=t on them.
10757 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
10758 `scroll-down-command' and [next] from `scroll-up' to
10759 `scroll-up-command'.
10761 * emulation/cua-base.el: Put property CUA=move on
10762 `scroll-up-command' and `scroll-down-command'.
10763 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
10764 and `scroll-down-command' to `cua-scroll-down'.
10766 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
10768 * help.el (describe-mode): Return nil.
10770 2010-04-04 John Wiegley <jwiegley@gmail.com>
10772 * ido.el (ido-use-virtual-buffers): New variable to indicate
10773 whether "virtual buffer" support is enabled for IDO.
10774 (ido-virtual): Face used to indicate virtual buffers in the list.
10775 (ido-buffer-internal): If a buffer is chosen, and no such buffer
10776 exists, but a virtual buffer of that name does (which would be why
10777 it was in the list), recreate the buffer by reopening the file.
10778 (ido-make-buffer-list): If virtual buffers are being used, call
10779 `ido-add-virtual-buffers-to-list' before the make list hook.
10780 (ido-virtual-buffers): New variable which contains a copy of the
10781 current contents of the `recentf-list', albeit pared down for the
10782 sake of speed, and with proper faces applied.
10783 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
10784 create a list of "virtual buffers" to present to the user in
10785 addition to the currently open set. Note that this logic could
10786 get rather slow if that list is too large. With the default
10787 `recentf-max-saved-items' of 200, there is little speed penalty.
10789 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
10791 * font-lock.el: Require CL when compiling.
10792 (font-lock-turn-on-thing-lock): Use `case'.
10794 2010-04-03 Eli Zaretskii <eliz@gnu.org>
10796 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
10799 2010-04-02 Juri Linkov <juri@jurta.org>
10801 * ehelp.el (electric-help-orig-major-mode):
10802 New buffer-local variable.
10803 (electric-help-mode): Set it to original major-mode. Doc fix.
10804 (with-electric-help): Use `electric-help-orig-major-mode' instead
10805 of (default-value 'major-mode). Doc fix.
10806 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
10808 2010-04-02 Sam Steingold <sds@gnu.org>
10810 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
10811 `vc-hg-command' with a list of flags.
10813 * progmodes/bug-reference.el (bug-reference-bug-regexp):
10814 Also accept "patch" and "RFE".
10815 (bug-reference-fontify): `bug-reference-url-format' can also be a
10816 function to be able to handle the bug kind.
10817 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
10819 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
10821 * tmm.el (tmm-get-keymap): Check with symbolp before passing
10822 value to fboundp, it may not be a symbol.
10824 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10826 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
10828 2010-03-31 Juri Linkov <juri@jurta.org>
10830 * simple.el (next-line, previous-line): Re-throw a signal
10831 with `signal' instead of using `ding'.
10832 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
10834 2010-03-31 Juri Linkov <juri@jurta.org>
10836 * simple.el (keyboard-escape-quit): Raise deselecting the active
10837 region higher than exiting the minibuffer.
10838 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
10840 2010-03-31 Juri Linkov <juri@jurta.org>
10842 * image.el (image-animated-p): Use `image-metadata' instead of
10843 `image-extension-data'. Get GIF extenstion data from metadata
10844 property `extension-data'.
10846 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10848 * simple.el (append-to-buffer): Simplify.
10850 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
10852 * textmodes/artist.el (artist-mode): Fix typo in docstring.
10853 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
10855 2010-03-31 Kenichi Handa <handa@m17n.org>
10857 * language/sinhala.el (composition-function-table): Fix regexp for
10858 the new Unicode specification.
10860 * language/indian.el (devanagari-composable-pattern)
10861 (tamil-composable-pattern, kannada-composable-pattern)
10862 (malayalam-composable-pattern): Adjust for the new Unicode
10864 (bengali-composable-pattern, gurmukhi-composable-pattern)
10865 (gujarati-composable-pattern, oriya-composable-pattern)
10866 (telugu-composable-pattern): New variables to cope with the new
10867 Unicode specification. Use them in composition-function-table.
10869 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10871 Make tmm-menubar work for the Buffers menu again (bug#5726).
10872 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
10873 vectors rather than cons cells, as used in menu-bar-update-buffers.
10875 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10877 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
10878 (js-insert-and-indent): Revert 2009-08-15 change, restoring
10879 electric punctuation for "{}();,:" (Bug#5586).
10881 * mail/sendmail.el (mail-default-directory): Doc fix.
10883 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10885 * mail/sendmail.el (mail-default-directory): Doc fix.
10887 2010-03-31 Eli Zaretskii <eliz@gnu.org>
10889 * subr.el (version-regexp-alist, version-to-list)
10890 (version-list-<, version-list-=, version-list-<=)
10891 (version-list-not-zero, version<, version<=, version=): Doc fix.
10894 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
10896 * vc.el (vc-root-diff): Doc fix.
10898 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10900 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
10902 * simple.el (append-to-buffer): Fix last change.
10904 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10906 * simple.el (append-to-buffer): Ensure that point is preserved if
10907 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
10910 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10912 * files.el (auto-mode-case-fold): Change default to t.
10914 2010-03-30 Juri Linkov <juri@jurta.org>
10916 * dired-x.el (dired-omit-mode): Doc fix.
10918 2010-03-30 Juri Linkov <juri@jurta.org>
10920 * replace.el (occur-accumulate-lines): Move occur-engine related
10921 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
10922 to be located after `occur-engine'.
10924 2010-03-30 Juri Linkov <juri@jurta.org>
10926 Make occur handle multi-line matches cleanly with context.
10927 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
10929 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
10930 (occur-engine): Add local variables `ret', `prev-after-lines',
10931 `prev-lines'. Use more arguments for `occur-context-lines'.
10932 Set first elem of its returned list to `data', and the second elem
10933 to `prev-after-lines'. Don't print the separator line.
10934 In the end, print remaining context after-lines.
10935 (occur-context-lines): Add new arguments `begpt', `endpt',
10936 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
10937 after-lines of the previous match with before-lines of the
10938 current match and not overlap them. Return a list with two
10939 values: the output line and the list of context after-lines.
10941 2010-03-30 Juri Linkov <juri@jurta.org>
10943 * replace.el (occur-accumulate-lines): Fix a bug where the first
10944 context line at the beginning of the buffer was missing.
10946 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10948 * files.el: Make bidi-display-reordering safe variable for boolean
10951 2010-03-29 Phil Hagelberg <phil@evri.com>
10952 Chong Yidong <cyd@stupidchicken.com>
10954 * subr.el: Extend progress reporters to perform "spinning".
10955 (progress-reporter-update, progress-reporter-do-update):
10956 Handle non-numeric value arguments.
10957 (progress-reporter--pulse-characters): New var.
10959 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
10961 * progmodes/compile.el (compilation-start): Fix regexp detection
10962 of initial cd command (Bug#5771).
10964 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
10966 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
10968 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
10970 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
10971 * progmodes/gdb-mi.el: Restore.
10972 * progmodes/gdb-ui.el: Remove.
10973 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
10975 2010-03-25 Glenn Morris <rgm@gnu.org>
10977 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
10978 all dired buffers, even tramp ones. (Bug#5755)
10980 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
10982 Add "union tags" in mpc.el.
10983 * mpc.el: Remove backward compatibility code.
10984 (mpc-browser-tags): Change default.
10985 (mpc--find-memoize-union-tags): New var.
10986 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
10987 (mpc-cmd-find): Handle the case where the playlist does not exist.
10989 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
10990 (mpc-cmd-add): Use mpc-cmd-flush.
10991 (mpc-tagbrowser-tag-name): New fun.
10992 (mpc-tagbrowser-buf): Use it.
10993 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
10995 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10998 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
10999 Use replace-regexp-in-string.
11000 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
11001 (makefile-imake-mode-syntax-table): Move init into defvar.
11002 (makefile-mode): Use define-derived-mode.
11004 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
11005 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
11006 not be present any more.
11008 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
11010 * faces.el (set-face-attribute): Fix typo in docstring.
11011 (face-valid-attribute-values): Reflow docstring.
11013 2010-03-24 Glenn Morris <rgm@gnu.org>
11015 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
11017 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
11019 * indent.el (indent-for-tab-command): Doc fix.
11021 2010-03-24 Alan Mackenzie <acm@muc.de>
11023 * progmodes/cc-engine.el (c-remove-stale-state-cache):
11024 Fix off-by-one error. Fixes bug #5747.
11026 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
11028 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
11029 (image-dired-read-comment): Doc fix.
11031 * json.el (json-object-type, json-array-type, json-key-type)
11032 (json-false, json-null, json-read-number):
11033 * minibuffer.el (completion-in-region-functions):
11034 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
11035 (cal-tex-cursor-week):
11036 * emacs-lisp/trace.el (trace-function):
11037 * eshell/em-basic.el (eshell/printnl):
11038 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
11039 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
11040 * obsolete/levents.el (allocate-event, event-key, event-object)
11041 (event-point, event-process, event-timestamp, event-to-character)
11042 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
11043 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
11044 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
11045 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
11046 (reftex-highlight-selection): Fix typos in docstrings.
11048 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
11050 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
11052 2010-03-24 Glenn Morris <rgm@gnu.org>
11054 * mail/rmail.el (rmail-highlight-face): Restore option deleted
11055 2008-02-13 without comment; mark it obsolete.
11056 (rmail-highlight-headers): Use rmail-highlight-face once more.
11058 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
11060 * woman.el (woman2-process-escapes): Only consume the newline if
11061 the filler character is on a line by itself (Bug#5729).
11063 2010-03-24 Kenichi Handa <handa@m17n.org>
11065 * language/indian.el (devanagari-composable-pattern): Add more
11068 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
11070 * net/trampver.el: Update release number.
11072 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
11074 * net/tramp.el (tramp-find-executable):
11075 Use `tramp-get-connection-buffer'. Make the regexp for checking
11076 output of "wc -l" more robust.
11077 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
11078 (tramp-open-connection-setup-interactive-shell): Remove workaround
11079 for OpenSolaris bug, it is not needed anymore.
11081 2010-03-24 Glenn Morris <rgm@gnu.org>
11083 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
11085 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
11087 * files.el (auto-mode-alist): Accept more verilog file patterns.
11089 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
11091 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
11093 2010-03-24 Glenn Morris <rgm@gnu.org>
11095 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
11096 log-edit-before-checkin-process.
11098 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
11100 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
11102 * vc-dispatcher.el (vc-start-logentry): Doc fix.
11103 (log-view-process-buffer, log-edit-extra-flags): Declare.
11105 * log-edit.el (log-edit-before-checkin-process): Doc fix.
11107 2010-03-23 Sam Steingold <sds@gnu.org>
11109 Fix bug#5620: recalculate all markers on compilation buffer
11110 modifications, not on file modifications.
11111 * progmodes/compile.el (compilation-buffer-modtime): New buffer-local
11112 variable: the buffer modification time, for buffers not associated with
11114 (compilation-mode): Create it.
11115 (compilation-filter): Update it.
11116 (compilation-next-error-function): Use it instead of
11117 `visited-file-modtime' for timestamp.
11119 2010-03-23 Juri Linkov <juri@jurta.org>
11121 Implement Occur multi-line matches.
11122 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
11124 * replace.el (occur): Doc fix.
11125 (occur-engine): Set `begpt' to the beginning of the first line.
11126 Set `endpt' to the end of the last match line. At first, count
11127 line numbers between `origpt' and `begpt'. Split out code from
11128 `out-line' variable to new let-bindings `match-prefix' and
11129 `match-str'. In `out-line' add non-numeric prefix to all
11130 non-first lines of multi-line matches. Finally, count lines
11131 between `begpt' and `endpt' and add to `lines'.
11133 2010-03-23 Juri Linkov <juri@jurta.org>
11135 * replace.el (occur-accumulate-lines, occur-engine):
11136 Use `occur-engine-line' instead of duplicate code.
11137 (occur-engine-line): New function created from duplicate code
11138 in `occur-accumulate-lines' and `occur-engine'.
11140 * replace.el (occur-engine-line): Add optional arg `keep-props'.
11141 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
11143 2010-03-23 Juri Linkov <juri@jurta.org>
11145 * finder.el: Remove TODO tasks.
11147 * info.el (Info-finder-find-node): Add node "all"
11148 with all package info. Handle a list of multiple keywords
11149 separated by comma.
11150 (info-finder): In interactive use with a prefix argument,
11151 use `completing-read-multiple' to read a list of keywords
11152 separated by comma.
11154 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
11156 Add a new completion style `substring'.
11157 * minibuffer.el (completion-basic--pattern): New function.
11158 (completion-basic-try-completion, completion-basic-all-completions):
11160 (completion-substring--all-completions)
11161 (completion-substring-try-completion)
11162 (completion-substring-all-completions): New functions.
11163 (completion-styles-alist): New style `substring'.
11165 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
11167 Get rid of .elc files after removal of the corresponding .el.
11168 * Makefile.in (compile-clean): New target.
11169 (compile-main): Use it.
11171 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
11173 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
11174 don't do make there. When compiling with separate object dir, there
11175 is no Makefile there.
11177 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
11179 Get rid of the ELCFILES abomination, again.
11180 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
11181 (all, compile): Don't call compile-last.
11182 (compile-main): Build the "elcfiles" list dynamically.
11183 (compile-targets): New (internal) target.
11185 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
11187 * Makefile.in (top_srcdir): Define.
11188 (abs_top_builddir): Define.
11189 (srcdir): Don't append `/..'.
11190 (EMACS): Use ${abs_top_builddir}.
11191 (all, compile, compile-always, compile-last): Don't set emacswd.
11192 (update-subdirs, update-authors): Use $(top_srcdir) instead of
11194 (lisp): Use $(srcdir) instead of @srcdir@.
11196 2010-03-21 Juri Linkov <juri@jurta.org>
11198 Fix message of multi-line occur regexps and multi-buffer header lines.
11199 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
11201 * replace.el (occur-1): Don't display regexp if it is longer
11202 than window-width. Use `query-replace-descr' to display regexp.
11203 (occur-engine): Don't display regexp in the buffer header for
11204 multi-buffer occur. Display a separate header line with total
11205 match count and regexp for multi-buffer occur.
11206 Use `query-replace-descr' to display regexp.
11208 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
11210 * net/secrets.el: Fix parenthesis.
11211 (secrets-enabled): Fix parenthesis.
11213 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
11215 Use more relative file and directory names.
11216 * Makefile.in (EMACS): Arrange for it to work when we chdir.
11217 (setwins, setwins_almost, setwins_for_subdirs):
11218 Don't `cd'; output relative names.
11219 (all, compile, compile-always, compile-last): Set emacswd.
11220 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
11221 Just cd to the lisp source dir so we can use relative file names.
11223 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
11225 2010-03-20 Glenn Morris <rgm@gnu.org>
11227 * textmodes/rst.el: Use faces for font-lock customization, and make the
11228 old -face variables obsolete.
11229 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
11230 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
11231 (rst-block-face, rst-external-face, rst-definition-face)
11232 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
11233 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
11235 (rst-font-lock-keywords-function): Update for above changes.
11237 2010-03-20 Juri Linkov <juri@jurta.org>
11240 * obsolete/s-region.el: Move to obsolete.
11242 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
11244 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
11246 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
11248 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
11250 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
11252 Add special markup processing for commit logs.
11253 * log-edit.el (log-edit-extra-flags): New variable.
11254 (log-edit): Add new argument MODE. Use that mode when non-nil
11255 instead of the log-view-mode.
11256 (log-view-process-buffer): New function.
11258 * vc.el: Document that the checkin method takes optional
11259 arguments. Document new backend specific method: log-view-mode.
11260 (vc-default-log-edit-mode): New function.
11261 (vc-checkin): Use a backend specific log-view-mode.
11262 Pass extra arguments to the checkin method.
11263 (vc-modify-change-comment): Pass a dummy extra argument.
11265 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
11267 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
11268 (vc-finish-logentry): Process the log buffer before passing it
11269 down. Pass log-edit-extra-flags.
11271 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
11273 (log-edit-extra-flags, log-edit-before-checkin-process):
11276 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
11278 (log-edit-extra-flags, log-edit-before-checkin-process):
11280 (vc-hg-log-edit-mode): New derived mode.
11282 * vc-arch.el (vc-arch-checkin):
11283 * vc-cvs.el (vc-cvs-checkin):
11284 * vc-git.el (vc-git-checkin):
11285 * vc-mtn.el (vc-mtn-checkin):
11286 * vc-rcs.el (vc-rcs-checkin):
11287 * vc-sccs.el (vc-sccs-checkin):
11288 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
11290 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
11292 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
11295 2010-03-19 Glenn Morris <rgm@gnu.org>
11297 * password-cache.el (password-cache, password-cache-expiry): Autoload.
11299 2010-03-18 Glenn Morris <rgm@gnu.org>
11301 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
11303 * replace.el (query-replace-history): Give it a doc string.
11304 (map-query-replace-regexp): Use query-replace-from-history-variable
11305 and query-replace-to-history-variable.
11307 * mail/hashcash.el (declare-function): Remove duplicate definition.
11309 * mail/emacsbug.el (report-emacs-bug-pretest-address):
11310 Make it an obsolete alias for report-emacs-bug-address.
11311 (message-strip-special-text-properties): Declare.
11312 (report-emacs-bug): Remove test for a pretest bug address.
11313 Combine message-mode-specific code.
11315 * mail/supercite.el: Don't require sendmail.
11316 (mh-in-header-p): Declare rather than using with-no-warnings.
11317 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
11318 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
11320 * calendar/cal-french.el: Convert to utf-8.
11322 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
11325 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
11327 * net/secrets.el (secrets-enabled): New variable. Use it instead
11330 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
11332 * net/secrets.el (top): Register the D-Bus signals only when the
11333 service "org.freedesktop.secrets" can be pinged.
11334 Provide subfeature `enabled'.
11336 2010-03-14 Juri Linkov <juri@jurta.org>
11338 Add finder unknown keywords.
11340 * finder.el (finder-unknown-keywords): New function.
11342 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
11343 to create a Finder node with unknown keywords.
11345 2010-03-14 Juri Linkov <juri@jurta.org>
11347 * finder.el (finder-compile-keywords): Replace `princ' with
11348 `prin1' on a list of symbols interned from keyword strings.
11350 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
11351 a comma, then split keywords using a comma and optional whitespace.
11352 Otherwise, split by whitespace.
11360 * progmodes/mixal-mode.el: Fix keywords.
11362 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
11364 * Makefile.in (ELCFILES): Add net/secrets.elc.
11366 * net/secrets.el: New file.
11368 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
11370 * facemenu.el (list-colors-display, list-colors-print): New arg
11371 callback. Use it to allow selecting colors.
11373 * wid-edit.el (widget-image-insert): Insert image prop even if the
11374 current display is non-graphic.
11375 (widget-field-value-set): New fun.
11376 (editable-field): Use it.
11377 (widget-field-value-get): Clean up unused var.
11378 (widget-color-value-create, widget-color--choose-action):
11379 New funs. Allow using list-colors-display to choose color.
11381 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
11383 * cus-edit.el: Resort topmost custom groups.
11384 (custom-buffer-sort-alphabetically): Default to t.
11385 (customize-apropos): Use apropos-parse-pattern.
11386 (custom-search-field): New var.
11387 (custom-buffer-create-internal): Add custom-apropos search field.
11388 (custom-add-parent-links): Don't display parent doc.
11389 (custom-group-value-create): Don't sort top-level custom group.
11390 (custom-magic-value-create): Show visibility button before option name.
11392 (custom-variable-state): New fun, from custom-variable-state-set.
11393 (custom-variable-state-set): Use it.
11394 (custom-group-value-create): Hide options with standard values
11395 using the :hidden-states property. Use progress reporter.
11397 (custom-show): Simplify.
11398 (custom-visibility): Disable images by default.
11399 (custom-variable): New property :hidden-states.
11400 (custom-variable-value-create): Enable images for
11401 custom-visibility widgets. Use :hidden-states property to
11402 determine initial visibility.
11404 * wid-edit.el (widget-image-find): Give images center ascent.
11405 (visibility): Add :on-image and :off-image properties.
11406 (widget-visibility-value-create): Use them.
11408 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
11410 * cus-edit.el (processes): Remove from development group.
11411 (oop, hypermedia): Delete group.
11412 (comm): Promote to top-level group.
11414 * net/browse-url.el (browse-url):
11415 * net/xesam.el (xesam):
11416 * net/tramp.el (tramp):
11417 * net/goto-addr.el (goto-address):
11418 * net/ange-ftp.el (ange-ftp): Put in comm group.
11420 * view.el (view): Remove from editing group.
11422 * uniquify.el (uniquify): Put in files group.
11424 * net/browse-url.el (browse-url):
11425 * ps-print.el (postscript): Put in external group.
11427 * cus-edit.el (outlines):
11428 * textmodes/text-mode.el (text-mode-hook):
11429 * textmodes/table.el (table):
11430 * textmodes/picture.el (picture):
11431 * outline.el (outlines): Put in wp group.
11433 * nxml/nxml-mode.el (nxml): Remove from wp group.
11435 * net/tramp-imap.el (tramp-imap): Put in tramp group.
11437 * mail/metamail.el (metamail): Remove from hypermedia group.
11439 * cus-edit.el (abbrev):
11440 * whitespace.el (whitespace):
11441 * vcursor.el (vcursor):
11442 * reveal.el (reveal):
11443 * hl-line.el (hl-line): Put in convenience group.
11445 * epg-config.el (epg): Put in data group.
11447 * emulation/pc-select.el (pc-select): Put in emulations group.
11449 * calculator.el (calculator): Put in applications group.
11451 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
11453 Add .dir-locals.el support for file-less buffers.
11454 * files.el (hack-local-variables): Split out code to apply local
11455 variable settings ...
11456 (hack-local-variables-apply): ... here. New function.
11457 (hack-dir-local-variables): Use the default directory for when the
11458 buffer does not have an associated file.
11459 (hack-dir-local-variables-non-file-buffer): New function.
11460 * diff-mode.el (diff-mode):
11461 * vc-annotate.el (vc-annotate-mode):
11462 * vc-dir.el (vc-dir-mode):
11463 * log-edit.el (log-edit-mode):
11464 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
11466 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
11468 Add support for shelving snapshots and for showing shelves.
11469 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
11470 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
11472 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
11473 (vc-bzr-extra-menu-map): Map them.
11475 2010-03-11 Glenn Morris <rgm@gnu.org>
11477 * cus-edit.el (customize-changed-options-previous-release):
11480 * image.el (image-animate-max-time): Fix :version tag.
11482 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
11486 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
11488 * vc-git.el (vc-git-revision-table): Include remote branches.
11490 2010-03-10 Kim F. Storm <storm@cua.dk>
11492 Animated image API.
11493 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
11495 * image.el (image-animate-max-time): New defcustom.
11496 (image-animated-types): New defconst.
11497 (create-animated-image, image-animate-timer)
11498 (image-animate-start, image-animate-stop, image-animate-timeout)
11499 (image-animated-p): New functions.
11501 * image-mode.el (image-toggle-display-image):
11502 Replace `create-image' with `create-animated-image'.
11504 2010-03-09 Miles Bader <miles@gnu.org>
11506 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
11507 instead of "format:"; this ensures that the output is
11508 newline-terminated.
11510 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
11512 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
11513 that all errors are caught, and that the return value is always a
11516 2010-03-08 Kenichi Handa <handa@m17n.org>
11518 * language/misc-lang.el (windows-1256): New coding system.
11519 (cp1256): New alias of windows-1256 (bug#5690).
11521 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
11523 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
11524 call to rfc822-bad-address. (Bug#5692)
11526 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
11528 * vc-git.el (vc-git-annotate-extract-revision-at-line):
11529 Use vc-git-root as default directory for revision path (Bug#5657).
11531 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
11533 * calculator.el (calculator): Don't bind split-window-keep-point
11536 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
11538 * vc-git.el: Re-flow to fit into 80 columns.
11539 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
11540 Remove spurious `quote' element in each case alternative.
11541 (vc-git-show-log-entry): Use prog1.
11542 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
11544 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
11546 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
11548 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
11550 * macros.el (insert-kbd-macro): Look up keyboard macro using the
11551 definition, not the name (Bug#5481).
11553 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
11555 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
11556 argument with a local variable. (Bug#5670)
11558 2010-03-02 Juri Linkov <juri@jurta.org>
11560 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
11562 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
11564 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
11565 error when FILENAME and NEWNAME are existing remote directories.
11567 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
11568 parameter DIR-FLAG.
11570 2010-03-02 Glenn Morris <rgm@gnu.org>
11572 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
11573 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
11575 2010-03-01 Kenichi Handa <handa@m17n.org>
11577 * language/burmese.el (burmese-composable-pattern): Rename from
11578 myanmar-composable-pattern.
11580 * international/characters.el (script-list):
11581 * international/fontset.el (script-representative-chars):
11582 Change myanmar to burmese.
11583 (otf-script-alist): Likewise.
11584 (setup-default-fontset): Likewise. Re-fix :otf spec.
11586 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
11588 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
11590 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
11592 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
11594 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
11596 * net/tramp.el (tramp-handle-write-region): START can be a string.
11597 Take care in the checks. Reported by Dan Davison
11598 <davison@stats.ox.ac.uk>.
11600 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
11602 * net/dbus.el (dbus-introspect, dbus-get-property)
11603 (dbus-set-property, dbus-get-all-properties):
11604 Use `dbus-call-method' when noninteractive. (Bug#5645)
11606 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
11608 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
11609 * emacs-lisp/elint.el (elint-add-required-env):
11610 * calendar/icalendar.el (icalendar--add-diary-entry):
11611 * calc/calcalg2.el (math-tracing-integral):
11612 * files.el (recover-session-finish): Use with-current-buffer
11613 instead of save-excursion.
11615 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
11617 Fix in-buffer completion when after-change-functions modify the buffer.
11618 * minibuffer.el (completion--replace): New function.
11619 (completion--do-completion): Use it and use relative movement.
11621 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
11623 * international/fontset.el (setup-default-fontset): Fix :otf spec.
11625 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
11627 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
11628 Allow the characters _<> in the stack entry (Bug#5653).
11630 2010-02-26 Kenichi Handa <handa@m17n.org>
11632 * language/burmese.el: Fix entries in composition-function-table.
11633 (myanmar-composable-pattern): New variable.
11635 * international/fontset.el (setup-default-fontset): Add an entry
11638 * international/characters.el (script-list): Add Myanmar
11641 2010-02-26 Glenn Morris <rgm@gnu.org>
11643 * custom.el (custom-initialize-delay): Doc fix.
11645 * mail/sendmail.el (send-mail-function): Autoload the call
11646 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
11648 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
11650 * files.el (hack-local-variables-filter): For eval forms, also
11651 check safe-local-variable-p (Bug#5636).
11653 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
11655 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
11656 setting the modes by `ignore-errors'. It might fail, for example
11657 if the file is not owned by the user but the group.
11658 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
11660 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
11662 * files.el (directory-listing-before-filename-regexp):
11663 Use stricter matching for iso-style dates, to avoid false matches with
11664 date-like filenames (Bug#5597).
11666 * htmlfontify.el (htmlfontify): Doc fix.
11668 * eshell/eshell.el (eshell): Doc fix.
11670 * startup.el (fancy-about-screen): In mode-line, apply
11671 mode-line-buffer-id face only to the buffer name (Bug#5613).
11673 2010-02-20 Kevin Ryde <user42@zip.com.au>
11675 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11676 In `watcom' anchor regexp to start of line, to avoid slowness
11679 2010-02-20 Eli Zaretskii <eliz@gnu.org>
11681 * subr.el (remove-yank-excluded-properties): Explain in a comment
11682 why `category' property is removed.
11684 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
11686 * isearch.el (isearch-update-post-hook, isearch-update):
11687 Revert 2010-02-17 change.
11689 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
11691 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
11692 (icalendar--convert-weekly-to-ical)
11693 (icalendar--convert-yearly-to-ical)
11694 (icalendar--convert-block-to-ical)
11695 (icalendar--convert-cyclic-to-ical)
11696 (icalendar--convert-anniversary-to-ical): Take care of time
11697 specifications where hour has 1-digit only (Bug#5549).
11699 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
11701 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
11702 of disassemble output in GDB 7.1.
11704 2010-02-19 Glenn Morris <rgm@gnu.org>
11706 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
11707 property. (Bug#5593)
11709 2010-02-18 Sam Steingold <sds@gnu.org>
11711 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
11713 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
11715 Use abbreviated file names in bookmarks (bug#5591).
11716 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
11717 calls to expand-file-name.
11718 (bookmark-relocate): Use abbreviated file names in bookmarks.
11719 (bookmark-load): Use abbreviated file names in messages.
11721 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
11723 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
11724 expand "." and "..". Reported by Thierry Volpiatto
11725 <thierry.volpiatto@gmail.com>.
11727 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
11729 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
11730 permissions of the temporary file to "0600". In case the remote
11731 file has no read permissions for the owner, there might be
11732 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
11734 22010-02-18 Glenn Morris <rgm@gnu.org>
11736 * emacs-lisp/authors.el (authors-renamed-files-alist):
11737 Add entries for INSTALL.CVS.
11739 2010-02-17 Mark A. Hershberger <mah@everybody.org>
11741 * vc-bzr.el: Fix typo in Known Bugs section.
11743 * isearch.el (isearch-update-post-hook): New hook.
11744 (isearch-update): Use the new hook.
11746 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
11748 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
11749 Fix errors in copying directories.
11750 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
11751 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
11752 (tramp-handle-delete-file)
11753 (tramp-handle-dired-recursive-delete-directory)
11754 (tramp-handle-write-region): Flush also the cache for the upper
11757 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
11759 * simple.el (save-interprogram-paste-before-kill): Doc fix.
11761 * cus-edit.el (hardware): Doc fix.
11763 * man.el (man): Add to external custom group.
11765 * delim-col.el (columns): Move to wp custom group.
11767 * doc-view.el (doc-view): Add to data custom group.
11769 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
11771 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
11772 by ispell-parse-output (Bug#5575).
11774 2010-02-16 Kenichi Handa <handa@m17n.org>
11776 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
11777 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
11778 (skkdic-convert): Use `euc-japan' coding system for writing.
11780 2010-02-16 Glenn Morris <rgm@gnu.org>
11782 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
11783 tex-main-file before using it. (Bug#5562)
11785 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
11787 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
11788 warnings, since it is annoying for the user to see them each time he
11791 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
11793 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
11794 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
11795 instead of PROC for caching "first-password-request". Otherwise,
11796 new processes would not profit from passwords already entered.
11798 * net/tramp-cache.el (tramp-dump-connection-properties):
11799 Don't save "first-password-request" property.
11801 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
11803 * outline.el (outline-head-from-level):
11804 * simple.el (with-wrapper-hook):
11805 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
11806 (elint-defun, elint-buffer-env, elint-top-form-logged)
11807 (elint-unbound-variable):
11808 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
11809 Fix typos in docstrings.
11811 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
11813 * files.el (insert-directory): When WILDCARD-REGEXP and
11814 FULL-DIRECTORY-P are nil, insert the file entry instead of the
11815 whole directory. (Bug#5551)
11817 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
11818 dired's alignment sanity. (Bug#5516)
11820 2010-02-14 Juri Linkov <juri@jurta.org>
11822 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
11823 Remove remaining ^H with their preceding chars. (Bug#5566)
11825 2010-02-13 Glenn Morris <rgm@gnu.org>
11827 * simple.el (transpose-subr): Give it a doc-string.
11829 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
11832 2010-02-12 Juri Linkov <juri@jurta.org>
11834 * arc-mode.el (archive-unique-fname): Make directories for nested
11835 archives. (Bug#5540)
11837 2010-02-12 Juri Linkov <juri@jurta.org>
11839 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
11841 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
11843 * subr.el (copy-overlay): Handle deleted overlays.
11845 * man.el (Man-completion-table): Don't signal an error if we can't run
11846 manual-program (bug#4056).
11848 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
11850 * textmodes/artist.el (artist-mt): Fix typos in docstring.
11852 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11854 * info.el (Info-bookmark-jump): Simplify.
11856 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
11857 (bookmark-default-handler): Accept new bookmark field `buffer'.
11859 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
11861 * iswitchb.el (iswitchb-completions): Revert last change.
11863 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
11865 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
11866 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
11867 This prevents file names like "~/" being listed literally.
11869 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
11871 * term/xterm.el (xterm-maybe-set-dark-background-mode):
11872 Remove dead code. (Bug#5546)
11874 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
11876 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
11877 correctly (Bug#5548).
11879 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
11881 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
11882 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
11884 2010-02-08 Kenichi Handa <handa@m17n.org>
11886 * international/mule-util.el (with-coding-priority): Add autoload
11887 cookie for putting `lisp-indent-function'.
11889 2010-02-07 Glenn Morris <rgm@gnu.org>
11891 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
11892 Move F2003 named interfaces from keywords-2 to keywords-1, and
11893 use function-name-face rather than constant-face.
11894 Simplify "abstract interface" regexp.
11896 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
11898 * eshell/esh-util.el (eshell-file-attributes): New optional arg
11899 ID-FORMAT. Pass it to `file-attributes'.
11901 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
11903 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
11905 * faces.el (set-face-attribute): Allow calling
11906 internal-set-lisp-face-attribute with 'unspecified family and
11907 foundry argument (Bug#5536).
11909 2010-02-07 Glenn Morris <rgm@gnu.org>
11911 * progmodes/f90.el (f90-font-lock-keywords-2)
11912 (f90-looking-at-type-like, f90-looking-at-program-block-end):
11913 Handle F2003 named interfaces.
11915 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
11917 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
11918 beg and end before calling c-get-state-before-change-functions.
11920 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
11922 * vc-bzr.el (vc-bzr-dir-extra-headers):
11923 Disable the pending merges header.
11925 2010-02-05 Juri Linkov <juri@jurta.org>
11927 * doc-view.el (doc-view-mode):
11928 * image-mode.el (image-mode): Put property mode-class=special.
11931 2010-02-05 Mark A. Hershberger <mah@everybody.org>
11933 * vc-svn.el (vc-svn-revision-table): New function.
11935 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
11937 * net/ange-ftp.el (ange-ftp-insert-directory):
11938 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
11939 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
11940 Handle also directories. (Bug#5478)
11942 2010-02-05 Glenn Morris <rgm@gnu.org>
11944 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
11946 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
11948 * startup.el (command-line-1): Convert options beginning with a
11949 single dash as well (Bug#5519).
11951 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
11953 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
11954 * minibuffer.el (completion-initials-expand): Only check the presence
11955 of delims *within* the boundaries, since otherwise the / delim is
11956 always found for files.
11958 Fix up various corner case problems.
11959 * doc-view.el (doc-view-last-page-number): New function.
11960 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
11961 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
11962 (doc-view-kill-proc): Avoid inf-loop in freak cases.
11963 (doc-view-reconvert-doc): Use the new recursive delete-directory.
11964 (doc-view-convert-current-doc): Don't create the resolution.el file
11966 (doc-view-pdf/ps->png): Do it here instead.
11967 (doc-view-already-converted-p): Check that resolution.el is present.
11968 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
11969 windows that are not yet showing images.
11971 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
11973 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
11974 `dired-uncache' for every elemnt which is an absolute file name.
11976 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
11977 directory, handle its directory component.
11978 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
11979 function is called permanently and creates noise, otherwise.
11981 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
11982 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
11983 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
11985 2010-02-04 David Burger <dburger@google.com> (tiny change)
11987 * macros.el (apply-macro-to-region-lines):
11988 Minor simplification. (Bug#5485)
11990 2010-02-04 Glenn Morris <rgm@gnu.org>
11992 * mail/rmail.el (rmail-show-message-1): Handle malformed
11993 quoted-printable text. (Bug#5441)
11995 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
11997 * simple.el (visual-line-mode): Capitalize lighter.
11999 2010-02-03 John Wiegley <jwiegley@gmail.com>
12001 * iswitchb.el (iswitchb-completions): Add bookmark files to the
12002 list of files considered for "virtual buffer" completions.
12004 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
12006 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
12007 also in case of (and (not full) (not wildcard)). This is needed
12008 when dired is called with a list of files, which are not in
12009 `default-directory'. (Bug#5478)
12011 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
12013 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
12015 2010-02-02 Juri Linkov <juri@jurta.org>
12017 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
12018 from unidiff to allow function-line after @@.
12020 2010-02-02 Juri Linkov <juri@jurta.org>
12022 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
12023 '(RCS SCCS) with inverted condition.
12025 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
12027 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
12030 2010-02-01 Juri Linkov <juri@jurta.org>
12032 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
12033 compare with "pkunzip" and "pkzip" instead of only "pkzip".
12034 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
12035 only when (car archive-zip-extract) is "unzip". (Bug#5475)
12037 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
12039 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
12040 (doc-view-revert-buffer): New command.
12041 (doc-view-mode-map): Use it.
12043 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
12045 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
12046 pending merge is detected.
12048 2010-01-31 Juri Linkov <juri@jurta.org>
12050 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
12051 beginning of interactive spec like all other grep commands do.
12052 Put "all" in front of "gz". (Bug#5260)
12054 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
12056 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
12058 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
12060 * dirtrack.el (dirtrack): Warn instead of signalling error if the
12061 regexp is incorrect (Bug#5476).
12063 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
12065 * net/tramp.el (tramp-handle-insert-directory): Handle also
12066 symlinks, when FILENAME is not in `default-directory'.
12068 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
12070 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
12071 FILE is not in `default-directory'. (Bug#5478)
12073 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
12074 of SWITCHES. Handle the case, FILENAME is not in
12075 `default-directory'. (Bug#5478)
12076 (tramp-register-file-name-handlers): Add safe-magic property.
12078 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
12080 * arc-mode.el (archive-zip-extract): Quote the argument passed to
12083 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
12085 * progmodes/flymake.el (flymake-allowed-file-name-masks)
12086 (flymake-master-make-header-init): Add other C++ filename masks.
12087 (flymake-find-possible-master-files)
12088 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
12090 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
12092 Fix some busybox annoyances.
12094 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
12095 not responding." string.
12096 (tramp-open-connection-setup-interactive-shell): Dump stty
12097 settings. Enable "neveropen" arg for all `tramp-send-command'
12098 calls. Handle "=" in variable values properly.
12099 (tramp-find-inline-encoding): Raise an error, when no encoding is
12101 (tramp-wait-for-output): Check, whether PROC buffer is available.
12102 Remove spurious " ^H" sequences, sent by busybox.
12103 (tramp-get-ls-command): Suppress coloring, if possible.
12105 2010-01-28 Glenn Morris <rgm@gnu.org>
12107 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
12109 * log-edit.el (log-edit-strip-single-file-name): Add missing
12110 :safe, :group, and :version tags.
12112 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
12114 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
12115 buffers. (Bug#5477)
12117 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
12119 * files.el (delete-directory): Handle moving to trash without
12120 first doing recursion (Bug#5436).
12122 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
12124 * vc-hooks.el (vc-path): Mark as obsolete.
12126 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
12128 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
12131 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
12133 (vc-bzr-log-view-mode): Adjust regexp for the above change.
12135 2010-01-25 Mark A. Hershberger <mah@everybody.org>
12137 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
12139 * vc-bzr.el (vc-bzr-revision-table): New function.
12141 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com>
12143 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
12144 diff-index command. This requires at least git-1.5.5. (Bug#1589).
12146 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
12148 Remove support for adding --signoff on commit.
12149 Future support will use an incompatible generic mechanism.
12150 * vc-git.el (vc-git-add-signoff): Remove variable.
12151 (vc-git-toggle-signoff): Remove function.
12152 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
12154 * term/xterm.el (xterm-maybe-set-dark-background-mode):
12155 Rename from xterm-set-background-mode. Return t if the background mode
12157 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
12158 earlier, call it again in case the background mode has changed.
12160 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
12162 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
12165 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
12167 * emacs-lisp/assoc.el (aelement): Doc fix.
12168 (aput, adelete, amake): Use lexical-let (Bug#5450).
12170 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
12172 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
12173 is the same as subprogram call, not declaration. (Bug#5435).
12175 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
12177 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
12178 (tramp-smb-maybe-open-connection): Use it.
12180 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
12182 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
12184 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
12186 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
12187 just because we see "encoding: 8bit".
12188 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
12190 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
12192 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
12194 2010-01-22 Eli Zaretskii <eliz@gnu.org>
12196 * jka-compr.el (jka-compr-load): If load-file is not in
12197 load-history, try its file-truename version. (bug#5447)
12199 2010-01-21 Alan Mackenzie <acm@muc.de>
12201 Fix a situation where deletion of a cpp construct throws an error.
12202 * progmodes/cc-engine.el (c-invalidate-state-cache):
12203 Before invoking c-with-all-but-one-cpps-commented-out, check that the
12204 special cpp construct is still in the buffer.
12205 (c-parse-state): Record the special cpp with markers, not numbers.
12207 2010-01-21 Kenichi Handa <handa@m17n.org>
12209 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
12210 process last-command-event, as it is now decoded first (Bug#5380).
12212 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
12214 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
12216 2010-01-20 Glenn Morris <rgm@gnu.org>
12218 * indent.el (tab-always-indent): Fix custom-type.
12220 2010-01-19 Alan Mackenzie <acm@muc.de>
12222 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
12223 buffer throws "args out of range".
12224 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
12225 playing the role of delimiter.
12227 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
12229 * progmodes/ada-mode.el: Fix bug#5400.
12230 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
12231 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
12232 changed. Delete RECURSIVE parameter; never used. Improve doc string.
12233 Improve comments in "is" portion. Handle null procedure declaration.
12234 (ada-move-to-end): Improve doc string.
12236 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
12238 * ido.el (ido-cur-list): Initialize to nil.
12239 Remove obsolete information from commentary.
12240 (ido-choice-list): Initialize to nil.
12241 (ido-get-bufname): Reject minibuffers.
12242 (ido-make-buffer-list): If "default" is a nonexistent
12243 buffer, ignore it, as per the function's comment.
12244 (ido-kill-buffer-internal): New function.
12245 (ido-kill-buffer-at-head): Use it.
12246 (ido-visit-buffer): Likewise.
12248 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
12250 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
12252 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
12254 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
12255 Fix typos in chart titles.
12257 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
12258 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
12259 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
12260 (describe-class, eieio-describe-generic, describe-generic):
12261 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
12262 (eieio-speedbar-expand):
12263 * emulation/viper-cmd.el (viper-exec-form-in-vi)
12264 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
12265 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
12266 (viper-del-backward-char-in-replace, viper-backward-indent)
12267 (viper-brac-function, viper-register-to-point, viper-submit-report):
12268 * net/tramp.el (tramp-remote-coding-commands):
12269 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
12270 Fix typos in docstrings.
12272 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
12274 * mail/sendmail.el (mail-yank-original): Set the mark if the
12275 specified function for yanking does not do it.
12277 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
12279 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
12281 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
12282 resyncing a directory.
12284 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
12286 * progmodes/ada-mode.el: Fix bug#1920.
12287 (ada-ident-re): Delete ., allow multibyte characters.
12288 (ada-goto-label-re): New; matches goto labels.
12289 (ada-block-label-re): New; matches block labels.
12290 (ada-label-re): New; matches both.
12291 (ada-named-block-re): Deleted; callers changed to use
12292 `ada-block-label-re' instead.
12293 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
12294 Use `ada-block-label-re'.
12295 (ada-indent-on-previous-lines): Improve handling of goto labels.
12296 (ada-get-indent-block-start): Special-case block label.
12297 (ada-get-indent-label): Split into `ada-indent-block-label' and
12298 `ada-indent-goto-label'.
12299 (ada-goto-stmt-start, ada-goto-next-non-ws):
12300 Optionally ignore goto labels.
12301 (ada-goto-next-word): Simplify.
12302 (ada-indent-newline-indent-conditional): Insert newline before
12303 trying to fix indentation; doc fix.
12305 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
12307 * calc/calc.el (calc-command-flags): Give it an initial value.
12309 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
12311 * files.el (minibuffer-with-setup-hook):
12312 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
12313 (artist-key-draw-continously, artist-key-do-continously-continously)
12314 (artist-key-set-point-continously, artist-mouse-draw-continously):
12315 Fix typos in docstrings.
12317 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
12319 * nxml/nxml-mode.el (nxml-extend-after-change-region):
12320 Never return t (Bug#3898).
12322 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
12324 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
12325 can parse the output of the external commands (Bug#5279).
12327 2010-01-16 Jari Aalto <jari.aalto@cante.net>
12329 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
12331 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
12333 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
12335 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
12337 * startup.el (command-line): Remove unused --icon-type arg.
12338 Handle --display arg, passing it to command-line-1 (Bug#5392).
12340 2010-01-16 Mario Lang <mlang@delysid.org>
12342 * emacs-lisp/chart.el (chart-translate-namezone):
12343 * textmodes/artist.el (artist-compute-popup-menu-table):
12344 Remove duplicated words in doc-strings.
12346 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
12348 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
12349 to mairix-search to suppress threading (Bug#5342).
12351 2010-01-15 Kenichi Handa <handa@m17n.org>
12353 * international/mule-cmds.el (canonicalize-coding-system-name):
12354 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
12356 2010-01-15 Glenn Morris <rgm@gnu.org>
12358 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
12360 * wid-edit.el (widget-keymap): Doc fix.
12362 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
12363 former seems to be more widely accepted by various svn versions.
12365 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
12367 * find-cmd.el (find-constituents):
12368 * vc-arch.el (vc-arch-root):
12369 * window.el (window-body-height, pop-up-frames):
12370 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
12371 * progmodes/ada-stmt.el (ada-if):
12372 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
12373 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
12374 (ispell-encoding8-command, ispell-aspell-supports-utf8)
12375 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
12377 * progmodes/flymake.el (flymake-post-syntax-check):
12378 Fix typo in error message.
12380 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
12382 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
12383 which is always a string. (Bug#5313)
12385 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
12387 * progmodes/ada-xref.el (ada-default-prj-properties):
12388 Simplify previous change.
12390 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12392 * progmodes/ada-xref.el (ada-default-prj-properties):
12393 Default ada_project_path to $ADA_PROJECT_PATH.
12395 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12397 * progmodes/ada-mode.el (ada-create-keymap):
12398 Override `narrow-to-defun' with `ada-narrow-to-defun'.
12400 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12402 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
12403 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
12404 (ada-get-current-indent, ada-imenu-generic-expression)
12405 (ada-which-function): Check for it.
12407 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12409 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
12410 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
12412 2010-01-14 Glenn Morris <rgm@gnu.org>
12414 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
12416 2010-01-14 Kenichi Handa <handa@m17n.org>
12418 * composite.el (auto-composition-mode): Make it a buffer local
12419 variable (permanent-local).
12420 (auto-composition-function): Set the default value to
12421 auto-compose-chars.
12422 (auto-composition-mode): Make it a simple function, not a minor mode.
12423 (global-auto-composition-mode): Likewise.
12424 (turn-on-auto-composition-if-enabled): Delete it.
12426 2010-01-13 Karl Fogel <kfogel@red-bean.com>
12428 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
12430 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
12432 * files.el (copy-directory): Compute target for recursive
12433 directories with identical names. (Bug#5343)
12435 2010-01-12 Glenn Morris <rgm@gnu.org>
12437 * mail/emacsbug.el (report-emacs-bug-pretest-address):
12438 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
12440 2010-01-11 Sam Steingold <sds@gnu.org>
12442 * imenu.el (imenu-default-create-index-function): Detect infinite
12443 loops caused by imenu-prev-index-position-function.
12445 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
12447 * htmlfontify.el (htmlfontify-load-rgb-file)
12448 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
12449 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
12450 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
12451 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
12452 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
12453 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
12454 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
12455 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
12456 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
12457 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
12458 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
12459 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
12460 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
12461 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
12462 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
12463 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
12464 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
12465 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
12466 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
12467 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
12468 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
12469 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
12470 backslash-quoting from parentheses, etc.
12472 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
12474 * progmodes/js.el: Autoload javascript-mode alias.
12476 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
12478 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
12479 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
12480 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
12481 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
12482 Fix typos in docstrings.
12483 (ffap-url-regexp): Doc fix.
12484 (ffap-at-mouse): Fix typo in message.
12486 2010-01-11 Glenn Morris <rgm@gnu.org>
12488 * version.el (emacs-copyright): Set copyright year to 2010.
12490 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
12492 * format.el (format-annotate-function): Only set
12493 write-region-post-annotation-function after running to-fn so as not to
12494 affect nested write-region calls (bug#5273).
12496 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
12498 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
12501 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
12503 * man.el (Man-goto-section): Signal error if the section is not
12506 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
12508 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
12509 URLs with a leading triple slash in the file: scheme. (Bug#5345)
12511 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
12513 * progmodes/compile.el: Don't treat compile-command as safe if
12514 compilation-read-command might be nil (Bug#4218).
12516 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
12518 * startup.el (command-line-1): Use orig-argi to check for ignored X and
12521 2010-01-08 Kenichi Handa <handa@m17n.org>
12523 * international/fontset.el (build-default-fontset-data):
12524 Exclude characters in scripts kana, hangul, han, or cjk-misc.
12526 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
12528 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
12529 to `create-file-buffer' as it expects, not just a buffer name.
12530 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
12531 to help uniquify. (Bug#3224)
12533 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
12535 * font-setting.el (font-setting-change-default-font): Use user-spec
12538 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
12540 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
12542 2010-01-05 Tom Tromey <tromey@redhat.com>
12544 * progmodes/python.el (python-font-lock-keywords):
12545 Handle qualified decorators (Bug#881).
12547 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
12549 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
12550 in a lightweight checkout.
12552 2010-01-05 Kenichi Handa <handa@m17n.org>
12554 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
12556 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
12558 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
12560 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
12562 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
12563 checkouts. (Bug#618)
12564 (vc-bzr-log-view-mode): Also highlight the author.
12565 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
12566 (vc-bzr-shelve-menu-map):
12567 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
12568 (vc-bzr-shelve-apply): Make prompt more explicit.
12570 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
12572 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
12573 They are valid characters in URL paths (rfc3986), and at least
12574 Firefox does not understand the encoded version (Bug#3166).
12576 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
12578 * progmodes/octave-mod.el (octave-end-keywords)
12579 (octave-block-begin-or-end-regexp, octave-block-match-alist):
12580 Add "end" keyword (Bug#3061).
12581 (octave-end-as-array-index-p): New function.
12582 (calculate-octave-indent): Use it.
12584 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12586 * bookmark.el: Consistently put the text property on the bookmark name.
12587 (bookmark-bmenu-marks-width): Bump back to 2, to include
12589 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
12590 property on the bookmark name, instead of not putting it at all.
12591 (bookmark-bmenu-list): Fix where we put the text property.
12593 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12595 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
12596 for showing buffer modified state (as added in the previous change).
12598 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12600 * bookmark.el: Show modified state of bookmark buffer more accurately.
12601 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
12602 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
12603 (with-buffer-modified-unmodified): New macro.
12604 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
12605 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
12606 Use new macro to preserve the buffer modified state.
12608 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12610 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
12611 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
12612 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
12613 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
12614 (bookmark-bmenu-rename, bookmark-bmenu-locate)
12615 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
12616 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
12618 2010-01-02 Eli Zaretskii <eliz@gnu.org>
12620 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12621 Make the lines in the generated doc string shorter. (Bug#4668)
12623 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
12625 * net/rcirc.el: Add follow-link binding (Bug#4738).
12627 2010-01-02 Eli Zaretskii <eliz@gnu.org>
12629 * Makefile.in (bzr-update): Rename from cvs-update.
12630 (cvs-update): New target for backward compatibility.
12632 * makefile.w32-in (bzr-update): Rename from cvs-update.
12633 (cvs-update): New target for backward compatibility.
12635 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12637 * bookmark.el: Remove gratuitous gratitude.
12639 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12641 * bookmark.el (bookmark-bmenu-any-marks): New function.
12642 (bookmark-bmenu-save): Clear buffer modification if no marks.
12644 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12646 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
12647 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
12648 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
12649 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
12651 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
12652 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
12653 To: emacs-devel {_AT_} gnu.org
12654 Subject: bookmark.el bug report
12655 Date: Mon, 28 Dec 2009 14:19:16 +0800
12656 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
12658 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12660 * bookmark.el: Improvements suggested by Drew Adams:
12661 (bookmark-bmenu-ensure-position): New name for
12662 `bookmark-bmenu-check-position'. Just ensure the position,
12663 don't return any meaningful value.
12664 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
12667 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
12669 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
12670 (bookmark-yank-point, bookmark-bmenu-check-position):
12671 Fix typos in docstrings.
12672 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
12673 (bookmark-name-from-full-record, bookmark-get-position)
12674 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
12675 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
12676 Remove useless quoting of parenthesis, etc. in docstrings.
12678 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
12679 (ediff-append-custom-diff): Fix typo in error message.
12680 (ediff-meta-mark-equal-files): Fix typos in messages.
12682 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
12684 * net/imap-hash.el (imap-hash-make): Doc fix.
12685 (imap-hash-test): Fix typo in error message; reflow docstring.
12686 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
12687 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
12688 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
12689 Fix typos in docstrings.
12690 (imap-hash-open-connection): Fix typo in error message.
12692 * play/gomoku.el (gomoku): Fix typos in docstring.
12694 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
12695 (gdb-jsonify-buffer): Fix typos in docstring.
12696 (gdb-goto-breakpoint): Fix typo in error message.
12697 ("Display Other Windows"): Fix typo in help message.
12698 (gdb-speedbar-expand-node): Fix typo in question.
12700 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
12701 (idlwave-html-system-help-location, idlwave-html-help-location)
12702 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
12703 (idlwave-help-browser-generic-args, idlwave-help-directory)
12704 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
12705 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
12706 (idlwave-online-help, idlwave-help-html-link)
12707 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
12708 Fix typos in docstrings.
12709 (idlwave-help-with-source, idlwave-help-find-routine-definition):
12711 (idlwave-help-assistant-start): Fix typo in error message.
12713 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
12714 (octave-electric-space): Fix typos in docstrings.
12716 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
12718 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
12720 2010-01-01 Juri Linkov <juri@jurta.org>
12722 * comint.el (comint-input-ring-size): Make it a defcustom and
12723 increase the default to 500 (Bug#5148).
12725 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
12727 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
12728 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
12729 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
12731 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
12733 Show working revision correctly for mercurial.
12734 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
12735 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
12737 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
12739 Declare some functions for the byte-compiler.
12740 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
12741 (speedbar-timer-fn, speedbar-change-expand-button-char)
12742 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
12744 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
12746 This changeset reverts GDB Graphical Interface to use annotations.
12747 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
12749 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12751 Make vc-dir work on subdirectories of the bzr root.
12752 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
12753 Return file names relative to it.
12754 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
12755 relative directory to vc-bzr-after-dir-status.
12757 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
12759 * font-lock.el (font-lock-refresh-defaults): New function, which
12760 can be used to let font-lock react to external changes in
12761 variables like font-lock-defaults and keywords.
12762 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
12764 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
12766 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
12768 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
12770 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
12772 Supersede color.diff settings in git log (bug#5211).
12774 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
12775 escape chars in its output when the user has color.diff set to `always'.
12776 This fix works on git 1.4.2 and newer (released on 2006-08-13).
12778 2009-12-26 Kevin Ryde <user42@zip.com.au>
12780 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
12781 node. Keep previous "Index" name to work with past coreutils too.
12783 * man.el (man): Revise docstring a bit to show -a and -l as
12784 examples. Add -k description since support for it has otherwise
12785 been a secret. (Further to bug#3717.)
12786 (Man-bgproc-sentinel): When "-k foo" produces no output show error
12787 "no matches" rather than "Can't find manpage", as the latter reads
12788 like -k was interpreted as a page name, which is not so. (Bug#5431)
12790 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
12792 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
12793 switches. Check also for //SUBDIRED// line.
12795 2009-12-25 Kenichi Handa <handa@m17n.org>
12797 * language/indian.el (devanagari-composable-pattern): Fix to
12798 handle ZWNJ and ZWJ. Use it in composition-function-table for
12800 (malayalam-composable-pattern): Fix previous change.
12802 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12804 * ps-print.el (ps-face-attributes): It was not returning the
12805 attribute face for faces specified as string. Reported by harven
12806 <harven@free.fr>. (Bug#5254)
12807 (ps-print-version): New version 7.3.5.
12809 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
12811 * calendar/icalendar.el (icalendar--convert-tz-offset):
12812 Fix timezone names.
12813 (icalendar--convert-tz-offset): Fix the "last-day-problem".
12814 (icalendar--add-diary-entry): Remove the trailing blank that
12815 diary-make-entry inserts.
12817 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
12819 Make `file-expand-wildcards' work for remote files.
12821 * files.el (file-expand-wildcards): In case of remote files, check
12822 only local file name part for wildcards. Provide feature 'files
12823 and subfeature 'remote-wildcards. (Bug#5198)
12825 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
12826 if there is already an established connection.
12827 (tramp-advice-file-expand-wildcards): Remove it.
12829 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
12830 (tramp-advice-file-expand-wildcards): Move from tramp.el.
12831 Activate advice for older GNU Emacs versions. (Bug#5237)
12833 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
12835 Some doc fixes (more needed).
12837 * find-cmd.el (find-constituents): Reflow docstring.
12838 (find-cmd, find-prune, find-command): Fix typos in docstrings.
12839 (find-generic): Doc fix.
12841 2009-12-17 Juri Linkov <juri@jurta.org>
12843 Fix regression from 23.1 to allow multiple modes in Local Variables.
12845 * files.el (hack-local-variables-filter): While ignoring duplicates,
12846 don't take `mode' into account.
12847 (hack-local-variables-filter, hack-dir-local-variables):
12848 Don't remove duplicate `mode' from local-variables-alist (like `eval').
12850 2009-12-17 Juri Linkov <juri@jurta.org>
12852 Make `dired-diff' safer. (Bug#5225)
12854 * dired-aux.el (dired-diff): Signal an error when `file' equals to
12855 `current' or when `file' is a directory of the `current' file.
12857 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
12859 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
12860 unconditionally preloaded files.
12862 2009-12-16 Juri Linkov <juri@jurta.org>
12864 Revert to old 23.1 logic of using the file at the mark as default.
12865 * dired-aux.el (dired-diff): Use the file at the mark as default
12866 if it's not the same as the current file, and the target dir is
12867 the current dir or the mark is active. Add the current file
12868 as the arg of `dired-dwim-target-defaults'. Use the default file
12869 in the prompt. (Bug#5225)
12871 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
12873 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
12874 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
12875 (tramp-check-for-regexp): Check also, when an echoing shell stops
12876 to echo sent commands.
12878 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
12880 * Makefile.in: Revert last change (Bug#5191).
12882 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
12884 * vc-hg.el (vc-hg-print-log): Fix argument order.
12885 (vc-hg-working-revision): Make sure the command is executed in a
12886 known environment so that we can parse the output. (Bug#4417)
12888 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
12890 * progmodes/python.el (python-symbol-completions): Remove text
12891 properties from symbol string before calling python-send-receive.
12893 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
12895 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
12896 when there are values for both file and line. (Bug#5060)
12898 2009-12-14 Juri Linkov <juri@jurta.org>
12900 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
12901 whitespace after the file name of the first line of unified format,
12902 because git-diff doesn't output whitespace and file modification time
12903 after the file name.
12905 2009-12-14 David Kastrup <dak@gnu.org>
12907 * info.el (Info-hide-cookies-node): Before hiding a cookie,
12908 check if it already has the `display' property added by
12909 `Info-display-images-node', and not put the `invisible' property
12912 2009-12-13 Glenn Morris <rgm@gnu.org>
12914 * mail/emacsbug.el (message-sort-headers): Define for compiler.
12915 (report-emacs-bug): In message-mode, sort manually before storing
12916 original report text. (Bug#5178)
12917 Remove superfluous save-excursion.
12919 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
12921 * net/dbus.el (dbus-property-handler): Filter lambda forms out
12922 when responding to "GetAll" properties.
12924 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
12926 * simple.el (compose-mail): Remove mail-setup-with-from from
12927 customization checks.
12929 2009-12-12 Eli Zaretskii <eliz@gnu.org>
12931 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
12932 RAR archives created on Unix systems.
12934 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
12936 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
12937 the varalias that was accidentally removed by the 2009-11-19 change
12940 2009-12-12 Kenichi Handa <handa@m17n.org>
12942 * language/indian.el (indian-compose-regexp): New function.
12943 (malayalam-composable-pattern): Fix the pattern.
12944 (composition-function-table): Set malayalam-composable-pattern for
12945 Malayalam characters.
12947 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
12949 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
12950 rather than down-mouse-1, based on follow-link conventions.
12952 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
12955 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
12957 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
12958 (verilog-vmm-statement-re, verilog-ovm-statement-re)
12959 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
12960 (verilog-leap-to-head, verilog-backward-token):
12961 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
12963 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
12965 * progmodes/verilog-mode.el (verilog-auto-lineup)
12966 (verilog-nameable-item-re): Cleanup user-visible spelling and
12967 documentation errors. One reported by Gary Delp.
12968 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
12969 (verilog-read-decls): Fix AUTOWIRE with types declared in a
12970 package, bug195. Reported by Pierre-David Pfister.
12972 2009-12-11 Glenn Morris <rgm@gnu.org>
12974 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
12976 * mail/emacsbug.el: No longer require sendmail.
12977 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
12978 (report-emacs-bug-orig-text): Doc fix.
12979 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
12980 New local variables, to adapt to different mail-user-agents.
12981 (report-emacs-bug): Fix test for a gnu.org address.
12982 Use overlays for emphasis, since font-lock defeats 'face property.
12983 Pretest bugs also end up at the newsgroup these days.
12984 Stop message-mode stripping text properties.
12985 Set and use the new buffer-local variables.
12986 (report-emacs-bug-hook): Add doc-string.
12987 Remove some unnecessary save-excursions and simplify.
12988 Use the appropriate hook and send-command.
12990 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
12991 capitalization of some menu entries.
12993 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12995 * whitespace.el (whitespace-display-char-on):
12996 Ensure `buffer-display-table' is unique when two or more windows are
12997 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
13000 2009-12-10 Eli Zaretskii <eliz@gnu.org>
13002 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
13003 characters in the Attribute field.
13005 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
13007 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
13009 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
13011 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
13012 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
13013 Disregard autoload-excludes.
13014 (update-directory-autoloads): Obey autoload-excludes here instead.
13015 But don't store its contents in no-autoloads and remove entries that
13016 refer to excludes files.
13018 2009-12-10 Glenn Morris <rgm@gnu.org>
13020 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
13021 (expand-mail-aliases): Define for compiler.
13023 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
13024 Define for compiler.
13026 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
13027 appropriate for the mail-user-agent in use.
13029 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
13031 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
13033 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
13035 Fix short log parsing and fontification.
13036 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
13037 Fix fontification for the [merge] label.
13039 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
13041 Drop some properties to avoid surprises (bug#5002).
13042 * htmlfontify.el (hfy-ignored-properties): New defcustom.
13043 (hfy-fontify-buffer): Use it.
13045 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
13048 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
13049 Adjust all callers.
13050 (ffap-locate-file): Remove unused arg `dir-ok' and make other
13051 args compulsory. Adjust callers.
13052 (ffap-gopher-at-point): Remove unused var `name'.
13054 Get rid of the ELCFILES abomination.
13055 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
13056 (compile-elcfiles): New phony target.
13057 (compile-main): Compute ELCFILES dynamically.
13058 (compile-clean): New target to remove left-over elc files.
13059 (compile, all): Use it.
13061 2009-12-09 Kenichi Handa <handa@etlken>
13063 * international/mule-diag.el: Require help-mode instead of help-fns.
13065 2009-12-09 Kenichi Handa <handa@m17n.org>
13067 * international/mule-cmds.el (ucs-names): Supply sufficiently
13068 fine ranges instead of pre-calculating accurate ranges.
13069 Iterate with bigger gc-cons-threshold.
13071 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
13073 Add support for stashing a snapshot of the current tree.
13074 * vc-git.el (vc-git-stash-snapshot): New function.
13075 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
13077 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
13079 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
13080 instead of `(beginning|end)-of-line'.
13082 2009-12-08 Glenn Morris <rgm@gnu.org>
13084 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
13086 * Makefile.in (ELCFILES): Regenerate.
13088 2009-12-07 Juri Linkov <juri@jurta.org>
13090 Don't lazy-highlight the comint output in history Isearch mode.
13092 * comint.el (comint-history-isearch-search): Instead of
13093 `comint-line-beginning-position', use `comint-after-pmark-p'
13094 to check if point if before the process mark, and go to
13095 `process-mark' in this case.
13097 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
13099 * textmodes/tex-mode.el (latex-complete)
13100 (latex-indent-or-complete): Remove.
13101 (latex-mode): Set completion-at-point-functions instead.
13103 Provide a standard completion command and hook it into TAB.
13104 * minibuffer.el (completion-at-point-functions): New var.
13105 (completion-at-point): New command.
13106 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
13107 * progmodes/python.el (python-mode-map): Use completion-at-point.
13108 (python-completion-at-point): Rename from python-partial-symbol and
13109 adjust for use in completion-at-point-functions.
13110 (python-mode): Setup completion-at-point for Python completion.
13111 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
13112 extracted from lisp-complete-symbol.
13113 (lisp-complete-symbol): Use it.
13114 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
13115 setup completion-at-point for Elisp completion.
13116 (emacs-lisp-mode-map, lisp-interaction-mode-map):
13117 Use completion-at-point.
13118 * ielm.el (ielm-map): Use completion-at-point.
13119 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
13120 * progmodes/sym-comp.el: Move to...
13121 * obsolete/sym-comp.el: Move from progmodes.
13123 2009-12-07 Eli Zaretskii <eliz@gnu.org>
13125 Prevent save-buffer in Rmail buffers from using the coding-system
13126 of the current message, and from clobbering the encoding mnemonics
13127 in the mode line (Bug#4623).
13129 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
13131 (rmail-message-encoding): New variable.
13132 (rmail-write-region-annotate): Record the encoding of the current
13133 message in rmail-message-encoding.
13134 (rmail-after-save-hook): New function, restores the encoding of
13135 the current message after the message collection is saved.
13137 2009-12-07 Juri Linkov <juri@jurta.org>
13139 * progmodes/grep.el (grep-read-files): Use `completing-read'
13140 instead of `read-string'. Set its `collection' arg to
13141 `read-file-name-internal'. (Bug#4301)
13143 2009-12-07 Juri Linkov <juri@jurta.org>
13145 Correctly restore original Isearch point. (Bug#4994)
13147 * isearch.el (isearch-mode): Move `isearch-push-state' after
13148 `(run-hooks 'isearch-mode-hook)'.
13149 (isearch-cancel): When `isearch-push-state-function' is defined,
13150 let-bind `isearch-cmds' to the first state (the last element of
13151 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
13152 function and restores the original point). Otherwise, move point
13153 to `isearch-opoint'.
13155 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
13157 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
13158 chars that don't have names, so the table can be built much faster at
13161 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
13163 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
13164 change. Suggested by David Kastrup.
13166 * simple.el (compose-mail): Check for incompatibilities and warn.
13167 (compose-mail-user-agent-warnings): New option.
13169 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
13171 Support showing a single log entry from vc-annotate.
13172 * vc.el (print-log): Add a new argument: START-REVISION.
13173 (vc-print-log-internal): Add a new optional argument and
13174 pass it to the backend.
13175 (vc-print-log, vc-print-root-log): Adjust callers.
13176 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
13177 buffer already displays the requested log entry, use it.
13178 Otherwise display only the log entry in question.
13179 * vc-svn.el (vc-svn-print-log):
13180 * vc-mtn.el (vc-mtn-print-log):
13181 * vc-hg.el (vc-hg-state):
13182 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
13183 (vc-git-show-log-entry): Return t on success.
13184 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
13185 (vc-bzr-show-log-entry): Return t on success.
13186 * vc-rcs.el (vc-rcs-print-log):
13187 * vc-sccs.el (vc-sccs-print-log):
13188 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
13190 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
13192 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
13193 Add menus to the meta mode. (Bug#5043)
13195 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
13197 * ediff-init.el (ediff-event-key): Use event-to-character instead of
13200 * ediff.el (ediff-buffers-internal): Add unwind-protect.
13202 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
13204 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
13205 Berbain <raphael.berbain@gmail.com>.
13207 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
13209 (tramp-initial-end-of-output): New defconst.
13210 (tramp-methods, tramp-find-shell)
13211 (tramp-open-connection-setup-interactive-shell)
13212 (tramp-maybe-open-connection): Use it.
13213 (tramp-shell-prompt-pattern, tramp-wait-for-output):
13214 Handle existence of `#' and `$'.
13216 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
13217 Use `tramp-initial-end-of-output'.
13219 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
13221 Get the background mode from the terminal for xterm, and set
13223 * term/xterm.el (xterm-set-background-mode): New function.
13224 (terminal-init-xterm): Use it in case xterm supports background
13225 color queries. Recompute faces after getting the background
13228 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
13230 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
13231 number comment back on its own line, for easier parsing.
13233 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
13235 Make it work for non-file buffers (bug#5102).
13236 * doc-view.el (doc-view-current-cache-dir):
13237 Use doc-view-buffer-file-name rather than buffer-file-name.
13238 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
13240 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
13242 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
13243 author field is too short.
13245 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
13247 * vc-git.el (vc-git-print-log): Handle a limit argument.
13248 Display the short log in graph form and with labels.
13249 (vc-git-log-view-mode): Handle labels.
13251 Make vc-revert change VC state from 'added to 'unregistered.
13252 * vc-git.el (vc-git-revert): Call git reset first.
13254 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
13256 * net/newst-backend.el, net/newst-plainview.el:
13257 * net/newst-reader.el, net/newst-ticker.el:
13258 * net/newst-treeview.el, net/newsticker.el:
13259 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
13261 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
13263 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
13265 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
13266 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
13267 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
13268 Update annotation regexp.
13270 * simple.el (beginning-of-visual-line): Constrain to field
13271 boundaries (Bug#5106).
13273 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
13275 * xml.el (xml-substitute-numeric-entities):
13276 Move newsticker--decode-numeric-entities in newst-backend.el to
13277 xml-substitute-numeric-entities in xml.el. (Bug#5008)
13278 * net/newst-backend.el (newsticker--parse-generic-feed)
13279 (newsticker--parse-generic-items)
13280 (newsticker--decode-numeric-entities):
13281 Move newsticker--decode-numeric-entities in newst-backend.el to
13282 xml-substitute-numeric-entities in xml.el. (Bug#5008)
13284 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
13286 * progmodes/js.el (js--js-not): Add null to the list of values.
13288 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
13290 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
13292 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13294 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
13295 delimiter if it is at the end of the current line.
13296 (bibtex-generate-url-list): Fix docstring.
13298 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
13300 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
13301 minibuffer's content with itself.
13302 Fold the confirm-after-completion case into the `confirm' case.
13303 (completion-pcm-word-delimiters): Add : and / to the delimiters.
13305 2009-12-06 Kevin Ryde <user42@zip.com.au>
13307 * ffap.el (ffap-rfc-path): Make this a defcustom since
13308 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
13310 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
13311 manuals, similar to existing setup for help-mode. (Bug#3913.)
13313 2009-12-05 Juri Linkov <juri@jurta.org>
13315 Save and restore dired buffer's point positions too. (Bug#4880)
13317 * dired.el (dired-save-positions): Return in the first element
13318 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
13320 (dired-restore-positions): First restore buffer's position.
13321 While restoring window's positions, check if window still displays
13322 the original buffer.
13324 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
13326 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
13329 * shell.el (shell): Require ansi-color (Bug#5113).
13331 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
13333 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
13335 2009-12-05 Alan Mackenzie <acm@muc.de>
13337 * progmodes/cc-mode.el (c-before-hack-hook)
13338 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
13339 `c-file-style' to work again. This reversion restores the current
13340 software to its state in Emacs 23.1. (Bug#4146)
13342 2009-12-05 Kevin Ryde <user42@zip.com.au>
13344 * textmodes/sgml-mode.el (sgml-lexical-context):
13345 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
13347 2009-12-05 Juri Linkov <juri@jurta.org>
13349 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
13350 for virtual nodes. (Bug#4147)
13351 (Info-find-node-2): Set `Info-current-node-virtual' to nil
13352 when moving from a virtual node.
13353 (Info-mode-menu): Add `Info-virtual-index' to the menu.
13354 (Info-mode): Add `Info-virtual-index' to the docstring.
13356 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13358 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
13359 track of the buffer position of the end of a BibTeX entry as this
13360 position may change during reformatting.
13361 (bibtex-format-entry): Remove whitespace before processing
13362 numerical fields so that we recognize the latter properly.
13363 (bibtex-reformat): Do not use push which changes the global value
13364 of bibtex-entry-format.
13365 (bibtex-field-braces-alist, bibtex-field-strings-alist)
13366 (bibtex-field-re-init): Replace only space characters by regexp
13368 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
13369 (bibtex-initialize): Also update bibtex-strings.
13370 (bibtex-kill-field): Preserve white space at end of entry.
13371 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
13372 Update bibtex-reference-keys.
13374 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
13376 * minibuffer.el (completion-pcm--merge-try): Also consider placing
13377 point after a star, if that's the only place where modifications can
13380 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
13382 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
13385 2009-12-04 Juri Linkov <juri@jurta.org>
13387 * proced.el (proced): Call `(proced-update t)' to update process
13388 information instead of only running proced-post-display-hook.
13389 (proced-send-signal): Add a leading space to the buffer name
13390 " *Marked Processes*" to make this buffer ephemeral.
13392 2009-12-04 Juri Linkov <juri@jurta.org>
13394 * dired.el (dired-auto-revert-buffer): New defcustom.
13395 (dired-internal-noselect): Use it.
13397 2009-12-04 Juri Linkov <juri@jurta.org>
13399 Change roles of modes and functions in image-mode.el (Bug#5062).
13401 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
13402 in `auto-mode-alist'.
13403 (image-mode-previous-major-mode): New variable.
13404 (image-minor-mode-map): Rename from `image-mode-text-map'.
13405 (image-mode): Move graceful error-handling code from
13406 `image-minor-mode' to here. On errors call `image-mode-as-text'.
13407 (image-minor-mode): Remove all image-handling code.
13408 Replace `image-mode-text-map' with `image-minor-mode-map'.
13409 Check for `image-type' in mode-line format string.
13410 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
13411 (image-mode-as-text): New function with most code from
13412 `image-mode-maybe'.
13413 (image-toggle-display-text): Move code that removes image
13414 properties from `image-toggle-display' to here.
13415 (image-toggle-display-image): New function with code that adds
13416 image properties copied from `image-toggle-display'.
13417 (image-toggle-display): Remove most code with leaving only code
13418 that toggles between `image-mode-as-text' and `image-mode'.
13420 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
13422 * net/newst-treeview.el
13423 (newsticker--treeview-list-highlight-start): Restored call to
13424 save-excursion: Selected item was stuck.
13425 (newsticker--treeview-list-select): New.
13426 (newsticker--treeview-item-show-text)
13427 (newsticker--treeview-item-show)
13428 (newsticker--treeview-item-update): Use new
13429 newsticker-treeview-item-mode.
13430 (newsticker-treeview-update): Keep current item.
13431 (newsticker-treeview-next-new-or-immortal-item): Doc change.
13432 (newsticker--treeview-first-feed): Doc change.
13433 (newsticker-treeview-list-menu)
13434 (newsticker-treeview-item-menu): Add menu entries.
13435 (newsticker-treeview-item-mode): New.
13437 * net/newst-backend.el (newsticker-customize): Delete other
13440 2009-12-04 Sam Steingold <sds@gnu.org>
13442 * log-view.el (log-view-mode-map): "q" calls quit-window,
13443 like in all the other non-self-insert buffers.
13445 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
13448 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
13449 key decoding rather than do it manually via last-input-event +
13451 (term-exec): Use delete-and-extract-region.
13452 (term-handle-ansi-terminal-messages): Remove unused var `end'.
13453 (term-process-pager): Remove unused var `i'.
13454 (term-dynamic-simple-complete): Make obsolete.
13455 (serial-update-config-menu): Remove unused vars `y' and `str'.
13456 (term-update-mode-line): Remove unused var `temp'.
13458 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13460 Limit the number of log entries displayed by default.
13461 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
13462 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
13463 using a prefix argument.
13465 2009-12-03 Glenn Morris <rgm@gnu.org>
13467 * progmodes/idlwave.el (class): Restore still useful declaration.
13469 2009-12-03 Alan Mackenzie <acm@muc.de>
13471 Enhance `c-parse-state' to run efficiently in "brace deserts".
13473 * progmodes/cc-mode.el (c-basic-common-init):
13474 Call c-state-cache-init.
13475 (c-neutralize-syntax-in-and-mark-CPP): Rename from
13476 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
13477 placing `category' properties value 'c-cpp-delimiter at its boundaries.
13479 * progmodes/cc-langs.el (c-before-font-lock-function):
13480 c-extend-and-neutralize-syntax-in-CPP has been renamed
13481 c-neutralize-syntax-in-and-mark-CPP.
13483 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
13484 with `category' properties now, not `syntax-table' ones.
13486 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
13487 enhanced (but slower) version of c-end-of-macro that won't land
13488 inside a literal or on another awkward character.
13489 (c-state-cache-too-far, c-state-cache-start)
13490 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
13491 (c-state-nonlit-pos-cache-limit, c-state-point-min)
13492 (c-state-point-min-lit-type, c-state-point-min-lit-start)
13493 (c-state-min-scan-pos, c-state-brace-pair-desert)
13494 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
13495 buffer local variables.
13496 (c-state-literal-at, c-state-lit-beg)
13497 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
13498 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
13499 (c-state-cache-top-paren, c-state-cache-after-top-paren)
13500 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
13501 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
13502 (c-renarrow-state-cache)
13503 (c-append-lower-brace-pair-to-state-cache)
13504 (c-state-push-any-brace-pair, c-append-to-state-cache)
13505 (c-remove-stale-state-cache)
13506 (c-remove-stale-state-cache-backwards, c-state-cache-init)
13507 (c-invalidate-state-cache-1, c-parse-state-1)
13508 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
13509 (c-parse-state): Enhance and refactor.
13510 (c-debug-parse-state): Amend to deal with all the new variables.
13512 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
13513 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
13514 modify to use category text properties rather than syntax-table ones.
13515 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
13516 to switch off/on the syntactic paren property of C++ template
13517 delimiters using the category property.
13518 (c-with-<->-as-parens-suppressed): Macro to invoke code with
13519 template delims suppressed.
13520 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
13521 New constant/macros which apply category properties to the start
13522 and end of preprocessor constructs.
13523 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
13524 "comment out" the syntactic value of characters in preprocessor
13526 (c-with-cpps-commented-out)
13527 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
13528 with characters in all or all but one preprocessor constructs
13531 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13533 * proced.el (proced-filter-alist): Use regexp-quote.
13535 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
13538 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
13539 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
13540 arguments. Expand `default-directory'.
13542 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
13543 the benefit of returning an expanded localname.
13544 (tramp-tramp-file-p): Handle the case NAME is not a string.
13546 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13548 Add support for bzr shelve/unshelve.
13549 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
13550 (vc-bzr-extra-menu-map): New variables.
13551 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
13552 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
13553 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
13554 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
13555 (vc-bzr-dir-extra-headers): Display shelves.
13557 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
13559 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13561 * textmodes/bibtex.el (bibtex-complete-internal):
13562 Use completion-in-region.
13563 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
13565 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13567 Support applying stashes. Improve UI.
13568 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
13569 (vc-git-stash-apply, vc-git-stash-pop)
13570 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
13571 (vc-git-stash-menu): New functions.
13572 (vc-git-stash-menu-map): New variable.
13573 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
13575 2009-12-03 Glenn Morris <rgm@gnu.org>
13577 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
13578 (vc-print-log-internal): Fix previous change.
13579 (vc-revert): Correct pluralization.
13581 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13583 * progmodes/make-mode.el (makefile-special-targets-list): No need for
13584 it to be an alist any more.
13585 (makefile-complete): Use completion-in-region.
13587 * progmodes/octave-mod.el (octave-complete-symbol):
13588 Use completion-in-region.
13591 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
13592 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
13593 (idlwave-complete-class): Don't quote lambda.
13594 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
13595 (idlwave-mode-map): Move initialization into declaration.
13596 (idlwave-action-and-binding): Use backquotes.
13597 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
13599 (idlwave-is-pointer-dereference): Remove unused var `pos'.
13600 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
13601 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
13602 `parts', and `all-parts'.
13603 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
13604 (idlwave-convert-xml-system-routine-info): Remove unused string
13606 (idlwave-display-user-catalog-widget): Use dolist.
13607 (idlwave-scanning-lib): Declare dynamically-scoped var.
13608 (idlwave-scan-library-catalogs): Remove unused var `flags'.
13609 (completion-highlight-first-word-only): Declare to silence bytecomp.
13610 (idlwave-popup-select): Tighten scope of `resp'.
13611 (idlwave-find-struct-tag): Remove unused var `beg'.
13612 (idlwave-after-load-rinfo-hook): Declare.
13613 (idlwave-sintern-class-info): Remove unused var `taglist'.
13614 (idlwave-find-class-definition): Remove unused var `list'.
13615 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
13616 (idlwave-what-module-find-class): Remove unused var `classes'.
13618 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
13620 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
13622 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13624 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
13625 buffers visited. Remove redundant current-buffer-saving.
13627 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13629 Use completion-in-buffer and remove uses of dynamic scoping.
13630 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
13631 (pascal-buffer-to-use, pascal-flag): Don't declare.
13632 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
13633 (pascal-get-completion-decl, pascal-keyword-completion):
13634 Add `pascal-str' argument, save-excursion,
13635 return the found completions, and don't filter with pascal-pred.
13636 (pascal-completion-cache): New var.
13637 (pascal-completion): Don't switch buffer any more (it was never
13638 necessary). Don't save-excursion any more (it's done by the called
13639 subroutines). Use a cache to avoid redundant computations.
13640 Use complete-with-action rather than pascal-completion-response and
13641 let it apply the predicate as well.
13642 (pascal-complete-word): Use completion-in-buffer when
13643 pascal-toggle-completions is nil.
13644 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
13646 (pascal-comp-defun): Don't change buffer any more.
13647 Use complete-with-action rather than pascal-completion-response and
13648 let it apply the predicate as well.
13649 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
13652 2009-12-02 Kenichi Handa <handa@m17n.org>
13654 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
13655 shape for all Indic scripts.
13657 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13659 Use completion-in-buffer.
13660 * wid-edit.el (widget-field-text-end): New function.
13661 (widget-field-value-get): Use it.
13662 (widget-string-complete, widget-file-complete)
13663 (widget-color-complete): Use it and completion-in-region.
13664 (widget-complete): Don't narrow the buffer.
13666 2009-12-02 Glenn Morris <rgm@gnu.org>
13668 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
13669 (rmail-select-summary): Use rmail-pop-to-buffer.
13670 * mail/rmailsum.el: Replace all pop-to-buffer calls with
13671 rmail-pop-to-buffer, to prevent horizontal splits.
13673 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
13674 save-excursion with save-current-buffer.
13675 Widen before searching. (Bug#5093)
13676 (diary-list-sexp-entries): Remove superfluous save-excursion.
13678 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
13680 * woman.el (woman-make-bufname): Handle man-pages with "." in the
13683 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
13685 * ido.el (ido-file-internal): Handle filenames at point that do
13686 not have a directory part. (Bug#5049)
13688 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
13690 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
13691 (mpc-songs-jump-to, mpc-resume): Doc fixes.
13693 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
13695 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
13696 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
13699 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13701 * comint.el (comint-insert-input): Ignore clicks to the right of
13702 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
13704 * vc.el (vc-print-log-internal): Don't wait for the process to
13705 terminate before setting up the major mode.
13707 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
13710 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
13713 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
13715 2009-12-01 Glenn Morris <rgm@gnu.org>
13717 * window.el (window--display-buffer-2): Fix previous changes.
13719 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
13721 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
13723 2009-12-01 Glenn Morris <rgm@gnu.org>
13725 * Makefile.in (ELCFILES): Add mpc.elc.
13727 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13729 * mpc.el: New file.
13731 2009-12-01 Glenn Morris <rgm@gnu.org>
13733 * window.el (window-to-use): Define for compiler.
13735 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
13736 consistent with others (no final period).
13738 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
13739 (rmail-mime-show): Downcase the encoding. (Bug#5070)
13741 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
13743 Make vc-print-log buttons work.
13744 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
13746 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
13748 * savehist.el (savehist-autosave-interval): Allow setting to nil
13749 through customize. (Bug#5056)
13751 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
13753 Fix references to jit-lock properties.
13754 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
13755 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
13756 (perl-font-lock-special-syntactic-constructs):
13757 Quote jit-lock-defer-multiline property.
13759 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
13761 * vc-git.el (vc-git-registered): Call vc-git-root only once.
13763 2009-11-30 Juri Linkov <juri@jurta.org>
13765 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
13766 value `buffer' of `multi-isearch-next-buffer-current-function'.
13767 Use `(current-buffer)' when `buffer' is nil.
13768 (multi-isearch-next-buffer-from-list): Don't fallback to
13769 `(current-buffer)' when `buffer' is nil. (Bug#4947)
13771 2009-11-30 Juri Linkov <juri@jurta.org>
13773 * misearch.el (multi-isearch-read-buffers): Move canonicalization
13774 of buffers with `get-buffer' to `multi-isearch-buffers'.
13775 (multi-isearch-buffers, multi-isearch-buffers-regexp):
13776 Canonicalize BUFFERS with `get-buffer'. Doc fix.
13777 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
13778 FILES with `expand-file-name' converting relative file names
13779 to absolute. Doc fix. (Bug#4727)
13781 2009-11-30 Juri Linkov <juri@jurta.org>
13783 * misearch.el (multi-isearch-read-buffers)
13784 (multi-isearch-read-matching-buffers): New functions.
13785 (multi-isearch-buffers, multi-isearch-buffers-regexp):
13786 Use them in the `interactive' spec. Doc fix.
13787 (multi-isearch-read-files, multi-isearch-read-matching-files):
13789 (multi-isearch-files, multi-isearch-files-regexp):
13790 Use them in the `interactive' spec. Doc fix. (Bug#4725)
13792 2009-11-30 Juri Linkov <juri@jurta.org>
13794 * doc-view.el (doc-view-continuous):
13795 Rename from `doc-view-continuous-mode'.
13796 (doc-view-menu): Move "Toggle display" to the top.
13797 Add submenu "Continuous" with radio buttons "Off"/"On"
13798 and "Save as Default".
13799 (doc-view-scroll-up-or-next-page)
13800 (doc-view-scroll-down-or-previous-page)
13801 (doc-view-next-line-or-next-page)
13802 (doc-view-previous-line-or-previous-page):
13803 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
13805 2009-11-30 Juri Linkov <juri@jurta.org>
13807 * comint.el (comint-mode-map): Rebind `M-r' from
13808 `comint-previous-matching-input' to
13809 `comint-history-isearch-backward-regexp'.
13810 Unbind `M-s' to allow global key binding `M-s'.
13811 Add menu items for `comint-history-isearch-backward' and
13812 `comint-history-isearch-backward-regexp'. (Bug#3746)
13814 2009-11-30 Juri Linkov <juri@jurta.org>
13816 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
13817 For def=recenter, replace `recenter' with `recenter-top-bottom'
13818 that is called with `this-command' and `last-command' let-bound
13819 to `recenter-top-bottom'. When the last `def' was not `recenter',
13820 set `recenter-last-op' to nil. (Bug#4981)
13822 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
13824 Minor cleanup and simplification.
13825 * filecache.el (file-cache-add-directory)
13826 (file-cache-add-directory-recursively)
13827 (file-cache-add-from-file-cache-buffer)
13828 (file-cache-delete-file-regexp, file-cache-delete-directory)
13829 (file-cache-files-matching-internal, file-cache-display): Use dolist.
13830 (file-cache-temp-minibuffer-message): Delete function.
13831 (file-cache-minibuffer-complete): Use minibuffer-message instead.
13833 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
13834 Don't signal an error when bumping into EOB in tr, s, or y.
13836 2009-11-29 Juri Linkov <juri@jurta.org>
13838 * startup.el (fancy-about-text): Fix wording of Guided Tour.
13841 * descr-text.el (describe-char-unidata-list): Use lowercase name
13842 for "Unicode name" like in other tags.
13844 2009-11-29 Juri Linkov <juri@jurta.org>
13846 * ediff-util.el (ediff-minibuffer-with-setup-hook):
13847 New compatibility macro.
13848 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
13850 2009-11-29 Juri Linkov <juri@jurta.org>
13852 Add defcustom to define the cycling order of `recenter-top-bottom'.
13855 * window.el (recenter-last-op): Doc fix.
13856 (recenter-positions): New defcustom.
13857 (recenter-top-bottom): Rewrite to use `recenter-positions'.
13858 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
13860 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
13862 Improve integration of Tramp and ange-ftp in eshell.
13864 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
13865 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
13866 (eshell/sudo): Flatten args. Let-bind `default-directory'.
13868 * eshell/esh-util.el (top): Require also Tramp when compiling.
13869 (eshell-directory-files-and-attributes): Check for FTP remote
13871 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
13872 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
13873 (eshell-file-attributes): Handle ".". Return `entry'.
13875 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
13876 (ange-ftp-directory-files-and-attributes)
13877 (ange-ftp-real-directory-files-and-attributes): New defuns.
13879 * net/tramp.el (tramp-maybe-open-connection): Open the remote
13880 shell with "exec" when possible. This prevents trailing prompts
13881 in `start-file-process'.
13883 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
13885 Try and remove assumptions about point-min==1.
13886 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
13887 (rng-compute-mode-line-string): Show the validation percentage in
13888 terms of the narrowed text, not the widened text.
13889 (rng-do-some-validation): Don't catch internal errors when debugging.
13890 (rng-first-error): Simplify.
13891 (rng-after-change-function): Remove work around. AFAIK the bug has
13892 been fixed a while ago.
13894 * image-mode.el (image-minor-mode): Exit more gracefully when the image
13895 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
13897 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
13899 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
13900 `cd' doesn't always do it for us (bug#5067).
13902 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
13903 on 2009-10-25 as part of some other change (bug#5067).
13905 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
13907 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
13909 (byte-compile-warnings): Use byte-compile-warning-types.
13910 (byte-compile-save-excursion): Warn about use of set-buffer right
13911 after save-excursion.
13913 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
13914 the excursion as well.
13916 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
13918 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
13919 providing a Tramp related implementation of "su" and "sudo".
13920 (eshell-unix-initialize): Add "su" and "sudo".
13922 2009-11-27 Daiki Ueno <ueno@unixuser.org>
13924 * net/socks.el (socks-send-command): Convert binary request to
13925 unibyte before sending. This fixes mishandling of some port
13926 numbers such as 129.
13928 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
13930 * help.el (describe-bindings-internal): Remove `interactive'.
13932 * man.el (Man-completion-table): Trim a terminating "(".
13933 Remove the space between name page a section.
13934 Add the command's description on the `help-echo' property.
13935 Remove `process-connection-type' binding since it's unused by
13937 Provide completion for the "<section> <name>" format as well.
13938 (Man-default-man-entry): Remove spurious var shadowing the argument.
13940 2009-11-26 Kevin Ryde <user42@zip.com.au>
13942 * log-view.el: Add "Keywords: tools", since its other keywords
13943 aren't in finder-known-keywords, and following vc.el.
13945 * sha1.el (sha1-string-external): default-directory "/" in case
13946 otherwise non-existent. process-connection-type pipe for touch of
13947 efficiency recommended by elisp manual. (An aside in Bug#3911.)
13949 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13951 Misc coding convention cleanups.
13952 * htmlfontify.el (hfy-init-kludge-hook): Rename from
13953 hfy-init-kludge-hooks.
13954 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
13955 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
13956 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
13958 (hfy-slant, hfy-weight): Use tables rather than code.
13959 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
13960 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
13961 (hfy-face-attr-for-class): Initialize `face-spec' directly.
13962 (hfy-face-to-css): Remove `nconc' with single arg.
13963 (hfy-p-to-face-lennart): Use `or'.
13964 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
13965 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
13966 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
13967 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
13968 (hfy-force-fontification): Use run-hooks.
13970 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
13972 Various minor fixes.
13973 * htmlfontify.el (hfy-default-header): Add toggle_invis since
13974 Javascript belongs in the header, not the body.
13975 (hfy-javascript): Remove.
13976 (hfy-fontify-buffer): Don't insert it any more.
13977 (hfy-face-at): Handle (face0 face1 face2) style face properties.
13978 Fix bug in invis handling when there were no invis props in a chunk.
13980 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13982 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
13984 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
13986 * finder.el (finder-mode-map): Add a menu.
13988 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
13990 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
13991 "unsigned" structs.
13993 (verilog-leap-to-head, verilog-backward-token): Handle "disable
13994 fork" statement better.
13996 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
13998 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
13999 (verilog-delete-auto, verilog-delete-empty-auto-pair)
14000 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
14001 Reported by Clay Douglass.
14003 (verilog-auto-inst, verilog-auto-star-safe)
14004 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
14005 Fix removing "// Interfaces" when saving .* expansions.
14006 Reported by Pierre-David Pfister.
14008 2009-11-26 Glenn Morris <rgm@gnu.org>
14010 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
14013 2009-11-25 Johan Bockgård <bojohan@gnu.org>
14015 * vc-annotate.el (vc-annotate-revision-previous-to-line):
14016 Really use previous revision.
14018 2009-11-25 Kevin Ryde <user42@zip.com.au>
14020 * man.el (Man-completion-table): default-directory "/" in case
14021 doesn't otherwise exist. process-environment COLUMNS=999 so as
14022 not to truncate long names. process-connection-type pipe to avoid
14023 any chance of hitting the pseudo-tty TIOCGWINSZ.
14024 (man): completion-ignore-case t for friendliness and since man
14025 itself is case-insensitive on the command line.
14026 Further to Bug#3717.
14028 * arc-mode.el: Add "Keywords: files", so the details in its
14029 commentary can be reached from finder-by-keyword.
14030 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
14031 editing mode, but it's comms related and sgml-mode.el has "comm"
14033 * textmodes/bibtex-style.el: Add "Keywords: tex".
14034 * international/isearch-x.el, international/ja-dic-cnv.el:
14035 * international/ja-dic-utl.el, international/kkc.el:
14036 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
14038 2009-11-25 Juri Linkov <juri@jurta.org>
14040 * man.el (Man-completion-table): Modify regexp to include
14041 section names to completion strings. (Bug#3717)
14043 2009-11-25 Juri Linkov <juri@jurta.org>
14045 Search recursively in gzipped files. (Bug#4982)
14047 * progmodes/grep.el (grep-highlight-matches): Add new options
14048 `always' and `auto'. Doc fix.
14049 (grep-process-setup): Check `grep-highlight-matches' for
14050 `auto-detect' to determine the need to compute grep defaults.
14051 Move Windows/DOS specific --colors settings handling
14052 to `grep-compute-defaults'. Check `grep-highlight-matches'
14053 to get the value of "--color=".
14054 (grep-compute-defaults): Compute `grep-highlight-matches' when it
14055 has the value `auto-detect'. Move Windows/DOS specific settings
14056 from `grep-process-setup'.
14057 (zrgrep): New command with alias `rzgrep'.
14059 2009-11-25 Juri Linkov <juri@jurta.org>
14061 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
14062 to nil instead of switching off view-mode. (Bug#4896)
14064 2009-11-25 Juri Linkov <juri@jurta.org>
14066 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
14068 * mwheel.el (mwheel-scroll-up-function)
14069 (mwheel-scroll-down-function): New defvars.
14070 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
14071 `scroll-up', and `mwheel-scroll-down-function' instead of
14074 * doc-view.el (doc-view-scroll-up-or-next-page)
14075 (doc-view-scroll-down-or-previous-page): Add optional ARG.
14076 Use this ARG in the call to image-scroll-up/image-scroll-down.
14077 Change `interactive' spec to "P". Goto next/previous page only
14078 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
14079 SPC/DEL case). Doc fix.
14080 (doc-view-next-line-or-next-page)
14081 (doc-view-previous-line-or-previous-page): Rename arg to ARG
14083 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
14084 `doc-view-scroll-up-or-next-page', and buffer-local
14085 `mwheel-scroll-down-function' to
14086 `doc-view-scroll-down-or-previous-page'.
14088 2009-11-25 Juri Linkov <juri@jurta.org>
14090 Provide additional default values (directories at other Dired
14091 windows) via M-n in the minibuffer of some Dired commands.
14093 * dired-aux.el (dired-diff, dired-compare-directories)
14094 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
14095 `minibuffer-default' in `minibuffer-with-setup-hook'.
14096 (dired-dwim-target-directory): Find a window that displays Dired
14097 buffer instead of failing when the next window is not Dired.
14098 Use `get-window-with-predicate' to find for the next Dired window.
14099 (dired-dwim-target-defaults): New function.
14101 * ediff-util.el (ediff-read-file-name):
14102 Use `dired-dwim-target-defaults' to set `minibuffer-default'
14103 in `minibuffer-with-setup-hook'.
14105 2009-11-25 Juri Linkov <juri@jurta.org>
14107 Provide additional default values (file name at point or at the
14108 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
14110 * minibuffer.el (read-file-name-defaults): New function.
14111 (read-file-name): Reset `minibuffer-default' to nil when
14112 it duplicates initial input `insdef'.
14113 Bind `minibuffer-default-add-function' to lambda that
14114 calls `read-file-name-defaults' in `minibuffer-selected-window'.
14115 (minibuffer-insert-file-name-at-point): New command.
14117 * files.el (file-name-at-point-functions): New defcustom.
14118 (find-file-default): Remove defvar.
14119 (find-file-read-args): Don't use `find-file-default'.
14120 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
14121 to `read-file-name'.
14122 (find-file-literally): Use `read-file-name' with
14123 `confirm-nonexistent-file-or-buffer'.
14125 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
14127 * dired.el (dired-read-dir-and-switches):
14128 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
14129 to `read-file-name'.
14130 (dired-file-name-at-point): New function.
14131 (dired-mode): Add hook `dired-file-name-at-point' to
14132 `file-name-at-point-functions'.
14134 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
14136 Really make the *Completions* window soft-dedicated (bug#5030).
14137 * window.el (window--display-buffer-2): Add `dedicated' argument.
14138 (display-buffer): Pass it when needed so the dedicated flag is set
14139 after calling set-window-buffer, which would otherwise reset it.
14141 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
14143 * progmodes/meta-mode.el (meta-complete-symbol):
14144 * progmodes/etags.el (complete-tag):
14145 * mail/mailabbrev.el (mail-abbrev-complete-alias):
14146 Use completion-in-region.
14148 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
14149 (dabbrev-completion): Use completion-in-region.
14150 (dabbrev--abbrev-at-point): Simplify regexp.
14152 * abbrev.el (abbrev--before-point): Use word-motion functions
14153 if :regexp is not specified (bug#5031).
14155 * subr.el (string-prefix-p): New function.
14157 * man.el (Man-completion-cache): New var.
14158 (Man-completion-table): Use it.
14160 * vc.el (vc-print-log-internal): Make `limit' optional for better
14161 compatibility (e.g. with vc-annotate.el).
14163 2009-11-24 Kevin Ryde <user42@zip.com.au>
14165 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
14166 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
14168 * emacs-lisp/elint.el (elint-add-required-env): Better error message
14169 when .el source file not found or other error.
14171 2009-11-24 Markus Triska <markus.triska@gmx.at>
14173 * linum.el (linum-update-window): Ignore intangible (bug#4996).
14175 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
14177 Handle the [back] button properly (bug#4979).
14178 * descr-text.el (describe-text-properties): Add a `buffer' argument.
14179 Use help-setup-xref, help-buffer, and with-help-window.
14180 (describe-char): Add `buffer' argument.
14181 Pass proper command to help-setup-xref. Don't meddle with
14182 help-xref-stack-item directly.
14183 (describe-text-category): Use with-help-window and help-buffer.
14185 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
14186 for the displayed buffer (bug#4887).
14188 * man.el (Man-completion-table): New function.
14191 2009-11-24 David Reitter <david.reitter@gmail.com>
14193 * vc-git.el (vc-git-registered): Use checkout directory (where
14194 .git is) rather than the file's directory and a relative path spec
14195 to work around a bug in git.
14197 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
14199 Improve handling of processes on remote hosts.
14201 * eshell/esh-util.el (eshell-path-env): New defvar.
14202 (eshell-parse-colon-path): New defun.
14203 (eshell-file-attributes): Use `eshell-parse-colon-path'.
14205 * eshell/esh-ext.el (eshell-search-path):
14206 Use `eshell-parse-colon-path'.
14207 (eshell-remote-command): Remove argument HANDLER.
14208 (eshell-external-command): Check for FTP remote connection.
14210 * eshell/esh-proc.el (eshell-gather-process-output):
14211 Use `file-truename', in order to start also symlinked files.
14212 Apply `start-file-process' instead of `start-process'.
14213 Shorten `command' to the local file name part.
14215 * eshell/em-cmpl.el (eshell-complete-commands-list):
14216 Use `eshell-parse-colon-path'.
14218 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
14220 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
14221 to `eshell-directory-change-hook'.
14223 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
14225 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
14226 because it could be enabled automatically if view-read-only is non-nil.
14228 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
14230 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
14231 made on 2009-11-22.
14233 2009-11-24 Glenn Morris <rgm@gnu.org>
14235 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
14236 deleted variable bookmark-bmenu-bookmark-column.
14238 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
14240 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
14242 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
14244 * net/browse-url.el (browse-url-filename-alist): On Windows, add
14245 two slashes to the "file:" prefix.
14246 (browse-url-file-url): De-munge Cygwin filenames before passing
14247 them to Windows browser.
14248 (browse-url-default-windows-browser): Use call-process.
14250 2009-11-23 Juri Linkov <juri@jurta.org>
14252 Implement DocView Continuous mode. (Bug#4896)
14253 * doc-view.el (doc-view-continuous-mode): New defcustom.
14254 (doc-view-mode-map): Bind C-n/<down> to
14255 `doc-view-next-line-or-next-page', C-p/<up> to
14256 `doc-view-previous-line-or-previous-page'.
14257 (doc-view-next-line-or-next-page)
14258 (doc-view-previous-line-or-previous-page): New commands.
14260 2009-11-23 Juri Linkov <juri@jurta.org>
14262 Implement Isearch in comint input history. (Bug#3746)
14263 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
14264 `isearch-mode-hook'.
14265 (comint-history-isearch): New defcustom.
14266 (comint-history-isearch-backward)
14267 (comint-history-isearch-backward-regexp): New commands.
14268 (comint-history-isearch-message-overlay): New buffer-local variable.
14269 (comint-history-isearch-setup, comint-history-isearch-end)
14270 (comint-goto-input, comint-history-isearch-search)
14271 (comint-history-isearch-message, comint-history-isearch-wrap)
14272 (comint-history-isearch-push-state)
14273 (comint-history-isearch-pop-state): New functions.
14275 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
14277 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
14279 (tramp-handle-make-symbolic-link)
14280 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
14282 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
14283 (tramp-handle-process-file): Use it.
14285 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
14287 * window.el (move-to-window-line-last-op): Remove.
14288 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
14290 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
14292 Make M-r mirror the new cycling behavior of C-l.
14293 * window.el (move-to-window-line-last-op): New var.
14294 (move-to-window-line-top-bottom): New command.
14295 (global-map): Bind M-r move-to-window-line-top-bottom.
14297 2009-11-23 Sven Joachim <svenjoac@gmx.de>
14299 * dired-x.el (dired-guess-shell-alist-default):
14300 Support xz format. (Bug#4953)
14302 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
14304 * emulation/viper-cmd.el: Use viper-last-command-char instead of
14305 last-command-char/last-command-event.
14306 (viper-prefix-arg-value): Do correct conversion of event-char for
14309 * emulation/viper-util.el, emulation/viper.el:
14310 Use viper-last-command-char instead of
14311 last-command-char/last-command-event.
14313 * ediff-init.el, ediff-mult.el, ediff-util.el:
14314 Replace last-command-char and last-command-event
14315 with (ediff-last-command-char) everywhere.
14317 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
14318 created in fundamental mode.
14320 * ediff.el (ediff-version): Revert the change of interactive-p to
14321 called-interactively-p.
14323 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
14325 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
14326 generation from word-movement command names.
14328 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
14330 * cus-start.el (all): Add native condition for font-use-system-font.
14332 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
14334 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
14335 Correct the patch from 2009-11-18. (Bug#3910)
14337 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
14339 * progmodes/subword.el: Rename from lisp/subword.el.
14341 * subword.el: Rename to progmodes/subword.el.
14343 * Makefile.in (ELCFILES): Adapt to subword.el move.
14345 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14346 Stefan Monnier <monnier@iro.umontreal.ca>
14348 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
14349 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
14350 (bookmark-bmenu-show-filenames): Use push.
14351 (bookmark-bmenu-hide-filenames): Use local var instead of
14352 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
14353 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
14354 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
14355 filenames now that the bookmark names are always available.
14357 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
14359 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
14360 (bookmark-search-pattern): Move and leave unbound.
14361 (bookmark-bmenu-mode-map): Change binding.
14362 (bookmark-read-search-input): Simplify.
14363 Don't use text-char-description. Don't error on non-char events.
14364 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
14365 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
14366 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
14367 Use a local var for the timer.
14368 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
14369 (i.e. bookmark-bmenu-search).
14371 2009-11-21 Glenn Morris <rgm@gnu.org>
14373 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
14375 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
14377 * net/browse-url.el (browse-url-default-windows-browser):
14378 Use cygstart for cygwin.
14380 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
14382 * bookmark.el: Formatting and doc fixes only:
14383 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
14384 (bookmark-bmenu-search): Wrap to fit within 80 columns.
14385 Minor grammar and punctuation fixes in doc string.
14386 (bookmark-read-search-input): Adjust to fit within 80 columns.
14388 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
14390 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
14391 (c-backward-into-nomenclature): Adapt to subword renaming.
14393 * subword.el (subword-forward, subword-backward, subword-mark)
14394 (subword-kill, subword-backward-kill, subword-transpose)
14395 (subword-downcase, subword-upcase, subword-capitalize)
14396 (subword-forward-internal, subword-backward-internal):
14397 Rename from forward-subword, backward-subword, mark-subword,
14398 kill-subword, backward-kill-subword, transpose-subwords,
14399 downcase-subword, upcase-subword, capitalize-subword,
14400 forward-subword-internal, backward-subword-internal.
14402 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14404 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
14406 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
14408 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
14409 (bookmark-bmenu-filter-alist-by-regexp)
14410 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
14411 (bookmark-bmenu-search): New command.
14412 (bookmark-bmenu-mode-map): Bind it.
14414 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
14416 * progmodes/cc-cmds.el: declare-functioned forward-subword and
14417 backward-subword to quit the byte-compiler.
14419 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
14421 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
14423 * progmodes/cc-cmds.el (c-update-modeline)
14424 (c-forward-into-nomenclature, c-backward-into-nomenclature):
14425 Refer to subword.el functions instead of cc-subword.el.
14427 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
14428 subword.el functions instead of cc-subword.el.
14430 * progmodes/cc-subword.el: Rename to subword.el.
14431 * subword.el: Rename from progmodes/cc-subword.el.
14432 (subword-mode-map): Rename from c-subword-mode-map.
14433 (subword-mode): Rename from c-subword-mode.
14434 (global-subword-mode): New global minor mode.
14435 (forward-subword): Rename from c-forward-subword.
14436 (backward-subword): Rename from c-backward-subword.
14437 (mark-subword): Rename from c-mark-subword.
14438 (kill-subword): Rename from c-kill-subword.
14439 (backward-kill-subword): Rename from c-backward-kill-subword.
14440 (transpose-subwords): Rename from c-tranpose-subword.
14441 (downcase-subword): Rename from c-downcase-subword.
14442 (capitalize-subword): Rename from c-capitalize-subword.
14443 (forward-subword-internal): Rename from c-forward-subword-internal.
14444 (backward-subword-internal): Rename from c-backward-subword-internal.
14446 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
14448 * vc.el (vc-deduce-fileset): Allow non-state changing operations
14449 from a dired buffer.
14450 (vc-dired-deduce-fileset): New function.
14451 (vc-root-diff, vc-print-root-log): Use it.
14453 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
14454 nil LIMIT argument to vc-print-log-internal.
14456 2009-11-20 Glenn Morris <rgm@gnu.org>
14458 * Makefile.in (ELCFILES): Regenerate.
14460 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
14462 * calc/calc.el (calc-set-mode-line):
14463 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
14464 (math-format-number): Rename `math-format-complement-signed' to
14465 `math-format-twos-complement'.
14467 * calc/calc-bin.el (math-format-twos-complement): Rename from
14468 math-format-complement-signed.
14469 (calc-radix): Rename `calc-complement-signed-mode' to
14470 `calc-twos-complement-mode'.
14471 (calc-octal-radix, calc-hex-radix): Add an argument for
14474 * calc/calc-embed.el (calc-embedded-mode-vars):
14475 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
14477 * calc/calc-ext.el (calc-init-extensions):
14478 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
14479 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
14481 * calc/calc-units.el (math-build-units-table-buffer):
14482 Let `calc-twos-complement-mode' be nil.
14484 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
14487 * calc/calc-vec.el (calcFunc-vunpack):
14488 * calc/calc-aent.el (calc-do-calc-eval):
14489 * calc/calc-forms.el (math-format-date):
14490 * calc/calc-graph.el (calc-graph-plot):
14491 * calc/calc-math.el (math-use-emacs-fn):
14492 * calc/calccomp.el (math-compose-expr):
14493 Let `calc-twos-complement-mode' be nil.
14495 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
14497 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
14498 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
14499 * minibuffer.el (completion-in-region-functions): New hook.
14500 (completion-in-region): New function.
14501 * emacs-lisp/lisp.el (lisp-complete-symbol):
14502 * pcomplete.el (pcomplete-std-complete): Use it.
14504 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
14506 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
14507 (latex-complete-alist): New vars.
14508 (latex-string-prefix-p, latex-complete-bibtex-keys)
14509 (latex-complete-envnames, latex-complete-refkeys)
14510 (latex-complete-data): New functions.
14511 (latex-complete, latex-indent-or-complete): New commands.
14513 * window.el (display-buffer-mark-dedicated): New var.
14514 (display-buffer): Obey it.
14515 * minibuffer.el (minibuffer-completion-help): Use it.
14517 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
14519 * filecache.el (file-cache-add-file): Use push and cons.
14520 (file-cache-delete-file-regexp): Use push.
14521 (file-cache-complete): Use completion-in-region.
14523 * simple.el (with-wrapper-hook): Fix thinko.
14525 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
14526 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
14527 Use with-current-buffer and string-to-number.
14528 (hfy-fallback-colour-values): Use assoc-string.
14529 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
14530 (hfy-face-at): Remove unused var `found-face'.
14531 (hfy-compile-stylesheet): Remove unused var `css'.
14532 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
14534 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
14535 Use with-current-buffer.
14536 (hfy-text-p): Use expand-file-name and fewer setq.
14538 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
14540 * htmlfontify.el, hfy-cmap.el: New files.
14542 2009-11-19 Juri Linkov <juri@jurta.org>
14544 * minibuffer.el (completions-format): New defcustom.
14545 (completion--insert-strings): Implement vertical format.
14547 * simple.el (switch-to-completions): Move point to the first
14548 completion when point was at the beginning of the buffer.
14550 2009-11-19 Juri Linkov <juri@jurta.org>
14552 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
14554 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
14556 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
14558 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
14559 (mail-signature): Change default to t.
14560 (mail-from-style): Deprecate `system-default' value.
14561 (mail-insert-from-field): For default value of mail-from-style,
14562 default to `angles' unless `angles' needs quoting and `parens'
14564 (mail-citation-prefix-regexp): Use citation regexp from
14567 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
14569 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
14570 Set variables for computing the prompt for reading password.
14572 2009-11-19 Glenn Morris <rgm@gnu.org>
14574 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
14576 * textmodes/flyspell.el (sgml-lexical-context): Declare.
14578 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
14579 (newsticker-treeview-listwindow-height): Fix custom type.
14581 2009-11-19 Kenichi Handa <handa@m17n.org>
14583 * descr-text.el (describe-char-padded-string): Compose with TAB
14584 only if there's a font for CH.
14585 (describe-char): Fix the condition for detecting a trivial composition.
14587 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
14589 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
14590 more accurate version of the regexp. (Bug#3910)
14592 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
14594 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
14596 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
14598 * font-setting.el (font-use-system-font): Declare for byte-compiler.
14599 (font-setting-change-default-font): Fix typo in docstring.
14601 2009-11-18 Alan Mackenzie <acm@muc.de>
14603 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
14605 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
14607 * font-setting.el (font-use-system-font): Move ...
14609 * cus-start.el (all): ... to here.
14611 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
14613 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
14614 Don't set `ad-return-value' if `ad-do-it' doesn't.
14616 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
14619 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
14621 * menu-bar.el: Put "Use system font" in Option-menu.
14622 (menu-bar-options-save): Add font-use-system-font.
14624 * loadup.el: If feature system-font-setting or font-render-setting is
14625 there, load font-setting.
14627 * Makefile.in (ELCFILES): Add font-settings.el.
14628 * font-setting.el: New file.
14630 2009-11-17 Glenn Morris <rgm@gnu.org>
14632 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
14634 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
14635 Preserve point in the list buffer. (Bug#4939)
14637 (newsticker--treeview-list-update-highlight)
14638 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
14640 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14642 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
14645 * calc/calc-ext.el (calc-init-extensions): Remove references to
14648 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
14650 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
14651 * calc/calc-help.el (calc-b-prefix-help): Remove references to
14654 2009-11-16 Kevin Ryde <user42@zip.com.au>
14656 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
14657 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
14659 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
14660 (lm-keywords-list): Allow comma-only separator like "foo,bar".
14661 Ignore trailing spaces by omit-nulls to split-string (fixing
14662 regression from Emacs 21 due to the incompatible split-string
14663 change). (Bug #4928.)
14665 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
14667 * vc.el (vc-log-show-limit): Default to 2000.
14668 (vc-print-log-internal): Insert buttons to request more entries
14669 when limiting the output.
14671 * vc-sccs.el (vc-sccs-print-log):
14672 * vc-rcs.el (vc-rcs-print-log):
14673 * vc-cvs.el (vc-cvs-print-log):
14674 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
14677 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
14679 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
14680 error when `tramp-gvfs-dbus-event-vector' is set.
14681 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
14683 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
14685 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
14687 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
14689 * net/dbus.el (dbus-unregister-service): New defun.
14690 (dbus-register-property): Register the handlers of
14691 "org.freedesktop.DBus.Properties" for SERVICE.
14692 (dbus-property-handler): Fix docstring.
14694 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14696 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
14697 Quote doc string reference in defvaralias as it is not in special form.
14698 (byte-compile-output-docform): Doc fix.
14700 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14702 * calc/calc.el (math-2-word-size, math-half-2-word-size)
14703 (calc-complement-signed-mode): New variables.
14704 (calc-set-mode-line): Add indicator for twos-complements.
14705 (math-format-number): Format twos-complement notation.
14707 * calc/calc-bin.el (calc-word-size): Reset the variables
14708 `math-2-word-size' and `math-half-2-word-size'.
14709 (math-format-complement-signed, math-symclip, calcFunc-symclip)
14710 (calc-symclip): New functions.
14712 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
14714 * calc/calc-embed.el (calc-embedded-mode-vars):
14715 Add `calc-complement-signed-mode' to the list of modes.
14717 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
14718 (calc-b-oper-keys): Add `calc-symclip' to list.
14720 * calc/calc-ext.el (math-read-number-fancy): Read complement
14722 (calc-init-extensions): Add binding for `calc-symclip'.
14723 Add autoload for `calcFunc-symclip' and `calc-symclip'.
14725 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
14727 (calc-modes-menu): Add item for twos complement mode.
14729 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
14731 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
14733 * register.el (jump-to-register, insert-register): Handle Semantic
14734 tags. From commented-out advice in semantic/senator.el.
14736 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
14738 * vc.el (vc-log-show-limit): New variable.
14739 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
14740 when using a prefix argument.
14741 (vc-print-log-internal): Add new argument LIMIT.
14743 * vc-svn.el (vc-svn-print-log):
14744 * vc-mtn.el (vc-mtn-print-log):
14745 * vc-hg.el (vc-hg-print-log):
14746 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
14747 pass it to the log command when set. Make the BUFFER argument
14750 * vc-sccs.el (vc-sccs-print-log):
14751 * vc-rcs.el (vc-rcs-print-log):
14752 * vc-git.el (vc-git-print-log):
14753 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
14754 ignore it. Make the BUFFER argument non-optional
14756 * bindings.el (mode-line-buffer-identification): Do not purecopy.
14758 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
14760 * dired.el (dired-mode-map): Move encryption items to "Operate"
14763 * strokes.el (strokes-update-window-configuration): Make strokes
14764 buffer current before erasing (Bug#4906).
14766 2009-11-15 Juri Linkov <juri@jurta.org>
14768 * simple.el (set-mark-default-inactive): Add :type, :group
14769 and :version. (Bug#4876)
14771 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
14773 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
14774 (archive-unique-fname): ... here. (Bug#4929)
14776 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
14778 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
14781 * novice.el (disabled-command-function): Add useful args.
14782 Setup the help buffer so that [back] works.
14783 Remove redundant call to help-mode.
14784 (disabled-command-function): Use `case'.
14785 (en/disable-command): New function extracted from enable-command.
14786 (enable-command, disable-command): Use it.
14788 2009-11-14 Glenn Morris <rgm@gnu.org>
14790 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
14791 constants. (Bug#4913)
14793 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
14795 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
14797 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
14798 defined in C that have no doc-strings. (Bug#1063)
14800 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
14802 * cus-edit.el (data, files):
14803 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
14805 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
14807 * simple.el (shell-command): Doc fix (Bug#4891).
14809 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
14811 2009-11-14 Glenn Morris <rgm@gnu.org>
14813 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
14814 statements for vc-diff, emerge-quit, and rmail-cease-edit.
14815 If they are already loaded, eval-after-load will do the right thing.
14817 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
14820 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
14822 * simple.el (x-selection-owner-p): Declare.
14823 (read-mail-command): Use custom radio type rather than choice.
14824 (completion-no-auto-exit): Doc fix.
14826 * custom.el (defgroup):
14827 * epg-config.el (epg): Doc fixes.
14829 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
14831 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
14832 * international/ccl.el (define-ccl-program): Do not purecopy the
14833 docstring, defconst does it anyway.
14835 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
14837 * add-log.el (add-change-log-entry): Avoid displaying the changelog
14840 * x-dnd.el (x-dnd-maybe-call-test-function):
14841 * window.el (split-window-vertically):
14842 * whitespace.el (whitespace-help-on):
14843 * vc-rcs.el (vc-rcs-consult-headers):
14844 * userlock.el (ask-user-about-lock-help)
14845 (ask-user-about-supersession-help):
14846 * type-break.el (type-break-force-mode-line-update):
14847 * time-stamp.el (time-stamp-conv-warn):
14848 * terminal.el (te-set-output-log, te-more-break, te-filter)
14849 (te-sentinel, terminal-emulator):
14850 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
14851 (term-write-input-ring, term-check-source, term-start-output-log):
14852 (term-display-buffer-line, term-dynamic-list-completions):
14853 (term-ansi-make-term, serial-term):
14854 * subr.el (selective-display):
14855 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
14856 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
14857 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
14858 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
14859 (speedbar-remove-localized-speedbar-support)
14860 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
14861 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
14862 (speedbar-buffers-line-directory):
14863 * simple.el (shell-command-on-region, append-to-buffer)
14864 (prepend-to-buffer):
14865 * shadowfile.el (shadow-save-todo-file):
14866 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
14867 (scroll-bar-maybe-set-window-start):
14868 * sb-image.el (speedbar-image-dump):
14869 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
14870 (load-save-place-alist-from-file):
14871 * ps-samp.el (ps-print-message-from-summary):
14872 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
14873 (ps-background-image, ps-begin-job, ps-do-despool):
14874 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
14875 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
14876 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
14877 (pr-call-process, pr-file-list, pr-interface-save):
14878 * novice.el (disabled-command-function)
14879 (enable-command, disable-command):
14880 * mouse.el (mouse-buffer-menu-alist):
14881 * mouse-copy.el (mouse-kill-preserving-secondary):
14882 * macros.el (kbd-macro-query):
14883 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
14884 * informat.el (batch-info-validate):
14885 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
14886 * hippie-exp.el (try-expand-dabbrev-visible):
14887 * help-mode.el (help-make-xrefs):
14888 * help-fns.el (describe-variable):
14889 * generic-x.el (bat-generic-mode-run-as-comint):
14890 * finder.el (finder-mouse-select):
14891 * find-dired.el (find-dired-sentinel):
14892 * filesets.el (filesets-file-close):
14893 * files.el (list-directory):
14894 * faces.el (list-faces-display, describe-face):
14895 * facemenu.el (list-colors-display):
14896 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
14897 * epg.el (epg--process-filter, epg-cancel):
14898 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
14899 (epa--read-signature-type):
14900 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
14901 (emerge-file-names):
14902 * ehelp.el (electric-helpify):
14903 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
14904 * ediff-vers.el (rcs-ediff-view-revision):
14905 * ediff-util.el (ediff-setup):
14906 * ediff-mult.el (ediff-append-custom-diff):
14907 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
14909 * echistory.el (Electric-command-history-redo-expression):
14910 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
14911 * disp-table.el (describe-display-table):
14912 * dired.el (dired-find-buffer-nocreate):
14913 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
14914 * dabbrev.el (dabbrev--same-major-mode-p):
14915 * chistory.el (list-command-history):
14916 * apropos.el (apropos-documentation):
14917 * allout.el (allout-obtain-passphrase):
14918 (allout-copy-exposed-to-buffer):
14919 (allout-verify-passphrase): Use with-current-buffer.
14921 2009-11-13 Glenn Morris <rgm@gnu.org>
14923 * Makefile.in (ELCFILES): Regenerate.
14925 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
14927 * net/dbus.el (dbus-registered-objects-table): Rename from
14928 `dbus-registered-functions-table', because it contains also properties.
14929 (dbus-unregister-object): Unregister also properties.
14930 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
14931 Use a timeout of 500 msec, in order to not block.
14932 (dbus-register-property, dbus-property-handler): New defuns.
14934 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
14936 * simple.el (minibuffer-default-add-completions): Drop deprecated
14939 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
14941 * textmodes/artist.el (artist-mouse-choose-operation):
14942 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
14943 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
14944 (artist-compute-up-event-key): New function.
14945 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
14947 2009-11-13 Kenichi Handa <handa@m17n.org>
14949 * language/japan-util.el: Make sure that the value of jisx0208
14950 property is jisx0208 character.
14952 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
14954 * international/mule.el (auto-coding-regexp-alist): Only purecopy
14955 car or each item, not the whole list.
14957 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
14959 * minibuffer.el (minibuffer-completion-help):
14960 Use minibuffer-hide-completions.
14962 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
14964 * dired.el (dired-save-positions, dired-restore-positions): New funs.
14965 (dired-revert): Use them (bug#4880).
14967 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14969 * tooltip.el (tooltip-frame-parameters): Undo previous change.
14971 2009-11-12 Juri Linkov <juri@jurta.org>
14973 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
14975 (find-file-literally-at-point): Alias of `ffap-literally'.
14977 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14979 * textmodes/ispell.el (ispell-skip-region-alist):
14980 * textmodes/css-mode.el (auto-mode-alist):
14981 * progmodes/compile.el (auto-mode-alist):
14982 * international/mule.el (ctext-non-standard-encodings-alist)
14983 (ctext-non-standard-encodings-regexp):
14984 * simple.el (shell-command-switch, text-read-only):
14985 * replace.el (occur-mode-map):
14986 * paths.el (rmail-file-name):
14987 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
14988 * find-file.el (ff-special-constructs):
14989 * files.el (file-name-handler-alist):
14990 * composite.el: Purecopy strings.
14992 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
14994 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
14996 * widget.el (define-widget): Purecopy the docstring.
14997 * international/mule-cmds.el (charset): Do not purecopy the
14998 docstring here, define-widget does it.
15000 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
15001 * textmodes/bibtex-style.el (auto-mode-alist):
15002 * progmodes/inf-lisp.el (inferior-lisp-prompt):
15003 * progmodes/compile.el (compile-command):
15004 * language/korea-util.el (default-korean-keyboard):
15005 * international/mule-conf.el (file-coding-system-alist):
15006 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
15007 * tooltip.el (tooltip-frame-parameters):
15008 * newcomment.el (comment-end, comment-padding):
15009 * dired.el (dired-trivial-filenames):
15010 * comint.el (comint-file-name-prefix): Purecopy initial values.
15012 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
15014 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
15015 (tramp-advice-minibuffer-electric-tilde): Unload advices via
15017 (tramp-advice-make-auto-save-file-name)
15018 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
15019 after removing the advice.
15021 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
15023 * progmodes/grep.el (grep-regexp-alist):
15024 * international/mule-cmds.el (iso-2022-control-alist):
15025 * emacs-lisp/timer.el (timer-duration-words):
15026 * subr.el (version-separator, version-regexp-alist):
15027 * minibuffer.el (completion-styles-alist):
15028 * faces.el (face-attribute-name-alist, list-faces-sample-text):
15029 Change defvars to defconsts.
15031 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
15032 * loadup.el ("international/mule-conf"): Load the byte compiled version.
15033 * international/mule-conf.el: Allow to be byte compiled.
15035 * international/mule.el (define-charset): Purecopy props.
15036 (load-with-code-conversion): Purecopy doc string and file name.
15037 (put-charset-property): Purecopy strings.
15038 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
15040 * international/mule-cmds.el (register-input-method): Purecopy arguments.
15041 (define-char-code-property): Correctly purecopy the table.
15043 * international/ccl.el (define-ccl-program): Purecopy the docstring.
15045 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
15047 * subr.el (add-hook): Purecopy strings.
15048 (eval-after-load): Purecopy load-history-regexp and the form.
15050 * custom.el (custom-declare-group): Purecopy load-file-name.
15052 * subr.el (menu-bar-separator): New defconst.
15053 * net/eudc.el (eudc-tools-menu):
15054 * international/mule-cmds.el (set-coding-system-map)
15055 (mule-menu-keymap):
15056 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
15057 * vc-hooks.el (vc-menu-map):
15058 * replace.el (occur-mode-map):
15059 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
15060 (menu-bar-edit-menu, menu-bar-goto-menu)
15061 (menu-bar-custom-menu, menu-bar-showhide-menu)
15062 (menu-bar-options-menu, menu-bar-tools-menu)
15063 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
15064 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
15065 (menu-bar-help-menu):
15066 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
15067 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
15069 * term/x-win.el (x-gtk-stock-map):
15070 * progmodes/vera-mode.el (auto-mode-alist):
15071 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
15072 (inferior-lisp-program, inferior-lisp-load-command):
15073 * progmodes/hideshow.el (hs-special-modes-alist):
15074 * progmodes/gud.el (same-window-regexps):
15075 * progmodes/grep.el (grep-program, find-program, xargs-program):
15076 * net/telnet.el (same-window-regexps):
15077 * net/rlogin.el (same-window-regexps):
15078 * language/ethiopic.el (font-ccl-encoder-alist):
15079 * vc-sccs.el (vc-sccs-master-templates):
15080 * vc-rcs.el (vc-rcs-master-templates):
15081 * subr.el (cl-assertion-failed):
15082 * simple.el (next-error-overlay-arrow-position):
15083 * lpr.el (lpr-command):
15084 * locate.el (locate-ls-subdir-switches):
15085 * info.el (same-window-regexps, info)
15086 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
15087 * image-mode.el (image-mode, auto-mode-alist):
15088 * hippie-exp.el (hippie-expand-ignore-buffers):
15089 * format.el (format-alist):
15090 * find-dired.el (find-ls-subdir-switches, find-grep-options)
15092 * facemenu.el (facemenu-keybindings):
15093 * dired.el (dired-listing-switches, dired-chown-program):
15094 * diff.el (diff-switches, diff-command):
15095 * cus-edit.el (same-window-regexps):
15096 * bindings.el (mode-line-mule-info)
15097 (mode-line-buffer-identification): Purecopy strings.
15099 2009-11-11 Juri Linkov <juri@jurta.org>
15101 * simple.el (dired-get-filename) <declare-function>:
15102 Tell the byte-compiler about dired-get-filename.
15103 (shell-command): In Dired mode, get filename from the current line
15104 as the default value.
15106 2009-11-10 Glenn Morris <rgm@gnu.org>
15108 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
15109 * calendar/holidays.el, progmodes/cperl-mode.el:
15110 Update x-popup-menu declarations.
15112 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
15113 (list-load-path-shadows): Use dolist.
15114 (list-load-path-shadows): Use with-current-buffer.
15116 2009-11-10 Juri Linkov <juri@jurta.org>
15118 * minibuffer.el (read-file-name): Support a list of default values
15119 in `default-filename'. Use the first file name where only one
15120 element is required. Doc fix.
15122 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
15124 * net/dbus.el (dbus-unregister-object): Release service, if no
15125 other method is registered for it.
15127 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
15129 * bookmark.el (bookmark-completing-read): Sort bookmark names if
15130 bookmark-sort-flag is non-nil (Bug#4653).
15132 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
15134 * emulation/cua-base.el: Add CUA property to some CC mode commands
15137 2009-11-08 Kevin Ryde <user42@zip.com.au>
15139 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
15140 at end of sentence (Bug#4818).
15142 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
15144 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15145 Handle "see declaration of" MSFT statements (Bug#4100).
15147 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
15149 * net/tramp.el (tramp-advice-make-auto-save-file-name)
15150 (tramp-advice-file-expand-wildcards): Unload via
15151 `ad-remove-advice'.
15153 * net/trampver.el: Update release number.
15155 2009-11-08 Kevin Ryde <user42@zip.com.au>
15157 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
15160 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
15162 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
15163 in order to keep context in SELinux.
15165 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
15167 * dired-aux.el (dired-query): Place cursor in echo area and allow
15170 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
15171 menu item if not on a directory (Bug#4701).
15173 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
15175 Sync with Tramp 2.1.17.
15177 * net/tramp.el (tramp-handle-copy-directory): Don't use
15178 `file-remote-p' (due to compatibility).
15180 * net/tramp-compat.el (tramp-compat-copy-directory)
15181 (tramp-compat-delete-directory): New defuns.
15183 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
15184 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
15185 Use `tramp-compat-delete-directory'.
15187 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
15188 (tramp-smb-handle-delete-directory):
15189 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
15191 * net/trampver.el: Update release number.
15193 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
15195 * tar-mode.el (tar-copy): Call write-region on the right buffer
15198 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
15199 by hand, if necessary (Bug#4878).
15201 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
15203 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
15204 align size column (Bug#4839).
15206 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
15209 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
15211 * progmodes/ld-script.el (auto-mode-alist):
15212 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
15214 * cus-face.el (custom-declare-face): Purecopy face spec.
15216 2009-11-06 Kenichi Handa <handa@m17n.org>
15218 * international/uni-bidi.el: Re-generated.
15219 * international/uni-category.el: Re-generated.
15220 * international/uni-combining.el: Re-generated.
15221 * international/uni-mirrored.el: Re-generated.
15223 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
15225 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
15226 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
15227 (tex-start-options, slitex-run-command, latex-run-command)
15228 (tex-run-command, tex-directory):
15229 * textmodes/ispell.el (ispell-html-skip-alists)
15230 (ispell-tex-skip-alists, ispell-tex-skip-alists):
15231 * textmodes/fill.el (adaptive-fill-first-line-regexp):
15232 (adaptive-fill-regexp):
15233 * textmodes/dns-mode.el (auto-mode-alist):
15234 * progmodes/python.el (interpreter-mode-alist):
15235 * progmodes/etags.el (tags-compression-info-list):
15236 * progmodes/etags.el (tags-file-name):
15237 * net/browse-url.el (browse-url-galeon-program)
15238 (browse-url-firefox-program):
15239 * mail/sendmail.el (mail-signature-file)
15240 (mail-citation-prefix-regexp):
15241 * international/mule-conf.el (eight-bit):
15242 * international/latexenc.el (latex-inputenc-coding-alist):
15243 * international/fontset.el (x-pixel-size-width-font-regexp):
15244 * emacs-lisp/warnings.el (warning-type-format):
15245 * emacs-lisp/trace.el (trace-buffer):
15246 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
15247 (emacs-lisp-mode-map):
15248 * calendar/holidays.el (holiday-solar-holidays)
15249 (holiday-bahai-holidays, holiday-islamic-holidays)
15250 (holiday-christian-holidays, holiday-hebrew-holidays)
15251 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
15252 (hebrew-holidays-1, holiday-oriental-holidays)
15253 (holiday-general-holidays):
15254 * x-dnd.el (x-dnd-known-types):
15255 * tool-bar.el (tool-bar):
15256 * startup.el (site-run-file):
15257 * shell.el (shell-dumb-shell-regexp):
15258 * rfn-eshadow.el (file-name-shadow-tty-properties)
15259 (file-name-shadow-properties):
15260 * paths.el (remote-shell-program, news-directory):
15261 * mouse.el ([C-down-mouse-3]):
15262 * menu-bar.el (menu-bar-tools-menu):
15263 * jka-cmpr-hook.el (jka-compr-load-suffixes)
15264 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
15265 (jka-compr-compression-info-list):
15266 * isearch.el (search-whitespace-regexp):
15267 * image-file.el (image-file-name-extensions):
15268 * find-dired.el (find-ls-option):
15269 * files.el (directory-listing-before-filename-regexp)
15270 (directory-free-space-args, insert-directory-program)
15271 (list-directory-brief-switches, magic-fallback-mode-alist)
15272 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
15273 (automount-dir-prefix):
15274 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
15275 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
15276 (face-font-registry-alternatives, face-font-registry-alternatives)
15277 (face-font-family-alternatives):
15278 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
15279 (facemenu-foreground-menu, facemenu-face-menu):
15280 * epa-hook.el (epa-file-name-regexp):
15281 * dnd.el (dnd-protocol-alist):
15282 * textmodes/rst.el (auto-mode-alist):
15283 * button.el (default-button): Purecopy strings.
15285 2009-11-06 Glenn Morris <rgm@gnu.org>
15287 * Makefile.in (ELCFILES): Update.
15289 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
15291 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
15292 * emacs-lisp/levents.el: Move to obsolete/levents.el.
15294 * nxml/xsd-regexp.el (xsdre-gen-categories):
15295 * nxml/xmltok.el (xmltok-parse-entity):
15296 * nxml/rng-parse.el (rng-parse-validate-file):
15297 * nxml/rng-maint.el (rng-format-manual)
15298 (rng-manual-output-force-new-line):
15299 * nxml/rng-loc.el (rng-save-schema-location-1):
15300 * nxml/rng-cmpct.el (rng-c-parse-file):
15301 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
15302 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
15304 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
15306 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
15307 Remove extra save-excursions and make-variable-buffer-local's.
15308 Suggested by Stefan Monnier.
15310 (verilog-getopt-file, verilog-module-inside-filename-p)
15311 (verilog-set-define): Merge GNU 1.35 and repair changes from
15312 switching to using with-current-buffer.
15314 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
15315 being treated as a number and confusing AUTORESET.
15316 Reported by Dan Dever.
15318 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
15319 Add verilog-auto-ignore-concat to fix backward compatibility with
15320 older verilog-modes. Reported by Dan Katz.
15322 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
15323 containing closing anchors "...$".
15325 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
15326 Reported by Wade Smith.
15328 (verilog-batch-execute-func): Comment on function usage.
15330 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
15332 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
15335 (verilog-label-re, verilog-calc-1): Support proper indent of named
15338 (verilog-backward-token, verilog-basic-complete-re)
15339 (verilog-beg-of-statement, verilog-indent-re): Support proper
15340 indent of the assert statement at the beginning of a block of text.
15342 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
15343 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
15346 2009-11-05 Glenn Morris <rgm@gnu.org>
15348 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
15349 Emacs 19. (Bug#1531)
15350 (byte-compile-fix-header): Update for the above change.
15351 Drop test for epoch::version.
15353 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
15354 * cus-dep.el (custom-make-dependencies):
15355 * finder.el (finder-compile-keywords):
15356 Use autoload-rubric's feature argument.
15358 * calendar/diary-lib.el (top-level): Make load behave more like require.
15360 * vc-git.el (vc-git-stash-map): Move definition before use.
15362 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
15364 * custom.el (custom-declare-group): Purecopy standard-value.
15365 (custom-declare-group): Purecopy custom-prefix.
15367 * international/mule.el (load-with-code-conversion):
15368 Call do-after-load-evaluation unconditionally.
15370 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
15372 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
15374 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
15376 2009-11-04 Glenn Morris <rgm@gnu.org>
15378 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
15379 (byte-compile-compatibility): Remove option.
15380 (byte-compile-close-variables, byte-compile-fix-header)
15381 (byte-compile-insert-header, byte-compile-output-docform)
15382 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
15383 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
15384 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
15385 (byte-compile-insert, byte-compile-defun):
15386 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
15387 (byte-defop-compiler19): Remove.
15388 Without byte-compile-compatibility, the 'emacs19-opcode property is not
15389 used by anything. Replace all calls with byte-defop-compiler.
15391 2009-11-04 Juri Linkov <juri@jurta.org>
15393 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
15394 (menu-bar-options-menu): Don't quote the `prop' arg of
15395 `menu-bar-make-mm-toggle'.
15397 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
15399 * calendar/calendar.el (cal-loaddefs):
15400 * calendar/diary-lib.el (diary-loaddefs):
15401 * calendar/holidays.el (hol-loaddefs):
15402 * eshell/esh-module.el (esh-groups): Load rather than require.
15404 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
15406 * calendar/todo-mode.el (todo-add-category): Don't hardcode
15408 (todo-top-priorities): Only display-buffer when called interactively.
15409 (todo-item-start): Don't save excursion point.
15410 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
15411 (todo-insert-item-here, todo-file-item, todo-remove-item):
15412 Adjust uses of todo-item-start and todo-item-end.
15414 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
15415 (autoload-rubric): Don't use any more.
15417 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
15418 and only put a prop if it is non-nil.
15420 2009-11-03 Juri Linkov <juri@jurta.org>
15422 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
15423 (menu-bar-options-menu): Fix list quoting (Bug#4429).
15425 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
15426 and "Menu" to make top-level menu item visually one unit (like
15427 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
15428 multi-word menu items). Fix :help string for quit-window.
15430 2009-11-03 Glenn Morris <rgm@gnu.org>
15432 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
15433 (byte-compile-file-form-define-abbrev-table)
15434 (byte-compile-file-form-custom-declare-variable)
15435 (byte-compile-variable-ref, byte-compile-defvar):
15436 Whether or not a warning is enabled should only affect whether we issue
15437 the warning, not whether or not we collect the relevant data.
15438 Eg warnings can be turned on and off throughout the course of a file.
15440 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
15441 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
15443 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
15445 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
15446 * play/mpuz.el (mpuz-create-buffer):
15447 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
15448 (lm-print-y,s,noise, lm-print-w0, lm-init):
15449 * play/gomoku.el (gomoku-prompt-for-move):
15450 * play/fortune.el (fortune-in-buffer):
15451 * play/dissociate.el (dissociated-press):
15452 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
15453 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
15454 * mail/supercite.el (sc-eref-show):
15455 * mail/smtpmail.el (smtpmail-send-it):
15456 * mail/rmailsum.el (rmail-summary-next-labeled-message)
15457 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
15458 (rmail-summary-undelete-many, rmail-summary-rmail-update)
15459 (rmail-summary-goto-msg, rmail-summary-expunge)
15460 (rmail-summary-get-new-mail, rmail-summary-search-backward)
15461 (rmail-summary-add-label, rmail-summary-output-menu)
15462 (rmail-summary-output-body):
15463 * mail/rfc822.el (rfc822-addresses):
15464 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
15465 * mail/mailpost.el (post-mail-send-it):
15466 * mail/hashcash.el (hashcash-generate-payment):
15467 * mail/feedmail.el (feedmail-run-the-queue)
15468 (feedmail-queue-send-edit-prompt-help-first)
15469 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
15470 (feedmail-deduce-address-list):
15471 * eshell/esh-ext.el (eshell-remote-command):
15472 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
15473 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
15474 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
15475 (viper-save-string-in-file, viper-valid-marker):
15476 * emulation/viper-keym.el (viper-toggle-key):
15477 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
15478 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
15479 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
15480 * emulation/viper-cmd.el (viper-exec-form-in-vi)
15481 (viper-exec-form-in-emacs, viper-brac-function):
15482 * emulation/viper.el (viper-delocalize-var):
15483 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
15484 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
15485 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
15486 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
15487 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
15488 * emulation/edt.el (edt-electric-helpify):
15489 * emulation/cua-rect.el (cua--rectangle-aux-replace):
15490 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
15491 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
15492 (cua-indent-to-global-mark-column):
15493 * calendar/diary-lib.el (calendar-mark-1):
15494 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
15495 Use with-current-buffer.
15496 * emulation/viper.el (viper-delocalize-var): Use dolist.
15498 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
15500 * comint.el (comint-replace-by-expanded-history-before-point):
15501 Replace !! with the previous input string literally (Bug#1795).
15503 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
15505 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
15506 to be made up of whitespace.
15508 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
15510 * minibuffer.el (read-file-name): Don't use file dialogs for
15511 remote directories (Bug#99).
15513 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
15515 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
15517 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
15519 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
15520 instead of deleting the window or frame.
15522 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
15524 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
15525 Support face colors.
15527 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
15528 New function. Support face colors (Bug#1168).
15529 (tex-common-initialization): Use it.
15531 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
15532 mode allows it (Bug#1168).
15534 2009-10-31 Juri Linkov <juri@jurta.org>
15536 * facemenu.el (list-colors-display): Don't mark buffer as
15537 modified (Bug#3948).
15539 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
15541 * international/mule-diag.el (list-character-sets-1):
15542 Minor message fix (Bug#3526).
15544 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
15545 Fix face property (Bug#4834).
15546 (etags-list-tags, etags-tags-apropos-additional)
15547 (etags-tags-apropos, tags-select-tags-table): Add follow-link
15550 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
15553 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
15555 * textmodes/two-column.el (2C-split):
15556 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
15557 * textmodes/tex-mode.el (tex-set-buffer-directory):
15558 * textmodes/spell.el (spell-region, spell-string):
15559 * textmodes/reftex.el (reftex-erase-buffer):
15560 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
15561 * textmodes/reftex-toc.el (reftex-toc-promote-action):
15562 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
15563 (reftex-select-item):
15564 * textmodes/reftex-ref.el (reftex-label-info-update)
15565 (reftex-offer-label-menu):
15566 * textmodes/reftex-index.el (reftex-index-change-entry)
15567 (reftex-index-phrases-info):
15568 * textmodes/reftex-global.el (reftex-create-tags-file)
15569 (reftex-save-all-document-buffers, reftex-ensure-write-access):
15570 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
15571 (reftex-view-crossref-from-bibtex):
15572 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
15573 (reftex-extract-bib-entries-from-thebibliography)
15574 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
15575 * textmodes/refbib.el (r2b-capitalize-title):
15576 (r2b-convert-buffer, r2b-help):
15577 * textmodes/page-ext.el (pages-directory)
15578 (pages-directory-goto-with-mouse):
15579 * textmodes/bibtex.el (bibtex-validate-globally):
15580 * textmodes/bib-mode.el (bib-capitalize-title):
15581 * textmodes/artist.el (artist-clear-buffer, artist-system):
15582 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
15583 (local-set-scheme-interaction-buffer, xscheme-process-filter)
15584 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
15585 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
15586 (xscheme-send-control-g-interrupt, xscheme-start-process)
15587 (xscheme-process-sentinel, xscheme-cd):
15588 * progmodes/verilog-mode.el (verilog-read-always-signals)
15589 (verilog-set-define, verilog-getopt-file)
15590 (verilog-module-inside-filename-p):
15591 * progmodes/sh-script.el:
15592 * progmodes/python.el (python-pdbtrack-get-source-buffer)
15593 (python-pdbtrack-grub-for-buffer, python-execute-file):
15594 * progmodes/octave-inf.el (inferior-octave):
15595 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
15596 (idlwave-shell-compile-helper-routines, idlwave-set-local)
15597 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
15598 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
15599 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
15600 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
15601 (idlwave-shell-filter, idlwave-shell-examine-highlight)
15602 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
15603 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
15604 (idlwave-shell-examine-display, idlwave-shell-run-region)
15605 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
15606 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
15607 * progmodes/idlw-help.el (idlwave-help-get-special-help)
15608 (idlwave-help-get-help-buffer):
15609 * progmodes/gud.el (gud-basic-call, gud-find-class)
15610 (gud-tooltip-activate-mouse-motions-if-enabled):
15611 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
15612 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
15613 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
15614 (ebrowse-tags-next-file):
15615 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
15616 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
15617 (ebnf-eps-finish-and-write):
15618 * progmodes/cpp.el (cpp-edit-save):
15619 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
15620 * progmodes/cc-defs.el (c-emacs-features):
15621 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
15622 (antlr-directory-dependencies):
15623 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
15624 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
15625 (ada-find-any-references, ada-make-filename-from-adaname)
15626 (ada-make-body-gnatstub):
15627 * obsolete/rnews.el (news-list-news-groups):
15628 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
15629 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
15630 * net/rcirc.el (rcirc-debug):
15631 * net/newst-treeview.el (newsticker--treeview-list-add-item)
15632 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
15633 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
15634 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
15635 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
15636 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
15637 (newsticker--treeview-list-clear-highlight)
15638 (newsticker--treeview-list-update-highlight)
15639 (newsticker--treeview-list-highlight-start)
15640 (newsticker--treeview-tree-update-highlight)
15641 (newsticker--treeview-get-selected-item)
15642 (newsticker-treeview-mark-list-items-old)
15643 (newsticker--treeview-set-current-node):
15644 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
15645 * net/newst-backend.el (newsticker--get-news-by-funcall)
15646 (newsticker--get-news-by-wget, newsticker--image-get)
15647 (newsticker--image-sentinel):
15648 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
15649 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
15650 (eudc-ph-close-session):
15651 * net/eudc.el (eudc-save-options):
15652 * language/thai-word.el (thai-update-word-table):
15653 * language/japan-util.el (japanese-string-conversion):
15654 * international/titdic-cnv.el (tsang-quick-converter)
15655 (ziranma-converter, ctlau-converter):
15656 * international/mule-cmds.el (describe-language-environment):
15657 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
15658 (skkdic-convert-postfix, skkdic-convert-prefix):
15659 (skkdic-convert-okuri-nasi, skkdic-convert):
15660 * emacs-lisp/re-builder.el (reb-update-overlays):
15661 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
15662 * emacs-lisp/gulp.el (gulp-send-requests):
15663 * emacs-lisp/find-gc.el (trace-call-tree):
15664 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
15665 (eieio-describe-generic):
15666 * emacs-lisp/eieio-base.el (eieio-persistent-read):
15667 * emacs-lisp/edebug.el (edebug-outside-excursion):
15668 * emacs-lisp/debug.el (debugger-make-xrefs):
15669 * emacs-lisp/cust-print.el (custom-prin1-to-string):
15670 * emacs-lisp/chart.el (chart-new-buffer):
15671 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
15672 Use with-current-buffer.
15673 * textmodes/artist.el (artist-system): Don't call
15674 copy-sequence on a fresh string.
15675 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
15677 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
15679 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
15680 is no item to edit. (Bug#4820)
15681 (todo-top-priorities): Restore point and restore narrowing in Todo
15684 2009-10-31 Glenn Morris <rgm@gnu.org>
15686 * net/ange-ftp.el (top-level): Don't require dired when compiling.
15687 (comint-last-output-start, comint-last-input-start)
15688 (comint-last-input-end): Don't defvar when compiling.
15689 (ange-ftp-process-file): Use bound-and-true-p.
15691 * pcmpl-rpm.el (top-level): Move provide statement to end.
15692 (pcmpl-rpm): Remove unused custom group.
15694 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
15696 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
15698 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
15699 (byte-compile-warnings): Add `constants' as an option.
15700 (byte-compile-callargs-warn, byte-compile-arglist-warn)
15701 (display-call-tree): Update for byte-compile-fdefinition possibly
15702 returning `(macro lambda ...)'. (Bug#4778)
15703 (byte-compile-variable-ref, byte-compile-setq-default):
15704 Respect `constants' member of byte-compile-warnings.
15706 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
15708 * vc-bzr.el (vc-bzr-revision-keywords): New var.
15709 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
15712 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
15714 * textmodes/ispell.el (ispell-skip-region-alist):
15715 * international/mule-conf.el (eight-bit):
15716 * international/fontset.el (font-encoding-alist):
15717 * startup.el (pure-space-overflow-message):
15718 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
15719 * paths.el (gnus-nntp-service, rmail-spool-directory)
15720 (term-file-prefix):
15721 * files.el (save-some-buffers-action-alist):
15722 * cmuscheme.el (same-window-buffer-names):
15723 * ielm.el (same-window-buffer-names):
15724 * shell.el (same-window-buffer-names):
15725 * mail/sendmail.el (same-window-buffer-names):
15726 * progmodes/inf-lisp.el (same-window-buffer-names):
15727 * bindings.el (mode-line-client)
15728 (mode-line-column-line-number-mode-map):
15729 * language/tibetan.el (tibetan-precomposition-rule-regexp)
15730 (tibetan-precomposed-regexp): Purecopy string arguments.
15732 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15734 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
15735 (calcDigit-nondigit):
15736 * calc/calc-yank.el (calc-copy-to-buffer):
15737 * calc/calc-units.el (calc-invalidate-units-table):
15738 * calc/calc-trail.el (calc-trail-yank):
15739 * calc/calc-store.el (calc-insert-variables):
15740 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
15741 * calc/calc-prog.el (calc-read-parse-table):
15742 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
15743 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
15744 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
15745 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
15746 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
15747 (calc-graph-name, calc-graph-find-command, calc-graph-view)
15748 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
15749 * calc/calc-ext.el (calc-realign):
15750 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
15751 (calc-embedded-finish-edit, calc-embedded-make-info)
15752 (calc-embedded-finish-command, calc-embedded-stack-change):
15753 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
15755 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
15756 shell-dynamic-complete-filename in preference to
15757 comint-dynamic-complete-filename.
15759 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
15760 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
15761 Don't consider whether the display supports colors.
15762 (bookmark-import-new-list): Use dolist.
15763 (bookmark-bmenu-mode-map): Move initialization into declaration.
15764 (bookmark-bmenu-list): Use dolist, simplify.
15765 (bookmark-show-all-annotations): Use save-selected-window and dolist.
15766 (menu-bar-final-items): Use push.
15768 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
15770 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
15771 it works on remote files.
15772 (vc-hg-diff): Don't pass any `--cwd' argument.
15774 2009-10-27 Kevin Ryde <user42@zip.com.au>
15776 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
15777 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
15778 (Further to Bug#3921).
15780 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
15782 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
15783 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
15784 calling `tramp-imap-put-file'. Add file size to the call.
15785 (tramp-imap-get-file-entries): Compute also user name, file size,
15787 (tramp-imap-handle-insert-directory): Insert uid and gid.
15788 (tramp-imap-handle-file-attributes): Transform uid and gid
15789 according to `id-format'.
15790 (tramp-imap-put-file): New optional parameter SIZE. Encode file
15791 size in header X-Size.
15793 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
15795 * simple.el (transpose-subr): Give clearer error when the mark
15796 is not set. (Bug#4807)
15798 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
15800 * net/tramp.el (tramp-perl-file-truename): New defconst.
15801 Perl code contributed by yary <not.com@gmail.com> (tiny change).
15802 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
15803 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
15804 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
15806 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
15807 Ignore `dired-call-process'.
15808 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
15810 2009-10-26 Julian Scheid <julians37@gmail.com>
15812 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
15813 (tramp-get-remote-readlink): New defun.
15814 (tramp-handle-file-truename): Use it.
15815 (tramp-handle-file-exists-p): Check file-attributes cache, assume
15816 file exists if cache value present.
15817 (tramp-check-cached-permissions): New defun.
15818 (tramp-handle-file-readable-p): Use it.
15819 (tramp-handle-file-writable-p): Likewise.
15820 (tramp-handle-file-executable-p): Likewise.
15821 (tramp-handle-file-name-all-completions): Try using Perl to get
15822 partial completions. When perl not available, combine `cd' and
15823 `ls' into single remote operation and use shell expansion to get
15824 partial remote directory contents. Set `file-exists-p' cache for
15825 directory and any files returned by ls. Change cache handling to
15826 support partial directory contents. Use error message emitted by
15827 remote `cd' or Perl code for local tramp-error.
15828 (tramp-do-copy-or-rename-file-directly): Avoid separate
15829 tramp-send-command-and-check call.
15830 (tramp-handle-process-file): Merge three remote ops into one.
15831 Do not flush all caches when `process-file-side-effects' is set.
15832 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
15833 file-attributes shows uid/gid to be set already.
15835 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
15837 * textmodes/tex-mode.el (tex-dvi-view-command)
15838 (tex-show-queue-command, tex-open-quote):
15839 * progmodes/ruby-mode.el (auto-mode-alist)
15840 (interpreter-mode-alist): Purecopy strings.
15842 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
15844 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
15845 string for the hook, keymap and abbrev table.
15847 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
15849 * x-dnd.el (x-dnd-xdnd-to-action):
15850 * startup.el (fancy-startup-text, fancy-about-text): Change to
15851 defconst from defvar.
15853 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
15855 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
15856 Purecopy initialization strings.
15858 * mail/sendmail.el (mail-header-separator)
15859 (mail-personal-alias-file):
15860 * mail/rmail.el (rmail-default-dont-reply-to-names)
15861 (rmail-ignored-headers, rmail-retry-ignored-headers)
15862 (rmail-highlighted-headers, rmail-secondary-file-directory)
15863 (rmail-secondary-file-regexp):
15864 * files.el (null-device, file-name-invalid-regexp)
15865 (locate-dominating-stop-dir-regexp)
15866 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
15867 (interpreter-mode-alist): Use mapcar instead of mapc.
15869 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
15871 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
15872 (completion-ignored-extensions):
15873 (debug-ignored-errors): Purecopy strings.
15875 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
15877 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
15878 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
15879 (pcomplete--here): Use push.
15881 * subr.el (all-completions): Declare the 4th arg obsolete.
15883 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15885 * pcomplete.el (pcomplete-unquote-argument-function): New var.
15886 (pcomplete-unquote-argument): New function.
15887 (pcomplete--common-suffix): Always pay attention to case.
15888 (pcomplete--table-subvert): Quote and unquote the text.
15889 (pcomplete--common-quoted-suffix): New function.
15890 (pcomplete-std-complete): Use it and pcomplete-begin.
15892 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
15893 we're inside a dedicated or minibuffer window.
15895 2009-10-24 Karl Fogel <kfogel@red-bean.com>
15897 * bookmark.el: Update documentation, especially documentation
15898 of `bookmark-alist' and of the bookmark file format.
15899 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
15901 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
15903 * mail/emacsbug.el (report-emacs-bug): Clarify that the
15904 keybindings apply to the mail buffer (Bug#4003). Shrink help
15907 * whitespace.el (whitespace-mode, whitespace-newline-mode)
15908 (global-whitespace-mode, global-whitespace-newline-mode)
15909 (whitespace-toggle-options, global-whitespace-toggle-options):
15910 Doc fix (Bug#3660).
15912 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
15913 of xmltok-start before the end tag was inserted (Bug#2840).
15915 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
15916 patterns that are preceded by an open-paren (Bug#1320).
15918 2009-10-24 Sven Joachim <svenjoac@gmx.de>
15920 * files.el (delete-directory): Delete symlinks to directories with
15921 delete-file (Bug#4739).
15923 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
15925 * vc.el (vc-backend-for-registration): Rename from
15926 vc-get-backend-for-registration. Update callers.
15928 * international/mule-cmds.el (set-language-info-alist):
15930 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
15931 (charset): Purecopy the name.
15932 (define-char-code-property): Purecopy string arguments.
15934 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
15935 Purecopy string arguments.
15937 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
15938 * ediff-hook.el (menu-bar-ediff-menu):
15939 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
15940 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
15942 2009-10-24 Glenn Morris <rgm@gnu.org>
15944 * comint.el (comint-dynamic-list-completions):
15945 * term.el (term-dynamic-list-completions): Use choose-completion rather
15946 than obsolete alias mouse-choose-completion.
15948 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
15949 file-cache-choose-completion.
15950 (file-cache-choose-completion): Handle an optional event argument.
15951 (file-cache-mouse-choose-completion): Make it an obsolete alias.
15953 * progmodes/octave-mod.el (octave-complete-symbol):
15954 Use choose-completion if mouse-choose-completion is ever removed.
15956 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
15959 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
15962 * vc-hooks.el (vc-responsible-backend): Fix declaration.
15964 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15966 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
15967 Ignore `pred' now that we receive one.
15968 Handle test-completion specially.
15970 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15972 * vc.el (vc-responsible-backend): Throw an error if not backend is
15973 found. Remove the REGISTER argument. Move the code dealing with
15975 (vc-get-backend-for-registration): ... here. New function.
15976 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
15977 of vc-responsible-backend, pass the file name instead of the
15980 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
15982 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
15984 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
15985 (pcomplete-comint-setup): Don't modify a global var via
15986 accidental side-effects.
15987 (pcomplete-shell-setup): Adjust call accordingly.
15988 (pcomplete-parse-comint-arguments): Use push.
15990 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
15992 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
15993 Allow uncapitalized info node names (Bug#3921).
15995 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
15996 to the DEBUG file (Bug#3781).
15998 2009-10-23 Jari Aalto <jari.aalto@cante.net>
16000 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
16001 dictionary entry (Bug#4579).
16003 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
16005 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
16006 from `rfn-eshadow-update-overlay-hook' when unloading.
16007 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
16008 "rsyncc". Adjust doc string.
16009 (tramp-temp-buffer-file-name): New buffer-local defvar.
16010 (tramp-handle-insert-file-contents, tramp-handle-write-region):
16011 Keep temporary file when indicated by method ("rsync" and
16013 (tramp-handle-write-region): Handle APPEND.
16014 (tramp-delete-temp-file-function): New defun. Added to
16015 `kill-buffer-hook'.
16017 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
16019 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
16021 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
16023 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
16024 (color-name-rgb-alist, tty-standard-colors)
16025 (tty-color-mode-alist): Change to defconst.
16027 * simple.el (mark-inactive): Purecopy message.
16029 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
16030 (global-map, yank-menu):
16031 * textmodes/ispell.el (ispell-menu-map):
16032 * net/eudc.el (eudc-tools-menu):
16033 * international/mule-cmds.el (describe-language-environment-map)
16034 (setup-language-environment-map, set-coding-system-map)
16035 (mule-menu-keymap):
16036 * vc-hooks.el (vc-menu-entry, vc-menu-map):
16037 * replace.el (occur-mode-map):
16038 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
16040 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
16042 * calc/calc.el (math-read-number, math-read-number-simple):
16043 Use `save-match-data'.
16045 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
16047 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
16048 rather than fiddling with global-map bindings, since it should only
16049 affect per-terminal settings.
16050 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
16052 * minibuffer.el (completion-table-with-terminator): Allow to specify
16053 the terminator-regexp.
16055 * simple.el (switch-to-completions): Look for *Completions* in other
16058 * pcomplete.el: Allow the use of completion-tables.
16059 (pcomplete-std-complete): New command.
16060 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
16061 (pcomplete--here): Use a function for `form' rather than an expression,
16062 so it can be byte-compiled.
16063 (pcomplete-here, pcomplete-here*): Adjust accordingly.
16064 Add edebug declaration.
16065 (pcomplete-show-completions): Remove unused var `curbuf'.
16066 (pcomplete-do-complete, pcomplete-stub):
16067 Don't assume `completions' is a list of strings any more.
16069 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
16071 * find-dired.el (find-name-arg): Fix typo in docstring.
16073 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
16075 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
16076 (pcmpl-linux-fs-types): Same, and update to new modules layout.
16078 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
16081 * comint.el (comint-read-input-ring, comint-write-input-ring)
16082 (comint-substitute-in-file-name)
16083 (comint-dynamic-complete-as-filename)
16084 (comint-dynamic-simple-complete)
16085 (comint-dynamic-list-filename-completions)
16086 (comint-dynamic-list-completions)
16087 (comint-redirect-results-list-from-process): Minor simplifications.
16089 2009-10-21 Kevin Ryde <user42@zip.com.au>
16091 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
16092 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
16093 the first form. And insert a blank line after ";;; Code" since
16094 that's usual style. (Bug#4612)
16096 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
16098 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
16100 * minibuffer.el (completion-table-with-terminator): Properly implement
16101 boundaries, in case `terminator' appears in the suffix.
16102 (completion--embedded-envvar-table): Don't return boundaries if
16103 there's no valid completion. Simplify.
16104 (completion-file-name-table): New completion table extracted from
16105 completion--file-name-table.
16106 (completion--file-name-table): Use it.
16107 (read-file-name-predicate): Declare obsolete.
16108 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
16109 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
16110 completion-file-name-table, and use the `pred' argument.
16111 * files.el (locate-file-completion-table): Use the `pred' arg rather
16112 than read-file-name-predicate.
16113 (abbreviate-file-name): Use \` rather than ^ for BOS.
16115 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
16117 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
16118 vc-responsible-backend to register, it causes problems.
16120 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
16122 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
16124 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
16126 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
16127 (tramp-smb-handle-file-attributes): Use it.
16128 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
16129 (tramp-smb-handle-insert-directory): Use `mapc' rather than
16130 `mapcar'. Use `tramp-smb-get-stat-capability'.
16131 Add `dired-filename' text properties.
16132 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
16133 (tramp-smb-maybe-open-connection): Simplify check for smbclient
16136 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
16138 * subr.el (read-key-delay): Reduce to 0.01.
16139 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
16142 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
16144 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
16146 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
16147 (Info-menu): Remove unused vars `last' and `completions'.
16148 (Info-index-nodes): Remove unused var `node'.
16150 * info.el (Info-complete-menu-item): Use complete-with-action.
16152 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
16154 Make vc-annotate work through copies and renames.
16155 * vc-annotate.el (vc-annotate-extract-revision-at-line):
16156 Return the file name too.
16157 (vc-annotate-revision-at-line)
16158 (vc-annotate-find-revision-at-line)
16159 (vc-annotate-revision-previous-to-line)
16160 (vc-annotate-show-log-revision-at-line): Update to get the file
16161 name from vc-annotate-extract-revision-at-line.
16162 (vc-annotate-show-diff-revision-at-line-internal): Change the
16163 argument to mean whether to show a file diff or not. Get the file
16164 name from vc-annotate-extract-revision-at-line.
16165 (vc-annotate-show-diff-revision-at-line):
16166 Update vc-annotate-show-diff-revision-at-line call.
16167 (vc-annotate-warp-revision): Add an optional file argument.
16169 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
16170 (vc-git-annotate-extract-revision-at-line): Also return the file
16173 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
16174 command. Remove unused code.
16175 (vc-hg-annotate-re): Update to match --follow output.
16176 (vc-hg-annotate-extract-revision-at-line): Also return the file
16179 * vc.el: Update annotate-extract-revision-at-line documentation.
16181 2009-10-18 Kevin Ryde <user42@zip.com.au>
16183 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
16184 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
16186 * net/browse-url.el (browse-url): Identify alist with "consp and
16187 not functionp" and let all other things go down the `apply' leg,
16188 as suggested by Stefan. (Further to bug#4531.)
16190 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
16192 * minibuffer.el (read-file-name): Check for repeat before putting
16193 a default argument in file-name-history (Bug#4657).
16195 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
16196 read syntax (Bug#4737).
16198 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
16200 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
16202 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
16203 (html-tag-alist, html-tag-help): Add descriptions for undocumented
16204 entries and make note of obsolete tags.
16206 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
16208 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
16210 2009-10-18 Glenn Morris <rgm@gnu.org>
16212 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
16213 grep, so that binary files (eg international/uni-bidi.el) can match.
16214 Remove test for "UnicodeData" files, since it is hopefully unnecessary
16215 now, and in any case the file header format has changed.
16217 2009-10-17 Glenn Morris <rgm@gnu.org>
16219 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
16220 (flyspell-get-word, flyspell-large-region)
16221 (flyspell-auto-correct-previous-word): Doc/error message fixes.
16223 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
16225 * Makefile.in (ELCFILES): Add ede/shell.
16227 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
16229 * term/common-win.el (x-colors): Purecopy it.
16231 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16233 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
16234 permissive for when the buffer is empty.
16235 (tar-header-block-tokenize): Decode the username and groupname.
16236 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
16238 2009-10-17 Eric Ludlam <zappo@gnu.org>
16240 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
16241 contains multibyte characters, choose first applicable coding
16242 system automatically.
16244 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16246 * international/mule-cmds.el (select-safe-coding-system): If the file
16247 has a coding cookie, use it regardless of any other setting (bug#4712).
16249 2009-10-17 Glenn Morris <rgm@gnu.org>
16251 * foldout.el (foldout-mouse-swallow-events):
16252 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
16254 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
16255 (dired-keep-marker-copy, dired-keep-marker-hardlink)
16256 (dired-keep-marker-symlink, dired-dwim-target)
16257 (dired-copy-preserve-time): Do not autoload these defcustoms.
16259 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
16260 messages from messing up the file coding. (Bug#4623)
16262 2009-10-17 Jari Aalto <jari.aalto@cante.net>
16264 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
16265 if no match is found for the current dictionary. (Bug#4578)
16267 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
16268 optional, since that is how it is documented, and this is often called
16269 with a nil argument. (Bug#4577)
16270 (flyspell-external-point-words, flyspell-auto-correct-word)
16271 (flyspell-correct-word-before-point, flyspell-word-search-forward)
16272 (flyspell-word-search-backward): Remove nil argument in calls to
16273 flyspell-get-word, since it is not needed now.
16275 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
16277 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
16279 2009-10-16 Glenn Morris <rgm@gnu.org>
16281 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
16283 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
16285 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
16286 (ange-ftp-file-size): New function.
16287 (ange-ftp-file-attributes): Use it.
16289 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
16291 * net/tramp-smb.el (tramp-smb-version): New defvar.
16292 (tramp-smb-maybe-open-connection): Use it, in order to avoid
16295 2009-10-16 Glenn Morris <rgm@gnu.org>
16297 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
16298 Maybe copy some custom properties from old to new name. (Bug#4706)
16300 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
16302 * subr.el (error, sit-for, start-process-shell-command)
16303 (start-file-process-shell-command): Set the calling convention
16304 after the function definition.
16306 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
16308 * subr.el (error, sit-for, start-process-shell-command)
16309 (start-file-process-shell-command): Use the new
16310 set-advertised-calling-convention feature.
16312 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
16314 * international/ucs-normalize.el (ucs-normalize-version):
16316 (check-range): Adjust for Unicode 5.2.
16318 2009-10-15 Juri Linkov <juri@jurta.org>
16320 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
16321 to the `menu-item' format.
16323 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
16325 * net/tramp.el (tramp-replace-environment-variables): Do not fail
16326 if the environment variable does not exist.
16328 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
16329 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
16331 (tramp-smb-handle-add-name-to-file)
16332 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
16333 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
16334 (tramp-smb-handle-file-attributes)
16335 (tramp-smb-do-file-attributes-with-stat)
16336 (tramp-smb-handle-file-local-copy)
16337 (tramp-smb-handle-insert-directory)
16338 (tramp-smb-handle-make-directory)
16339 (tramp-smb-handle-make-directory-internal)
16340 (tramp-smb-handle-make-symbolic-link)
16341 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
16342 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
16343 (tramp-smb-maybe-open-connection): Apply the changed parameters.
16344 (tramp-smb-read-file-entry): Read Disk names in compressed format.
16345 Handle long file names.
16346 (tramp-smb-get-cifs-capabilities): Check, whether the connection
16347 process is running.
16348 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
16349 Read share names with "-g" option.
16351 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
16353 * net/rcirc.el (rcirc-view-log-file): New command.
16354 (rcirc-track-minor-mode-map): Remove C-c ` binding.
16355 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
16358 2009-10-15 Glenn Morris <rgm@gnu.org>
16360 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
16361 from the second command-line argument.
16362 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
16363 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
16364 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
16365 w32-batch-update-autoloads.
16366 * emacs-lisp/autoload.el (autoload-make-program): New variable.
16367 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
16369 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
16370 the headers cannot be located. Simplify, subtracting superflous
16373 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
16375 Replace completion-base-size by completion-base-position to fix bugs
16376 such as (bug#4699).
16377 * simple.el (completion-base-position): New var.
16378 (completion-base-size): Mark as obsolete.
16379 (choose-completion): Make it work for mouse events as well.
16380 Pass the new base-position to choose-completion-string.
16381 (choose-completion-guess-base-position): New function, extracted from
16382 choose-completion-delete-max-match.
16383 (choose-completion-delete-max-match): Use it. Make obsolete.
16384 (choose-completion-string): Use the new base-position info.
16385 (completion-root-regexp): Delete.
16386 (completion-setup-function): Preserve completion-base-position.
16387 Eliminate obsolete base-size manipulation.
16388 * minibuffer.el (display-completion-list): Don't mess with base-size.
16389 (minibuffer-completion-help): Set completion-base-position instead.
16390 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
16392 * textmodes/bibtex.el (bibtex-complete):
16393 * emacs-lisp/crm.el (crm--choose-completion-string):
16394 Adjust to new calling convention.
16395 * complete.el (partial-completion-mode): Use minibufferp to avoid
16396 bumping into incompatible change to choose-completion-string-functions.
16397 * ido.el (ido-choose-completion-string): Make its calling convention
16399 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
16400 base-size manipulation.
16401 (comint-dynamic-list-input-ring): Use dotimes and push.
16402 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
16403 fundamental-mode. Use `or'.
16405 2009-10-14 Juri Linkov <juri@jurta.org>
16407 * misearch.el (multi-isearch-next-buffer-from-list)
16408 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
16410 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16412 * Makefile.in (compile-onefile): Load `bytecomp' rather than
16415 * minibuffer.el (completion-pcm--merge-completions): Make sure the
16416 string we return is all made up of text from the completions rather
16417 than part from the completions and part from the input (bug#4219).
16419 * ido.el (ido-everywhere): Use define-minor-mode.
16421 * buff-menu.el (list-buffers, ctl-x-map):
16422 Mark the entry points with ;;;###autoload cookies.
16424 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
16426 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
16427 correctly in the detached head case.
16428 (vc-git-print-log): Remove unused binding.
16430 * vc.el (vc-responsible-backend): When a directory is passed for
16431 for registration create a VC repository if no backend is
16432 responsible for the directory argument.
16433 (vc-deduce-fileset): Tell vc-responsible-backend to register.
16435 * vc.el: Move comments about RCS and SCCS ...
16437 * vc-sccs.el: ... here, respectively.
16439 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16441 * minibuffer.el (completion--file-name-table): Return nil if there's
16442 no file completion, even if substitute-in-file-name changed
16443 the string (bug#4708).
16445 2009-10-13 Juri Linkov <juri@jurta.org>
16447 * files-x.el (read-file-local-variable-value): Don't filter out
16448 minor modes from mode name completion (bug#4664).
16450 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
16452 * international/mule-cmds.el (ucs-names): Remove exclusion of
16453 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
16455 2009-10-13 Kenichi Handa <handa@m17n.org>
16457 * international/uni-name.el: Regenerated.
16459 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
16461 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
16462 should be automatically buffer-local, but isn't.)
16464 2009-10-12 Sam Steingold <sds@gnu.org>
16466 * progmodes/compile.el (compilation-next-error-function): Fix the
16467 timestamps if the buffer has been visited before.
16468 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
16469 non-anchored patterns, like the perl one (bug#3928).
16471 2009-10-12 Glenn Morris <rgm@gnu.org>
16473 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
16476 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
16478 * proced.el (proced-unload-function): New function.
16480 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
16481 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
16484 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
16486 2009-10-11 Juri Linkov <juri@jurta.org>
16488 * files-x.el (read-file-local-variable-value):
16489 Provide default value only for bound variables (bug#4664).
16491 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
16493 * net/tramp.el (tramp-local-host-p): Function shall return nil for
16494 connection methods like smb.
16496 * net/tramp-cache.el (tramp-flush-connection-property): The hash
16499 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
16500 (tramp-smb-file-name-handler-alist): Add handlers for
16501 `add-name-to-file', `make-symbolic-link'.
16502 (tramp-smb-handle-add-name-to-file)
16503 (tramp-smb-do-file-attributes-with-stat)
16504 (tramp-smb-handle-make-symbolic-link)
16505 (tramp-smb-get-cifs-capabilities): New defuns.
16506 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
16507 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
16508 (tramp-smb-handle-file-local-copy)
16509 (tramp-smb-handle-make-directory-internal)
16510 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
16511 The file name syntax depends on cifs capabilities.
16512 (tramp-smb-handle-file-attributes):
16513 Call `tramp-smb-do-file-attributes-with-stat' if possible.
16514 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
16515 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
16517 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
16519 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
16520 (eieio-defclass): Apply deftype handler and setf-method properties
16522 (eieio-add-new-slot): Avoid union function from cl library.
16523 (eieio--typep): New function.
16524 (eieio-perform-slot-validation): Use it.
16526 2009-10-10 Karl Fogel <kfogel@red-bean.com>
16528 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
16529 Update documentation to refer to the variables documented in r1.135.
16532 2009-10-10 Karl Fogel <kfogel@red-bean.com>
16534 * bookmark.el (Info-suffix-list): Remove this unused variable.
16535 (bookmark-current-point): Remove this obsolete variable.
16536 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
16537 Adjust for removal of bookmark-current-point.
16539 (bookmarks-already-loaded, bookmark-current-buffer)
16540 (bookmark-yank-point): Document. (Bug#4188)
16542 2009-10-10 Glenn Morris <rgm@gnu.org>
16544 * frame.el (frame-height): Doc fix.
16546 * calendar/calendar.el (calendar-split-width-threshold): New option.
16547 (calendar-basic-setup): Use calendar-split-width-threshold.
16549 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
16551 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
16552 Ideographic Supplement" range (U+1F200..U+1F2FF).
16554 2009-10-09 Karl Fogel <kfogel@red-bean.com>
16556 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
16557 since the list will have been rebuilt anyway. (Bug#4349)
16559 2009-10-09 Karl Fogel <kfogel@red-bean.com>
16561 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
16562 (bookmark-bmenu-execute-deletions): Don't save here, as
16563 bookmark-delete will now do so if necessary.
16564 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
16567 2009-10-09 Glenn Morris <rgm@gnu.org>
16569 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
16571 2009-10-09 Karl Fogel <kfogel@red-bean.com>
16573 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
16574 (bookmark-jump-other-window): Just invoke bookmark-jump with new
16575 argument now, so the two function's behaviors will match. (Bug#3645)
16577 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
16579 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
16580 (tramp-file-name-real-host, tramp-file-name-port):
16581 Apply `save-match-data'.
16583 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
16584 case both directories are remote.
16585 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
16586 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
16588 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
16590 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
16592 2009-10-07 Glenn Morris <rgm@gnu.org>
16594 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
16597 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
16599 * files-x.el (read-file-local-variable): Include some
16600 non-user-variables in the completion table (bug#4664).
16602 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
16604 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
16607 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
16608 (tramp-smb-file-name-handler-alist): Add handler for
16609 `copy-directory', `expand-file-name', `set-file-modes'.
16610 (tramp-smb-handle-copy-directory)
16611 (tramp-smb-handle-expand-file-name)
16612 (tramp-smb-handle-set-file-modes): New defuns.
16613 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
16614 (tramp-smb-handle-file-attributes): Simplify check for retrieving
16616 (tramp-smb-handle-insert-directory): Don't flush the cache.
16617 (tramp-smb-maybe-open-connection): Check for samba client and
16620 2009-10-07 Eli Zaretskii <eliz@gnu.org>
16622 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
16623 to not error out of search for "^lisp=" fails.
16625 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
16627 * makefile.w32-in (WINS_UPDATES): New macro.
16628 (custom-deps, finder-data, autoloads): Use it.
16630 2009-10-07 Glenn Morris <rgm@gnu.org>
16632 * Makefile.in (autoloads): Revert previous change.
16633 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
16634 the list of preloaded files passed on the command-line, get
16635 it from src/Makefile.
16637 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
16638 show the original buffer rather than a random one.
16640 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
16642 * help.el (describe-no-warranty): Place point in a slightly better
16643 position in the GPLv3 text.
16645 2009-10-06 Sam Steingold <sds@gnu.org>
16647 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
16648 the comm attribute is present before calling regexp-quote.
16650 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
16652 * play/animate.el (animate-string): For good effect, make sure
16653 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
16655 * play/animate.el (animate-sequence, animate-birthday-present):
16656 * misc.el (butterfly): Don't set `indent-tabs-mode'.
16658 2009-10-06 Glenn Morris <rgm@gnu.org>
16660 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
16662 * emacs-lisp/autoload.el (autoload-excludes): New variable.
16663 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
16664 (batch-update-autoloads): Process a string value of autoload-excludes,
16665 set during the build process.
16666 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
16668 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
16669 inside with-parsed... macro so that `v' is defined.
16671 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
16672 * progmodes/fortran.el (fortran-end-of-block)
16673 (fortran-beginning-of-block):
16674 Also push mark in the macro case.
16676 * emerge.el (emerge-show-file-name):
16677 * calc/calc.el (calc-quit):
16678 * calc/calc-misc.el (calc-big-or-small):
16679 * calc/calc-graph.el (calc-graph-view):
16680 * calc/calc-ext.el (calc-reset):
16681 * calendar/calendar.el (calendar-basic-setup):
16682 Use window-full-height-p.
16684 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
16685 header we don't understand, don't insert another. (Bug#4624)
16686 If changing mime charset, insert the new one in the right place.
16688 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
16690 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
16691 (cal-tex-cursor-month): Correctly increment the end date for diary and
16692 holiday listing. (Bug#4626)
16694 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16696 * help-fns.el (describe-function-1): Don't burp if the function is not
16699 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
16701 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
16702 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
16703 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
16704 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
16706 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
16707 (eieio-default-superclass): Reflow docstrings.
16708 (this, class-option-assoc, defclass, eieio-class-un-autoload)
16709 (eieio-unbind-method-implementations, defmethod)
16710 (eieio-validate-slot-value, eieio-validate-class-slot-value)
16711 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
16712 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
16713 (eieio-slot-originating-class-p, eieio-slot-name-index)
16714 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
16715 (constructor, initialize-instance, no-next-method, object-print)
16716 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
16717 Fix typos in docstrings.
16718 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
16719 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
16720 (next-method-p): Doc fixes.
16721 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
16722 Fix typos in error messages.
16723 (eieio-defmethod): Fix typo in description of generic method.
16725 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
16726 (eieio-persistent-save-interactive, slot-missing):
16727 Fix typos in docstrings.
16728 (eieio-instance-inheritor-slot-boundp): Doc fix.
16730 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
16731 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
16733 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
16734 (eieio-custom-object-apply-reset):
16735 Fix typos in docstrings and error messages.
16737 * emacs-lisp/eieio-datadebug.el (data-debug-show):
16738 Fix typo in docstring.
16740 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
16741 (eieio-browse-tree): Doc fix.
16742 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
16743 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
16744 Fix typos in docstrings.
16746 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
16747 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
16748 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
16749 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
16752 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
16754 * vc-hg.el (log-view-vc-backend): Declare for compiler.
16755 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
16756 Set log-view-vc-backend so that diff can work.
16758 * log-view.el (log-view-diff): Use vc-diff-internal instead of
16760 (vc-diff-internal): Autoload this instead of vc-version-diff.
16762 2009-10-05 Eli Zaretskii <eliz@gnu.org>
16764 * simple.el (eval-expression): Doc fix.
16766 * progmodes/cwarn.el (cwarn-mode): Doc fix.
16768 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
16770 * files.el (directory-files-no-dot-files-regexp): New defconst.
16771 (delete-directory): Use it.
16772 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
16774 * net/tramp.el (tramp-verbose): Fix docstring.
16775 (tramp-methods): Add recursive option to `tramp-copy-args'.
16776 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
16777 "scp1_old", "scp2_old", "rsync", "rsyncc".
16778 (tramp-default-method): Check also for `auth-source-user-or-password'.
16779 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
16780 Add handler for `copy-directory'.
16781 (tramp-handle-copy-directory): New defun.
16782 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
16783 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
16784 Optimize sent command.
16786 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16788 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
16789 window if necessary.
16791 * calendar/calendar.el (calendar-basic-setup): Don't call
16792 switch-to-buffer in a dedicated window.
16794 2009-10-05 Karl Fogel <kfogel@red-bean.com>
16796 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
16797 don't do anything related to relocating, just return nil.
16798 (bookmark-error-no-filename): New error.
16799 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
16800 bookmark has no file. Don't even attempt to handle things that
16801 are not files; the whole point of custom handlers is to keep that
16802 knowledge elsewhere anyway. Tighten some comments.
16803 (bookmark-file-or-variation-thereof): Remove now-unused function.
16804 (bookmark-location): Doc string fix.
16807 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16809 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
16810 don't use a file dialog, because they usually don't know how to read
16811 a directory target from the user. (Bug#4230)
16812 Also, make sure the prompt can display directories as well as files.
16814 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16816 * bookmark.el (bookmark-set, bookmark-buffer-name):
16817 Improve doc strings. (Bug#1193)
16819 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16821 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
16822 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
16823 (bookmark-get-annotation, bookmark-set-annotation)
16824 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
16825 (bookmark-set-position, bookmark-get-front-context-string)
16826 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
16827 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
16828 (bookmark-jump-other-window, bookmark-handle-bookmark)
16829 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
16830 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
16831 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
16832 Improve doc strings to say whether bookmark can be a string or
16833 a record or both, and make other consistency and clarity fixes.
16834 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
16835 (bookmark-default-annotation-text, bookmark-yank-word)
16836 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
16837 (bookmark-import-new-list, bookmark-maybe-rename)
16838 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
16839 (bookmark-bmenu-bookmark): Give these doc strings.
16840 (bookmark-bmenu-check-position): Give this a doc string, but also
16841 add a FIXME comment about how the function may be pointless.
16842 (bookmark-default-handler): Rework doc string and change a
16843 parameter name, to clarify that this takes a bookmark record
16844 not a bookmark name.
16845 (bookmark-set): Change a parameter name to indicate its meaning,
16846 and improve the doc string a bit.
16849 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16851 * bookmark.el (bookmark-alist): Document the new `handler' element
16852 in the param alist.
16853 (bookmark-make-record-function): Adjust documentation for above.
16856 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16858 * info.el (Info-bookmark-make-record): Document this function.
16859 (Info-bookmark-jump): Document with a doc string, not just a comment.
16862 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
16864 * files.el (copy-directory): New defun.
16866 * dired-aux.el (dired-copy-file-recursive): Use it.
16868 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
16870 * files-x.el (modify-dir-local-variable)
16871 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
16874 * recentf.el (recentf-unload-function): New function.
16876 2009-10-04 Glenn Morris <rgm@gnu.org>
16878 * window.el (window-full-height-p): Add doc string.
16880 2009-10-04 Martin Rudalics <rudalics@gmx.at>
16882 * window.el (window-full-height-p): New function. (Bug#4543)
16884 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
16886 * vc.el: Remove commented out code.
16887 (vc-derived-from-dir-mode): Remove, unused.
16888 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
16890 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
16892 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
16893 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
16894 there could be recursive loading when `default-directory' is a
16895 remote file name. (Bug#4614)
16897 2009-10-03 Glenn Morris <rgm@gnu.org>
16899 * calendar/calendar.el (calendar-basic-setup): Handle the case where
16901 (calendar-generate-window): Test for shrinkability rather than width.
16903 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
16904 reusing existing buffers, in case we happen to visit two files with the
16905 same basename. (Bug#4593)
16907 2009-10-02 Eli Zaretskii <eliz@gnu.org>
16909 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
16910 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
16911 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
16912 subdirs of cedet as well.
16913 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
16915 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16917 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
16918 Obey advertised-signature-table.
16920 * help-fns.el (help-function-arglist): Don't check
16921 advertised-signature-table.
16922 (describe-function-1): Do it here instead so it also applies to subrs.
16924 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
16926 * simple.el (start-file-process): Say in the doc-string, that file
16927 handlers might not support pty association, if PROGRAM is nil.
16929 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
16930 HOST and USER are strings. They are nil, when there are
16931 incomplete entries in ~/.netrc, for example.
16932 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
16933 root directory ("device busy" error otherwise).
16935 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
16936 Flush file properties of created directory.
16938 2009-10-02 Eli Zaretskii <eliz@gnu.org>
16940 * makefile.w32-in (WINS_BASIC): Remove cedet.
16941 (WINS_CEDET): Add cedet.
16942 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
16944 2009-10-02 Kevin Ryde <user42@zip.com.au>
16946 * net/browse-url.el (browse-url): Pass any symbol in
16947 browse-url-browser-function to `apply', since if you've mistakenly put
16948 an unbound symbol then the error is clearer. (Bug#4531)
16950 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
16952 * allout.el (allout-init, allout-back-to-current-heading)
16953 (allout-beginning-of-current-entry, allout-ascend-to-depth)
16954 (allout-ascend, allout-up-current-level, allout-end-of-level)
16955 (allout-previous-visible-heading, allout-forward-current-level)
16956 (allout-backward-current-level, allout-show-children):
16957 * apropos.el (apropos-describe-plist):
16958 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
16959 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
16960 * completion.el (add-completion, add-permanent-completion):
16961 * descr-text.el (describe-text-category, describe-char):
16962 * desktop.el (desktop-lazy-abort):
16963 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
16964 * dired.el (dired-build-subdir-alist):
16965 * ediff.el (ediff-version):
16966 * elide-head.el (elide-head, elide-head-show):
16967 * emerge.el (emerge-version):
16969 * face-remap.el (variable-pitch-mode):
16970 * faces.el (describe-face):
16971 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
16973 * files.el (find-file-existing, auto-save-mode):
16974 * font-lock.el (font-lock-fontify-buffer):
16975 * help-fns.el (describe-function, describe-variable)
16976 (describe-syntax, describe-categories):
16977 * help.el (view-lossage, describe-bindings, describe-key)
16979 * hexl.el (hexl-current-address):
16980 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
16981 * info.el (Info-goto-emacs-key-command-node):
16982 * log-edit.el (log-edit-insert-cvs-template)
16983 (log-edit-insert-cvs-rcstemplate):
16984 * menu-bar.el (menu-bar-mode):
16985 * mouse.el (mouse-appearance-menu):
16986 * newcomment.el (comment-indent-new-line):
16987 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
16988 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
16989 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
16990 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
16991 * recentf.el (recentf-mode):
16992 * savehist.el (savehist-mode, savehist-save):
16993 * shadowfile.el (shadow-copy-files):
16994 * simple.el (kill-ring-save, next-line, previous-line)
16995 (normal-erase-is-backspace-mode):
16996 * strokes.el (strokes-update-window-configuration)
16997 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
16998 (strokes-xpm-for-stroke):
16999 * time.el (emacs-uptime, emacs-init-time):
17000 * tutorial.el (tutorial--describe-nonstandard-key)
17001 (tutorial--detailed-help):
17002 * type-break.el (type-break-mode)
17003 (type-break-mode-line-message-mode, type-break-query-mode)
17004 (type-break-guesstimate-keystroke-threshold):
17005 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
17006 * version.el (emacs-version):
17007 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
17008 * winner.el (winner-mode):
17009 * calendar/timeclock.el (timeclock-in, timeclock-out)
17010 (timeclock-status-string, timeclock-change)
17011 (timeclock-workday-remaining-string)
17012 (timeclock-workday-elapsed-string)
17013 (timeclock-when-to-leave-string):
17014 * calendar/todo-mode.el (todo-add-category):
17015 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
17016 * emacs-lisp/autoload.el (update-file-autoloads):
17017 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
17018 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
17019 (checkdoc-message-text, checkdoc-defun):
17020 * emacs-lisp/debug.el (debugger-list-functions):
17021 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
17022 * emacs-lisp/eieio-opt.el (eieio-describe-class)
17023 (eieio-describe-generic):
17024 * emacs-lisp/lisp-mnt.el (lm-synopsis):
17025 * emacs-lisp/shadow.el (list-load-path-shadows):
17026 * emulation/cua-base.el (cua-mode):
17027 * emulation/edt.el (edt-set-scroll-margins):
17028 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
17029 (tpu-toggle-regexp, tpu-toggle-search-direction)
17030 (tpu-toggle-rectangle, tpu-toggle-control-keys):
17031 * emulation/tpu-extras.el (tpu-set-scroll-margins):
17032 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
17033 (viper-set-parsing-style-toggling-macro)
17034 (viper-set-emacs-state-searchstyle-macros):
17035 * emulation/viper.el (viper-set-hooks):
17036 * eshell/esh-mode.el (eshell-truncate-buffer):
17037 * international/mule-cmds.el (prefer-coding-system)
17038 (describe-input-method, describe-language-environment):
17039 * international/mule-diag.el (list-character-sets)
17040 (describe-character-set, describe-coding-system)
17041 (describe-fontset, list-fontsets, list-input-methods):
17042 * mail/sendmail.el (mail-signature):
17043 * net/ange-ftp.el (ange-ftp-copy-file):
17044 * net/browse-url.el (browse-url):
17045 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
17046 * net/quickurl.el (quickurl-add-url):
17047 * net/rcirc.el (names, topic):
17048 * net/xesam.el (xesam-mode):
17049 * play/5x5.el (5x5-new-game):
17050 * play/yow.el (apropos-zippy):
17051 * progmodes/ada-mode.el (ada-mode-version):
17052 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
17054 (f90-beginning-of-block):
17055 * progmodes/fortran.el (fortran-end-of-block)
17056 (fortran-beginning-of-block):
17057 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
17058 * progmodes/python.el (python-describe-symbol, python-shell):
17059 * term/ns-win.el (ns-print-buffer):
17060 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
17061 * textmodes/flyspell.el (flyspell-mode-on):
17062 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
17063 (pages-directory-for-addresses):
17064 * textmodes/table.el (table-recognize-cell)
17065 (table-query-dimension, table-generate-source)
17066 (table-insert-sequence, table--warn-incompatibility):
17067 * textmodes/tex-mode.el (tex-validate-buffer):
17068 * textmodes/texinfmt.el (texinfmt-version)
17069 (texinfo-format-buffer):
17070 Use `called-interactively-p' instead of `interactive-p'.
17072 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
17074 * image-mode.el (image-toggle-display):
17075 * emacs-lisp/elp.el (elp-instrument-function):
17076 * emacs-lisp/advice.el (ad-make-advised-definition):
17077 * emacs-lisp/easy-mmode.el (define-minor-mode):
17078 * net/browse-url.el (browse-url-maybe-new-window):
17079 * progmodes/sh-script.el (sh-learn-buffer-indent):
17080 Pass new argument 'any to `called-interactively-p'.
17082 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
17084 * international/uni-bidi.el:
17085 * international/uni-category.el:
17086 * international/uni-combining.el:
17087 * international/uni-comment.el:
17088 * international/uni-decimal.el:
17089 * international/uni-decomposition.el:
17090 * international/uni-digit.el:
17091 * international/uni-lowercase.el:
17092 * international/uni-mirrored.el:
17093 * international/uni-name.el:
17094 * international/uni-numeric.el:
17095 * international/uni-old-name.el:
17096 * international/uni-titlecase.el:
17097 * international/uni-uppercase.el:
17098 Regenerate from Unicode 5.2.0 data.
17100 2009-10-01 Glenn Morris <rgm@gnu.org>
17102 * Makefile.in (ELCFILES): Regenerate.
17104 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
17106 * subr.el (interactive-p): Mark obsolete.
17107 (called-interactively-p): Make the optional-ness of `kind' obsolete.
17108 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
17109 advertised-signature-table for subroutines as well.
17111 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
17112 (set-advertised-calling-convention): New function.
17113 (make-obsolete, define-obsolete-function-alias)
17114 (make-obsolete-variable, define-obsolete-variable-alias):
17115 Make the optional-ness of `when' obsolete.
17116 (define-obsolete-face-alias): Make `when' non-optional.
17117 * help-fns.el (help-function-arglist):
17118 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
17119 Use advertised-signature-table.
17121 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
17123 * files.el (delete-directory): New defun. The original function
17124 in fileio.c has been renamed to `delete-directory-internal'.
17126 * dired.el (dired-delete-file): Call `delete-directory' with
17127 RECURSIVE parameter.
17129 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
17130 parameter RECURSIVE. Implementation is missing.
17132 * net/tramp.el (tramp-handle-make-directory): Flush upper
17133 directory's file properties.
17134 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
17135 (tramp-handle-dired-recursive-delete-directory): Flush directory
17136 properties after the remove command only.
17138 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
17139 Handle optional parameter RECURSIVE.
17141 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
17142 Handle optional parameter RECURSIVE.
17144 * net/tramp-smb.el (tramp-smb-errors): Add error message for
17145 connection timeout.
17146 (tramp-smb-handle-delete-directory): Handle optional parameter
17149 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
17151 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
17152 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
17153 (byte-compile-defmacro): Use backquotes.
17155 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
17157 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
17158 has no associated file.
17159 (vc-resynch-buffer): Use vc-dir-buffers.
17161 2009-10-01 Glenn Morris <rgm@gnu.org>
17163 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
17164 (chart-file-count):
17165 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
17166 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
17167 * emacs-lisp/eieio-opt.el (eieio-describe-class):
17168 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
17169 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
17170 (eieio-copy-parents-into-subclass, make-instance, class-children)
17171 (eieio-generic-form):
17173 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
17174 match-data. (Bug#4555).
17176 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
17177 rather than parsing it as a regexp. This relaxes the layout
17178 requirements and makes errors easier to detect.
17179 (check-declare-verify): Check file is regular.
17180 (check-declare-directory): Doc fix.
17181 * subr.el (declare-function): Doc fix.
17183 * ibuffer.el (ibuffer-format-qualifier):
17184 * isearch.el (hi-lock-regexp-okay):
17185 * calc/calc.el (math-zerop):
17186 * mail/uce.el (rmail-msgbeg, rmail-msgend):
17187 * term/w32-win.el (setup-default-fontset, set-fontset-font):
17188 Remove unused declarations.
17190 2009-09-30 Eric Ludlam <zappo@gnu.org>
17192 * emacs-lisp/eieio.el (boolean-p): Delete.
17194 2009-09-30 Glenn Morris <rgm@gnu.org>
17196 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
17198 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
17199 filename is not a string.
17201 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
17203 * files.el (safe-local-eval-forms): Fix typo.
17205 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
17207 * vc-hooks.el (vc-dir-buffers): New var.
17208 (vc-state-refresh): New function.
17209 (vc-state): Use it.
17210 (vc-after-save): Always ask the backend to recompute the new state.
17211 Always call vc-dir if necessary, using vc-dir-buffers.
17212 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
17213 Use vc-dir-buffers.
17214 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
17215 (vc-dir-prepare-status-buffer, vc-dir-update)
17216 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
17217 Don't call expand-file-name on default-directory.
17219 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
17221 * speedbar.el (speedbar-item-delete):
17222 * calc/calc-prog.el (calc-kbd-if):
17223 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
17225 * epa.el (epa-key-list-mode-map):
17226 * hi-lock.el (hi-lock-menu): Fix typos in menus.
17228 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
17229 (hs-show-hook): Fix typo in docstring.
17231 2009-09-29 Glenn Morris <rgm@gnu.org>
17233 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
17234 file-name-nondirectory call preventing location of cedet files.
17235 (check-declare-verify): Use literal search rather than re-search.
17236 Add basic defmethod and defclass, and define-overloadable-function.
17238 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
17239 Use tramp-compat-file-attributes rather than nonexistent
17240 tramp-compat-handle-file-attributes.
17242 * Makefile.in (lisptagsfiles4): New.
17243 (AUTOGENEL): Add cedet loaddefs files.
17244 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
17245 (update-elclist, compile-always, backup-compiled-files)
17246 (bootstrap-clean): Add yet another directory level.
17247 (update-elclist): Use LC_COLLATE rather than COLLATE.
17248 (ELCFILES): Update, via `make update-elclist'.
17250 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
17252 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
17253 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
17254 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
17256 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
17258 * Makefile.in (lisptagsfiles3): Define.
17259 (TAGS, TAGS-LISP): Use it.
17260 (update-elclist): Add third directory level to look for elc files.
17261 (compile-always): Likewise.
17262 (backup-compiled-files): Likewise.
17263 (bootstrap-clean): Likewise.
17264 (ELCFILES): Update.
17266 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
17268 * Makefile.in (ELCFILES): Add CEDET files.
17270 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
17272 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
17274 * net/tramp.el (top): Require tramp-imap.
17276 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
17277 Use `tramp-compat-handle-file-attributes'.
17279 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
17281 * net/tramp-imap.el: New package.
17283 2009-09-28 Eric Ludlam <zappo@gnu.org>
17285 * emacs-lisp/chart.el:
17286 * emacs-lisp/eieio-base.el:
17287 * emacs-lisp/eieio-comp.el:
17288 * emacs-lisp/eieio-custom.el:
17289 * emacs-lisp/eieio-datadebug.el:
17290 * emacs-lisp/eieio-opt.el:
17291 * emacs-lisp/eieio-speedbar.el:
17292 * emacs-lisp/eieio.el: New files.
17294 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17296 * whitespace.el (whitespace-trailing-regexp)
17297 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
17300 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
17302 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
17305 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
17306 menu-bar-ediff-menu.
17308 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
17309 define-overloadable-function.
17311 * progmodes/autoconf.el: Provide autoconf as well, so that this
17312 file can be `require'd.
17314 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
17316 * emacs-lisp/autoload.el (generated-autoload-feature)
17317 (generated-autoload-load-name): New vars.
17318 (autoload-rubric, autoload-generate-file-autoloads): Use them.
17319 (make-autoload): Recognize define-overloadable-function and
17320 defclass forms (for EIEIO).
17322 * Makefile.in (update-subdirs): Exclude cedet directory.
17324 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
17326 * term/ns-win.el: Don't set the region face background. (Bug#4381)
17328 * faces.el: Default light-background background for region face to
17329 ns_selection_color under NS.
17331 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
17333 * net/imap-hash.el: New library, see NEWS.
17335 * Makefile.in (ELCFILES): Add imap-hash.el.
17337 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
17339 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
17340 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
17341 * help-macro.el (make-help-screen): Avoid using an ambiguous function
17342 definition where the docstring could be taken for the return value.
17344 2009-09-26 Glenn Morris <rgm@gnu.org>
17346 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
17347 Add option to only show images below a certain size.
17348 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
17349 save-excursion calls.
17351 2009-09-26 Eli Zaretskii <eliz@gnu.org>
17353 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
17354 subdirectories) and eieio.
17356 2009-09-26 Alan Mackenzie <acm@muc.de>
17358 * progmodes/cc-engine.el (c-beginning-of-statement-1):
17359 Correct buggy bracketing. (Bug#4289)
17361 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
17362 character constants (as case labels). (Bug#4289)
17364 2009-09-25 Juri Linkov <juri@jurta.org>
17366 * files.el (safe-local-eval-forms): Allow time-stamp in
17367 before-save-hook (Bug#4554).
17369 2009-09-25 Drew Adams <drew.adams@oracle.com>
17371 * menu-bar.el (list-buffers-directory): Doc fix.
17373 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
17375 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
17376 Try and avoid copying twice the same paragraph.
17377 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
17378 Remove save-excursion.
17379 (log-edit-changelog-entry): Do it here instead.
17381 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
17383 * bs.el (bs--get-file-name): Use `list-buffers-directory'
17384 when available, instead of hardcoding mode names. Doc fix.
17386 * menu-bar.el (list-buffers-directory): Add docstring.
17387 Make automatically buffer-local.
17389 * dired.el (dired-mode):
17390 * files.el (cd-absolute):
17391 * pcvs.el (cvs-temp-buffer):
17392 * pcvs-util.el (cvs-get-buffer-create):
17393 * shell.el (shell-mode):
17394 * vc-dir.el (vc-dir-mode):
17395 Don't make `list-buffers-directory' buffer local.
17397 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
17399 * comint.el (comint-exec, comint-run, make-comint):
17400 Doc fixes (Bug#4542).
17402 2009-09-25 Glenn Morris <rgm@gnu.org>
17404 * mail/rmailmm.el (rmail-mime): New custom group.
17405 Move all defcustoms in this file into this group.
17406 (rmail-mime-media-type-handlers-alist): Revert previous change.
17407 (rmail-mime-show-images): New option.
17408 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
17409 references to it, since it wasn't actually used for anything.
17410 (rmail-mime-insert-image): New function.
17411 (rmail-mime-image): Use rmail-mime-insert-image.
17412 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
17413 obey the value of `rmail-mime-show-images' option. Print the size of
17416 2009-09-25 David Engster <deng@randomsample.de>
17418 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
17420 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17422 * whitespace.el: Does not highlight trailing spaces While point is
17423 at end of line. Does not highligt spaces at beginning of buffer
17424 while point is at beginning of buffer. Does not highlight spaces
17425 at end of buffer while point is at end of buffer. (Bug#4177)
17427 (whitespace-display-mappings): Adjust initialization.
17428 (whitespace-point, whitespace-font-lock-refontify): New vars.
17429 (whitespace-color-on, whitespace-color-off): Adjust code.
17430 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
17431 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
17432 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
17434 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
17436 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
17438 * textmodes/sgml-mode.el: Remove xml-mode alias.
17440 * files.el (auto-mode-alist, conf-mode-maybe)
17441 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
17443 2009-09-24 Alan Mackenzie <acm@muc.de>
17445 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
17446 c-forward-conditionals, but it doesn't move point and doesn't set
17448 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
17449 (c-down-conditional-with-else, c-backward-conditional)
17450 (c-forward-conditional): Refactor to use c-scan-conditionals.
17452 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
17454 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
17455 (help-default-arg-highlight): Remove.
17456 (help-highlight-arg): New function.
17457 (help-do-arg-highlight): Use it.
17458 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
17460 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
17462 * term.el (term-set-scroll-region, term-handle-ansi-escape):
17463 Undo last change, which didn't fix the problem and introduced others.
17465 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
17467 * progmodes/gdb-mi.el: Don't require speedbar.
17468 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
17470 2009-09-24 Glenn Morris <rgm@gnu.org>
17472 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
17474 * term/ns-win.el (ns-reg-to-script): Define for compiler.
17476 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
17477 there is no newline after the final mime boundary. (Bug#4539)
17478 Move markers on insertion so that any buttons inserted don't end up in
17479 the next part of a multipart message.
17480 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
17481 (rmail-mime-bulk-handler): Optionally handle images.
17482 (rmail-mime-image): New button action.
17483 (rmail-mime-image-handler): New function.
17484 (rmail-mime-mode): New mode.
17485 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
17487 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
17489 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
17490 than just dropping elements from it (bug#4504).
17492 * term.el (term-set-scroll-region): Don't move cursor any more.
17493 (term-handle-ansi-escape): Call term-goto here instead.
17494 Suggested by Ivan Kanis <apple@kanis.eu>.
17496 * term.el: Require CL.
17497 (term-ansi-reset): New function.
17498 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
17499 (term-handle-colors-array): Simplify.
17501 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
17503 * allout.el (allout-overlay-interior-modification-handler)
17504 (allout-obtain-passphrase):
17505 * epa-file.el (epa-file-write-region):
17506 * ps-print.el (ps-begin-job):
17507 * vc-hooks.el (vc-toggle-read-only):
17508 * vc-rcs.el (vc-rcs-rollback):
17509 * vc-sccs.el (vc-sccs-rollback):
17510 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
17511 (vc-version-diff, vc-revert, vc-rollback):
17512 * wdired.el (wdired-check-kill-buffer):
17513 * emacs-lisp/authors.el (authors):
17514 * net/socks.el (socks-open-connection):
17515 * net/zeroconf.el (zeroconf-service-add-hook):
17516 * obsolete/vc-mcvs.el (vc-mcvs-register):
17517 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
17518 (gdb-select-frame):
17519 * progmodes/grep.el (lgrep, rgrep):
17520 * progmodes/idlw-help.el (idlwave-help-check-locations)
17521 (idlwave-help-html-link, idlwave-help-assistant-open-link):
17522 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
17523 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
17524 (reftex-toc-rename-label): Fix typos in error messages.
17526 * dired-aux.el (dired-do-shell-command): Reflow docstring.
17527 (dired-copy-how-to-fn): Doc fix.
17528 (dired-files-attributes, dired-read-shell-command):
17529 Fix typos in docstrings.
17531 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
17532 (dired-x-find-file-other-window): Reflow docstrings.
17533 (dired-omit-marker-char, dired-read-shell-command)
17534 (dired-x-submit-report): Fix typos in docstrings.
17536 * shell.el (shell-mode-hook):
17537 * view.el (View-scroll-line-forward):
17538 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
17539 Fix typos in docstrings.
17541 * net/dig.el (dig-invoke): Fix typo in docstring.
17542 (query-dig): Reflow docstring.
17544 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
17545 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
17546 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
17547 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
17548 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
17549 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
17550 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
17551 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
17552 (idlwave-completion-map, idlwave-current-indent)
17553 (idlwave-custom-ampersand-surround, idlwave-customize)
17554 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
17555 (idlwave-define-abbrev, idlwave-determine-class-special)
17556 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
17557 (idlwave-end-block-reg, idlwave-end-of-statement)
17558 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
17559 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
17560 (idlwave-explicit-class-listed, idlwave-file-header)
17561 (idlwave-fill-paragraph, idlwave-find-class-definition)
17562 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
17563 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
17564 (idlwave-in-quote, idlwave-indent-action-table)
17565 (idlwave-indent-expand-table, idlwave-indent-line)
17566 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
17567 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
17568 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
17569 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
17570 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
17571 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
17572 (idlwave-outlawed-buffers, idlwave-popup-select)
17573 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
17574 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
17575 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
17576 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
17577 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
17578 (idlwave-statement-type, idlwave-struct-skip)
17579 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
17580 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
17581 (idlwave-what-module-find-class): Fix typos in docstrings.
17582 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
17583 (idlwave-calculate-cont-indent, idlwave-expand-equal)
17584 (idlwave-find-module, idlwave-find-structure-definition)
17585 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
17586 (idlwave-list-load-path-shadows, idlwave-next-statement)
17587 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
17588 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
17589 (idlwave-template): Reflow docstrings.
17591 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
17592 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
17593 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
17594 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
17595 (idlwave-shell-display-line, idlwave-shell-display-wframe)
17596 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
17597 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
17598 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
17599 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
17600 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
17601 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
17602 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
17603 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
17604 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
17605 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
17606 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
17607 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
17608 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
17609 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
17610 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
17611 Fix typos in docstrings.
17612 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
17613 (idlwave-shell-hide-output, idlwave-shell-mode)
17614 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
17617 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
17619 2009-09-24 Ivan Kanis <apple@kanis.eu>
17621 * term.el (term-bold-attribute): New var.
17622 (term-handle-colors-array): Use it.
17624 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
17626 * progmodes/gdb-mi.el (gdb-version): New variable.
17627 (gdb-non-stop-handler): Set gdb-version.
17628 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
17629 Condition "--thread" option on gdb-version.
17630 (gdb-invalidate-threads): Remove unused argument.
17632 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17634 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
17635 to looking-back to avoid ridiculous slow down in large files (bug#4511).
17637 2009-09-23 Glenn Morris <rgm@gnu.org>
17639 * mail/rmail.el (rmail-reply): Don't try to add a References header when
17640 replying to mail without References or Message-Id. (Bug#4525)
17642 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
17644 * term/ns-win.el (ns-reg-to-script): New variable.
17646 2009-09-23 Daiki Ueno <ueno@unixuser.org>
17648 * epg.el (epg-wait-for-status): Preserve existing 'error results.
17650 2009-09-22 Sam Steingold <sds@gnu.org>
17652 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
17653 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
17654 to 1 because hg returns status 1 when nothing is found.
17655 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
17657 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
17659 * textmodes/fill.el: Convert to utf-8 encoding.
17660 (fill-french-nobreak-p): Remove redundant » and « inherited from our
17663 * add-log.el (change-log-fill-forward-paragraph): New function.
17664 (change-log-mode): Use it so fill-region DTRT.
17665 Set fill-indent-according-to-mode here rather than in
17666 change-log-fill-paragraph.
17667 (change-log-fill-paragraph): Remove.
17669 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
17671 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
17672 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
17674 2009-09-22 Glenn Morris <rgm@gnu.org>
17676 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
17677 the scroll-bar scroll the calendar window rather than the buffer.
17679 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
17680 commands that move point (as opposed to scrolling).
17682 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
17684 * emacs-lisp/elint.el (elint): New custom group.
17685 (elint-log-buffer): Make it a defcustom.
17686 (elint-scan-preloaded, elint-ignored-warnings)
17687 (elint-directory-skip-re): New options.
17688 (elint-builtin-variables): Doc fix.
17689 (elint-preloaded-env): New variable.
17690 (elint-unknown-builtin-args): Add an entry for encode-time.
17691 (elint-extra-errors): Make it a variable rather than a constant.
17692 (elint-preloaded-skip-re): New constant.
17693 (elint-directory): Skip files matching elint-directory-skip-re.
17694 (elint-features): New variable, local to linted buffers.
17695 (elint-update-env): Initialize elint-features. Possibly add
17696 elint-preloaded-env to the buffer's environment.
17697 (elint-get-top-forms): Bind elint-current-pos, for log messages.
17699 (elint-init-form): New function, extracted from elint-init-env.
17700 Make non-list forms a warning rather than an error.
17701 Add the mode-map for define-derived-mode. Handle define-minor-mode,
17702 easy-menu-define, put that adds an error-condition, and provide.
17703 When requiring cl, also require cl-macs. Really require cl, to handle
17704 some cl macros. Store required libraries in the list elint-features,
17705 so as not to re-load them. Treat cc-require like require.
17706 (elint-init-env): Call elint-init-form to do the work.
17707 Handle eval-and-compile and such like.
17708 (elint-add-required-env): Do not clear messages.
17709 (elint-special-forms): Add handlers for function, defalias, if, when,
17711 (elint-form): Add optional argument to ignore elint-special-forms,
17712 useful to prevent recursive calls from handlers. Doc fix.
17713 Respect elint-ignored-warnings.
17714 (elint-form): Respect elint-ignored-warnings.
17715 (elint-bound-variable, elint-bound-function): New variables.
17716 (elint-unbound-variable): Respect elint-bound-variable.
17717 (elint-get-args): Respect elint-bound-function.
17718 (elint-check-cond-form): Add some simple handling for (f)boundp and
17720 (elint-check-defalias-form): New handler.
17721 (elint-check-let-form): Make an empty let a warning rather than an
17723 (elint-check-setq-form): Make an empty setq a warning rather than an
17724 error. Respect elint-ignored-warnings.
17725 (elint-check-defvar-form): Accept null doc-strings.
17726 (elint-check-conditional-form): New handler. Does some simple-minded
17727 checking of featurep and (f)boundp tests.
17728 (elint-put-function-args): New function.
17729 (elint-initialize): Use elint-scan-doc-file rather than
17730 elint-find-builtin-variables. Use elint-put-function-args.
17731 Possibly scan preloaded-file-list.
17732 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
17733 extend to handle functions as well.
17735 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
17737 * linum.el (linum-delete-overlays, linum-update-window):
17738 Do not modify the right margin. (Bug#3971)
17740 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
17742 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
17743 Use nxml-mode instead of xml-mode.
17745 2009-09-21 Kevin Ryde <user42@zip.com.au>
17747 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
17749 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17751 * net/dig.el (dig-mode): Use define-derived-mode.
17753 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
17755 * vc-dispatcher.el (vc-do-command): Return the process object in
17756 the asynchronous case. Use when instead of if. Do not run
17757 vc-exec-after to display a message if not enabled. (Bug#4463)
17759 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
17760 properties to the stash strings.
17761 (vc-git-stash-list): Return a list of strings.
17762 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
17763 (vc-git-stash-show-at-point): New functions.
17764 (vc-git-stash-map): New keymap.
17766 * register.el (ctl-x-r-map): Define the keys here instead of
17769 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
17771 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
17772 list, to workaround performance problem (bug#4485).
17774 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
17776 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
17778 2009-09-20 Daiki Ueno <ueno@unixuser.org>
17780 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
17781 Document that this option is not recommended to use.
17783 2009-09-19 Glenn Morris <rgm@gnu.org>
17785 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
17788 * calc/calc-alg.el (var):
17789 * calc/calcalg2.el (var): Define for compiler.
17791 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
17793 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
17794 Doc fix (Bug#3932).
17796 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
17798 * time-stamp.el (time-stamp-month-dd-yyyy)
17799 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
17800 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
17801 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
17802 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
17803 Remove functions that have been obsolete since 1995 (Bug#4436).
17805 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
17806 indent buffer only if called interactively (Bug#4452).
17808 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
17809 Eli Zaretskii <eliz@gnu.org>
17811 This fixes bug#4197 (merged to bug#865, though not identical).
17812 * server.el (server-auth-dir): Add docstring note about FAT32.
17813 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
17814 but warn against using them.
17816 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
17818 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
17819 older GDB where there is no has_more field.
17821 2009-09-19 Glenn Morris <rgm@gnu.org>
17823 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
17825 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
17827 * files.el (auto-mode-alist): Change default for XML files to nXML
17830 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
17832 * server.el (server-ensure-safe-dir): Pass 'integer
17833 to `file-attributes', as suggested.
17835 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
17837 * dired-aux.el (dired-query-alist): Remove spurious backslash.
17838 (dired-query): Use read-key.
17840 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
17842 * cus-start.el (ns-use-qd-smoothing): Remove.
17844 2009-09-18 Glenn Morris <rgm@gnu.org>
17846 * allout.el (top-level): Remove unnecessary progn.
17848 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
17850 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
17851 definition of abbrev table.
17853 * speedbar.el (speedbar-track-mouse):
17854 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
17855 * net/eudc.el (eudc-expand-inline):
17856 * net/newst-backend.el (newsticker--cache-read-feed):
17857 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
17858 condition-case handlers.
17860 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
17862 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
17863 (gdb-var-list): Add an element for has_more field.
17864 (gdb-non-stop-handler): Enable pretty printing for STL containers.
17865 (gdb-var-create-handler, gdb-var-list-children-handler-1)
17866 (gdb-var-update-handler-1): Parse output of dynamic variable
17867 objects (STL containers).
17868 (gdb-var-delete-1): Pass var1 as an explicit second argument.
17869 (gdb-get-field): Delete alias. Use bindat-get-field directly.
17871 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
17873 (gud-speedbar-buttons): Make node expandable if expression "has more"
17876 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
17878 * startup.el (emacs-quick-startup): Remove variable and all uses.
17879 (command-line): Set `inhibit-x-resources' instead.
17880 (command-line-1): Use `inhibit-x-resources' instead.
17882 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
17884 * subr.el: Fix last change to avoid using the `unless' macro,
17885 which breaks bootstrapping.
17887 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
17889 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
17890 extended definitions, in case we reload subr.el after having
17892 (eval-next-after-load): Mark as obsolete.
17894 2009-09-17 Juri Linkov <juri@jurta.org>
17896 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
17897 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
17898 (menu-bar-showhide-menu, menu-bar-tools-menu)
17899 (menu-bar-describe-menu, menu-bar-help-menu)
17900 (minibuffer-local-completion-map, minibuffer-local-map):
17903 2009-09-17 Glenn Morris <rgm@gnu.org>
17905 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
17906 arguments, whether or not it has a handler.
17908 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
17910 * simple.el (hard-newline): Give it a doc-string.
17912 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17913 (lisp-mode-syntax-table): Give them doc-strings.
17915 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
17917 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
17918 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
17919 (menu-bar-options-menu, menu-bar-showhide-menu)
17920 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
17921 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
17922 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
17923 (menu-bar-options-menu, menu-bar-tools-menu)
17924 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
17925 (menu-bar-help-menu):
17926 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
17929 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
17930 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
17931 calls for the menu names and :help.
17933 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
17935 * mouse.el (minor-mode-menu-from-indicator): Pay attention
17936 to :minor-mode-function (bug#4455).
17938 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17940 * startup.el (command-line): Initialize the window-system after
17941 processing the command-line.
17943 * textmodes/page.el (what-page): Make sure we don't inf-loop if
17944 page-delimiter matches the empty string.
17946 2009-09-16 Glenn Morris <rgm@gnu.org>
17948 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
17949 byte-compile-not-obsolete-var. It's a list now.
17950 (byte-compile-not-obsolete-funcs): New variable.
17951 (byte-compile-warn-obsolete): Don't warn about functions if they are in
17952 byte-compile-not-obsolete-funcs.
17953 (byte-compile-variable-ref, byte-compile-defvar): Update for
17954 byte-compile-not-obsolete-vars name-change and list nature.
17955 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
17956 and variables behind (f)boundp tests.
17957 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
17959 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
17961 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
17963 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17965 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
17966 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
17969 2009-09-15 Stephen Eglen <stephen@gnu.org>
17971 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
17972 the virtual-buffers, use the name of the buffer specified by
17973 find-file-noselect, as the match may be a symlink. (This was a
17974 problem if the target and the symlink had different names.)
17976 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17978 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
17980 * desktop.el (desktop-path): Check user-emacs-directory.
17982 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
17984 * loadup.el: Use after-load-functions to GC after loading each file.
17985 Remove the explicit GC calls that used to be sprinkled around.
17987 * subr.el (after-load-functions): New hook.
17988 (do-after-load-evaluation): Run it. Use string-match-p to detect
17989 `obsolete' packages, rather than painfully extracting the relevant
17992 2009-09-15 Glenn Morris <rgm@gnu.org>
17994 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
17995 free variable `doc'.
17997 * dired.el (dired-mode-map): Add menu entry for async shell command.
17999 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
18000 variables, also consider the .elc files, since the .el files are
18001 normally gzipped (subsequent code locates the .el.gz from the .elc).
18003 * calc/calc-prog.el (arglist): Define for compiler.
18005 * calendar/diary-lib.el (diary-display-function): Change the default to
18007 (body): Define for compiler.
18009 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
18010 (byte-compile-file-form, byte-compile-lambda)
18011 (byte-compile-top-level-body, byte-compile-form)
18012 (byte-compile-variable-ref, byte-compile-setq)
18013 (byte-compile-setq-default, byte-compile-body)
18014 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
18015 (batch-byte-compile): Give some more local variables with common names
18016 a "bytecomp-" prefix to avoid masking warnings about free variables.
18018 * startup.el (command-line-1): Give local variables with common names a
18019 distinguishing prefix, so as not to hide free variable warnings during
18022 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
18023 clever and add a suffix to make a unique name, just let the user decide
18024 whether or not to overwrite it. If the input is a directory, write the
18025 default filename to that directory. (Bug#4388)
18026 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
18027 is a filename-as-a-directory.
18029 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
18031 * textmodes/page.el (what-page): Don't move to beginning of line.
18032 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
18034 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
18036 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
18038 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
18040 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
18041 * help.el (help-for-help-internal): Add purecopy calls for text.
18043 * vc.el (top): print-log method now takes an optional SHORTLOG
18044 argument. Add a new method: root.
18045 (vc-root-diff, vc-print-root-log): New functions.
18046 (vc-log-short-style): New variable.
18047 (vc-print-log-internal): Add support for showing short logs.
18049 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
18050 vc-print-root-log and vc-print-root-diff.
18052 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
18053 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
18054 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
18057 * vc-cvs.el (vc-cvs-print-log):
18058 * vc-mtn.el (vc-mtn-print-log):
18059 * vc-rcs.el (vc-rcs-print-log):
18060 * vc-sccs.el (vc-sccs-print-log):
18061 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
18062 that is ignored for now.
18064 * vc-mtn.el (vc-mtn-annotate-command):
18065 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
18067 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
18069 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
18070 to function-key-map, and give them ascii-character property.
18071 * term/x-win.el (x-alternatives-map):
18072 * term/ns-win.el (ns-alternatives-map):
18073 * term/internal.el (msdos-key-remapping-map):
18074 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
18076 2009-09-14 Glenn Morris <rgm@gnu.org>
18078 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
18079 temp-buffers (2009-09-12).
18081 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
18083 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
18084 the new read-key function.
18086 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
18088 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
18089 is defined (Bug#4405).
18091 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
18093 * recentf.el (recentf-cleanup): Use a hash table to find
18094 duplicates (Bug#4407).
18096 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
18098 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
18099 kp-0 to ascii equivalents (Bug#4325).
18101 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
18103 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
18105 * eshell/em-hist.el:
18106 * eshell/em-dirs.el (eshell-complete-user-reference):
18107 Declare pcomplete functions and variables to avoid compiler warnings.
18109 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
18111 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
18112 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
18113 * eshell/em-alias.el (eshell-aliases-file):
18114 * eshell/em-hist.el (eshell-history-file-name):
18115 Use expand-file-name instead of concat to make file names (Bug#4308).
18117 2009-09-13 Glenn Morris <rgm@gnu.org>
18119 * ediff-merg.el (ediff-do-merge):
18120 * filesets.el (filesets-run-cmd):
18121 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
18122 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
18123 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
18124 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
18125 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
18126 Replace empty `let's with `progn'.
18128 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
18130 * mail/sendmail.el (send-mail-function):
18131 * tooltip.el (tooltip-mode):
18132 * simple.el (transient-mark-mode):
18133 * rfn-eshadow.el (file-name-shadow-mode):
18134 * frame.el (blink-cursor-mode):
18135 * font-core.el (global-font-lock-mode):
18136 * files.el (temporary-file-directory)
18137 (small-temporary-file-directory, auto-save-file-name-transforms):
18138 * epa-hook.el (auto-encryption-mode):
18139 * composite.el (global-auto-composition-mode):
18140 Use custom-initialize-delay.
18141 * startup.el (command-line): Don't explicitly call
18142 custom-reevaluate-setting for all the above vars.
18143 * custom.el (custom-initialize-safe-set)
18144 (custom-initialize-safe-default): Delete.
18146 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18148 * term/x-win.el (x-initialize-window-system):
18149 * term/w32-win.el (w32-initialize-window-system):
18150 * term/ns-win.el (ns-initialize-window-system): Don't call
18151 mouse-wheel-mode since it's enabled globally by default already.
18153 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
18154 actually define the variable, but only silences the byte-compiler.
18155 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
18156 before looking it up.
18157 (mouse-wheel-scroll-amount): Also reset the bindings if this value
18160 2009-09-12 Glenn Morris <rgm@gnu.org>
18162 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
18164 (elint-add-required-env): Don't beep on error.
18165 (elint-forms): In case of error, return ENV unchanged.
18166 (elint-init-env): Skip non-list forms.
18167 (elint-log): Handle unknown file positions.
18169 2009-09-12 Daiki Ueno <ueno@unixuser.org>
18171 * epg.el (epg-make-context): Add autoload cookie.
18172 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
18173 (epg-decrypt-string, epg-start-verify, epg-verify-file)
18174 (epg-verify-string, epg-start-sign, epg-sign-file)
18175 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
18176 (epg-encrypt-string, epg-start-export-keys)
18177 (epg-export-keys-to-file, epg-export-keys-to-string)
18178 (epg-start-import-keys, epg-import-keys-from-file)
18179 (epg-import-keys-from-string, epg-start-receive-keys)
18180 (epg-receive-keys, epg-import-keys-from-server)
18181 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
18182 (epg-sign-keys, epg-start-generate-key)
18183 (epg-generate-key-from-file, epg-generate-key-from-string):
18184 Remove autoload cookie.
18186 2009-09-12 Eli Zaretskii <eliz@gnu.org>
18188 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
18189 reevaluation of trash-directory.
18191 * mwheel.el: Fix last change.
18192 (mouse-wheel-mode): New defvar.
18193 (mouse-wheel-mode): Remove autoload cookie.
18195 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18197 * mwheel.el (mwheel-installed-bindings): New var.
18198 (mouse-wheel-mode): Use it, so as to make sure we really remove all
18199 the bindings we set last time. Use custom-initialize-delay.
18200 * loadup.el: Load mwheel after term/*-win.el.
18201 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
18202 and mouse-wheel-up-event now that their first evaluation is done
18203 sufficiently late to be correct.
18205 * startup.el (tutorial-directory): Make it a defcustom.
18206 Use custom-initialize-delay rather than eval-at-startup to set it.
18207 * image.el (image-load-path): Make it a defcustom.
18208 Use custom-initialize-delay rather than eval-at-startup to set it.
18209 * subr.el (eval-at-startup): Remove.
18210 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
18212 * subr.el (do-after-load-evaluation): Warn the user after loading an
18215 2009-09-12 Glenn Morris <rgm@gnu.org>
18217 * proced.el (proced-mark-alt): Remove alias.
18218 (proced-mode-map): Remove proced-mark-alt.
18220 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
18221 Elint file and directory. Remove initialization entry.
18223 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
18225 (elint-current-buffer): Set mode-line-process.
18226 (elint-init-env): Handle define-derived-mode.
18227 Fix declare-function with unspecified arglist. Guard against odd
18228 defalias statements (eg iso-insert's 8859-1-map).
18229 (elint-add-required-env): Use a temp buffer.
18230 (elint-form): Just print the function/macro name, not the whole form.
18231 Return env unchanged if we fail to parse a macro.
18232 (elint-forms): Guard against parse errors.
18233 (elint-output): New function, to handle batch mode.
18234 (elint-log-message): Add optional argument. Use elint-output.
18235 (elint-set-mode-line): New function.
18237 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
18239 * emacs-lisp/elp.el (elp-not-profilable): Add more
18240 functions (Bug#4233).
18242 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
18244 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
18245 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
18247 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
18249 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
18250 (gdb-var-list-children): Use json parsing.
18252 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
18254 * progmodes/js.el (js--proper-indentation): Handle the case where
18255 char-before is null. Reported by Deniz Dogan.
18257 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
18259 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
18261 2009-09-11 Daiki Ueno <ueno@unixuser.org>
18263 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
18264 (epg-digest-algorithm-alist): Add SHA224.
18265 (epg-context-set-passphrase-callback)
18266 (epg-context-set-progress-callback): Add description about
18269 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
18271 * custom.el (custom-delayed-init-variables): New var.
18272 (custom-initialize-delay): New function.
18273 * startup.el (command-line): "Re"evaluate all vars in
18274 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
18275 explicitly any more.
18276 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
18277 to avoid creating a ~/.emacs.d at build-time (bug#4347).
18279 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
18281 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
18283 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
18284 (gdb-var-update-handler): Use json parsing.
18286 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
18288 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
18289 decode annotated text, regardless of language environment. (Bug#2741)
18291 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
18293 * Makefile.in (autoloads): Make rmail.el writable as well.
18295 2009-09-11 Glenn Morris <rgm@gnu.org>
18297 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
18299 * dired.el: Regenerate with extracted autoloads.
18300 * Makefile.in (autoloads): Make dired.el writable.
18302 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
18303 * ibuffer.el: Regenerate with extracted autoloads.
18304 * Makefile.in (autoloads): Make ibuffer.el writable.
18306 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
18307 * version.el (emacs-copyright, emacs-major-version)
18308 (emacs-minor-version): Reformat doc-strings for make-docfile.
18310 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
18311 functions and variables, since they must be stuff specific to some other
18313 (apropos-print): Make mouse-click message less specific about button.
18315 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
18316 that records where a macro was defined.
18317 * help-fns.el (describe-function-1): Mention if a function has a
18319 * help-mode.el (help-function-cmacro): New button.
18321 * locate.el (top-level): Always require dired.
18322 (locate-mode-map): Initialize inside the defvar.
18324 * net/ange-ftp.el (dired-compress-file): Declare.
18325 (ange-ftp-dired-compress-file): Add doc string.
18327 * term/ns-win.el (x-display-name, x-setup-function-keys):
18328 Unify doc-strings with X versions.
18330 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
18332 * emulation/crisp.el (crisp-mode-map): Move initialization
18334 (crisp-mode): Use define-minor-mode.
18336 * progmodes/xscheme.el (xscheme-evaluation-commands):
18337 Put a :advertised-binding property rather than using
18338 advertised-xscheme-send-previous-expression.
18339 (advertised-xscheme-send-previous-expression): Declare obsolete.
18340 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
18342 (crisp-mode): Add corresponding bindings to
18343 undo's :advertised-binding instead.
18344 * dired.el (dired-mode-map): Put a :advertised-binding property rather
18345 than using dired-advertised-find-file.
18346 (dired-advertised-find-file):
18347 * simple.el (advertised-undo):
18348 * wid-edit.el (advertised-widget-backward): Declare obsolete.
18349 (widget-keymap): Put a :advertised-binding property rather
18350 than using advertised-widget-backward.
18351 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
18352 than using advertised-undo.
18353 * tutorial.el (tutorial--default-keys): Adjust accordingly.
18355 2009-09-10 Simon South <ssouth@slowcomputing.org>
18357 * progmodes/delphi.el (delphi-tab): Indent region when Transient
18358 Mark mode is enabled and region is active; otherwise indent or
18359 insert TAB as usual.
18360 (delphi-mode): Update description of TAB-key binding.
18362 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
18364 * subr.el (define-key-rebound-commands): Mark obsolete.
18365 * startup.el (precompute-menubar-bindings): Remove.
18366 (normal-top-level): Remove obsolete code that tried to precompute
18368 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
18369 define-key-rebound-commands and precompute-menubar-bindings.
18371 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
18373 * net/imap.el (imap-interactive-login): Better messages.
18374 (imap-open): Fix bug with renamed buffer on reconnect.
18375 (imap-authenticate): Add buffer-local imap-last-authenticator variable
18376 for easier debugging and cleaner code. On successful (guessed based on
18377 server capabilities) secondary authentication, set imap-state
18379 (imap-last-authenticator): Define imap-last-authenticator as a variable
18382 2009-09-10 Glenn Morris <rgm@gnu.org>
18384 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
18386 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
18387 (byte-compile-file-form-autoload): Don't warn about unknown functions
18388 where the autoload statement comes after the use.
18389 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
18390 that any handlers inside the body (eg require) are in turn respected.
18392 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
18395 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
18396 and syntax and abbrev tables basic docs, if they don't have any.
18398 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
18400 * international/mule-cmds.el (top-level): Require cl when compiling.
18401 (view-hello-file): Use default-value rather than
18402 default-enable-multibyte-characters.
18404 * progmodes/fortran.el: Move all safe and risky properties into the
18407 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
18408 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
18409 * mail/undigest.el:
18410 Put autoloads in rmail.el rather than loaddefs.el.
18411 * mail/rmail.el: Regenerate with extracted autoloads.
18413 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
18414 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
18416 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
18418 Reported in thread for Bug#4375.
18419 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
18420 "-data-evaluate-expression" instead of print.
18421 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
18422 (gdb-tooltip-print): Parse output from above MI command.
18423 (gdb): Revert 2009-08-11 change. User should detach inferior
18426 Remove the word "separate" from IO functions as inferior
18427 output is now never displayed in the GUD buffer.
18429 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
18431 * startup.el (command-line-normalize-file-name): On Windows and
18432 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
18434 2009-09-10 Juri Linkov <juri@jurta.org>
18436 * isearch.el (isearch-text-char-description): Propertize escape
18437 character sequences with the `escape-glyph' face. (Bug#4344)
18439 * simple.el (shell-command): Set asynchronous process filter to
18440 `comint-output-filter'. (Bug#4343)
18442 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
18443 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
18444 the list. Move "asm" to the bottom.
18445 (grep-find-ignored-directories): Add `choice' with nil value
18446 to empty the list easily.
18447 (grep-find-ignored-files): New option.
18448 (grep-files-history): Set to nil by default instead of '("ch" "el").
18449 (grep-compute-defaults): Add "<X>" to `grep-template'.
18450 (grep-read-files): Bind new local variables `default-alias' and
18451 `default-extension'. Use a list of default values for the file prompt.
18452 (lgrep): Add `--exclude=' command line options composed from
18453 `grep-find-ignored-files'.
18454 (rgrep): Add `-name' command line options composed from
18455 `grep-find-ignored-files'. (Bug#4301)
18457 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
18459 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
18462 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
18464 * calendar/time-date.el (autoload):
18465 Expand define-obsolete-function-alias into defalias and make-obsolete
18466 for old Emacsen that Gnus supports.
18467 (with-no-warnings): Define it for old Emacsen.
18468 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
18470 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
18471 float-time is available; suppress compile warning for time-to-seconds.
18473 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
18475 * net/imap.el (imap-message-map): Docstring fix.
18477 2009-09-09 Glenn Morris <rgm@gnu.org>
18479 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
18480 line numbers too. (Bug#4374)
18482 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
18484 * smerge-mode.el (smerge-remove-props, smerge-refine):
18485 Use with-silent-modifications (bug#4342).
18487 * subr.el (with-silent-modifications): New macro.
18489 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
18491 * files.el (top-level): Require `cl' when compiling.
18493 2009-09-07 Glenn Morris <rgm@gnu.org>
18495 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
18497 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
18498 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
18500 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
18502 * vc-git.el (vc-git-annotate-command): Use separator to parse
18503 arguments correctly.
18505 2009-09-06 Eli Zaretskii <eliz@gnu.org>
18507 * proced.el (proced-mode): Doc fix.
18509 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
18511 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
18513 (tramp-do-file-attributes-with-ls): Check for file existence at
18515 (tramp-do-file-attributes-with-stat): Likewise.
18516 (tramp-convert-file-attributes): Return nil when attr is nil.
18518 2009-09-05 Glenn Morris <rgm@gnu.org>
18520 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
18521 properties to this button.
18522 (diary-fancy-display): Don't extend the button to the final newline.
18523 (diary-fancy-display-mode): Continue to define "q" as a local key.
18525 * calendar/cal-china.el (holiday-chinese): Make it slightly more
18528 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
18530 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
18531 (byte-compile-dest-file-function): New option.
18532 (byte-compile-dest-file): Doc fix.
18533 Obey byte-compile-dest-file-function.
18534 (byte-compile-cl-file-p): New function.
18535 (byte-compile-eval): Only suppress noruntime warnings about cl functions
18536 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
18537 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
18538 than for file being previously loaded.
18539 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
18540 (byte-compile-file-form-require): Handle the case where requiring a file
18541 indirectly causes CL to be loaded.
18543 2009-09-05 Karl Fogel <kfogel@red-bean.com>
18545 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
18546 before killing the old buffer, since by the time `kill-buffer' is
18547 run so many buffer variables have been set to nil that it may not
18548 behave as expected. (Bug#4061)
18550 2009-09-05 Karl Fogel <kfogel@red-bean.com>
18552 * files.el (find-alternate-file): If the old buffer is modified
18553 and visiting a file, behave similarly to `kill-buffer' when
18554 killing it, thus reverting to the pre-1.878 behavior; see
18555 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
18556 for discussion. Also, consult `buffer-file-name' as a variable
18557 not as a function, for consistency with the rest of the code.
18559 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
18561 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
18562 also when adding a new directory.
18564 * net/tramp-compat.el (tramp-compat-line-beginning-position):
18567 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
18569 * files.el (locate-file-completion-table): Make it provide boundary
18570 information, so partial-completion works better.
18572 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
18574 * mail/footnote.el (Footnote-text-under-cursor):
18575 Check footnote-text-marker-alist before using it (bug#4324).
18577 2009-09-04 Glenn Morris <rgm@gnu.org>
18579 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
18580 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
18581 * play/solitaire.el, play/tetris.el:
18582 Remove leading * from defcustom and defface docs.
18584 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
18586 (diary-fancy-overriding-map): New variable.
18587 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
18590 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
18593 2009-09-03 Glenn Morris <rgm@gnu.org>
18595 * arc-mode.el (archive-mode):
18596 * dos-fns.el (set-default-process-coding-system):
18597 * man.el (Man-getpage-in-background):
18598 * menu-bar.el (menu-bar-describe-menu):
18599 * server.el (server-process-filter):
18600 * startup.el (command-line):
18601 * tar-mode.el (tar-header-block-tokenize, tar-extract):
18602 * w32-fns.el (set-default-process-coding-system):
18603 * x-dnd.el (x-dnd-handle-file-name):
18604 * international/mule-cmds.el (mule-menu-keymap)
18605 (set-default-coding-systems, language-info-alist, set-language-info)
18606 (set-language-environment, standard-display-european-internal)
18607 (set-locale-environment):
18608 * international/mule-diag.el (mule-diag):
18609 * mail/emacsbug.el (report-emacs-bug):
18610 * mail/rmail.el (rmail-mode):
18611 * mail/sendmail.el (mail-setup):
18612 Use default-value rather than default-enable-multibyte-characters.
18614 * progmodes/f90.el: Move all safe properties into the defcustoms.
18615 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
18617 * calendar/appt.el (appt-check):
18618 * calendar/diary-lib.el (diary-set-header, diary-live-p)
18619 (diary-check-diary-file, diary-list-entries)
18620 (diary-include-other-diary-files, diary-simple-display)
18621 (diary-fancy-display, diary-print-entries)
18622 (diary-mark-included-diary-files, diary-make-entry):
18623 Don't call substitute-in-file-name on diary-file.
18625 2009-09-03 Eduard Wiebe <usenet@pusto.de>
18626 Stefan Monnier <monnier@iro.umontreal.ca>
18628 * mail/footnote.el (footnote-prefix): Make it a defcustom.
18629 (footnote-mode-map): Move initialization into the declaration.
18630 (footnote-minor-mode-map): Define it rather than changing global-map.
18631 (footnote-mode): Use define-minor-mode.
18633 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
18635 * net/tramp.el (tramp-handle-file-attributes-with-ls)
18636 (tramp-do-file-attributes-with-perl)
18637 (tramp-do-file-attributes-with-stat): Rename from
18638 `tramp-handle-file-attributes-with-*'.
18639 (tramp-handle-file-attributes): Use them.
18640 (tramp-do-directory-files-and-attributes-with-perl)
18641 (tramp-do-directory-files-and-attributes-with-stat): Rename from
18642 `tramp-handle-directory-files-and-attributes-with-*'.
18643 (tramp-handle-directory-files-and-attributes): Use them.
18644 (tramp-method-out-of-band-p): Additional parameter SIZE.
18645 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
18646 (tramp-handle-write-region): Use it.
18647 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
18648 (tramp-handle-vc-registered): Check, whether the first run did
18649 return files to be tested.
18650 (tramp-advice-make-auto-save-file-name): Do not call directly
18651 `tramp-handle-make-auto-save-file-name', because this would bypass
18652 the locking mechanism.
18654 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
18655 (file-remote-p, process-file, start-file-process, set-file-times)
18656 (tramp-compat-file-attributes): Compatibility functions shall not
18657 call directly `tramp-handle-*', because this would bypass the
18659 (tramp-compat-number-sequence): New defun.
18661 2009-09-02 Glenn Morris <rgm@gnu.org>
18663 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
18664 alias for float-time.
18665 (time-to-number-of-days): In Emacs, use float-time.
18666 * net/newst-backend.el (time-add): Suppress warnings from compat
18668 * time.el (emacs-uptime, emacs-init-time):
18669 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
18670 Use float-time rather than time-to-seconds.
18672 * minibuffer.el (completion-initials-expand): Fix typo.
18674 * faces.el (modeline, modeline-inactive, modeline-highlight)
18675 (modeline-buffer-id):
18676 * info.el (info-menu-5): Mark these face aliases as obsolete.
18678 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
18680 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
18682 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
18683 no "--thread" option.
18684 (gdb-stopped): Don't print "Switched to thread" message when it is
18687 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
18689 * minibuffer.el (completion-try-completion)
18690 (completion-all-completions): Remove ill-defined (and
18691 mistakenly installed and luckily never used nor documented)
18692 `completion-styles' property.
18693 (completion-initials-expand, completion-initials-all-completions)
18694 (completion-initials-try-completion): New functions.
18695 (completion-styles-alist): Add doc to each entry.
18696 Add new `initials' entry.
18698 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
18700 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
18701 MI command -var-evaluate-expression.
18702 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
18703 and tweak for case of string child.
18704 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
18706 2009-09-01 Glenn Morris <rgm@gnu.org>
18708 * add-log.el (change-log-date-face, change-log-name-face)
18709 (change-log-email-face, change-log-file-face, change-log-list-face)
18710 (change-log-conditionals-face, change-log-function-face)
18711 (change-log-acknowledgement-face):
18712 * cus-edit.el (custom-invalid-face, custom-rogue-face)
18713 (custom-modified-face, custom-set-face, custom-changed-face)
18714 (custom-saved-face, custom-button-face, custom-button-pressed-face)
18715 (custom-documentation-face, custom-state-face, custom-comment-face)
18716 (custom-comment-tag-face, custom-variable-tag-face)
18717 (custom-variable-button-face, custom-face-tag-face)
18718 (custom-group-tag-face-1, custom-group-tag-face):
18719 * diff-mode.el (diff-header-face, diff-file-header-face)
18720 (diff-index-face, diff-hunk-header-face, diff-removed-face)
18721 (diff-added-face, diff-changed-face, diff-function-face)
18722 (diff-context-face, diff-nonexistent-face):
18723 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
18724 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
18725 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
18726 (Info-title-4-face):
18727 * isearch.el (isearch-lazy-highlight-face):
18728 * log-view.el (log-view-file-face, log-view-message-face):
18729 * paren.el (show-paren-match-face, show-paren-mismatch-face):
18730 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
18731 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
18733 * smerge-mode.el (smerge-mine-face, smerge-other-face)
18734 (smerge-base-face, smerge-markers-face):
18735 * wid-edit.el (widget-documentation-face, widget-button-face)
18736 (widget-field-face, widget-single-line-field-face)
18737 (widget-inactive-face, widget-button-pressed-face):
18738 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
18739 (woman-addition-face):
18740 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
18741 (eshell-ls-executable-face, eshell-ls-readonly-face)
18742 (eshell-ls-unreadable-face, eshell-ls-special-face)
18743 (eshell-ls-missing-face, eshell-ls-archive-face)
18744 (eshell-ls-backup-face, eshell-ls-product-face)
18745 (eshell-ls-clutter-face):
18746 * eshell/em-prompt.el (eshell-prompt-face):
18747 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
18748 * obsolete/old-whitespace.el (whitespace-highlight-face):
18749 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
18750 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
18751 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
18752 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
18753 (antlr-font-lock-literal-face):
18754 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
18755 (ebrowse-root-class-face, ebrowse-file-name-face)
18756 (ebrowse-default-face, ebrowse-member-attribute-face)
18757 (ebrowse-member-class-face, ebrowse-progress-face):
18758 * progmodes/make-mode.el (makefile-space-face):
18759 * progmodes/sh-script.el (sh-heredoc-face):
18760 * textmodes/flyspell.el (flyspell-incorrect-face)
18761 (flyspell-duplicate-face):
18762 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
18763 * textmodes/texinfo.el (texinfo-heading-face):
18764 Mark face aliases with "-face" suffix as obsolete.
18766 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
18769 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
18770 (eudc-bob-sound-menu): Use defvar rather than defconst, since
18771 easy-menu-define wants to modify these.
18773 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
18775 * net/browse-url.el (browse-url-file-url):
18776 * term/internal.el (dos-codepage-setup):
18777 Use default-value rather than default-enable-multibyte-characters.
18779 * progmodes/etags.el (etags-goto-tag-location):
18780 * progmodes/flymake.el (flymake-highlight-line)
18781 (flymake-goto-file-and-line, flymake-goto-line):
18782 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
18783 (gdb-goto-breakpoint):
18784 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
18785 * progmodes/python.el (python-find-function)
18786 (python-pdbtrack-track-stack-file):
18787 * progmodes/verilog-mode.el (verilog-surelint-off):
18788 * term/ns-win.el (ns-open-file-select-line):
18789 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
18790 Use forward-line rather than goto-line.
18792 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
18793 * textmodes/reftex-index.el (reftex-display-index):
18794 * textmodes/reftex-ref.el (reftex-offer-label-menu):
18795 * textmodes/reftex-toc.el (reftex-toc):
18796 Remove unnecessary bindings of default-major-mode (all are followed by
18797 major-mode check and possible mode switch).
18799 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
18801 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
18802 Handle watchpoints (bug#4282).
18803 (def-gdb-thread-buffer-command): Enable thread to be selected by
18804 clicking without selecting threads buffer first.
18805 (gdb-current-context-command): Use selected frame so that "up",
18806 "down" etc work in the GUD buffer.
18807 (gdb-update): Find selected frame before rendering stack buffer.
18808 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
18810 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
18812 * progmodes/sym-comp.el (displayed-completions): Remove.
18813 (symbol-complete): Use minibuffer-complete.
18815 2009-08-31 Glenn Morris <rgm@gnu.org>
18817 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
18819 * apropos.el (apropos-symbols-internal):
18820 Handle (obsolete) face aliases.
18822 * faces.el (describe-face): Adjust the output format to be more like
18823 describe-variable, and to mention (obsolete) face aliases.
18824 Adjust the whitespace so that help-setup-xref works.
18826 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
18827 * calendar/diary-lib.el (diary-button-face):
18828 Mark these face aliases as obsolete.
18830 * calendar/calendar.el (calendar-today): Doc fix.
18832 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
18834 * progmodes/gdb-mi.el (gdb-control-all-threads)
18835 (gdb-control-current-thread): Force tool bar update.
18836 (gdb-non-stop-handler): New function.
18837 (gdb-init-1): Use it to test if non-stop mode is supported.
18838 Remove unused gdbmi buffer type.
18840 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
18842 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
18843 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
18845 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
18847 * comint.el (comint-exec-1): Check command is non-null first.
18848 Part of gdb-mi.el change (2009-08-28).
18850 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18852 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
18854 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
18856 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
18857 instead of `dolist' to avoid a recursive require when bootstrapping.
18859 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18861 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
18863 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
18865 * net/imap.el (imap-send-command): Simplify.
18866 (imap-wait-for-tag): point-max -> buffer-size.
18868 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
18870 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
18871 with constant argument.
18873 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
18875 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
18877 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
18878 Change default, since most of our files don't have a history.
18879 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
18882 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
18885 * calc/calc.el: Improve commenting convention.
18886 (calc-digit-map, toplevel): Simplify.
18888 * comint.el (comint-insert-input): Be careful to only set point if we
18889 don't delegate to some other command.
18891 * proced.el (proced-signal-list): Make it an alist.
18892 (proced-grammar-alist): Capitalize names.
18893 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
18894 Disable undo manually and make it read-only.
18895 Use completion-annotate-function.
18897 * minibuffer.el (minibuffer-message): If the current buffer is not
18898 a minibuffer, insert the message in the echo area rather than at the
18900 (completion-annotate-function): New variable.
18901 (minibuffer-completion-help): Use it.
18902 (completion--embedded-envvar-table): Environment vars are
18903 always case-sensitive.
18905 2009-08-30 Glenn Morris <rgm@gnu.org>
18907 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
18908 from fortran-current-defun.
18909 (fortran-beginning-of-subprogram): Be more precise about finding the
18910 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
18911 (fortran-end-of-subprogram): Simplify.
18912 (fortran-current-defun): Use fortran-start-prog-re.
18914 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
18916 * subr.el (do-after-load-evaluation): Simplify.
18918 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
18920 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
18922 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
18923 (vc-rcs-print-log): Use it.
18925 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
18927 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
18929 * paths.el (abbrev-file-name): Move to abbrev.el.
18930 * abbrev.el (abbrev-file-name): Move from paths.el.
18931 Obey user-emacs-directory.
18932 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
18933 user-emacs-directory.
18934 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
18935 abbrev-file-name and calc-settings-file any more.
18936 * startup.el (command-line): Recompute abbrev-file-name and
18937 abbreviated-home-dir.
18938 (normal-no-mouse-startup-screen): Improve the generic code and get rid
18939 of the special code for when C-h bindings haven't been changed.
18940 (display-startup-echo-area-message): Use with-current-buffer.
18941 (command-line-1): Use a list of strings, rather than a list of lists
18942 of strings for longopts.
18944 * files.el (get-free-disk-space): Use / for default-directory.
18946 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
18947 Use with-current-buffer.
18949 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
18950 Recognize immutable variables like most-positive-fixnum.
18951 (byte-compile-setq-default): Check and warn if trying to assign
18952 to an immutable variable, or a non-variable.
18954 * progmodes/cc-vars.el (c-comment-continuation-stars):
18955 * progmodes/cc-engine.el (c-looking-at-bos):
18956 * progmodes/cc-cmds.el (c-toggle-auto-state)
18957 (c-forward-into-nomenclature, c-backward-into-nomenclature)
18958 (c-comment-line-break-function): Add version of obsolescence.
18960 2009-08-28 Juri Linkov <juri@jurta.org>
18962 * files.el (magic-fallback-mode-alist): Add ZIP magic number
18963 associated with `archive-mode'.
18965 * image.el (image-type-header-regexps): Use only JPEG magic number
18966 to determine JPEG images, and don't use `image-jpeg-p' because
18967 Emacs can display non-JFIF non-Exif JPEG images.
18969 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
18971 * arc-mode.el (archive-mode):
18972 * emacs-lisp/re-builder.el (re-builder-unload-function):
18973 Protect against the default value of `major-mode' being nil.
18975 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
18977 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
18978 Fix typos in docstrings.
18980 * progmodes/js.el (js--macro-decl-re): Doc fix.
18981 (js--plain-method-re, js--split-name): Refloc docstring.
18982 (js--class-styles, js--make-merged-item, js--splice-into-items):
18983 Fix typos in docstrings; reflow docstrings.
18984 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
18985 (js--variable-decl-matcher, js--inside-pitem-p)
18986 (js--parse-state-at-point, js--get-all-known-symbols)
18987 (js--symbol-history, js-find-symbol, js--js-references)
18988 (js--moz-interactor, js--js-encode-value, js--read-tab):
18989 Fix typos in docstrings.
18991 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18993 * textmodes/reftex.el (reftex-get-file-buffer-force):
18994 * progmodes/verilog-mode.el (verilog-batch-execute-func):
18995 * emulation/viper.el (viper-go-away, viper-set-hooks):
18996 * emacs-lisp/re-builder.el (re-builder-unload-function):
18997 * emacs-lisp/bytecomp.el (byte-compile-file):
18998 * ses.el (ses-unload-function):
18999 * hexl.el (hexl-find-file):
19000 * files.el (normal-mode):
19001 * ehelp.el (with-electric-help):
19002 * autoinsert.el (auto-insert-alist):
19003 * arc-mode.el (archive-mode):
19004 Use (default-value 'major-mode) instead of default-major-mode.
19006 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
19007 * international/mule.el (load-with-code-conversion):
19008 * emacs-lisp/debug.el (debug):
19009 * ediff-vers.el (ediff-rcs-get-output-buffer):
19010 * dired.el (dired-internal-noselect): Don't let-bind
19011 default-major-mode around code that doesn't use it.
19012 E.g. buffer creation via get-buffer-create doesn't use it.
19014 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
19016 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
19017 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
19018 when writing the temp file. Otherwise, epa-file gets confused.
19019 (tramp-register-file-name-handlers): Make it a defun. Move also
19020 `epa-file-handler' to the front of `file-name-handler-alist'.
19022 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19024 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
19025 start right after a ^M.
19026 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
19027 (tramp-completion-file-name-regexp-separate)
19028 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
19029 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
19030 Don't modify last-coding-system-used by accident.
19031 (tramp-completion-file-name-handler): Apply the checks here,
19032 instead during registration.
19033 (tramp-register-file-name-handlers): Rename from
19034 `tramp-register-file-name-handler'. Register both
19035 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
19036 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
19038 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
19040 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
19041 Remove variable ...
19042 (gdb-init-1, gdb-display-separate-io-buffer)
19043 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
19045 (gdb-inferior-io-mode): Use make-comint-in-buffer.
19046 (gdb-inferior-filter): Use comint-output-filter to stop
19047 echoing and remove ^M characters.
19049 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19051 * emulation/viper-init.el (viper-restore-cursor-type):
19052 * emulation/cua-base.el (cua--update-indications):
19053 Replace default-cursor-type with (default-value 'cursor-type).
19055 * mail/sendmail.el (mail-recover-1):
19056 * international/mule-diag.el (describe-current-coding-system-briefly)
19057 (describe-current-coding-system):
19058 * international/mule-cmds.el (select-safe-coding-system)
19059 (select-message-coding-system)
19060 (set-language-environment-coding-systems, set-locale-environment):
19061 * hexl.el (hexl-insert-multibyte-char):
19062 * dos-w32.el (find-buffer-file-type-coding-system):
19063 * simple.el (what-cursor-position):
19064 Replace uses of default-buffer-file-coding-system
19065 with (default-value 'buffer-file-coding-system).
19067 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
19068 Replace uses of default-cursor-in-non-selected-windows
19069 with (default-value 'cursor-in-non-selected-windows).
19070 Use with-current-buffer.
19072 * mail/feedmail.el: Use CL macros.
19073 (feedmail-run-the-queue, feedmail-send-it-immediately):
19074 * dos-w32.el (find-buffer-file-type): Replace uses of
19075 default-buffer-file-type with (default-value 'buffer-file-type).
19077 2009-08-28 Glenn Morris <rgm@gnu.org>
19079 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
19080 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
19081 Use default-value of major-mode rather than default-major-mode.
19083 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
19085 * Makefile.in (update-elcfiles): Report left over elc files.
19087 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
19088 expand-file-name and with-current-buffer.
19089 (mail-get-names, mail-directory): Use with-current-buffer.
19091 * vc.el (vc-read-revision): New function.
19092 (vc-version-diff, vc-merge): Use it.
19094 2009-08-27 Sam Steingold <sds@gnu.org>
19096 * simple.el (kill-do-not-save-duplicates): New user option.
19097 (kill-new): When it is non-nil, and the new string is the same as
19098 the latest kill, set replace to t to avoid duplicates in kill-ring.
19100 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
19102 * net/tramp.el (tramp-handle-process-file): Do not flush all
19103 caches when `process-file-side-effects' is set.
19104 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
19105 instead of `tramp-find-file-exists-command'.
19106 Unset `process-file-side-effects'.
19108 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
19110 * net/tramp.el (tramp-methods): New method "rsyncc".
19111 (top): Add completion function for "rsyncc".
19112 (tramp-message-show-message): New defvar.
19113 (tramp-message, tramp-error): Use it.
19114 (tramp-do-copy-or-rename-file-directly): Extend check for direct
19116 (tramp-do-copy-or-rename-file-out-of-band): Handle new
19117 `tramp-methods' entry `copy-env' of "rsyncc".
19118 (tramp-vc-registered-read-file-names): New defconst.
19119 (tramp-vc-registered-file-names): New defvar.
19120 (tramp-handle-vc-registered): Implement optimization strategy.
19121 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
19122 (tramp-vc-file-name-handler): New defun.
19123 (tramp-get-ls-command, tramp-get-test-command)
19124 (tramp-get-file-exists-command, tramp-get-remote-ln)
19125 (tramp-get-remote-perl, tramp-get-remote-stat)
19126 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
19128 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
19129 (tramp-cache-inhibit-cache): Extend doc string. It allows also
19131 (tramp-get-file-property): Check for timestamps in
19132 `tramp-cache-inhibit-cache'.
19133 (tramp-set-file-property): Write timestamp.
19135 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
19137 * language/japan-util.el (japanese-symbol-table): Add entries for
19140 * international/characters.el: Add category `j' to cp932-2-byte.
19142 2009-08-27 Kenichi Handa <handa@m17n.org>
19144 * international/fontset.el (build-default-fontset-data): New macro.
19145 (setup-default-fontset): Use build-default-fontset-data for CJK,
19146 tibetan, ethiopic, and ipa.
19148 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
19150 * cus-start.el (default-major-mode): Customize `major-mode' instead.
19151 (enable-multibyte-characters): Not customizable any more.
19153 * subr.el (default-mode-line-format, default-header-line-format)
19154 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
19155 (default-direction-reversed, default-truncate-lines)
19156 (default-left-margin, default-tab-width, default-case-fold-search)
19157 (default-left-margin-width, default-right-margin-width)
19158 (default-left-fringe-width, default-right-fringe-width)
19159 (default-fringes-outside-margins, default-scroll-bar-width)
19160 (default-vertical-scroll-bar, default-indicate-empty-lines)
19161 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
19162 (default-fringe-cursor-alist, default-scroll-up-aggressively)
19163 (default-scroll-down-aggressively, default-fill-column)
19164 (default-cursor-type, default-buffer-file-type)
19165 (default-cursor-in-non-selected-windows)
19166 (default-buffer-file-coding-system, default-major-mode)
19167 (default-enable-multibyte-characters): Mark as obsolete.
19169 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
19171 * vc-dir.el (vc-dir-update): Remove debug helper.
19173 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
19175 2009-08-26 Sam Steingold <sds@gnu.org>
19177 * simple.el (save-interprogram-paste-before-kill): New user option.
19178 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
19179 save the interprogram-paste into kill-ring before overriding it
19180 with the Emacs kill.
19182 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
19184 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
19185 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
19186 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
19187 and move to vc-rcs.el.
19188 (vc-default-next-revision): Rename to vc-rcs-next-revision and
19190 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
19191 (vc-rcs-update-changelog): Remove.
19192 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
19193 and move to vc-rcs.el.
19195 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
19196 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
19198 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
19199 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
19200 vc.el, renamed to be RCS specific.
19202 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
19204 (vc-cvs-update-changelog): Move here from vc.el.
19206 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
19209 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
19211 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
19213 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
19215 * vc-git.el (vc-git-register): Use "git add" for directories.
19216 (vc-git-stash, vc-git-stash-show): New functions.
19217 (vc-git-extra-menu-map): Bind them.
19219 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
19220 directory correctly in case the item is a directory itself.
19222 * vc.el: Document the desired behavior for reverted files in the
19224 (vc-default-prettify-state-info): Remove function, unused.
19226 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
19228 2009-08-26 Glenn Morris <rgm@gnu.org>
19230 * bindings.el (standard-mode-line-format): Reposition dashes in
19231 which-func entry. (Bug#4217)
19233 * files.el (enable-local-variables, enable-local-eval)
19234 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
19236 (auto-mode-alist, ignored-local-variables)
19237 (save-some-buffers-action-alist): Move risky declarations to the
19239 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
19240 (font-lock-defaults, format-alist, imenu--index-alist)
19241 (imenu-generic-expression, input-method-alist, minor-mode-alist)
19242 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
19243 (mode-line-modified, mode-line-mule-info, mode-line-position)
19244 (mode-line-process, mode-line-remote, outline-level)
19245 (parse-time-rules, rmail-output-file-alist)
19246 (special-display-buffer-names, vc-mode):
19247 Move risky declarations to the relevant files.
19248 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
19249 (mode-line-modified, mode-line-process, mode-line-position)
19250 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
19251 * font-core.el (font-lock-defaults):
19252 * format.el (format-alist):
19253 * vc-hooks.el (vc-mode):
19254 * window.el (special-display-buffer-names):
19255 * international/mule-cmds.el (input-method-alist):
19256 Define riskiness here (dumped file) rather than in files.el.
19257 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
19258 * imenu.el (imenu-generic-expression, imenu--index-alist):
19259 * outline.el (outline-level):
19260 * time.el (display-time-string):
19261 * calendar/parse-time.el (parse-time-rules):
19262 * mail/rmailout.el (rmail-output-file-alist):
19263 Autoload riskiness here, rather than placing in files.el.
19265 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
19267 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
19269 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
19271 * simple.el (process-file-side-effects): New defvar.
19273 * dired-aux.el (dired-show-file-type):
19274 * vc.el (vc-diff-internal):
19275 * vc-arch.el (vc-arch-diff):
19276 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
19277 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
19278 * vc-git.el (vc-git-registered, vc-git-working-revision)
19279 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
19280 (vc-git--empty-db-p):
19281 * vc-hooks.el (vc-user-login-name):
19282 * vc-svn.el (vc-svn-registered, vc-svn-state)
19283 (vc-svn-dir-extra-headers, vc-svn-find-revision):
19284 * progmodes/grep.el (grep-probe): Let-bind
19285 `process-file-side-effects' with nil.
19287 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
19289 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
19290 daemon. Replace ping by checking for running service for bluez
19291 and zeroconf. (Bug#4239)
19293 2009-08-25 Kevin Ryde <user42@zip.com.au>
19295 * net/dig.el (dig): Add autoload cookie.
19297 2009-08-25 Glenn Morris <rgm@gnu.org>
19299 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
19300 load-history for absolute file-names.
19301 (byte-compile-file-form-require): Warn about use of the cl package.
19303 * format.el (format-alist): Doc fix.
19305 * play/bubbles.el (top-level): Don't require cl at run-time.
19307 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
19310 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
19312 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
19314 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
19316 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
19318 * calc/calc-alg.el (math-trig-rewrite)
19319 (math-hyperbolic-trig-rewrite): New functions.
19320 (calc-simplify): Simplify trig functions when asked.
19322 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
19324 * diff-mode.el (diff-find-source-location): Avoid goto-line.
19326 2009-08-24 Kenichi Handa <handa@m17n.org>
19328 * language/ind-util.el (mapthread): Delete it.
19329 (combinatorial): New function.
19330 (indian--puthash-cv): Use combinatorial instead of mapthread.
19332 2009-08-22 Kevin Ryde <user42@zip.com.au>
19334 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
19335 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
19336 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
19337 Clarify docstring that the value is strings not symbols.
19338 (checkdoc-list-of-strings-p): New function.
19340 2009-08-22 Glenn Morris <rgm@gnu.org>
19342 * files.el (auto-mode-alist):
19343 * hippie-exp.el (he-concat-directory-file-name):
19344 * lpr.el (lpr-windows-system, printer-name):
19345 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
19346 * ps-print.el (ps-windows-system):
19347 * startup.el (command-line):
19348 * emulation/viper-ex.el (viper-glob-function):
19349 * international/mule-cmds.el (set-language-environment-coding-systems):
19350 * net/ange-ftp.el (ange-ftp-write-region):
19351 * obsolete/fast-lock.el (fast-lock-cache-name):
19352 Remove code for defunct system-types emx, macos, mswindows, next-mach,
19353 unisoft-unix, vax-vms, win32, w32.
19355 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
19356 given name if the pattern is not more specific.
19358 * calendar/lunar.el (lunar-phase-names): New option.
19359 (lunar-phase): Doc fix.
19360 (lunar-cycles-per-year): New constant.
19361 (lunar-index): New function.
19362 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
19363 (lunar-phase-name): Use lunar-phase-names.
19364 (calendar-lunar-phases): Use format.
19365 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
19367 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
19368 Copy imenu-example--name-and-position function here for own use.
19369 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
19371 * bs.el (bs--redisplay):
19372 * cus-edit.el (custom-redraw):
19373 * ibuffer.el (ibuffer-bury-buffer):
19374 * server.el (server-goto-line-column):
19375 * startup.el (command-line-1):
19376 * strokes.el (strokes-xpm-for-stroke):
19377 * term.el (term-display-buffer-line):
19378 * view.el (View-goto-line):
19379 * calc/calc.el (calc-do, calc-trail-buffer):
19380 * play/gamegrid.el (gamegrid-add-score-insecure):
19381 * progmodes/ada-mode.el (ada-compile-goto-error):
19382 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
19383 (ebrowse-select-1st-to-9nth):
19384 * progmodes/cperl-mode.el (cperl-time-fontification):
19385 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
19386 * progmodes/gud.el (gud-display-line):
19387 (idlwave-shell-display-line):
19388 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
19389 * progmodes/make-mode.el (makefile-browser-toggle):
19390 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
19391 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
19392 * textmodes/picture.el (picture-draw-rectangle):
19393 * textmodes/reftex-index.el (reftex-index-goto-letter):
19394 (reftex-select-jump-to-previous):
19395 * textmodes/reftex-sel.el (reftex-find-start-point)
19396 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
19397 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
19398 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
19399 * textmodes/tex-mode.el (tex-compilation-parse-errors):
19400 * textmodes/two-column.el (2C-associated-buffer):
19401 Use forward-line rather than goto-line.
19403 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
19406 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
19407 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
19408 (quick-check-list-to-regexp): Declare.
19410 * progmodes/make-mode.el (makefile-browser-insert-selection):
19411 Use goto-char rather than goto-line.
19413 * progmodes/prolog.el (compilation-error-regexp-alist)
19414 (compilation-forget-errors): Declare.
19416 2009-08-22 Juri Linkov <juri@jurta.org>
19418 * progmodes/grep.el (lgrep, rgrep): At the beginning
19419 set `dir' to `default-directory' unless `dir' is a non-nil
19420 readable directory. (Bug#4052)
19421 (lgrep, rgrep): Change a weird way to report an error
19422 from using `read-string' to using `error'.
19423 Instead of using interactive arguments in the function body,
19424 add new argument `confirm'.
19426 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
19428 * textmodes/remember.el (remember-buffer):
19429 * progmodes/cperl-mode.el (cperl-vc-header-alist):
19430 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
19431 (icalendar-extract-ical-from-buffer):
19432 * net/newst-treeview.el (newsticker-groups-filename):
19433 * net/newst-backend.el (newsticker-cache-filename):
19434 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
19435 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
19436 (speedbar-add-ignored-path-regexp, speedbar-line-path)
19437 (speedbar-buffers-line-path, speedbar-path-line)
19438 (speedbar-buffers-line-path):
19439 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
19441 * epa.el (epa-display-verify-result):
19442 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
19444 2009-08-21 Glenn Morris <rgm@gnu.org>
19446 * progmodes/js.el (inferior-moz-process): Fix declaration.
19448 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
19450 * obsolete/rnewspost.el (news-mail-reply):
19451 Use goto-char rather than goto-line.
19453 * term/ns-win.el (ns-open-file-select-line):
19454 Use line-beginning-position rather than goto-line.
19456 * apropos.el (apropos-command):
19457 * ehelp.el (electric-helpify):
19458 * printing.el (pr-show-setup):
19459 * strokes.el (strokes-help):
19460 * tutorial.el (tutorial--describe-nonstandard-key)
19461 (tutorial--detailed-help):
19462 * woman.el (woman-mini-help, woman-display-extended-fonts):
19463 * calc/calc-help.el (calc-describe-key):
19464 * emulation/edt.el (edt-electric-helpify):
19465 * international/mule-diag.el (mule-diag):
19466 * play/yow.el (apropos-zippy):
19467 * progmodes/python.el (python-describe-symbol):
19468 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
19469 * textmodes/table.el (*table--cell-describe-mode)
19470 (*table--cell-describe-bindings):
19471 Use help-print-return-message rather than the now obsolete alias.
19473 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
19474 (calendar-cursor-to-visible-date):
19475 * play/5x5.el (5x5-position-cursor):
19476 * play/decipher.el (decipher):
19477 * play/gomoku.el (gomoku-goto-xy):
19478 * play/landmark.el (lm-goto-xy):
19479 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
19480 (mpuz-paint-digit):
19481 Use forward-line, not goto-line.
19483 * mail/rmail.el (rmail-obsolete): Delete custom group.
19484 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
19485 (rmail-remote-password, rmail-remote-password-required):
19486 Remove unneeded :set-after and :set properties.
19488 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
19490 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
19492 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
19494 * loadup.el: Remove leftover macos code.
19496 * vc-git.el (vc-git-annotate-command): Run asynchronously.
19497 Explicitly pass the date format to git blame so that user local
19498 so that the output format can be parsed.
19500 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
19502 * net/dbus.el (top): Don't check for (getenv
19503 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
19505 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
19507 * log-edit.el (log-edit-strip-single-file-name): New var.
19508 (log-edit-insert-changelog): Use it. Bug#3571
19510 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19512 * subr.el (read-passwd): Use read-key so keypad keys work as well.
19515 * help.el (help-print-return-message): Rename from
19516 print-help-return-message.
19518 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
19519 cvs-mode-map parent hack.
19520 (log-view-mode): Derive from special-mode.
19522 * linum.el (linum-mode): window-size-change-functions is redundant.
19523 Adapt to new window-configuration-change-hook behavior.
19524 (linum-after-size, linum-after-config): Remove.
19526 * imenu.el (imenu-example--name-and-position)
19527 (imenu-example--lisp-extract-index-name)
19528 (imenu-example--create-lisp-index, imenu-example--create-c-index):
19531 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
19532 (inferior-prolog-mode): Use it.
19533 (inferior-prolog-load-file): Reset list of errors.
19535 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
19537 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
19539 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
19541 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
19543 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
19544 is running already.
19546 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19548 * subr.el (listify-key-sequence-1): Use normal syntax since those
19549 integers are nowadays always represented by the same (positive) number
19551 (read-key-empty-map): New const.
19552 (read-key-delay): New var.
19553 (read-key): New function.
19554 (force-mode-line-update): Use with-current-buffer.
19555 (locate-user-emacs-file): Don't forget to abbreviate the file name.
19556 (start-process-shell-command, start-file-process-shell-command):
19557 Discourage the use of command-args.
19559 2009-08-19 Glenn Morris <rgm@gnu.org>
19561 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
19563 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19565 * simple.el (choose-completion-string): Don't rely on
19566 minibuffer-completing-file-name and ad-hoc checks to decide whether
19567 to continue completion or not.
19569 * minibuffer.el (minibuffer-hide-completions): New function.
19570 (completion--do-completion): Use it.
19571 (completions-annotations): New face.
19572 (completion--insert-strings): Use it.
19573 (completion-pcm--delim-wild-regex): Add docstring.
19574 (completion-pcm--string->pattern): Add support for 0-width delimiters
19575 in completion-pcm--delim-wild-regex.
19577 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
19579 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
19580 Remove unused var `buffer-modified-p'.
19582 * minibuffer.el (completion--do-completion): Move point for the #b001
19583 case as well (bug#4176).
19584 (minibuffer-complete, minibuffer-complete-word): Don't move point.
19586 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
19588 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
19589 and :session buses.
19591 2009-08-18 Kenichi Handa <handa@m17n.org>
19593 * international/ucs-normalize.el (ucs-normalize-version):
19595 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
19596 (utf-8-hfs): Make it perform normalization on encoding too.
19598 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
19599 (sentence-end-without-space): Delete duplicated chars.
19600 (sentence-end-base): Likewise.
19602 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
19603 (html-mode): Delete duplicated chars from sentence-end-base.
19605 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
19606 (texinfo-mode): Delete duplicated chars from sentence-end-base.
19608 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
19610 * files.el (hack-one-local-variable): If the mode function is for
19611 a minor mode, pass it an argument (Bug#4148).
19613 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
19615 * net/tramp.el (tramp-register-completion-file-name-handler):
19616 Check also for (member 'partial-completion completion-styles).
19618 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
19620 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
19623 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
19625 * progmodes/cperl-mode.el: Merge upstream 6.2.
19626 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
19627 (cperl-forward-re): Check cperl-brace-recursing.
19628 (cperl-highlight-charclass): New function.
19629 (cperl-find-pods-heres): Use it.
19630 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
19631 (cperl-beautify-regexp-piece): Fix column calculation.
19632 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
19633 (cperl-beautify-level): Don't process entire regexp.
19634 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
19636 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
19637 (cperl-init-faces): Build a list in the normal way.
19639 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
19641 * calendar/parse-time.el (parse-time-string-chars): Save match
19644 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
19646 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
19647 (sql-product): Use it.
19648 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
19649 (sql-set-product): Add completion.
19650 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
19651 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
19652 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
19653 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
19654 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
19655 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
19656 (sql-highlight-db2-keywords): Remove.
19657 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
19658 (sql-highlight-product): Use derived-mode-p.
19659 (sql-set-sqli-buffer): Use with-current-buffer.
19660 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
19663 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
19665 * term.el: Fix commenting convention, turn comments into docstrings.
19667 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
19669 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
19671 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
19673 * calendar/parse-time.el (parse-time-string-chars): Compute using
19674 character classes, to handle non-ascii characters (Bug#3190).
19676 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
19678 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
19679 another heredoc if the user adds another < (Bug#3226).
19681 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
19682 Don't initialize based on window-system (Bug#4124).
19684 * facemenu.el (facemenu-read-color): Use a completion function
19685 that accepts any defined color, such as RGB triplets (Bug#3677).
19687 * files.el (get-free-disk-space): Change fallback default
19688 directory to /. Expand DIR argument before switching to fallback.
19689 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
19691 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
19693 * files.el (load-library): Doc fix.
19695 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
19697 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
19698 (viper-if-string): Redefine C-s in the minibuffer to insert the last
19699 incremental search string.
19701 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
19704 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
19705 (ediff-merge-region-is-non-clash)
19706 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
19707 Also check if the job is really a merge job.
19709 * ediff.el (ediff-current-file): New function.
19711 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
19713 * progmodes/js.el: Edit docstrings throughout to follow Emacs
19715 (js-insert-and-indent): Delete function.
19716 (js-mode-map): Don't bind keys to js-insert-and-indent.
19717 (js-beginning-of-defun): Rename from js--beginning-of-defun.
19718 (js-end-of-defun): Rename from js--end-of-defun.
19719 (js-auto-indent-flag): Delete variable.
19721 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
19723 * progmodes/js.el: Remove proclaim statement.
19724 Defvar which-func-imenu-joiner-function to silence compiler.
19726 * files.el (auto-mode-alist): Use js-mode for .js files.
19728 * progmodes/js2-mode.el: Remove file.
19730 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
19732 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
19734 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
19736 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
19737 Karl Landstrom <karl.landstrom@brgeight.se>
19739 * progmodes/js.el: New file.
19741 2009-08-14 Mark A. Hershberger <mah@everybody.org>
19743 * timezone.el (timezone-parse-date): Add ability to understand ISO
19744 basic format (minimal separators) dates in addition to the
19745 already-supported extended format dates.
19747 2009-08-14 Eli Zaretskii <eliz@gnu.org>
19749 * international/ucs-normalize.el: Add a `coding' file variable.
19751 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
19753 2009-08-14 Sam Steingold <sds@gnu.org>
19755 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
19757 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
19759 * faces.el (help-argument-name): Define it here instead of
19760 help-fns.el, because in daemon mode help-fns.el may be loaded when
19761 faces are still uninitialized (Bug#1078).
19763 * help-fns.el (help-argument-name): Move defface to faces.el.
19765 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
19767 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
19768 create buffer with a pty but no process so that GDB can make the
19769 inferior the controlling process.
19771 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
19773 * international/ucs-normalize.el: New file.
19775 2009-08-13 Richard Stallman <rms@gnu.org>
19777 * mail/rmail.el (rmail-get-attr-names):
19778 Accept an attribute header that is too short.
19780 * mail/rmail.el (rmail-forget-messages):
19781 Ignore nil elt in rmail-message-vector. Use dotimes.
19783 * progmodes/compile.el (compilation-goto-locus):
19784 Use next-error-move-function.
19786 * simple.el (next-error-move-function): New variable.
19788 2009-08-12 Juri Linkov <juri@jurta.org>
19790 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
19791 always non-nil. (Bug#4052)
19793 * replace.el (read-regexp): Return empty string when
19794 `default-value' is nil.
19795 (keep-lines-read-args): Don't use empty string as the
19796 default value for `read-regexp'. (Bug#2495)
19798 2009-08-12 Juri Linkov <juri@jurta.org>
19800 * international/mule-cmds.el (ucs-insert): Change arguments
19801 from `arg' to `character', `count', `inherit' to be the same
19802 as in `insert-char'. Doc fix. (Bug#4039)
19804 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
19806 2009-08-12 Juri Linkov <juri@jurta.org>
19808 * files-x.el: New file.
19810 * files.el: Move code that deals with adding/deleting
19811 file/directory-local variables to files-x.el.
19813 * Makefile.in (ELCFILES): Add files-x.elc.
19815 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
19817 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
19818 to use `goto-line'.
19819 (gdb-place-breakpoints, gdb-get-location): Rewritten without
19821 (gdb-invalidate-disassembly): Do not refresh upon receiving
19822 'update signal. Instead, update all disassembly buffers only after
19824 (gdb): Send -target-detach when buffer is killed (Bug#3794).
19825 (gdb-starting): Move -data-list-register-names...
19826 (gdb-stopped): ...here so it's sent when first thread stops.
19827 (gdb-registers-handler-custom): Do nothing if register names are
19830 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
19831 from `gdb-mi.el' to avoid extra tangling.
19833 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
19834 change which breaks `gud-def' definitions used in `gdb'.
19835 (gdb-update-gud-running): No extra fuss for updating frame number.
19837 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
19839 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
19840 (describe-language-environment-map, setup-language-environment-map)
19841 (set-coding-system-map): Move initialization into declaration.
19842 (set-language-info-alist): Last arg to define-key-after can be skipped.
19844 * international/quail.el (quail-completion-1): Simplify.
19845 (quail-define-rules): Use slightly more compact code.
19846 (quail-insert-decode-map): Propertize keys, compact columns.
19848 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19851 2009-08-10 Miles Bader <miles@gnu.org>
19853 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
19854 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
19855 (js2-instance-member, js2-private-member, js2-private-function-call)
19856 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
19857 (js2-magic-paren, js2-external-variable):
19858 Remove "-face" suffix from face names.
19859 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
19860 (js2-highlight-undeclared-vars, js2-peek-token)
19861 (js2-parse-function-params, js2-mode-show-errors)
19862 (js2-mode-show-warnings, js2-make-magic-delimiter)
19863 (js2-mode-highlight-magic-parens): Update to use new face names.
19865 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
19867 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
19868 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
19870 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
19872 * subr.el: Provide hashtable-print-readable.
19874 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
19875 hs-c-like-adjust-block-beginning.
19876 (hs-hide-block-at-point): Stop hiding at the beginning of
19877 hs-block-end-regexp (Bug#700).
19879 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
19881 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
19883 (gdb-registers-handler-custom): Do not fail when register names
19886 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
19888 * progmodes/gdb-mi.el (gdb-control-all-threads)
19889 (gdb-control-current-thread): Interactive setters for
19890 `gdb-gud-control-all-threads' to use in menu.
19891 (gdb-show-run-p): Show «Go» when process is not active.
19892 (gud-tool-bar-map): Add non-stop/A,T indicator.
19893 Uses gud/thread.xpm and gud/all.xpm.
19895 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
19897 * net/net-utils.el (net-utils-font-lock-keywords): New var.
19898 (nslookup-font-lock-keywords): Make it a variable.
19899 (net-utils-mode): New mode for viewing diagnostic network output.
19900 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
19901 (net-utils-run-simple): New function.
19902 (ifconfig, iwconfig, netstat, arp, route): Use it.
19904 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
19906 * progmodes/gdb-mi.el (gdb-read-memory-custom)
19907 (gdb-memory-set-address, def-gdb-set-positive-number)
19908 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
19909 after changing settings.
19910 (gdb-invalidate-disassembly): Update when first shown.
19911 (gdb-edit-locals-value): Fixed.
19912 (gdb-registers-handler-custom): Print registers in right order and
19913 allow changing register values (only for current thread yet).
19914 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
19915 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
19916 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
19917 (gdb-locals-handler-custom, gdb-registers-handler-custom):
19918 Thread info in mode name.
19919 (gdb-registers-mode-map): TAB to switch to locals.
19921 2009-08-08 Eli Zaretskii <eliz@gnu.org>
19923 * mail/rmail.el (rmail-add-mbox-headers)
19924 (rmail-set-message-counters-counter): Search for
19925 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
19927 2009-08-08 Glenn Morris <rgm@gnu.org>
19929 * Makefile.in (ELCFILES): Update.
19931 2009-08-07 Eli Zaretskii <eliz@gnu.org>
19933 * mail/sendmail.el (mail-yank-original):
19934 Set buffer-file-coding-system from the one used by the message whose
19937 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
19938 to "windows" when "pgnuplot" is used.
19939 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
19940 Don't call accept-process-output if "pgnuplot" is used.
19941 (calc-graph-init): Don't send -display and -geometry to
19942 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
19943 running "pgnuplot -V" with shell-command-to-string.
19945 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
19948 2009-08-07 Eli Zaretskii <eliz@gnu.org>
19950 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
19953 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
19955 * vc-dispatcher.el (vc-resynch-window): Update comment.
19957 * term.el (term-handle-ansi-escape): Add comments with the
19958 terminfo capabilities implemented.
19960 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
19962 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
19963 (gdb-var-create-handler): Rewritten using JSON parser.
19964 (gdb-propertize-header): Move earlier.
19965 (gdb-set-header): Remove to avoid duplication.
19966 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
19967 Refresh disassembly buffers only after threads list have been
19969 (gdb-threads-header, gdb-registers-header): Per-buffer header line
19972 2009-08-04 Juri Linkov <juri@jurta.org>
19974 * files.el: Commands to add/delete file/directory-local variables.
19975 (read-file-local-variable, read-file-local-variable-value)
19976 (read-file-local-variable-mode, modify-file-local-variable)
19977 (modify-file-local-variable-prop-line)
19978 (modify-dir-local-variable): New functions.
19979 (add-file-local-variable, delete-file-local-variable)
19980 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
19981 (add-dir-local-variable, delete-dir-local-variable)
19982 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
19983 (copy-dir-locals-to-file-locals-prop-line): New commands.
19985 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
19987 * abbrev.el (insert-abbrev-table-description): Prettify output.
19988 Suggested by Karl Chen.
19990 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
19992 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
19993 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
19994 (gdb-overlay-arrow-position, gdb-thread-position)
19995 (gdb-disassembly-position): Declare variables.
19996 (gdb-wait-for-pending): Function now.
19997 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
19998 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
19999 compilation goes smoothly.
20000 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
20001 (gdb-non-stop-setting): New customization setting which replaces
20002 `gdb-non-stop' so changing it doesn't break active GDB session.
20003 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
20004 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
20005 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
20006 (gdb-show-threads-by-default): New customization options.
20007 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
20009 (gdb-get-buffer-create): Send buffers update signal when they are
20011 (gdb-invalidate-locals, gdb-invalidate-registers)
20012 (gdb-invalidate-breakpoints)
20013 (gdb-invalidate-threads, gdb-invalidate-disassembly)
20014 (gdb-invalidate-memory): Accept update signal.
20015 (gdb-current-context-command): Use --frame option.
20016 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
20017 Implement `gdb-frame-number' selection logic.
20018 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
20019 whether to show GUD toolbar buttons.
20020 (gdb-thread-exited): Unselect current thread when it exits.
20021 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
20022 (gdb-mark-line): Routine which sets overlay arrow or inverses
20023 video on fringeless displays.
20024 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
20025 to build aligned columns of data in GDB buffers and set text
20026 properties line-by-line.
20027 (gdb-invalidate-breakpoints)
20028 (gdb-breakpoints-list-handler-custom)
20029 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
20030 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
20031 (gdb-registers-handler-custom): Align data columns.
20032 (gdb-locals-handler-custom): Now prints data like in variable
20034 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
20035 Remove confusing buttons.
20036 (gdb-invalidate-threads): Append --frame.
20037 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
20038 between breakpoints/threads buffers.
20039 (gdb-set-window-buffer): Now can ignore dedicated windows.
20040 (gdb-propertize-header): Use `gdb-set-window-buffer'.
20041 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
20042 (def-gdb-thread-buffer-gud-command): Replaces
20043 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
20044 for fine thread control.
20045 (gdb-preempt-existing-or-display-buffer): New function used to
20046 display bound buffers without breaking window layout.
20047 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
20048 (gdb-select-frame): New version of `gdb-frames-select' which now
20049 sets `gdb-frame-number' so commands may use --frame option instead
20050 of inner debugger state.
20051 (gdb-frame-handler): Do not set `gdb-frame-number'.
20052 (gdb-threads-mode-map): Select threads with mouse.
20054 * progmodes/gud.el (gdb-gud-context-call): Declare function to
20055 avoid compilation warning.
20056 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
20059 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
20060 Argument `key' renamed to `buffer-type'.
20061 (gdb-current-context-buffer-name): Do not add thread info to
20062 buffer name when no thread is selected.
20063 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
20064 command (bug 3794).
20065 (gdb-thread-selected): Handle `=thread-selected' notification.
20066 (gdb-wait-for-pending): New macro to deal with congestion problems.
20067 (gdb-breakpoints-list-handler-custom): Don't fail on pending
20069 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
20070 This fixes problem similar to one described in bug 3947.
20071 (gud-menu-map): More menu items.
20072 (gdb-init-1): Reset `gdb-thread-number' to nil.
20074 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
20077 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
20078 (gdb-current-context-command): Do not append --thread if
20079 `gdb-thread-number' is nil.
20080 (gdb-running-threads-count, gdb-stopped-threads-count):
20082 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
20083 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
20084 New customization options.
20085 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
20087 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
20088 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
20089 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
20090 set `gdb-thread-number' and update `gud-running' properly.
20091 (gdb-running): Update threads list when new threads appear.
20092 (gdb-stopped): Support non-stop operation and new thread switching
20094 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
20095 (gdb-json-partial-output): New set of JSON routines.
20096 (def-gdb-auto-update-trigger): New `signal-list' optional
20098 (gdb-thread-list-handler-custom): Update `gud-running',
20099 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
20100 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
20101 (gdb-continue-thread, gdb-step-thread): New commands for fine
20102 thread execution control.
20103 (gud-menu-map): New menu items to switch non-stop options.
20104 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
20105 (gdb-send): Mimic RET properly (bug 3794).
20107 * progmodes/gdb-mi.el (gdb-rules-name-maker)
20108 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
20110 (def-gdb-auto-update-handler): New nopreserve optional argument.
20111 (gdb-stack-list-frames-custom): Print stack from top to bottom.
20113 * progmodes/gdb-mi.el (gdb-pc-address): Remove unused variable.
20114 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
20115 (gdb-parent-mode): New mode to derive other GDB modes from.
20116 (gdb-display-disassembly-for-thread)
20117 (gdb-frame-disassembly-for-thread): New commands for threads
20120 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
20121 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
20122 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
20123 (gdb-update): We now store all GDB buffers in a list so that they
20124 can be updated by traversing a list instead of calling invalidate
20125 triggers explicitly.
20126 (def-gdb-trigger-and-handler): New macro to define trigger-handler
20127 pair for GDB buffer.
20128 (gdb-stack-buffer-name): Add thread information.
20129 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
20130 handle pending triggers.
20131 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
20132 (def-gdb-thread-buffer-simple-command)
20133 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
20134 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
20135 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
20136 New commands which show buffers bound to thread.
20137 (gdb-stack-list-locals-regexp): Remove unused regexp.
20139 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
20140 (gdb-locals-buffer-name, gdb-registers-buffer-name)
20141 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
20142 to (gud-comint-buffer) in *-buffer-name functions
20143 because (gdb-get-target-string) already does that.
20144 (gdb-locals-handler-custom, gdb-registers-handler-custom)
20145 (gdb-changed-registers-handler): Rewritten without regexps.
20147 * progmodes/gdb-mi.el: Basic thread selection support.
20148 (gdb-thread-number): New variable.
20149 (gdb-current-context-command): New macro which adds --thread
20151 (gdb-threads-mode-map): Select thread with SPC.
20152 (gdb-thread-list-handler-custom): Mark current thread with overlay
20153 arrow. Synchronize GDB thread and Emacs thread.
20154 (gdb-select-thread): New command which selects current thread.
20155 (gdb-invalidate-frames, gdb-invalidate-locals)
20156 (gdb-invalidate-registers): Use --thread option.
20158 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
20160 * net/tramp.el (top): Make check for tramp-gvfs loading more
20162 (tramp-handle-insert-file-contents): `unwind-protect' must be
20163 inside `with-parsed-tramp-file-name'.
20165 * net/tramp-gvfs.el (top): Remove superfluous message when loading
20168 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
20170 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
20171 directory if CLASSPATH is not set.
20173 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
20175 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
20177 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
20179 2009-08-02 Kevin Ryde <user42@zip.com.au>
20181 * net/newst-backend.el (newsticker--raw-url-list-defaults):
20182 Update freshmeat link. Delete newsforge.com as it seems gone.
20184 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
20186 * select.el (x-set-selection): Doc fix (Bug#4021).
20188 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
20190 * help-fns.el (describe-variable): Treat list return values from
20191 dir-locals-find-file properly (Bug#4005).
20193 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
20195 * net/tramp.el (tramp-debug-message): Print also microseconds.
20197 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
20199 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
20201 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
20202 (tramp-get-debug-buffer): Change `outline-regexp' according to new
20205 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
20206 (tramp-get-file-property): Use it.
20208 * autorevert.el (auto-revert-handler):
20209 Allow `auto-revert-tail-mode' for remote files.
20211 2009-08-02 Jason Rumney <jasonr@gnu.org>
20213 * minibuffer.el (read-file-name): Treat confirm options to
20214 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
20216 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
20218 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
20219 (font-lock-variable-name-face, font-lock-constant-face):
20220 Darken the colors for light backgrounds.
20222 2009-08-01 Eli Zaretskii <eliz@gnu.org>
20224 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
20225 month names. (Bug#3987)
20227 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
20229 * simple.el (line-move-finish): Pass whole number to
20230 line-move-to-column.
20231 (line-move-visual): Perform hscroll to the recorded position.
20233 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
20235 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
20237 2009-07-29 Alan Mackenzie <acm@muc.de>
20239 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
20241 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
20243 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
20244 (gdb-place-breakpoints): Use full path when setting breakpoints.
20246 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
20248 * calc/calc.el (calc-mode-map): Add keybinding for
20249 `calc-transpose-lines'.
20251 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
20253 * calc/calc-misc.el (calc-transpose-lines): New function.
20255 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
20257 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
20258 Simplify check for out-of-band methods.
20259 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
20260 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
20262 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
20264 * vc-git.el (vc-git-checkin): Fix typo.
20266 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
20268 * progmodes/js2-mode.el: New file.
20270 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
20272 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
20273 (gud-menu-map): Adjust tooltip accordingly.
20275 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
20277 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
20278 (vc-bzr-log-view-mode): Adjust log-view-file-re.
20280 * add-log.el (change-log-mode-map): Add a menu.
20282 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
20284 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
20285 function returns nil.
20286 (dbus-handle-event): Handle special return value :ignore.
20287 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
20289 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
20291 * view.el (view-mode-enable): Don't define Helper-return-blurb if
20294 2009-07-25 Eli Zaretskii <eliz@gnu.org>
20298 * w32-vars.el (x-select-enable-clipboard): Doc fix.
20300 * term/pc-win.el (x-display-name, x-colors)
20301 (x-select-enable-clipboard, x-select-text): Doc fix.
20303 * term/common-win.el (x-display-name, x-colors): Doc fix.
20305 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
20306 (xw-defined-colors): Doc fix.
20308 * w32-fns.el (x-select-text, x-setup-function-keys)
20309 (x-get-selection, x-set-selection): Doc fix.
20311 * term/x-win.el (x-select-text, x-setup-function-keys)
20312 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
20314 * select.el (x-set-selection): Doc fix.
20316 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
20318 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
20319 instead of "IsNSSSupportAvailable". Avahi ought to work also when
20320 "IsNSSSupportAvailable" method is not available.
20321 Reported by Steve Youngs <steve@sxemacs.org>.
20323 2009-07-24 Kenichi Handa <handa@m17n.org>
20325 * international/characters.el: Fix setting of category ?C, ?|, ?K,
20326 and ?H. Fix setting of case for Latin Extended and Greek Extended.
20327 (build-unicode-category-table): Fix range checks.
20329 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
20331 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
20332 the buffer we try to sync is current when calling
20335 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
20336 not show up to date files.
20338 2009-07-24 Glenn Morris <rgm@gnu.org>
20340 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
20341 Add autoload cookies. If necessary, initialize.
20342 (elint-log): Handle non-file buffers.
20343 (elint-initialize): Add optional argument to reinitialize.
20344 (elint-find-builtin-variables): Save excursion.
20346 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
20348 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
20351 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
20353 * vc.el (vc-print-log-internal): New function, split out from ...
20354 (vc-print-log): ... here.
20355 (vc-dir-move-to-goal-column): Declare.
20357 * vc-git.el (vc-git-add-signoff): New variable.
20358 (vc-git-checkin): Use it.
20359 (vc-git-toggle-signoff): New function.
20360 (vc-git-extra-menu-map): Bind it to menu.
20361 (vc-git--run-command-string): Accept a nil FILE argument.
20362 (vc-git-stash-list): New function.
20363 (vc-git-dir-extra-headers): Use it.
20365 2009-07-23 Glenn Morris <rgm@gnu.org>
20367 * help-fns.el (describe-variable): Describe ignored and risky local
20368 variables in a similar way to that in which we describe safe ones.
20370 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
20371 (byte-compile-output-file-form, byte-compile-output-docform)
20372 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
20373 Give some more local variables with common names a "bytecomp-" prefix,
20374 so as not to shadow things during compilation.
20375 * emacs-lisp/cl-macs.el (load-time-value)
20376 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
20377 `outbuffer' to `bytecomp-outbuffer'.
20379 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
20380 since the next two variables cover them automatically now.
20381 (elint-builtin-variables, elint-autoloaded-variables): New.
20382 (elint-unknown-builtin-args): Remove all members, since they can be
20383 parsed automatically now.
20384 (elint-extra-errors): New.
20385 (elint-env-add-env, elint-env-add-macro): Use cadr.
20386 (elint-current-buffer): Use or. Change final message.
20387 (elint-get-top-forms): Use line-end-position.
20388 (elint-init-env): Use cadr. Handle autoload, declare-function,
20390 (elint-add-required-env): Doc fix. Use or. Standardize error.
20391 (regexp-assoc): Remove unused function.
20392 (elint-top-form): Set elint-current-pos, to record the start of the
20393 top-level form, for compilation-mode.
20394 (elint-form): Trap errors in macro expansion. Use dolist.
20395 (elint-unbound-variable): Use elint-builtin-variables and
20396 elint-autoloaded-variables.
20397 (elint-get-args): Use cadr, or.
20398 (elint-check-cond-form): Use dolist, cadr.
20399 (elint-check-condition-case-form): Doc fix. Use cadr.
20400 Use elint-extra-errors.
20401 (elint-log): New function.
20402 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
20403 Distinguish errors and warnings.
20404 (elint-log-message): Use with-current-buffer. Inhibit read-only.
20405 Use a bytecomp-style format.
20406 (elint-clear-log): Preserve default-directory. Inhibit read-only.
20407 (elint-get-log-buffer): Use compilation mode. Disable undo.
20408 Don't truncate lines.
20409 (elint-initialize): Set builtin and autoloaded variable lists.
20410 Only process elint-unknown-builtin-args if non-nil.
20411 (elint-find-builtin-variables, elint-find-autoloaded-variables):
20413 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
20415 2009-07-22 Kevin Ryde <user42@zip.com.au>
20417 * net/newst-backend.el (newsticker--parse-atom-1.0)
20418 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
20419 (newsticker--parse-rss-1.0):
20420 * progmodes/idlwave.el (idlwave-mode):
20421 * progmodes/idlw-shell.el (idlwave-shell-mode):
20422 * progmodes/vera-mode.el (vera-mode):
20423 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
20424 * progmodes/vhdl-mode.el (vhdl-mode):
20425 * textmodes/table.el (table-generate-source)
20426 (table--warn-incompatibility):
20427 Hyperlink urls in docstrings with URL `...'.
20429 2009-07-22 Glenn Morris <rgm@gnu.org>
20431 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
20432 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
20433 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
20434 Remove leading * from defcustom docs.
20436 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
20438 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
20440 (list-load-path-shadows): Optionally, just return shadows as a string.
20442 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
20444 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
20446 * mail/rmailedit.el (rmail-edit-mode):
20447 Use auto-save-include-big-deletions.
20449 * mail/rmail.el (rmail-variables):
20450 Use auto-save-include-big-deletions.
20452 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
20455 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
20457 * calc/calc.el (calc-undo-length): New variable.
20458 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
20460 2009-07-21 Richard Stallman <rms@gnu.org>
20462 * files.el (auto-save-mode): Handle buffer-save-size = -2
20465 2009-07-21 Glenn Morris <rgm@gnu.org>
20467 * textmodes/ispell.el (ispell-looking-back): Update declaration.
20469 * calendar/todo-mode.el (calendar-current-date): Update declaration.
20471 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
20472 silence compiler. Instead...
20473 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
20474 (ps-print-ensure-fontified): Update for above function name changes.
20476 * printing.el (pr-mh-get-msg-num, pr-mh-show)
20477 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
20478 silence compiler. Instead...
20479 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
20480 (mh-show-buffer): Only define for compiler.
20481 (pr-mh-current-message): Update for above function name changes.
20483 * files.el (abort-if-file-too-large): Explicitly pass `filename'
20485 (find-file-noselect, insert-file-1): Update for above change.
20487 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
20489 * mail/mailclient.el (mailclient-send-it): Fix message.
20491 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
20492 (edebug-eval): Check cl-debug-env is bound.
20493 (print-level, print-circle): Don't redefine built-in variables.
20495 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
20496 (custom-print-vectors): Remove old comments from doc.
20498 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
20499 (emerge-version): Make the variable an obsolete alias for the
20500 emacs-version variable. Make the function obsolete.
20501 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
20502 Emerge options, rather than merging in into the main Options menu.
20503 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
20504 and auto advance modes. Disable edit/fast items when not relevant.
20506 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
20508 * term/vt420.el (terminal-init-vt420): Fix typo.
20510 2009-07-20 Sam Steingold <sds@gnu.org>
20512 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
20513 variable (removed from compile.el on 2004-03-11).
20515 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
20517 * files.el (hack-local-variables-filter): Fix last change.
20519 2009-07-19 Juri Linkov <juri@jurta.org>
20521 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
20522 (dir-local-variables-alist): New buffer-local variable.
20523 (hack-local-variables-filter): If variable is not dir-local,
20524 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
20525 because file-local overrides dir-local.
20526 (c-postprocess-file-styles) <declare-function>:
20527 Remove obsolete declaration.
20528 (hack-dir-local-variables): Add dir-local variable/value pair to
20529 `dir-local-variables-alist' and remove duplicates. Doc fix.
20531 * help-fns.el (describe-variable): Add information about
20532 file-local and dir-local variables.
20534 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
20536 * files.el (hack-local-variables-filter): Rewrite.
20538 2009-07-19 Glenn Morris <rgm@gnu.org>
20540 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
20541 Silence compiler by only defining on XEmacs.
20543 * international/mule.el (auto-coding-regexp-alist): Only match
20544 BABYL... at the start of buffer, not of lines. (Bug#3790)
20546 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
20547 non-calendar buffers (Bug#3862). Restore "not on a date" message.
20548 (cal-menu-context-mouse-menu): Doc fix.
20550 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
20552 * simple.el (mail-user-agent): Doc fix. Set :version tag.
20554 2009-07-18 Juri Linkov <juri@jurta.org>
20556 * info.el: Virtual Info keyword finder.
20557 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
20558 (Info-finder-file): New variable.
20559 (Info-finder-find-file): New function.
20560 (finder-known-keywords, finder-package-info)
20561 (find-library-name, lm-commentary): Use defvar and
20562 declare-function to silence compiler warnings.
20563 (Info-finder-find-node): New function.
20564 (info-finder): New command.
20566 * subr.el (process-kill-buffer-query-function): New function.
20567 (add-hook)<kill-buffer-query-functions>: Add hook
20568 `process-kill-buffer-query-function'.
20570 2009-07-18 Alan Mackenzie <acm@muc.de>
20572 * progmodes/cc-mode.el (c-before-hack-hook)
20573 (c-postprocess-file-styles): Give invocation of `c-set-style'
20574 DONT-OVERRIDE parameter of t. Already set style variables will
20575 thus not be overridden by style settings given by `c-file-syle'.
20577 * files.el (hack-local-variables-filter): Remove entries with
20578 duplicate keys from `file-local-variables-alist'.
20580 2009-07-18 Eli Zaretskii <eliz@gnu.org>
20582 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
20583 x-set-selection if display-selections-p returns nil for the
20586 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
20588 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
20590 2009-07-18 Eli Zaretskii <eliz@gnu.org>
20592 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
20593 Accept nil in addition to a regexp.
20594 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
20595 Accept nil in addition to a regexp.
20596 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
20597 buffers that have an associated file. Handle nil values of
20598 desktop-buffers-not-to-save and desktop-files-not-to-save.
20601 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
20602 (x-disown-selection-internal): New functions.
20604 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
20606 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
20608 (gdb-breakpoints-header): Move forward to avoid compiler warning.
20609 (gdb-make-header-line-mouse-map): Remove duplicate definition.
20611 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
20613 * simple.el (set-mark): Revert last change.
20615 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
20617 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
20618 rendering of pngs is not possible instead of messaging a long
20621 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
20623 * w32-fns.el (x-selection-owner-p): New function.
20625 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
20626 (mouse-yank-at-click, mouse-yank-primary):
20627 If select-active-regions is non-nil, deactivate the mark before
20630 * simple.el (deactivate-mark, set-mark): Only save selection if we
20633 2009-07-17 Kenichi Handa <handa@m17n.org>
20635 * case-table.el (describe-buffer-case-table): Fix for the case
20636 that KEY is a cons.
20638 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
20640 * vc-rcs.el (vc-rcs-find-file-hook):
20641 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
20643 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
20645 * net/tramp.el (tramp-wait-for-output): Handle the case when
20646 commands do not return a newline but a null byte before the shell
20649 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20651 * term/ns-win.el (ns-set-alpha): Don't declare.
20652 (ns-set-background-alpha): Remove function.
20654 2009-07-16 Kevin Ryde <user42@zip.com.au>
20656 * emacs-lisp/copyright.el (copyright-update): Save match-data across
20657 y-or-n-p, for safety.
20659 2009-07-16 Richard Stallman <rms@gnu.org>
20661 * files.el (auto-save-mode): If buffer-saved-size is -2,
20664 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
20665 (rmail-retry-ignored-headers): Add more uninteresting fields.
20667 2009-07-15 Jari Aalto <jari.aalto@cante.net>
20669 * net/rcirc.el (rcirc): Use history variables.
20670 (rcirc-server-name-history, rcirc-nick-name-history)
20671 (rcirc-server-port-history): New variables.
20673 2009-07-15 Kenichi Handa <handa@m17n.org>
20675 * international/mule-cmds.el (set-language-environment-charset):
20676 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
20679 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
20680 Delete unibyte-display.
20682 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
20684 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
20686 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
20688 * simple.el (deactivate-mark): Optional argument FORCE.
20689 (set-mark): Use deactivate-mark.
20691 * info.el (Info-search): No need to check transient-mark-mode
20692 before calling deactivate-mark.
20694 * select.el (x-set-selection): Doc fix.
20695 (x-valid-simple-selection-p): Allow buffer values.
20696 (xselect--selection-bounds): Handle buffer values.
20697 Suggested by David De La Harpe Golden.
20699 * mouse.el (mouse-set-region, mouse-drag-track):
20700 Call copy-region-as-kill before setting the mark, to let
20701 select-active-regions work.
20703 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
20705 * simple.el (deactivate-mark): If select-active-regions is
20706 non-nil, copy the selection data into a string.
20707 (activate-mark): If select-active-regions is non-nil, set the
20708 selection to the current buffer.
20709 (set-mark): Update selection if select-active-regions is non-nil.
20711 * select.el (x-valid-simple-selection-p): Allow buffer values.
20713 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
20715 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
20716 and more featureful message-mode.
20718 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
20720 * select.el (x-set-selection): Doc fix.
20721 (x-valid-simple-selection-p): Disallow selection data consisting
20722 of a list or cons of integers, since that is not used.
20723 (xselect--selection-bounds, xselect--int-to-cons): New functions.
20724 (xselect-convert-to-string, xselect-convert-to-length)
20725 (xselect-convert-to-filename, xselect-convert-to-charpos)
20726 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
20728 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
20730 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
20731 output in -break-info command (Emacs bug #3794).
20733 2009-07-14 Glenn Morris <rgm@gnu.org>
20735 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
20736 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
20737 (edebug-print-length, edebug-print-level, edebug-print-circle)
20738 (edebug-sit-for-seconds, edebug-view-outside)
20739 (edebug-bounce-point, edebug-set-global-break-condition)
20740 (edebug-Go-nonstop-mode, edebug-trace-mode)
20741 (edebug-Trace-fast-mode, edebug-continue-mode)
20742 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
20743 (edebug-visit-eval-list): Doc fixes.
20745 * subr.el (def-edebug-spec): Doc fix.
20747 2009-07-14 Kenichi Handa <handa@m17n.org>
20749 * international/characters.el: Fix setting of category ?C.
20751 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
20753 * term/ns-win.el (x-select-font): defalias x-select-font to
20754 ns-popup-font-panel instead of generate-fontset-menu.
20756 2009-07-12 Eli Zaretskii <eliz@gnu.org>
20758 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
20760 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
20762 * arc-mode.el (archive-find-type): Allow for a PK00 string before
20763 the PK\003\004 header (Bug#3770).
20765 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
20767 * pcomplete.el (pcomplete-comint-setup): Check for
20768 shell-dynamic-complete-filename too.
20770 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
20772 * simple.el (temporary-goal-column): Change the value for
20773 line-move-visual to a cons cell.
20774 (line-move-visual): Record or set the window hscroll, if
20775 necessary (Bug#3494).
20776 (line-move-1): Handle cons value of temporary-goal-column.
20778 2009-07-11 Kenichi Handa <handa@m17n.org>
20780 * international/mule-diag.el (describe-character-set): Don't show
20783 2009-07-10 Sam Steingold <sds@gnu.org>
20785 * progmodes/compile.el (compilation-mode-font-lock-keywords):
20786 Omake sometimes indents the errors it prints, so allow all
20787 regexps to start with spaces.
20789 2009-07-10 Eli Zaretskii <eliz@gnu.org>
20791 * cus-edit.el (customize-changed-options-previous-release):
20792 Bump value to 22.1. (Bug#3804)
20794 2009-07-08 Sam Steingold <sds@gnu.org>
20796 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
20797 to be a cons cell (test . ignored-directory) to selectively ignore
20798 some directories depending on the location of the search.
20800 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
20802 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
20803 remote user is root, on the local host.
20804 (tramp-local-host-p): Either the local user or the remote user
20805 must be root. (Bug#3771)
20807 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
20809 * progmodes/gdb-mi.el (gdb): Remove description of
20810 gdb-use-separate-io-buffer.
20811 (menu): Don't allow toggling of or enable
20812 gdb-use-separate-io-buffer from menubar.
20814 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
20816 * mail/unrmail.el (unrmail): Make sure the message ends with two
20817 newlines (Bug#3769).
20819 2009-07-08 Glenn Morris <rgm@gnu.org>
20821 * calendar/calendar.el (calendar-current-date): Rework previous change.
20823 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
20825 * calendar/calendar.el (calendar-current-date):
20826 Add an optional argument giving an offset from today.
20828 2009-07-08 Glenn Morris <rgm@gnu.org>
20830 * tutorial.el (tutorial--describe-nonstandard-key):
20831 Adjust the message for when a key has been unbound.
20832 (help-with-tutorial): Hide the arch-tag.
20834 2009-07-08 Kenichi Handa <handa@m17n.org>
20836 * international/fontset.el (setup-default-fontset): For each
20837 script, append (not set) font-specs.
20839 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
20842 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
20844 * progmodes/gdb-mi.el (gdb-init-1): Move sending
20845 -data-list-register-names to ...
20846 (gdb-starting): ... here because GDB 7.0 requires execution to
20847 have started when using this MI command.
20848 (gdb-set-header): New function to distinguish select and
20849 unselected tabs in gdb buffers.
20850 (gdb-propertize-header): New macro that uses gdb-set-header.
20851 (gdb-breakpoints-header, gdb-locals-header): Use it.
20852 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
20854 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
20856 * Makefile.in (ELCFILES): Remove fadr.elc.
20858 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
20860 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
20861 may contain frame information, so `string-match' should be used.
20862 (gdb-update): Disassembly is invalidated through
20863 `gdb-get-selected-frame'.
20864 (gdb-pad-string): New function to pad string with spaces.
20865 (gdb-invalidate-disassembly): Invalidate only if the buffer
20867 (gdb-disassembly-handler-custom): Column alignment.
20868 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
20870 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
20872 (gdb-frame-handler): Match convention to for disassembly buffer
20874 (gdb-stack-list-frames-handler): Rewritten without regexps.
20875 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
20876 not highlight breakpoints without line information.
20877 (gdb-input): Add trailing newline to command.
20879 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
20881 (gdb-breakpoints-list-handler-custom): Replacement for
20882 `gdb-break-list-handler'. Using real parser instead of regexps
20884 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
20885 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
20886 to place breakpoints.
20887 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
20889 (gdb-disassembly-handler-custom): Show overlay arrow.
20890 (gdb-disassembly-place-breakpoints): Show breakpoints in
20891 disassembly buffer.
20892 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
20893 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
20894 instead of parsing breakpoints buffer. Fixed old menu references
20899 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
20900 (gdb-memory-address): New variable which holds top address of
20901 memory page shown in memory buffer.
20902 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
20903 New customization variables.
20905 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
20906 display the memory buffer.
20907 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
20908 buffer display parameters.
20909 (def-gdb-memory-format, gdb-memory-format-binary)
20910 (gdb-memory-format-octal, gdb-memory-format-unsigned)
20911 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
20912 Functions for setting memory buffer format.
20913 (gdb-memory-unit-word, gdb-memory-unit-halfword)
20914 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
20915 unit size used in memory buffer.
20916 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
20917 Switch to next/previous page of memory buffer.
20918 Now using (bindat-get-field) instead of fadr functions.
20920 2009-07-07 Sam Steingold <sds@gnu.org>
20922 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
20923 non-top-level files.
20925 2009-07-07 Kenichi Handa <handa@m17n.org>
20927 * international/mule-cmds.el (reset-language-environment):
20928 Put the highset priority to the charset iso-8859-1.
20930 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
20932 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
20933 to the end of the line when locating the block (Bug#700).
20935 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
20937 * net/tramp.el (tramp-handle-write-region): Flush file properties
20938 in case of short track.
20940 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
20942 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
20943 Coded custom representation of verilog error regular expressions
20944 to work with Emacs-22's new format.
20945 (verilog-error-regexp-xemacs-alist): Coded custom representation
20946 of verilog error regular expressions to work with XEmacs format.
20947 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
20948 error recognition into XEmacs.
20949 (verilog-error-regexp-add-emacs): Hook routine to install verilog
20950 error recognition into Emacs-22.
20952 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
20954 * woman.el: Remove stand-alone closing parentheses.
20955 (woman-file-name, woman2-format-paragraphs)
20956 (woman-leave-blank-lines): Code cleanup.
20957 (woman-use-own-frame): Change default to nil.
20958 (woman-italic, woman-bold, woman-unknown, woman-addition):
20959 Change defaults to inherit from default faces.
20960 (woman2-process-escapes): Consume the newline after a stand-alone
20961 filler character (Bug#3651).
20963 2009-07-06 Glenn Morris <rgm@gnu.org>
20965 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
20966 (top-level): Move provide to the end.
20967 (ffap): Remove defunct URL from custom group.
20969 * subr.el (eval-after-load): Doc fix.
20971 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
20973 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
20974 `calc-embedded-word' is called twice.
20976 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20978 * files.el (find-alternate-file-other-window, find-alternate-file):
20979 Obey confirm-nonexistent-file-or-buffer.
20981 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
20983 * dired-aux.el (dired-show-file-type): Handle remote files.
20985 2009-07-05 Jari Aalto <jari.aalto@cante.net>
20987 * desktop.el (desktop-globals-to-save):
20988 Add file-name-history (Bug#2750).
20990 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
20992 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
20994 2009-07-04 Johan Bockgård <bojohan@gnu.org>
20996 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
20997 property on entire argument since this is what eshell-lisp-command
21000 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
21002 * net/tramp-gvfs.el (tramp-gvfs-methods)
21003 (tramp-gvfs-zeroconf-domain)
21004 (tramp-bluez-discover-devices-timeout): Add version flag.
21005 (tramp-gvfs-handler-mounted-unmounted)
21006 (tramp-gvfs-connection-mounted-p): Polish handling of
21007 incompatibilities between GVFS 0.2 and 1.0.
21009 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
21011 * cus-start.el (all): Add make-pointer-invisible.
21013 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
21015 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
21016 formatted correctly.
21018 2009-07-02 Juri Linkov <juri@jurta.org>
21020 * info.el: Virtual Info files and nodes.
21021 (Info-virtual-files, Info-virtual-nodes): New variables.
21022 (Info-current-node-virtual): New variable.
21023 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
21025 (Info-file-supports-index-cookies): Use Info-virtual-file-p
21026 to check for a virtual file instead of checking a fixed list
21028 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
21029 instead of ad-hoc processing of "dir" and (apropos history toc).
21030 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
21031 instead of ad-hoc processing of "dir" and (apropos history toc).
21032 Reread a file when moving from a virtual node.
21033 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
21034 (Info-directory-toc-nodes, Info-directory-find-file)
21035 (Info-directory-find-node): New functions.
21036 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
21037 (Info-history): Move part of code to
21038 `Info-history-find-node'.
21039 (Info-history-toc-nodes, Info-history-find-file)
21040 (Info-history-find-node): New functions.
21041 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
21042 (Info-toc): Move part of code to `Info-toc-find-node'.
21043 (Info-toc-find-node): New function.
21044 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
21045 the current Info file name to references because now the node
21046 "*TOC*" belongs to the same Info manual.
21047 (Info-toc-build): Rename from `Info-build-toc'.
21048 (Info-toc-nodes): Rename input argument `file' to `filename'.
21049 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
21050 instead of ad-hoc processing of ("dir" apropos history toc).
21051 (Info-index-nodes): Use Info-virtual-file-p
21052 to check for a virtual file instead of checking a fixed list
21054 (Info-index-node): Add check for `Info-current-node-virtual'.
21055 Raise `save-match-data' higher up the tree to contain
21056 `search-forward' too (bug fix).
21057 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
21058 (Info-virtual-index-nodes): New variable.
21059 (Info-virtual-index-find-node, Info-virtual-index): New functions.
21060 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
21061 (Info-apropos-file, Info-apropos-nodes): New variables.
21062 (Info-apropos-toc-nodes, Info-apropos-find-file)
21063 (Info-apropos-find-node, Info-apropos-matches): New functions.
21064 (info-apropos): Move part of code to `Info-apropos-find-node' and
21065 `Info-apropos-matches'.
21066 (Info-mode-map): Bind "I" to `Info-virtual-index'.
21067 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
21068 for a virtual file instead of checking a fixed list of node names.
21070 * simple.el (async-shell-command): New command.
21072 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
21074 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
21075 instead of `mount-info'.
21077 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
21079 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
21080 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
21082 2009-07-02 Kenichi Handa <handa@m17n.org>
21084 * international/mule.el (set-keyboard-coding-system): Force *-unix
21085 coding-system to avoid eol conversion.
21087 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
21089 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
21090 Add handler for `process-file', `shell-command' and
21091 `start-file-process'.
21092 (tramp-gvfs-handle-shell-command)
21093 (tramp-gvfs-handle-start-file-process)
21094 (tramp-gvfs-handle-process-file): New defuns.
21095 (tramp-synce-list-devices): Simplify check for existence of property.
21097 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
21099 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
21101 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
21103 * language/korean.el (set-language-info-alist): Add korean-cp949,
21106 2009-07-01 Kenichi Handa <handa@m17n.org>
21108 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
21110 * international/encoded-kb.el: Deleted.
21112 * international/mule.el (set-keyboard-coding-system): Perform the
21113 necessary setup here instead of calling encoded-kbd-setup-display.
21115 2009-07-01 Glenn Morris <rgm@gnu.org>
21117 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
21119 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
21121 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
21123 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
21125 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
21126 Handle also the 'rename case, when setting file modes. (Bug#3712)
21127 (tramp-default-file-modes): Remove execute permissions.
21129 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
21130 (top): Add a default for "synce" in `tramp-default-user-alist'.
21131 Add completion function for "synce" method.
21132 (tramp-hal-service, tramp-hal-path-manager)
21133 (tramp-hal-interface-manager, tramp-hal-interface-device):
21135 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
21136 (tramp-synce-list-devices, tramp-synce-parse-device-names):
21139 * net/trampver.el: Update release number.
21141 2009-06-30 Kenichi Handa <handa@m17n.org>
21143 * international/fontset.el (setup-default-fontset): Add CJK fonts
21144 for symbols and the other miscellaneous characters.
21146 * language/korea-util.el (setup-korean-environment-internal):
21147 Make char-width-table suitable for Korean environments.
21148 (exit-korean-environment): Cancel above.
21150 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
21151 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
21152 setup-function to make char-width-table suitable for respective
21153 environments, and an exit-function to cancel that.
21155 * language/japan-util.el (setup-japanese-environment-internal):
21156 Call use-cjk-char-width-table with arg `ja_JP'.
21158 * international/characters.el (cjk-char-width-table): Delete it.
21159 (cjk-char-width-table-list): New variable.
21160 (use-cjk-char-width-table): New arg local-name.
21161 (use-default-char-width-table): Fix for the case that Emacs is
21162 already using the default char-width-table.
21164 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
21166 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
21167 modes mandatory. (Bug#3712)
21169 2009-06-29 Alan Mackenzie <acm@muc.de>
21171 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
21172 correction between the visible width of TABs and their number of bytes.
21174 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
21176 * server.el (server-buffer-done): Prevent kill-buffer from
21177 prompting by clearing the buffer modification flag (Bug#3696).
21179 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
21181 * progmodes/verilog-mode.el (verilog-beg-of-statement)
21182 (verilog-endcomment-reason-re): Support unique case and priority case.
21183 (verilog-basic-complete-re): Support localparam lineup.
21184 (verilog-beg-of-statement-1): Fix for robustness, unique case.
21185 (verilog-set-auto-endcomments): Fix for unique case, always_comb
21187 (verilog-leap-to-case-head): Now support *nested* unique &
21188 priority case statements.
21189 (verilog-auto-lineup): Make just declarations the default (as it
21191 (verilog-leap-to-case-head): Support priority/unique case statements.
21192 (verilog-auto-lineup): Rework to give users radio buttons to
21193 select the various styles of automatic lineup.
21194 (verilog-error-regexp-alist): Rework to support the XEmacs style
21195 of error regular expressions from compilers, lint tools &
21196 simulators. Note that GNU Emacs has made it impossible for a mode
21197 to load such things.
21198 (electric-verilog-terminate-line, verilog-indent-declaration)
21199 (verilog-auto-wiure): Rework for radio button selection of
21200 auto-lineup selection of specification of auto lineup.
21201 (verilog-beg-of-statement-1): Redesign to support proper operation
21202 in additional code, based on testing with auto-lineup.
21203 (verilog-calculate-indent, assignments & declarations)
21204 (verilog-backward-token): Enhance to support auto-lineup of
21205 assignments & declarations.
21206 (verilog-in-directive-p, verilog-at-struct-p): New function for
21207 easy test of whether we are.
21208 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
21209 to support safe execution at almost anyline.
21210 (verilog-calc-1): Properly support indenting deep inside generate
21212 (verilog-init-font): Remove definition & use of verilog-init-font,
21213 as it is redundant with font-lock-defaults.
21214 (verilog-mode): Alter the definition of verilog-font-lock-defaults
21215 to avoid circular calls if syntax-ppss is a function (as is the
21216 case now in 22.x GNU Emacs) as that function would sometimes call
21217 itself, leading to (nearly) infinite recursion.
21218 (verilog-ovm-begin-re, verilog-ovm-end-re)
21219 (verilog-ovm-statement-re, verilog-leap-to-head)
21220 (verilog-backward-token): Add support for OVM macros. Some are
21221 complete statements, and others open and close scopes like begin
21223 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
21224 (verilog-defun-level-generate-only-re): Really fix the defun-list
21226 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
21227 coverpoint, constraint and cross statements.
21228 (verilog-defun-level-list, verilog-generate-defun-level-list)
21229 (verilog-all-defun-level-list): Redo these specifications - it is
21230 too hard to support eval-when compile aggregation of lists also
21231 built at when-compile time.
21232 (verilog-defun-level-list): Place defconsts of variables used in
21233 building regular expressions which are built in eval-when-compile
21234 bodies in the same eval-when-compile body to facilitate compile
21236 (verilog-beg-block-re-ordered): Support indenting
21237 virtual/protected tasks and functions.
21238 (verilog-defun-level-list, verilog-in-generate-region-p)
21239 (verilog-backward-ws&directives, verilog-calc-1): Speed up
21240 indentation of some module items (generate items).
21241 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
21242 across virtual/protected tasks and functions.
21244 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
21246 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
21247 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
21248 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
21249 in concatenations. Reported by Yishay Belkind.
21250 (verilog-auto-ascii-enum): Support one-hot state machines in
21251 AUTOASCIIENUM. Suggested by Lloyd Gomez.
21252 (verilog-auto-inst, verilog-auto-inst-port): Include interface
21253 modport in AUTOINST and add vl-modport for users.
21254 Reported by David Rogoff.
21255 (verilog-auto-inout-module, verilog-auto-inst)
21256 (verilog-decls-get-interfaces, verilog-insert-definition)
21257 (verilog-insert-one-definition, verilog-read-decls)
21258 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
21259 (verilog-sig-modport, verilog-signals-combine-bus)
21260 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
21261 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
21262 Suggested by David Rogoff.
21263 (verilog-repair-open-comma): Fix non-insertion of comma when
21264 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
21265 (verilog-make-width-expression): Simplify [A-1:0] expression
21266 widths to just {A{1'b0}}.
21267 (verilog-mode): Cleanup checkdoc warnings.
21268 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
21269 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
21270 inputs/outputs or data type. Suggested by Vasu Kandadi.
21271 (next-error-last-buffer): Fix byte-compiler warning.
21272 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
21273 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
21274 or shell command text during AUTO expansion. Suggested by Tad Truex.
21275 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
21276 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
21277 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
21278 in AUTOINOUT. Reported by Matthew Lovell.
21279 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
21280 causing use of <= assignments. Reported by Alex Reed.
21281 (verilog-read-decls): Fix triand, trior, wand, wor to be
21282 recognized by AUTOWIRE. Reported by Spencer Isaacson.
21283 (verilog-extended-complete-re): Support import "DPI-C" functions.
21284 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
21285 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
21286 (verilog-insert-date, verilog-insert-year)
21287 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
21288 Windows systems. Reported by Michael Potts.
21289 (verilog-read-module-name): Fix AUTOINST when the child module
21290 declaration's name is a tick define. Reported by Elliot Mednick.
21291 (verilog-read-decls): Fix V2K parameter bit subscripts getting
21292 passed to next parameter's definition. Reported by Bruce T.
21293 (verilog-read-decls): Fix detecting "parameter int" when using
21294 AUTOINSTPARAM. Reported by Bruce T.
21295 (verilog-goto-defun): Fix goto not finding modules unless first
21296 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
21297 (verilog-mode): Expand -f flag arguments on entry to mode so
21298 verilog-goto-defun will work. Reported by Lawrence Butcher.
21299 (verilog-getopt): Expand environment variables in -f file
21300 arguments. Suggested by Lawrence Butcher.
21301 (verilog-set-define): Fix "Symbol's value as variable is void"
21302 when reading enumerations.
21303 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
21304 Suggested by Stephen Peltan.
21305 (verilog-read-defines): Fix reading of enumerations in include
21306 files. Reported by Steve Peltan.
21308 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
21310 * files.el (trash-directory): Fix defcustom type.
21312 2009-06-28 Juri Linkov <juri@jurta.org>
21314 * help-fns.el (describe-function-1): Correctly locate adviced
21315 functions in hyperlink (Bug#2438).
21317 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
21319 * files.el (trash-directory): Change default to nil.
21320 (move-file-to-trash): If trash-directory is nil and
21321 system-move-file-to-trash is unbound, perform freedesktop-style
21324 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
21326 * files.el (move-file-to-trash): Add freedesktop trash
21329 2009-06-28 Glenn Morris <rgm@gnu.org>
21331 * autorevert.el (global-auto-revert-non-file-buffers)
21332 (global-auto-revert-mode): Doc fixes.
21334 2009-06-27 Johan Bockgård <bojohan@gnu.org>
21336 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
21338 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
21340 * faces.el (x-handle-named-frame-geometry): Ensure that we have
21341 opened an X connection before calling x-get-resource (Bug#3194).
21343 * play/doctor.el: Remove reference to obsolete website.
21344 (make-doctor-variables): Correct grammar mistake (Bug#2633).
21346 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
21348 Remove find-file-not-found-hook VC method. (Bug#2757)
21349 * vc-hooks.el (vc-file-not-found-hook)
21350 (vc-default-find-file-not-found-hook): Remove functions.
21351 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
21352 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
21355 * vc-git.el: Do not mention find-file-not-found-hook VC method.
21357 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
21359 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
21360 compatibility function for `looking-back'.
21362 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
21363 Use `ispell-looking-back'.
21365 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
21367 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
21368 rather than `filename'.
21370 2009-06-23 Miles Bader <miles@gnu.org>
21372 * face-remap.el (text-scale-set): New function.
21374 2009-06-23 Glenn Morris <rgm@gnu.org>
21376 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
21378 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
21380 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
21382 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
21384 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
21385 Simplify Persian conditionals.
21387 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
21388 variable `filename'.
21390 * comint.el (comint-insert-input): Doc fix.
21392 * Makefile.in (ELCFILES): Fix typo in previous change.
21394 2009-06-23 Miles Bader <miles@gnu.org>
21396 * cus-start.el: Add entry for `recenter-redisplay'.
21398 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
21400 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
21401 Add an optional argument for the backend, use it instead of
21402 calling vc-backend.
21403 (vc-mode-line): Add an optional argument for the backend.
21404 Pass the backend to vc-state and vc-working-revision. Move code for
21405 special handling for vc-state being a buffer to ...
21407 * vc-rcs.el (vc-rcs-find-file-hook):
21408 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
21410 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
21411 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
21412 vc-stay-local-p and vc-mode-line calls.
21414 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
21415 (vc-cvs-diff, vc-cvs-annotate-command)
21416 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
21417 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
21418 vc-mode-line calls.
21420 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
21422 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
21423 backend when calling vc-mode-line.
21424 (vc-register): Do not create a closure for calling the vc register
21425 function, call it directly.
21427 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
21429 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
21430 to make it obvious item can be clicked.
21432 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
21434 2009-06-23 Kenichi Handa <handa@m17n.org>
21436 * language/korea-util.el (korean-key-bindings): Change the binding
21437 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
21440 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
21442 Sync with Tramp 2.1.16.
21444 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
21446 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
21447 when a loading of a package fails. Completion function for rsync
21448 is `tramp-completion-function-alist-ssh'.
21449 (all): Replace all calls of `split-string' and
21450 `tramp-split-string' by `tramp-compat-split-string'.
21451 (tramp-default-method): Use `tramp-compat-process-running-p'.
21452 (tramp-default-proxies-alist): Allow also Lisp forms.
21453 (tramp-remote-path): Add choice "Private Directories".
21454 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
21455 (tramp-domain-regexp): Allow also "-", "_" and ".".
21456 (tramp-end-of-output): Remove newlines, and add "$" at the end.
21457 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
21458 (tramp-debug-message): Insert header line in debug buffer.
21459 (tramp-handle-directory-files-and-attributes-with-stat):
21460 Care about filenames with spaces, or starting with "-".
21461 (tramp-handle-dired-uncache): New defun.
21462 (tramp-handle-insert-directory): Don't flush the directory from
21463 cache, this is handled by `dired-uncache' now.
21464 (tramp-handle-insert-file-contents): Improve error handling.
21465 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
21466 Quote `tramp-end-of-output'.
21467 (tramp-action-password): Improve trace message.
21468 (tramp-check-for-regexp): Both echoes must be present, before removing.
21469 (tramp-open-connection-setup-interactive-shell): Trace coding system.
21470 (tramp-compute-multi-hops): Eval cons cells of
21471 `tramp-default-proxies-alist'.
21472 (tramp-maybe-open-connection): Use the same command pattern for
21473 first hop and further hops.
21474 (tramp-wait-for-output): Remove handling of newlines.
21475 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
21476 (tramp-split-string): Remove function. It is handled in
21479 * net/tramp-cmds.el (tramp-bug):
21480 Recommend `tramp-cleanup-all-connections' in the bug mail.
21482 * net/tramp-compat.el (tramp-compat-split-string)
21483 (tramp-compat-process-running-p): New defuns.
21485 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
21486 for `dired-uncache'.
21488 * net/tramp-gvfs.el: New package.
21490 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
21491 Add handler for `dired-uncache'.
21492 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
21494 * net/trampver.el: Update release number. Make version check fit
21497 2009-06-22 Jim Meyering <meyering@redhat.com>
21499 Automatically handle .xz suffix (XZ-compressed files), too.
21500 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
21501 XZ is the successor to LZMA: <http://tukaani.org/xz/>
21503 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
21504 Nick Roberts <nickrob@snap.net.nz>
21506 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
21507 repository (http://sphinx.net.ru/hg/gdb-mi/).
21509 2009-06-22 Glenn Morris <rgm@gnu.org>
21511 * files.el (dir-locals-collect-mode-variables): Allow for any number of
21512 `mode' and `eval' entries. (Bug#3430)
21514 * Makefile.in (ELCFILES): Add fadr.elc.
21516 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
21517 differing behavior of \n and ^ in strings. (Bug#3385)
21519 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
21521 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
21523 (lisp-indent-function): Make it a defcustom.
21525 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
21527 * progmodes/gdb-ui.el: Replace with ...
21528 * progmodes/gdb-mi.el: ... this file.
21529 * progmodes/gud.el: Modify for gdb-mi.el.
21531 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
21533 * fadr.el: New file.
21535 See ChangeLog.14 for earlier changes.
21537 ;; Local Variables:
21541 Copyright (C) 2009-2011 Free Software Foundation, Inc.
21543 This file is part of GNU Emacs.
21545 GNU Emacs is free software: you can redistribute it and/or modify
21546 it under the terms of the GNU General Public License as published by
21547 the Free Software Foundation, either version 3 of the License, or
21548 (at your option) any later version.
21550 GNU Emacs is distributed in the hope that it will be useful,
21551 but WITHOUT ANY WARRANTY; without even the implied warranty of
21552 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21553 GNU General Public License for more details.
21555 You should have received a copy of the GNU General Public License
21556 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.