1 2011-03-30 Leo Liu <sdl.web@gmail.com>
3 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
5 (edit-abbrevs-map): Bind them here.
6 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
8 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
10 * allout.el (allout-hide-by-annotation, allout-flag-region):
11 Reduce possibility of overlay leakage by making them volatile.
13 * allout-widgets.el (allout-widgets-tally): Define as nil so the
14 hash is not shared between buffers. Mode initialization is
15 responsible for giving it a useful starting value.
16 (allout-item-span): Reduce possibility of overlay leakage by
18 (allout-widgets-count-buttons-in-region): Add diagnostic function
19 for tracking down button overlay leaks.
21 2011-03-29 Leo Liu <sdl.web@gmail.com>
23 * ido.el (ido-read-internal): Use the default history var
24 minibuffer-history if no HISTORY is specified.
26 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
28 * net/imap.el (imap-shell-open, imap-process-connection-type): Use
29 imap-process-connection-type for 'shell' streams as well as
30 Kerberos, SSL, other subprocesses.
32 2011-03-28 Leo Liu <sdl.web@gmail.com>
34 * abbrev.el (abbrev-table-empty-p): New function.
35 (prepare-abbrev-list-buffer): Place empty abbrev tables after
36 nonempty ones. (Bug#5937)
38 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
40 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
42 2011-03-27 Leo Liu <sdl.web@gmail.com>
44 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
45 for foreground and background colors.
46 (ansi-color-make-color-map): Adapt.
48 2011-03-25 Leo Liu <sdl.web@gmail.com>
50 * midnight.el (midnight-time-float): Remove. Note it calculates
51 the microsecond component incorrectly and seconds-to-time does the
53 Remove redundant (require 'timer).
55 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
56 (ido-completions): Remove unused arguments. (Bug#8329)
58 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
60 * minibuffer.el (completion--flush-all-sorted-completions):
61 Remove itself from hook.
62 (completion-at-point): Let the functions perform the completion
63 immediately and return nil or t.
64 * comint.el (comint-dynamic-complete-functions): Now identical to
65 completion-at-point-functions.
66 (comint-dynamic-list-input-ring): Remove unused var `index'.
67 (comint--match-partial-filename, comint--unquote&expand-filename):
68 New funs, split from comint-match-partial-filename.
69 (comint-dynamic-complete): Use completion-at-point.
70 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
72 2011-03-24 Drew Adams <drew.adams@oracle.com>
74 * thingatpt.el: Support `defun'.
76 2011-03-23 Leo Liu <sdl.web@gmail.com>
78 * abbrevlist.el: Move to obsolete/abbrevlist.el.
80 * help-mode.el (help-mode-finish): Tweak regexp.
82 2011-03-23 Glenn Morris <rgm@gnu.org>
84 * eshell/esh-opt.el (eshell-eval-using-options):
85 Do not bind unused local variable `eshell-option-stub'.
87 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
89 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
91 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
92 keymap variable in `with-no-warnings' to avoid a warning when the
93 keymap has been already `defconst'ed.
95 2011-03-22 Leo Liu <sdl.web@gmail.com>
97 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
98 encode all chars in abbrevs; otherwise use emacs-mule or
99 utf-8-emacs. (Bug#8308)
101 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
103 * simple.el (backward-delete-char-untabify):
104 Avoid warning about using `delete-backward-char'.
106 * image.el (image-type-file-name-regexps): Make it variable.
107 `imagemagick-register-types' modifies it, and the user may want
108 to add new extensions for known image types.
109 (imagemagick-register-types): Throw error if not using ImageMagick.
111 2011-03-22 Leo Liu <sdl.web@gmail.com>
113 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
114 located before rcirc-prompt-end-marker.
115 (rcirc-complete): Error if point is not after rcirc prompt.
116 Handle the case when table is nil.
117 (rcirc-user-authenticated): Define to fix compiler warning.
119 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
121 * custom.el (custom--inhibit-theme-enable): Make it affect only
122 custom-theme-set-variables and custom-theme-set-faces.
123 (provide-theme): Ignore custom--inhibit-theme-enable.
124 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
125 (custom-enabling-themes): Delete variable.
126 (enable-theme): Accept only loaded themes as arguments.
127 Ignore the special custom-enabled-themes variable.
128 (custom-enabled-themes): Forbid themes from setting this.
129 Eliminate use of custom-enabling-themes.
130 (custom-push-theme): Quote "changed" custom var entry.
132 2011-03-21 Leo Liu <sdl.web@gmail.com>
134 * ido.el (ido-read-internal): Add ido-selected to history instead
137 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
139 * subr.el (deferred-action-list, deferred-action-function):
142 2011-03-21 Leo Liu <sdl.web@gmail.com>
144 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
145 change on 2011-02-13 (bug#8309).
147 * minibuffer.el (read-file-name-function): Change default value.
148 (read-file-name--defaults): Rename from read-file-name-defaults.
149 (read-file-name-default): Rename from read-file-name.
150 (read-file-name): Call read-file-name-function.
152 2011-03-21 Glenn Morris <rgm@gnu.org>
154 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
157 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
159 * cus-theme.el: Add missing provide statement.
160 (customize-create-theme): Extract theme value correctly.
161 (custom-theme-visit-theme): Autoload.
162 (customize-create-theme): Prompt before inserting default faces.
164 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
166 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
167 units and musical notes.
169 2011-03-20 Leo <sdl.web@gmail.com>
171 * ido.el (ido-read-internal): Use completing-read-default.
172 (ido-completing-read): Fix compatibility with completing-read.
174 2011-03-20 Christian Ohler <ohler@gnu.org>
176 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
177 (ert-delete-all-tests): Use `called-interactively-p' rather than
179 (ert--make-xrefs-region): Respect END.
181 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
183 * dired-aux.el (dired-create-directory): Signal an error if the
184 directory already exists (Bug#8246).
186 * facemenu.el (list-colors-display): Call list-faces-display
187 inside with-help-window.
188 (list-colors-print): Use display property to align the final
189 column, instead of checking window-width.
191 2011-03-19 Eli Zaretskii <eliz@gnu.org>
193 * emerge.el (emerge-metachars): Separate value for ms-dos and
195 (emerge-protect-metachars): Quote correctly for ms-dos and
198 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
200 * info.el (info-initialize): Replace all uses of `:' with
201 path-separator for compatibility with non-Unix systems.
202 Cache quoting of path-separator. (Bug#8258)
204 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
206 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
207 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
208 (mouse-avoidance-mode): Fix typos in docstrings.
210 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
212 * startup.el (package-subdirectory-regexp): Move from package.el.
213 Omit \\` and \\', and let callers add them.
215 * emacs-lisp/package.el (package-strip-version)
216 (package-load-all-descriptors): Add \\` and \\' to
217 package-subdirectory-regexp before using it.
218 (package-untar-buffer): New arg DIR; ensure that file untars only
219 into this expected directory. Remove superfluous delete-region.
220 (package-unpack): Caller changed.
221 (package-tar-file-info): Use package-subdirectory-regexp.
223 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
225 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
226 diff-mode-shared-map (bug#8284).
227 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
229 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
231 * calendar/time-date.el (format-seconds): Use assoc instead of
232 assoc-string, since assoc-string doesn't exist in XEmacs.
234 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
236 * custom.el (custom-known-themes): Reflow docstring.
237 (custom-theme-load-path): Fix typo in docstring.
238 (load-theme): Fix typo in error message.
239 (custom-available-themes, custom-variable-theme-value):
240 Use `let', not `let*'.
242 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
244 * calc/README: Mention inclusion of musical notes.
246 * calc/calc-units.el (calc-lu-quant): Rename from
247 `calc-logunits-quantity'.
248 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
249 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
250 (calc-db): Rename from `calc-dblevel'.
251 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
252 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
253 (calc-np): Rename from `calc-nplevel'.
254 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
255 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
256 (calc-lu-plus): Rename from `calc-logunits-add'.
257 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
258 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
259 (calc-lu-minus): Rename from `calc-logunits-sub'.
260 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
261 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
262 (calc-lu-times): Rename from `calc-logunits-mul'.
263 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
264 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
265 (calc-lu-divide): Rename from `calc-logunits-div'.
266 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
267 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
269 * calc/calc-ext.el (calc-init-extensions): Update the names of the
270 functions being autoloaded.
272 * calc/calc.el (calc-lu-power-reference): Rename from
273 `calc-logunits-power-reference'.
274 (calc-lu-field-reference): Rename from
275 `calc-logunits-field-reference'.
277 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
279 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
281 * minibuffer.el (completion-all-sorted-completions):
282 Use :completion-cycle-penalty text property if present.
284 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
286 * allout.el (allout-yank-processing): Adjust for new rebulleting
287 regime so bullet being yanked is used without prompting the user
290 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
292 * startup.el (command-line): Warn the user that _emacs is deprecated.
294 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
296 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
297 (delphi-verbose, delphi-comment-face, delphi-string-face)
298 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
299 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
300 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
301 (delphi-new-comment-line, delphi-font-lock-defaults)
302 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
303 Fix typos in docstrings.
305 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
307 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
308 Invert the roles of character and string values for INSTEAD, so a
309 string is used for the more common case of a defaulting prompt.
311 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
313 * progmodes/ruby-mode.el (ruby-backward-sexp):
314 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
315 * play/gamegrid.el (gamegrid-make-face):
316 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
317 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
318 * notifications.el (notifications-notify):
319 * net/xesam.el (xesam-search-engines):
320 * net/quickurl.el (quickurl-list-insert):
321 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
323 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
325 * startup.el (command-line): Update package subdirectory regexp.
327 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
329 * allout.el (allout-abbreviate-flattened-numbering)
330 (allout-mode-deactivate-hook): Fix up obsolescence "date".
332 * subr.el (read-char-choice): Only show the cursor after the prompt,
333 not after the answer.
335 2011-03-15 Kevin Ryde <user42@zip.com.au>
337 * help-fns.el (variable-at-point): Skip leading quotes, if any
340 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
342 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
345 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
347 * shell.el (shell): When called interactively, offer to change the
348 shell file name on remote hosts.
350 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
352 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
353 integration for LDAP parameters. The host, base, user or binddn,
354 and secret tokens can be specified in a netrc file, for instance.
355 This is optional because an `auth-source' parameter must be
356 specified in the search attributes.
358 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
360 * help.el (describe-mode): Link to the mode's definition (bug#8185).
362 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
364 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
365 into declaration. Remove redundant and harmful binding.
367 2011-03-12 Eli Zaretskii <eliz@gnu.org>
369 * files.el (file-ownership-preserved-p): Pass `integer' as an
370 explicit 2nd argument to `file-attributes'. If the file's owner
371 is the Administrators group on Windows, and the current user is
372 Administrator, consider that a match.
374 * server.el (server-ensure-safe-dir): Consider server directory
375 safe on MS-Windows if its owner is the Administrators group while
376 the current Emacs user is Administrator. Use `=' to compare
377 numerical UIDs, since they could be integers or floats.
379 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
381 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
383 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
385 Sync with Tramp 2.2.1.
387 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
389 * net/trampver.el: Update release number.
391 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
393 * progmodes/compile.el (compilation--previous-directory): Fix up
394 various nil/dead-marker mismatches (bug#8014).
395 (compilation-directory-properties, compilation-error-properties):
396 Don't call it at a position past the one we're about to change.
398 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
399 Disable obsolescence warnings in the file that declares it.
401 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
403 * allout-widgets.el (allout-widgets-tally): Initialize
404 allout-widgets-tally as a hash table rather than nil to prevent
405 mode-line redisplay warnings.
406 Also, clarify the module description and fix a comment typo.
408 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
410 * help-fns.el (describe-variable): Don't complete keywords.
411 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
413 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
415 * emacs-lisp/package.el (package-version-join): Impose a standard
416 string representation for pre/alpha/beta version lists.
417 (package-unpack-single): Standardize the directory name by passing
418 it through package-version-join.
419 (package-strip-rcs-id): Accept any version string that does not
420 signal an error in version-to-list.
422 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
424 * simple.el (delete-trailing-whitespace): Return nil for the
425 benefit of `write-file-functions'.
427 2011-03-10 Glenn Morris <rgm@gnu.org>
429 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
431 * vc/vc-git.el (vc-git-program): New option.
432 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
433 (vc-git--call): Use it.
435 * eshell/esh-util.el (eshell-condition-case): Doc fix.
437 * cus-edit.el (Custom-newline): If no button at point, look
438 for a subgroup button at start-of-line. (Bug#2298)
440 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
442 2011-03-10 Julien Danjou <julien@danjou.info>
444 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
445 `cursor-type' is nil.
447 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
449 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
451 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
453 * allout.el Summary: Change so yank of distinctive-bullet items
454 preserves the existing header prefix, rebulleting it if necessary,
455 rather than replacing it. This is necessary for proper operation
456 of cooperative addons like allout-widgets.
457 (allout-make-topic-prefix, allout-rebullet-heading): Change
458 SOLICIT arg to INSTEAD, and interpret additionally a string value
459 as alternate bullet to be used, instead of prompting the user for
462 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
464 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
465 Do not use `tramp-file-name-port', because this returns also
466 `tramp-default-port'.
468 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
470 * net/rcirc.el (rcirc-handler-001): Remove useless
471 with-rcirc-process-buffer.
472 (rcirc-check-auth-status): Swap arguments to string-match.
474 2011-03-09 Glenn Morris <rgm@gnu.org>
476 * shell.el (shell-mode):
477 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
479 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
480 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
482 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
484 * emacs-lisp/package.el (package-refresh-contents)
485 (package-menu-execute): Use condition-case-no-debug.
487 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
489 * simple.el (shell-command-to-string): Use `process-file'.
491 * emacs-lisp/package.el (package-tar-file-info): Handle also
494 * emacs-lisp/package-x.el (package-upload-buffer-internal):
495 Use `equal' for upload base check.
497 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
499 * textmodes/texinfo.el (texinfo-environments):
500 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
502 2011-03-08 Glenn Morris <rgm@gnu.org>
504 * cus-start.el (cursor-in-non-selected-windows):
505 Fix :set quoting oddness. (Bug#8192)
507 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
508 in some setf expressions. (Bug#2159)
510 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
512 * custom.el (custom-available-themes): Return themes in
515 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
517 * progmodes/cc-cmds.el (c-beginning-of-statement): Fix incorrect
518 application of patch from Alan Mackenzie (Bug#7595).
520 2011-03-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
522 * net/rcirc.el (rcirc-connect): Fix PASS bug.
524 2011-03-07 Glenn Morris <rgm@gnu.org>
526 * vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt.
527 Give an explicit error if failed to make writable. (Bug#6146)
529 2011-03-07 Ed Reingold <reingold@emr.cs.iit.edu>
531 * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
532 Add optional `after-sunset' argument. (Bug#8190)
534 2011-03-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
536 * play/morse.el (nato-alphabet, nato-region, denato-region):
537 New variable and functions. (Bug#2288)
538 (morse-region, unmorse-region): Barf if read-only.
540 2011-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
542 * progmodes/gud.el (gdb-script-syntax-propertize-function):
543 Don't change the syntax of a \n that closes a comment (bug#8169).
545 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
547 * emacs-lisp/package-x.el (package-archive-upload-base): Make it a
549 (package--update-file): Doc fix. Accept relative file names.
550 (package--archive-contents-from-file): Remove the argument, since
551 it's necessarily always "archive-contents".
552 (package-maint-add-news-item): Pass relative file name args to
553 package--update-file.
554 (package-upload-buffer-internal): Prompt for a destination if
555 package-archive-upload-base is invalid. Create the directory if
557 (package-upload-buffer, package-upload-file): Doc fix.
559 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
561 * isearch.el (isearch-mode-map): Bind C-y to isearch-yank-kill,
562 and move isearch-yank-line to M-s C-e (Bug#8183).
564 2011-03-06 Alan Mackenzie <acm@muc.de>
566 * progmodes/cc-engine.el (c-guess-basic-syntax): Reindent.
567 (c-guess-basic-syntax): Move CASE 19 to a different place,
568 correctly to process template-args-cont lines.
570 2011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
572 * calc/calc-ext.el (calc-init-extensions):
573 Rename calc-logunits-dblevel and calc-logunits-nplevel to calc-dblevel
574 and calc-nplevel, respectively. Add keybindings for calc-spn,
575 calc-midi and calc-freq. Add autoloads for calcFunc-spn,
576 calcFunc-midi, calcFunc-freq, calc-spn, calc-midi and calc-freq.
578 * calc/calc-units.el (calc-dblevel): Rename from
579 calc-logunits-dblevel.
580 (calc-nplevel): Rename from calc-logunits-nplevel.
581 (math-midi-round, math-freqp, math-midip, math-spnp)
582 (math-spn-to-midi, math-midi-to-spn, math-freq-to-spn)
583 (math-midi-to-freq, math-spn-to-freq, calcFunc-spn, calcFunc-midi)
584 (calcFunc-freq, calc-freq, calc-midi, calc-spn): New functions.
585 (math-notes): New variable.
587 * calc/calc.el (calc-note-threshold): New variable.
589 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
591 * emacs-lisp/package.el (package-archives): Accept either ordinary
592 directory names, in addition to HTTP URLs.
593 (package--with-work-buffer): New macro. Handle normal directories.
594 (package-handle-response): Don't display the failing buffer.
595 (package-download-single, package-download-tar)
596 (package--download-one-archive): Use package--with-work-buffer.
597 (package-archive-base): Rename from package-archive-url.
599 2011-03-06 Glenn Morris <rgm@gnu.org>
601 * generic-x.el (generic-unix-modes): Add xmodmap-generic-mode.
602 (xmodmap-generic-mode): Respect generic-extras-enable-list.
604 2011-03-06 Daniel Clemente <dcl441-bugs@yahoo.com> (tiny change)
606 * generic-x.el (xmodmap-generic-mode): New. (Bug#2065)
608 2011-03-06 Juanma Barranquero <lekktu@gmail.com>
610 * allout.el (allout-init, allout-prefixed-keybindings)
611 (allout-unprefixed-keybindings):
612 * progmodes/prolog.el (prolog-find-term):
613 Fix typos in docstrings.
615 2011-03-06 Nikolaj Schumacher <me@nschum.de> (tiny change)
617 * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
619 2011-03-06 Kevin Ryde <user42@zip.com.au>
621 * textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc. (Bug#5326)
623 2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
625 * window.el (one-window-p, walk-windows, display-buffer):
626 Doc fixes. (Bug#5567)
628 2011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
630 * cus-edit.el (custom-prompt-variable): Use the `custom-get' property
631 of the variable if it exists.
633 2011-03-06 Juanma Barranquero <lekktu@gmail.com>
640 * net/tramp-cache.el:
641 * obsolete/fast-lock.el:
642 * textmodes/reftex.el:
643 Don't set `kill-emacs-hook' on noninteractive sessions (bug#8137).
645 2011-03-05 Antoine Levitt <antoine.levitt@gmail.com>
647 * files.el (delete-directory, copy-directory, list-directory):
648 Use read-directory-name.
650 * find-file.el (ff-find-the-other-file):
651 * net/ange-ftp.el (ange-ftp-make-directory):
652 * printing.el (pr-interactive-dir):
653 * progmodes/ada-prj.el (ada-prj-load-directory):
654 * progmodes/ebnf2ps.el (ebnf-print-directory)
655 (ebnf-spool-directory, ebnf-eps-directory)
656 (ebnf-syntax-directory):
658 * speedbar.el (speedbar-create-directory):
659 * vc/emerge.el (emerge-merge-directories):
660 * vc/vc-dir.el (vc-dir):
661 * vc/vc.el (vc-create-tag, vc-retrieve-tag): Likewise.
663 2011-03-05 Chong Yidong <cyd@stupidchicken.com>
665 * help-mode.el (help-buffer): If we are to return the current
666 buffer, signal an error if it's not in Help mode (Bug#8147).
668 2011-03-05 Reuben Thomas <rrt@sc3d.org>
670 * files.el (file-name-version-regexp): Handle backup files of the
671 form `foo.js.~HEAD~1~' (Bug#8159).
673 2011-03-05 Glenn Morris <rgm@gnu.org>
675 * eshell/esh-var.el: Don't require esh-test when compiling.
676 * eshell/em-banner.el, eshell/esh-cmd.el, eshell/esh-mode.el:
677 * eshell/esh-var.el, eshell/eshell.el: Move tests to esh-test.
678 * eshell/esh-test.el: Move to ../../test/eshell.el.
680 2011-03-05 David Engster <deng@randomsample.de>
682 * files.el (save-some-buffers): Report the names of buffers saved
683 automatically due to buffer-save-without-query (Bug#8134).
685 2011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
687 * net/rcirc.el: Add QuakeNet authentication support.
688 (rcirc-authinfo, rcirc-check-auth-status)
689 (rcirc-authenticate): Support QuakeNet.
691 2011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
693 * net/rcirc.el: Add functionality to authenticate before
694 autojoining channels.
695 (rcirc-authenticate-before-join): New option.
696 (rcirc-authenticated-hook): New variable.
697 (rcirc-connect): Make local variable rcirc-user-authenticated.
698 (rcirc-handler-001): Respect rcirc-authenticate-before-join.
699 (rcirc-check-auth-status, rcirc-join-channels-post-auth):
701 (rcirc-handler-PRIVMSG, rcirc-handler-NOTICE):
702 Call rcirc-check-auth-status.
704 2011-03-05 Alex Harsanyi <AlexHarsanyi@gmail.com>
706 * net/soap-client.el (soap-namespace-put-link): Check if the target
707 name is fully qualified -- use only the name part.
708 (soap-parse-complex-type, soap-parse-sequence): Recognize xsd:all
709 types, treated the same as xsd:sequence. (Bug#8166)
711 2011-03-05 Eli Zaretskii <eliz@gnu.org>
713 * files.el (find-file-noselect): Don't ask about re-visiting
714 non-literally if the file is already visited in image-mode.
717 2011-03-05 Glenn Morris <rgm@gnu.org>
719 * eshell/esh-mode.el (eshell-kill-buffer-function): New function.
720 (eshell-mode): Use eshell-kill-buffer-function.
721 Run the -initialize functions independently of the -load-hooks.
722 * eshell/esh-proc.el (eshell-kill-process-function): New function.
723 (eshell-gather-process-output, eshell-sentinel)
724 (eshell-interrupt-process, eshell-kill-process, eshell-quit-process):
725 Use eshell-kill-process-function.
726 * eshell/em-alias.el (eshell-alias-load-hook):
727 * eshell/em-banner.el (eshell-banner-load-hook):
728 * eshell/em-cmpl.el (eshell-cmpl-load-hook):
729 * eshell/em-dirs.el (eshell-dirs-load-hook):
730 * eshell/em-glob.el (eshell-glob-load-hook):
731 * eshell/em-hist.el (eshell-hist-load-hook):
732 * eshell/em-pred.el (eshell-pred-load-hook):
733 * eshell/em-prompt.el (eshell-prompt-load-hook):
734 * eshell/em-rebind.el (eshell-rebind-load-hook):
735 * eshell/em-script.el (eshell-script-load-hook):
736 * eshell/em-smart.el (eshell-smart-load-hook):
737 * eshell/em-term.el (eshell-term-load-hook):
738 * eshell/em-unix.el (eshell-unix-load-hook):
739 * eshell/esh-arg.el (eshell-arg-load-hook):
740 * eshell/esh-cmd.el (eshell-cmd-load-hook):
741 * eshell/esh-ext.el (eshell-ext-load-hook):
742 * eshell/esh-io.el (eshell-io-load-hook):
743 * eshell/esh-mode.el (eshell-exit-hook):
744 * eshell/esh-proc.el (eshell-proc-load-hook, eshell-kill-hook):
745 * eshell/esh-var.el (eshell-var-load-hook):
746 Set default hook values to nil. (Bug#5375)
748 * eshell/esh-module.el (eshell-module-unload-hook)
749 (eshell-modules-list): Remove leading * from defcustom docs.
751 * eshell/esh-util.el (eshell-for): Make it obsolete.
752 * eshell/em-alias.el (eshell/alias, eshell-alias-completions):
753 * eshell/em-dirs.el (eshell-save-some-last-dir):
754 * eshell/em-hist.el (eshell-save-some-history)
755 (eshell-hist-parse-modifier):
756 * eshell/em-ls.el (eshell-ls-dir, eshell-ls-files)
758 * eshell/em-unix.el (eshell/cat, eshell/du, eshell/su):
759 * eshell/esh-cmd.el (eshell-invoke-directly, eshell-do-eval)
761 * eshell/esh-ext.el (eshell-find-interpreter):
762 * eshell/esh-mode.el (eshell-mode):
763 * eshell/esh-module.el (eshell-unload-extension-modules):
764 * eshell/esh-proc.el (eshell-process-interact):
765 * eshell/esh-test.el (eshell-test):
766 * eshell/esh-util.el (eshell-flatten-list, eshell-winnow-list):
767 * eshell/esh-var.el (eshell/env, eshell-environment-variables)
768 (eshell-variables-list):
769 * eshell/eshell.el (eshell-unload-all-modules):
770 Replace eshell-for with dolist.
772 2011-03-04 Glenn Morris <rgm@gnu.org>
774 * vc/vc-bzr.el (vc-bzr-after-dir-status): Handle bzr 2.3.0. (Bug#8170)
776 2011-03-04 Tom Tromey <tromey@redhat.com>
778 * progmodes/gud.el (gdb-script-mode): Derive from prog-mode.
780 2011-03-04 Glenn Morris <rgm@gnu.org>
782 * outline.el (outline-regexp): No longer allow nil.
783 (outline-heading-end-regexp): Add safety predicate. (Bug#7619)
785 * net/browse-url.el (browse-url):
786 Handle deleted default-directory. (Bug#6077)
788 * recentf.el (recentf-include-p): In case of a buggy predicate,
789 err on the side of including, not excluding. (Bug#5843)
791 2011-03-04 Jay Belanger <jay.p.belanger@gmail.com>
793 * calc/calc-units.el (math-to-standard-rec): Don't treat subscripted
796 2011-03-04 Bob Rogers <rogers@rgrjr.dyndns.org>
798 * emacs-lisp/ewoc.el (ewoc-goto-next): Give a more explicit error
799 if there is no node. (Bug#3261)
801 2011-03-04 Leo <sdl.web@gmail.com>
803 * vc/diff-mode.el (diff-mode): Fix whitespace-style. (Bug#8139)
805 * time.el (display-time-world-list): Fix typo. (Bug#7571)
807 2011-03-04 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
809 * cus-edit.el (custom-buffer-create-internal):
810 Split search string before passing it to `customize-apropos' (bug#8136).
812 2011-03-04 Drew Adams <drew.adams@oracle.com>
814 * image-dired.el (image-dired-cmd-read-exif-data-options):
815 Fix typo in docstring (bug#8156).
817 2011-03-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
819 * net/rcirc.el (rcirc-cmd-join): Accept comma-separated input.
821 2011-03-03 Christian Ohler <ohler@gnu.org>
823 * emacs-lisp/ert.el (ert--explain-equal): New function.
824 (ert--explain-equal-rec): Rename from `ert--explain-not-equal'.
826 (ert--explain-equal-including-properties): Rename from
827 `ert--explain-not-equal-including-properties'. All callers
830 2011-03-03 Christian Ohler <ohler@gnu.org>
832 * emacs-lisp/ert.el (ert--stats-set-test-and-result)
833 (ert-char-for-test-result, ert-string-for-test-result)
834 (ert-run-tests-batch, ert--print-test-for-ewoc):
835 Handle `ert-test-quit'.
837 2011-03-03 David Abrahams <dave@boostpro.com> (tiny change)
839 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
840 Move ediff-defvar-local calls after defcustoms. (Bug#1821)
842 2011-03-03 Glenn Morris <rgm@gnu.org>
844 * files.el (file-truename): Doc fix. (Bug#2341)
846 2011-03-03 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
848 * vc/vc-dir.el (vc-dir-mode-map): Bind vc-dir-find-file to e (Bug#7349).
850 2011-03-03 Vagn Johansen <gonz808@hotmail.com> (tiny change)
852 * vc/vc-svn.el (vc-svn-after-dir-status): Some MS Windows svn client
853 programs output backslashes. (Bug#7663)
855 2011-03-03 Glenn Morris <rgm@gnu.org>
857 * mail/sendmail.el (mail-mode-map): Remove mail-sent-via.
858 (mail-mode): Remove mail-sent-via from the doc.
859 (mail-sent-via): Make it obsolete. (Bug#1776)
861 * progmodes/grep.el (grep-highlight-matches): Doc fix.
862 (grep-process-setup): No highlighting without font-lock. (Bug#8084)
864 * vc/vc-bzr.el (vc-bzr-state-heuristic): Handle dirstate entries
865 with no parents. (Bug#8025)
867 2011-03-02 Teodor Zlatanov <tzz@lifelogs.com>
869 * password-cache.el (password-in-cache-p): Add autoload.
871 2011-03-02 Glenn Morris <rgm@gnu.org>
873 * man.el (Man-support-local-filenames): Also handle Red Hat's man.
874 * dired-x.el (Man-support-local-filenames): Autoload it.
875 (dired-guess-shell-alist-default): Also handle Red Hat's man.
877 * dired-x.el (dired-default-directory-alist, dired-default-directory):
879 (dired-smart-shell-command): Just call dired-current-directory.
881 * dired-x.el (dired-jump-other-window): Add autoload.
882 (dired-default-directory-alist, dired-default-directory): Doc fixes.
883 (dired-default-directory-alist): Mark as risky.
885 * dired-x.el (dired-omit-here-always): Make it obsolete.
887 2011-03-02 Chong Yidong <cyd@stupidchicken.com>
889 * textmodes/artist.el (artist-curr-go): Default to pen-line.
890 (artist-select-op-pen-line): New function.
891 (artist-menu-map): New variable.
892 (artist-mode-map): Add a menu to the menu-bar.
894 2011-03-02 Jay Belanger <jay.p.belanger@gmail.com>
896 * calc/calc-math.el (calcFunc-log10): Check for symbolic mode
899 * calc/calc-units.el (math-conditional-apply, math-conditional-pow):
901 (math-logunits-add, math-logunits-mul, math-logunits-divide):
902 (math-logunits-quant, math-logunits-level):
903 Use `math-conditional-apply' and `math-conditional-pow' to evaluate
905 (math-logunits-level): Extract units from ratio.
907 2011-03-01 Juanma Barranquero <lekktu@gmail.com>
909 * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
911 2011-03-01 Glenn Morris <rgm@gnu.org>
913 * calendar/cal-hebrew.el (calendar-hebrew-birthday)
914 (diary-hebrew-birthday): Rename and rework functions added
917 2011-03-01 Ed Reingold <reingold@emr.cs.iit.edu>
919 * calendar/cal-hebrew.el (hebrew-calendar-birthday)
920 (diary-hebrew-birthday): New functions.
922 2011-03-01 Glenn Morris <rgm@gnu.org>
924 * dired.el (dired-safe-switches-p): Beef it up.
925 (dired-actual-switches): Use it for the safe-local prop. (Bug#3230)
927 2011-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
929 * dired.el (dired-safe-switches-p): New function.
931 2011-03-01 Glenn Morris <rgm@gnu.org>
933 * files.el (dir-locals-collect-variables):
934 Add the ability to exclude subdirectories. (Bug#8100)
936 * dired-x.el (dired-omit-here-always): Add `(subdirs . nil)' to locals.
938 2011-02-28 Christoph Scholtes <cschol2112@googlemail.com>
940 * ido.el (ido-everywhere): Doc fix.
943 2011-02-28 Glenn Morris <rgm@gnu.org>
945 * dired-x.el (dired-guess-shell-alist-default): Use \\', not $.
947 2011-02-28 Michael Albinus <michael.albinus@gmx.de>
949 * net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path
952 2011-02-28 Antoine Levitt <antoine.levitt@gmail.com>
954 * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
956 2011-02-28 Juanma Barranquero <lekktu@gmail.com>
958 * emacs-lisp/pcase.el (pcase, pcase--u1, pcase--q1):
959 Fix typos in docstrings.
961 2011-02-28 Stephen Berman <stephen.berman@gmx.net>
963 * dired-aux.el (dired-update-file-line):
964 Fix 2010-11-09 change. (Bug#8131)
966 2011-02-28 Eli Zaretskii <eliz@gnu.org>
968 * international/mule-cmds.el (set-default-coding-systems): Use the
969 -unix variant of encoding in default-keyboard-coding-system.
972 2011-02-27 Chong Yidong <cyd@stupidchicken.com>
974 * facemenu.el (list-colors-display): Use with-help-window (Bug#8048).
976 2011-02-27 Prestoo Ten <prestooten@gmail.com> (tiny change)
978 * term/screen.el: New file (Bug#2650).
980 2011-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
982 * emacs-lisp/pcase.el (pcase--if): Try to invert test to reduce depth.
983 (pcase-mutually-exclusive-predicates): New var.
984 (pcase--split-consp, pcase--split-pred): Use it.
985 (pcase--split-equal, pcase--split-member): When splitting against
986 a pure predicate, run it to know the outcome.
987 (pcase--u1): Mark vars that are actually used.
988 (pcase--q1): Avoid introducing unused vars.
990 2011-02-27 Jay Belanger <jay.p.belanger@gmail.com>
992 * calc/calc-ext.el (calc-init-extensions):
993 Autoload `calc-l-prefix-help' instead of `calc-ul-prefix-help'.
995 * calc/calc-math.el (calcFunc-log10): Don't signal an error in
998 * calc/calc-vec.el (calcFunc-subscr): Return nil if the first
999 argument is a variable.
1001 2011-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
1003 * emacs-lisp/assoc.el: Remove misleading `sort' (bug#8126).
1004 (aput, adelete, amake): Replace `eval' -> `symbol-value'.
1005 Suggested by Michael Heerdegen <michael_heerdegen@web.de>.
1007 2011-02-25 Teodor Zlatanov <tzz@lifelogs.com>
1009 * password-cache.el (password-in-cache-p): Convenience function to
1010 check if a key is in the cache, even if the value is nil.
1012 2011-02-25 Jambunathan K <kjambunathan@gmail.com>
1014 * emacs-lisp/package-x.el (package--archive-contents-from-url)
1015 (package--archive-contents-from-file): New functions.
1016 (package-update-news-on-upload): New var.
1017 (package-upload-buffer-internal): Extract archive-contents from
1018 package-archive-upload-base if it is not found at archive-url.
1019 Obey package-update-news-on-upload.
1020 (package-upload-buffer, package-upload-file): Doc fix.
1022 2011-02-24 Glenn Morris <rgm@gnu.org>
1024 * files-x.el (modify-dir-local-variable): Handle dir-locals from
1025 the cache, and from non-file sources.
1027 * help-fns.el (describe-variable): Return consistent results when a
1028 dir-local from a file came from the cache or did not. (Bug#8095)
1029 If a dir-local has no associated file, say it came from a "directory".
1031 * files.el (hack-dir-local-variables): Fix setting of `dir-name'.
1032 (hack-local-variables-confirm, hack-local-variables-filter): Doc fix.
1034 * files.el (dir-locals-find-file): Doc fix.
1035 Fix the check for cache elements that have no associated file,
1036 and the mtime check for those that do. (Bug#8095)
1038 * dired-x.el (dired-hack-local-variables):
1039 Handle interrupts during hacking local variables. (Bug#5216)
1041 * emacs-lisp/autoload.el (autoload-save-buffers)
1042 (autoload-find-destination, update-directory-autoloads):
1043 Avoid prompts when updating autoloads.
1045 2011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
1047 * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
1049 2011-02-23 Kenichi Handa <handa@m17n.org>
1051 * mail/rmailmm.el (rmail-mime-process-multipart): Do not signal an
1052 error when a multipart boundary in the nested multipart is found.
1054 * mail/rmail.el (rmail-start-mail): Decode "encoded-words" of
1057 2011-02-23 Glenn Morris <rgm@gnu.org>
1059 * dired.el (dired-mode): Call hack-dir-local-variables-non-file-buffer.
1060 * dired-x.el (dired-omit-mode): Safe if boolean.
1061 (dired-enable-local-variables): Fix doc and custom type.
1062 (dired-enable-local-variables, dired-local-variables-file)
1063 (dired-hack-local-variables): Make obsolete.
1064 (dired-omit-here-always): Use dir-locals.el instead.
1066 * files.el (safe-local-eval-forms): Add the write-file-hooks version.
1068 2011-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
1070 * help-fns.el (describe-function-1): Don't signal an error just because
1071 the DOC file disappeared.
1073 2011-02-22 Seppo Sade <sepposade1@gmail.com> (tiny change)
1075 * eshell/esh-ext.el (eshell-external-command): Do not restrict
1076 remote check to "ftp". (Bug#8089)
1078 2011-02-21 Alan Mackenzie <acm@muc.de>
1081 * progmodes/cc-engine.el (c-state-literal-at): Prevent positions
1082 in macros finding their way into c-state-nonlit-pos-cache.
1083 Strengthen the comments.
1084 (c-state-dump): New commented out diagnostic routine.
1086 2011-02-21 Michael Albinus <michael.albinus@gmx.de>
1088 * net/tramp.el (tramp-rfn-eshadow-setup-minibuffer): Do not use
1089 `field' property of `rfn-eshadow-overlay'.
1091 2011-02-21 Lars Ingebrigtsen <larsi@gnus.org>
1093 * net/netrc.el (netrc-parse): Comment fix.
1095 2011-02-21 Chong Yidong <cyd@stupidchicken.com>
1097 * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
1098 Autoload. Add optional arg FRAME, and pass it to color-values.
1099 (color-complement): Caller changed. Doc fix.
1100 (color-gradient): Rewrite for better clarity and efficiency.
1102 * faces.el (color-values): Use cond for clarity. Doc fix.
1104 * facemenu.el (color-rgb-to-hsv): Delete; use the version in
1106 (list-colors-sort-key, list-colors-print):
1107 Use color-normalized-values.
1109 2011-02-20 Drew Adams <drew.adams@oracle.com>
1111 * color.el: First part of merge from hexrgb.el.
1112 (color-rgb-to-hex): Rename from color-rgb->hex.
1113 (color-rgb-to-hsv): Rename from color-rgb->hsv. Force hue and
1114 saturation to zero if the value is too small.
1115 (color-rgb-to-hsl): Rename from color-rgb->hsl.
1116 (color-srgb-to-xyz): Rename from color-srgb->xyz. Doc fix.
1117 (color-xyz-to-srgb): Rename from color-xyz->srgb. Doc fix.
1118 (color-xyz-to-lab): Rename from color-xyz->lab. Doc fix.
1119 (color-lab-to-xyz): Rename from color-lab->xyz. Doc fix.
1120 (color-lab-to-srgb): Rename from color-lab->srgb. Doc fix.
1121 (color-cie-de2000): Doc fix.
1123 2011-02-20 Alan Mackenzie <acm@muc.de>
1125 * progmodes/cc-cmds.el (c-beginning-of-statement): Avoid loop in
1126 locating the beginning of a macro. (Bug#7595)
1128 2011-02-20 Glenn Morris <rgm@gnu.org>
1130 * edmacro.el (edmacro-eight-bits): Make it a defcustom.
1133 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1134 (global-auto-revert-ignore-buffer): Remove leading "*" from docs.
1136 2011-02-19 Dmitry Bolshakov <dmitry.bolshakov@bridge-quest.com>
1137 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
1139 * progmodes/hideshow.el (hs-find-block-beginning)
1140 (hs-hide-level-recursive): Ignore comments when parsing braces
1143 2011-02-19 Chong Yidong <cyd@stupidchicken.com>
1145 * vc/vc-bzr.el (vc-bzr-bound-branch-p): New function.
1146 (vc-bzr-pull): Use it.
1148 2011-02-19 Chong Yidong <cyd@stupidchicken.com>
1150 * vc/vc-bzr.el (vc-bzr--branch-conf): Function deleted.
1151 (vc-bzr-branch-conf): New function, similar to vc-bzr--branch-conf
1152 but returning an alist. Ignore comments in bzr conffile.
1153 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-bzr-branch-conf.
1154 (vc-bzr-error-regex-alist): New var.
1155 (vc-bzr-merge-branch): Use it to highlight the pull/merge buffer.
1157 * vc/vc-dispatcher.el (vc-do-async-command):
1158 Bind inhibit-read-only to t.
1160 * progmodes/compile.el (compilation--flush-directory-cache):
1161 Handle the case where cdr of compilation--flush-directory-cache
1162 points to no buffer, which can occur if we previously switched to
1163 compilation-mode in a pregenerated buffer.
1165 2011-02-19 Kenichi Handa <handa@m17n.org>
1167 * mail/rmailmm.el (rmail-mime-find-header-encoding): Be sure to
1168 get the header copy into the temporary buffer.
1169 (rmail-mime-insert-decoded-text): Ignore us-ascii.
1170 (rmail-show-mime): When rmail-mime-coding-system is nil, set
1171 buffer-file-coding-system to undecided.
1173 2011-02-19 Eli Zaretskii <eliz@gnu.org>
1175 * international/mule-cmds.el (read-char-by-name, ucs-insert):
1176 Document completion with asterisk and a substring.
1178 2011-02-19 Glenn Morris <rgm@gnu.org>
1180 * files.el (find-file-literally): Doc fix.
1182 * simple.el (rfc822-goto-eoh): Give it a doc-string.
1184 * log-edit.el (log-edit-insert-changelog):
1185 Fix `log-edit-strip-single-file-name' functionality. (Bug#8057)
1187 2011-02-19 Glenn Morris <rgm@gnu.org>
1189 * dired-x.el: Don't require dired-aux.
1190 (dired-do-create-files, dired-mark-read-regexp)
1191 (dired-do-create-files-regexp): Autoload from dired-aux.
1193 * dired-x.el (dired-find-buffer-nocreate): Merge into dired.el.
1194 * dired.el (dired-find-buffer-nocreate): Merge dired-x version.
1196 * dired-x.el (dired-read-shell-command): Merge into dired-aux's version.
1197 * dired-aux.el (dired-read-shell-command): Merge dired-x's version.
1199 * dired-x.el (dired-clean-up-after-deletion): Merge into dired.el.
1200 * dired.el (dired-clean-up-after-deletion): Merge dired-x's version.
1201 (dired-clean-up-buffers-too): Declare.
1203 * dired-x.el (dired-initial-position): Merge into dired.el's version.
1204 * dired.el (dired-initial-position): Merge dired-x's version here.
1205 (dired-find-subdir): Declare.
1207 * dired-x.el (dired-omit-new-add-entry): Merge into dired-add-entry.
1208 * dired-aux.el (dired-add-entry): Give it a doc-string.
1209 Merge dired-x's dired-omit handling here.
1210 (dired-omit-mode, dired-omit-regexp, dired-omit-localp): Declare.
1212 * international/mule-diag.el (list-input-methods-1):
1213 Indent all lines of multi-line doc-strings. (Bug#8066)
1215 2011-02-18 Chong Yidong <cyd@stupidchicken.com>
1217 Fix 2011-02-02 changes.
1219 * apropos.el (apropos-print): Call apropos-mode before setting up
1220 buffer variables. Use inhibit-read-only.
1222 * emacs-lisp/package.el (package--list-packages):
1223 Call package-menu-mode before setting up buffer variables.
1225 * play/solitaire.el (solitaire): Call solitaire-mode before
1226 setting up buffer variables. Use inhibit-read-only.
1228 2011-02-18 Lawrence Mitchell <wence@gmx.li>
1230 * progmodes/sh-script.el (sh-syntax-propertize-here-doc): (bug#8053)
1231 Bind case-fold-search to nil when looking for end of here-doc.
1233 2011-02-18 Eli Zaretskii <eliz@gnu.org>
1235 * image-mode.el (image-toggle-display-image):
1236 Set find-file-literally non-nil in buffers visiting binary image
1239 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1241 * files.el (cd): Make completion obey cd-path (bug#7924).
1243 2011-02-18 Glenn Morris <rgm@gnu.org>
1245 * progmodes/prolog.el: Don't require compile when compiling.
1246 (compilation-shell-minor-mode, compilation-error-regexp-alist)
1247 (compilation-forget-errors, compilation-fake-loc)
1248 (compilation-parse-errors-function, compilation-error-list): Declare.
1249 (prolog-inferior-mode): Require 'compile.
1251 * emulation/cua-base.el (pc-selection-mode): Declare.
1253 * emacs-lisp/eieio-custom.el: Set generated-autoload-file.
1254 (customize-object): Add autoload cookie.
1255 * emacs-lisp/eieio-opt.el: Set generated-autoload-file.
1256 (eieio-browse, describe-class, eieio-describe-class)
1257 (eieio-describe-constructor, describe-generic, eieio-describe-generic)
1258 (eieio-help-mode-augmentation-maybee): Add autoload cookies.
1259 * emacs-lisp/eieio.el: Regenerate with automatic autoloads.
1260 * Makefile.in (autoloads): Make eieio.el writable.
1262 * dired-x.el (dired-clean-up-after-deletion, dired-do-relsymlink)
1263 (dired-do-relsymlink-regexp, dired-find-buffer-nocreate): Use #'.
1264 (dired-hack-local-variables): Use inhibit-read-only.
1265 (dired-guess-default): Simplify.
1266 (dired-make-relative-symlink): Use dotimes.
1267 (dired-simultaneous-find-file): Use dolist.
1268 (dired-mark-sexp): Remove unneeded `if'. Use line-end-position.
1269 (dired-x-hands-off-my-keys): Doc fix.
1270 (dired-x-bind-find-file): Doc fix. Use remapping.
1271 (after-init-hook): No need to add dired-x-bind-find-file.
1272 (dired-x-find-file, dired-x-find-file-other-window): Doc fixes.
1273 No need to call expand-file-name.
1274 (dired-filename-at-point): Remove unused locals `end', `filename'.
1276 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1278 * emacs-lisp/pcase.el (pcase--u1): Understand non-linear patterns.
1280 2011-02-18 Christian Ohler <ohler@gnu.org>
1282 * emacs-lisp/ert.el (ert--setup-results-buffer)
1283 (ert-results-pop-to-backtrace-for-test-at-point)
1284 (ert-results-pop-to-messages-for-test-at-point)
1285 (ert-results-pop-to-should-forms-for-test-at-point)
1286 (ert-results-pop-to-timings): Revert parts of change 2011-02-02T17:59:44Z!sds@gnu.org that
1287 were incorrect and unnecessary. This should make `make check'
1290 2011-02-17 Ken Manheimer <ken.manheimer@gmail.com>
1292 * lisp/allout-widgets.el (allout-widgets-icons-light-subdir)
1293 (allout-widgets-icons-dark-subdir): Track relocations of icons.
1294 * lisp/allout.el: Remove commentary about remove encryption
1295 passphrase mnemonic support and verification.
1296 (allout-encrypt-string): Recognize epg failure to decrypt gpg2
1297 armored text using gpg1, and indicate that the gpg version *might*
1298 be the problem in the error message.
1300 2011-02-17 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1302 * net/rcirc.el (rcirc-float-time): New function.
1303 (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE)
1304 (rcirc-ctcp-sender-PING): Use it.
1306 2011-02-17 Glenn Morris <rgm@gnu.org>
1308 * speedbar.el (speedbar-ignored-modes, speedbar-file-unshown-regexp)
1309 (speedbar-update-flag, speedbar-fetch-etags-command)
1310 (speedbar-fetch-etags-arguments):
1311 * term.el (term-buffer-maximum-size, term-input-chunk-size)
1312 (term-completion-autolist, term-completion-addsuffix)
1313 (term-completion-recexact, term-completion-fignore):
1314 * term/sup-mouse.el (sup-mouse-fast-select-window):
1315 * term/x-win.el (x-select-request-type):
1316 Convert some defvars with "*" to defcustoms.
1318 * shell.el (shell-delimiter-argument-list): Set it to nil. (Bug#8027)
1320 * vc/vc.el (vc-default-previous-version):
1321 Remove alias that points nowhere. (Bug#4496)
1323 * dired-x.el (dired-clean-up-after-deletion):
1324 kill-buffer does not need save-excursion.
1325 (dired-do-run-mail): Doc fix.
1326 (dired-filename-at-point): Doc fix.
1327 Use looking-at, and skip-chars rather than re search.
1329 * dired-x.el (dired-filename-at-point): Fix 8-year old typo.
1331 2011-02-16 Ken Manheimer <ken.manheimer@gmail.com>
1333 * allout-widgets.el: New allout extension that shows allout
1334 outline structure with graphical widgets. 'allout-widgets'
1335 customize group is an 'allout' subgroup, for easy discovery.
1337 * allout.el: Include PGP and GnuPG in Keywords, and other
1338 commentary refinements.
1339 (allout-abbreviate-flattened-numbering): Rename to
1340 allout-flattened-numbering-abbreviation, and
1341 define-obsolete-variable-alias the old name.
1342 (allout-flattened-numbering-abbreviation): Rename from
1343 allout-abbreviate-flattened-numbering.
1344 (allout-mode-p): Include among autoloads, for use by other modes
1346 (allout-listify-exposed):
1347 Use allout-flattened-numbering-abbreviation.
1348 (allout-encrypt-string): Use set-buffer-multibyte directly.
1349 (allout-set-buffer-multibyte): Remove.
1351 2011-02-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1353 * simple.el (just-one-space): Remove useless `or' call.
1355 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1357 * net/soap-client.el (soap-well-known-xmlns, soap-local-xmlns)
1358 (soap-default-xmlns, soap-target-xmlns, soap-multi-refs)
1359 (soap-decoded-multi-refs, soap-current-wsdl)
1360 (soap-encoded-namespaces): Rename CL-style *...* variables.
1362 2011-02-16 Michael Albinus <michael.albinus@gmx.de>
1364 * net/soap-client.el: Add "comm" and "hypermedia" to the
1365 keywords. Reflow too long lines.
1367 * net/soap-inspect.el: Ditto. Require 'cl.
1369 2011-02-16 Bastien Guerry <bzg@altern.org>
1371 * play/doctor.el (doctor-mode): Bugfix: escape the "," character
1372 in a `doctor-type' argument.
1374 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1376 * net/soap-client.el:
1377 * net/soap-inspect.el: New files.
1379 2011-02-16 Leo <sdl.web@gmail.com>
1381 * dired-x.el (dired-mode-map, dired-extra-startup):
1382 Remove dired-copy-filename-as-kill since it's already in dired.el.
1384 2011-02-16 Glenn Morris <rgm@gnu.org>
1386 * dired-x.el (dired-bind-jump, dired-bind-man, dired-bind-info):
1387 Doc fixes. Add :set property, replacing top-level calls.
1388 (dired-vm-read-only-folders, dired-vm): Doc fix (drop v. old VM 4).
1389 (dired-guess-shell-gnutar): Test tar version rather than system-type.
1390 (dired-extra-startup, dired-man, dired-info): Doc fixes.
1391 (dired-clean-up-after-deletion): Use when and dolist.
1392 (dired-jump): Use unless and when.
1393 (dired-virtual): Use line-end-position.
1394 (dired-default-directory-alist): Rename from default-directory-alist.
1395 (dired-default-directory): Update for above name change.
1396 (dired-vm): Drop VM < 5 and simplify.
1397 (dired-buffer-more-recently-used-p): Rewrite.
1398 (dired-filename-at-point): Use when and or.
1399 (dired-x-read-filename-at-point): Rename from read-filename-at-point.
1402 2011-02-15 Glenn Morris <rgm@gnu.org>
1404 * dired-x.el: Use easymenu for menu items. Fix item capitalization.
1406 2011-02-14 Chong Yidong <cyd@stupidchicken.com>
1408 * vc/vc-git.el (vc-git-root-log-format): New option for
1409 customizing log format.
1410 (vc-git-print-log, vc-git-log-outgoing, vc-git-log-incoming)
1411 (vc-git-log-view-mode): Use it.
1412 (vc-git-expanded-log-entry): New function.
1413 (vc-git-log-view-mode): Use it. Truncate lines in root log.
1415 * vc/vc-hg.el (vc-hg-root-log-template): New option for
1416 customizing log format.
1417 (vc-hg-print-log): Use it.
1418 (vc-hg-expanded-log-entry): New function.
1419 (vc-hg-log-view-mode): Use vc-hg-root-log-template and
1420 vc-hg-expanded-log-entry. Truncate lines in root log.
1422 * vc/vc-bzr.el (vc-bzr-log-view-mode): Truncate lines in root log.
1424 * vc/log-view.el (log-view-mode-menu):
1425 Add log-view-toggle-entry-display.
1427 2011-02-14 Glenn Morris <rgm@gnu.org>
1429 * dired-x.el: Don't require man when compiling.
1430 (dired-omit-extensions, dired-local-variables-file)
1431 (dired-x-hands-off-my-keys): Make them defcustoms.
1432 (Man-support-local-filenames, Man-getpage-in-background): Declare.
1433 (vm-visit-folder): Declare rather than defining.
1434 (dired-x-help-address, dired-x-variable-list): Remove.
1435 (dired-x-submit-report): Make it an obsolete alias.
1437 2011-02-14 Juanma Barranquero <lekktu@gmail.com>
1439 * makefile.w32-in (TRAMP_SRC): Remove tramp-imap.el.
1441 2011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1443 * net/imap.el: Bring it back.
1445 2011-02-13 Alan Mackenzie <acm@muc.de>
1447 * progmodes/cc-fonts.el (c-font-lock-declarations): Remove a
1448 narrow-to-region call that cuts context off the end (Bug#7722).
1450 * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
1451 Refactor nested if-forms with a simple cond.
1452 (c-forward-<>-arglist): Revert 2011-01-31 change.
1454 2011-02-13 Chong Yidong <cyd@stupidchicken.com>
1456 * vc/log-view.el: New command log-view-toggle-entry-display for
1457 toggling log entries between concise and detailed forms.
1458 (log-view-toggle-entry-display): New command.
1459 (log-view-mode-map): Bind RET to it.
1460 (log-view-expanded-log-entry-function): New variable.
1461 (log-view-current-entry, log-view-inside-comment-p)
1462 (log-view-current-tag): New functions.
1463 (log-view-toggle-mark-entry): Use log-view-current-entry and
1464 log-view-end-of-defun instead of searching directly with
1465 log-view-message-re.
1466 (log-view-end-of-defun): Likewise. Add optional ARG for
1467 compatibility with end-of-defun.
1468 (log-view-end-of-defun): Ignore comments and VC buttons.
1470 * vc/vc-bzr.el (vc-bzr-expanded-log-entry): New function.
1471 (vc-bzr-log-view-mode): Use log-view-expanded-log-entry-function.
1473 2011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1475 * net/imap.el: Remove file. All the functionality is in nnimap.el.
1477 * net/imap-hash.el: Remove file.
1479 2011-02-13 Michael Albinus <michael.albinus@gmx.de>
1481 * Makefile.in (TRAMP_SRC): Remove tramp-imap.el.
1483 * net/tramp.el (tramp-read-passwd): Simplify `auth-source-search'
1486 * net/tramp-imap.el: Remove file.
1488 2011-02-13 Chong Yidong <cyd@stupidchicken.com>
1490 * vc/vc.el (vc-print-log-setup-buttons): Instead of using the
1491 widget library for buttons, just use button.el.
1493 * vc/log-view.el (log-view-mode-map): Don't inherit from
1496 2011-02-12 Glenn Morris <rgm@gnu.org>
1498 * emacs-lisp/cl-seq.el (union, nunion, intersection)
1499 (nintersection, set-difference, nset-difference)
1500 (set-exclusive-or, nset-exclusive-or): Doc fix.
1502 * ediff-ptch.el (ediff-fixup-patch-map): Doc fix.
1504 * faces.el (face-attr-match-p): Handle the obsolete :bold and
1505 :italic props, so that frame-set-background-mode works. (Bug#7966)
1507 * simple.el (next-error): Doc fix.
1509 2011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1511 * dired-aux.el (dired-create-files): Adapt destination name to
1512 match the new behavior of copy-directory.
1514 2011-02-12 Chong Yidong <cyd@stupidchicken.com>
1516 * mail/mail-utils.el (mail-dont-reply-to-names): New variable,
1517 from rmail-dont-reply-to-names. Callers changed.
1518 (mail-dont-reply-to): Rename from mail-dont-reply-to.
1519 (rmail-dont-reply-to): Make it an obsolete alias.
1521 * mail/rmail.el (rmail-default-dont-reply-to-names): Default to
1522 nil, and make obsolete (Bug#7888).
1523 (rmail-dont-reply-to-names): Alias to mail-dont-reply-to-names.
1525 * mail/rmailsum.el (rmail-summary-sort-by-correspondent): Doc fix.
1527 * mail/rmailsort.el (rmail-sort-by-correspondent)
1528 (rmail-select-correspondent): Doc fix. Use mail-dont-reply-to.
1530 * mail/rmail.el (rmail-reply): Use mail-dont-reply-to.
1532 2011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1534 * files.el (copy-directory): New argument COPY-CONTENTS for
1535 copying directory contents into another existing directory.
1537 2011-02-12 Tassilo Horn <tassilo@member.fsf.org>
1539 * minibuffer.el (completion-table-case-fold): New function for
1540 creating a case-insensitive completion table.
1542 2011-02-12 Teodor Zlatanov <tzz@lifelogs.com>
1544 * net/tramp.el (tramp-default-method): Also check if
1545 `auth-source-search' is bound.
1546 (tramp-read-passwd): Use `auth-source-search' instead of
1547 `auto-source-user-or-password'.
1549 * net/tramp-imap.el: Autoload `auto-source-search' instead of
1550 `auto-source-user-or-password.
1551 (tramp-imap-passphrase-callback-function): Use it.
1553 * net/imap-hash.el: Autoload `auto-source-search' instead of
1554 `auto-source-user-or-password.
1555 (imap-hash-open-connection): Use it.
1557 * mail/smtpmail.el: Autoload `auto-source-search' instead of
1558 `auto-source-user-or-password.
1559 (smtpmail-try-auth-methods): Use it.
1561 2011-02-12 Phil Hagelberg <phil@hagelb.org>
1563 * emacs-lisp/package.el: Allow packages to be reinstalled.
1564 (package--write-file-no-coding): Remove EXCL arg.
1565 (package-unpack-single): Don't use it.
1567 2011-02-12 Karl Pflästerer <k@rl.pflaesterer.de> (tiny change)
1569 * vc/vc-svn.el: Adapt to Subversion change, with no .svn directory
1570 in each sub directory.
1571 (vc-svn-registered): Use vc-svn-root.
1572 (vc-svn-root): New function. Make vc-svn-responsible-p an alias.
1573 (vc-svn-repository-hostname): Use "svn info".
1575 2011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1577 * simple.el (delete-trailing-whitespace): New optional buffer
1580 2011-02-11 Bastien Guerry <bzg@altern.org>
1582 * files.el (basic-save-buffer): save unmodified buffers when
1583 the file pointed by buffer-file-name doesn't exist.
1585 2011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1587 * net/rcirc.el (rcirc-cmd-join): Accept multiple channels.
1589 2011-02-11 Glenn Morris <rgm@gnu.org>
1591 * emacs-lisp/cl-specs.el (multiple-value-bind): Fix debug spec.
1593 2011-02-11 Juanma Barranquero <lekktu@gmail.com>
1595 * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
1597 2011-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
1599 * server.el (server-process-filter): Use pcase.
1601 * emacs-lisp/smie.el (smie-blink-matching-open): Don't use `pos' in two
1603 (smie-indent--parent): Extend to "parent of arg".
1604 (smie-indent-inside-string): New function.
1605 (smie-indent-functions): Use it.
1607 * vc/vc-dir.el (vc-dir-refresh): Reorder operations to try and avoid
1608 bzr locking race condition.
1610 * emacs-lisp/edebug.el (edebug-instrument-function): Check a marker is
1611 still valid before using it.
1613 * progmodes/grep.el (grep-mode-font-lock-keywords): Adjust to
1614 `message' -> `compilation-message' rename (bug#8004).
1616 Move keymap initialization into declaration.
1617 * textmodes/enriched.el (enriched-mode-map):
1618 * textmodes/bib-mode.el (bib-mode-map):
1619 * term/lk201.el (lk201-function-map):
1620 * tar-mode.el (tar-mode-map):
1621 * replace.el (occur-mode-map):
1622 * progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
1623 * progmodes/idlw-help.el (idlwave-help-mode-map):
1624 * progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
1625 * play/solitaire.el (solitaire-mode-map):
1626 * play/snake.el (snake-mode-map, snake-null-map):
1627 * play/pong.el (pong-mode-map):
1628 * play/handwrite.el (menu-bar-handwrite-map):
1629 * play/gametree.el (gametree-mode-map):
1630 * net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map)
1631 (rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
1632 * net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
1633 (newsticker--url-keymap):
1634 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
1635 * menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
1636 (menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
1637 (menu-bar-edit-menu, menu-bar-custom-menu)
1638 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
1639 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
1640 (menu-bar-line-wrapping-menu, menu-bar-options-menu)
1641 (menu-bar-games-menu, menu-bar-encryption-decryption-menu)
1642 (menu-bar-tools-menu, menu-bar-describe-menu)
1643 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
1644 (menu-bar-help-menu):
1645 * mail/rmailsum.el (rmail-summary-mode-map):
1646 * kmacro.el (kmacro-step-edit-map):
1647 * ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
1648 (ibuffer-mode-operate-map):
1649 * hi-lock.el (hi-lock-menu, hi-lock-map):
1650 * emulation/vip.el (vip-mode-map):
1651 * emacs-lisp/re-builder.el (reb-lisp-mode-map):
1652 * bookmark.el (bookmark-bmenu-mode-map):
1653 * help-mode.el (help-mode-map): Move initialization into declaration.
1655 2011-02-10 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1657 * net/rcirc.el: Add PRIVMSG and CTCP functions.
1658 (rcirc-send-privmsg, rcirc-send-ctcp): New functions.
1659 (rcirc-keepalive, rcirc-cmd-ctcp, rcirc-ctcp-sender-PING)
1660 (rcirc-cmd-me, rcirc-authenticate): Use them.
1662 2011-02-10 Ken Manheimer <ken.manheimer@gmail.com>
1664 * allout.el: Synopsis: Change allout user configuration so
1665 auto-activation is controlled solely by customization
1666 `allout-auto-activation'.
1668 (allout-auto-activation-helper, allout-setup): New autoloads
1669 implement new custom set procedure for allout-auto-activation.
1670 Also, explicitly invoke (allout-setup) after allout-auto-activation
1671 is custom-defined, to affect the settings in emacs sessions besides
1672 the few where allout-auto-activation customization is done.
1673 (allout-auto-activation): Use allout-auto-activation-helper to
1674 :set. Revise the docstring.
1675 (allout-init): Reduce functionality to just customizing
1676 allout-auto-activation, and mark obsolete.
1677 (allout-mode): Respect string values for allout-auto-activation.
1678 Run allout-after-copy-or-kill-hook without any args.
1679 (allout-mode, allout-layout, allout-default-layout)
1680 (outlineify-sticky): Adjust docstring for new scheme.
1681 (allout-after-copy-or-kill-hook): No arguments - hook implementers
1682 should concentrate on the kill ring.
1684 2011-02-09 Teodor Zlatanov <tzz@lifelogs.com>
1686 * password-cache.el (password-cache-remove): Accept secrets that are
1689 2011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
1691 * progmodes/sh-script.el (sh-font-lock-open-heredoc): Fix case
1692 of here-doc that immediately follows a comment.
1694 2011-02-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1696 * net/rcirc.el (rcirc-ctcp-sender-PING): Simplifying.
1698 * net/rcirc.el (rcirc-cmd-ctcp): Use dedicated function when
1700 (rcirc-ctcp-sender-PING): New function.
1702 2011-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1704 * obsolete/pc-select.el: Rename from emulation/pc-select.el (bug#7940).
1705 Remove the mark/nomark handling, and activate shift-select-mode instead.
1707 * obsolete/pc-mode.el: Rename from emulation/pc-mode.el.
1709 2011-02-07 Jay Belanger <jay.p.belanger@gmail.com>
1711 * calc/calc-units.el (math-logunits-quant): Add support for
1712 non-logarithmic units.
1714 2011-02-07 Ken Manheimer <ken.manheimer@gmail.com>
1716 * allout.el (allout-after-copy-or-kill-hook): New hook for
1717 extension-specific processing of killed text.
1718 (allout-mode): Include new allout-after-copy-or-kill-hook among
1720 (allout-kill-line, allout-kill-topic): Ensure that processing
1721 after kill happens even if barf-if-buffer-read-only is raised.
1722 Include new allout-after-copy-or-kill-hook among that subsequent
1724 (allout-deannotate-hidden): Actually remove the annotation text
1727 * allout.el (allout-listify-exposed): Copy text sans text properties.
1729 2011-02-07 Michael Albinus <michael.albinus@gmx.de>
1731 * net/dbus.el (dbus-list-activatable-names): Add optional argument BUS.
1733 2011-02-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1735 * net/rcirc.el (rcirc-handler-317): New function (Bug#6507).
1737 2011-02-06 Jay Belanger <jay.p.belanger@gmail.com>
1739 * calc/calc.el (calc-logunits-field-reference): Rename from
1740 `calc-default-field-reference-level'.
1741 (calc-logunits-power-reference): Rename from
1742 `calc-default-power-reference-level'.
1744 * calc/calc-units.el (math-logunits-quant): Rename from
1745 `math-logunits-level'
1746 (math-logunits-plus): Rename from math-logcombine.
1747 (calcFunc-luplus, calcFunc-luminus calc-luplus, calc-luminus): Remove.
1748 (calcFunc-lufieldadd, calcFunc-lupoweradd, calcFunc-lufieldsub)
1749 (calcFunc-lufieldsub, calc-logunits-add, calc-logunits-sub):
1751 (calcFunc-fieldquant): Rename from `calcFunc-fieldlevel'.
1752 (calcFunc-powerquant): Rename from `calcFunc-powerlevel'.
1753 (calc-logunits-quantity): Rename from `calc-level'.
1754 (calcFunc-dbfieldlevel, calcFunc-dbpowerlevel, calcFunc-npfieldlevel)
1755 (calcFunc-nppowerlevel, calc-logunits-dblevel, calc-logunits-nplevel)
1756 (math-logunits-mul, calcFunc-lufieldmul, calcFunc-lupowermul)
1757 (calc-logunits-mul, math-logunits-divide, calcFunc-lufielddiv)
1758 (calcFunc-lupowerdiv, calc-logunits-divide, math-logunits-level):
1761 * calc/calc-help.el (calc-u-prefix-help): Remove "L" reference.
1762 (calc-ul-prefix-help): Remove.
1763 (calc-l-prefix-help): New function.
1764 (calc-full-help): Add reference to `calc-l-prefix-help'.
1766 * calc/calc-ext.el (calc-init-extensions): Update autoloads.
1768 * calc/README: Mention logarithmic units.
1770 2011-02-06 Chong Yidong <cyd@stupidchicken.com>
1772 * mail/emacsbug.el (report-emacs-bug-hook): Remove the check for
1773 non-ASCII characters (Bug#7925).
1775 2011-02-05 Glenn Morris <rgm@gnu.org>
1777 * emacs-lisp/cl-macs.el (return-from): Fix doc typo.
1779 * calendar/diary-lib.el (diary-font-lock-keywords):
1780 Tweak diary-time-regexp match. (Bug#7891)
1782 * progmodes/f90.el (f90-find-tag-default): New function. (Bug#7919)
1783 (f90-mode): Use it for mode's `find-tag-default-function' property.
1785 * ibuf-ext.el (ibuffer-filter-disable): Make it work. (Bug#7969)
1787 * faces.el (set-face-attribute): Doc fix. (Bug#2659)
1789 2011-02-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1791 * net/rcirc.el (rcirc-handler-JOIN): Reset mode-line-process
1794 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1796 * progmodes/sh-script.el (sh-here-doc-open-re): Don't rely on the
1797 font-lock-syntax-table remappings.
1798 (sh-here-doc-markers, sh-here-doc-re): Remove.
1799 (sh-font-lock-close-heredoc): Remove.
1800 (sh-syntax-propertize-here-doc): New function.
1801 (sh-font-lock-open-heredoc): Set the sh-here-doc-marker property
1802 instead of the sh-here-doc-re.
1803 (sh-font-lock-paren): Don't do anything in comments or strings.
1804 Handle line continuations. Accept a few more chars.
1805 Don't rely on the font-lock-syntax-table remappings.
1806 `esac' is not a valid pattern.
1807 (sh-syntax-propertize-function): Handle here-docs differently, so we
1808 don't bother syntax-propertizing the insides.
1810 * progmodes/sh-script.el (sh-font-lock-paren, sh-kw, sh-prev-thing):
1811 Handle new bashisms ";&" and ";;&" (bug#7947).
1813 2011-02-05 Michael Albinus <michael.albinus@gmx.de>
1815 * net/tramp-smb.el (tramp-smb-errors): Use `regexp-opt'.
1816 Add "NT_STATUS_IO_TIMEOUT" and "NT_STATUS_NO_SUCH_USER".
1818 2011-02-05 Era Eriksson <era+tramp@iki.fi> (tiny change)
1820 * net/tramp.el (tramp-postfix-method-format)
1821 (tramp-postfix-method-regexp, tramp-prefix-domain-format)
1822 (tramp-prefix-domain-regexp, tramp-postfix-user-format)
1823 (tramp-postfix-user-regexp, tramp-prefix-port-format)
1824 (tramp-prefix-port-regexp, tramp-postfix-host-format)
1825 (tramp-postfix-host-regexp, tramp-handle-substitute-in-file-name):
1828 2011-02-04 Sam Steingold <sds@gnu.org>
1830 * mouse.el (mouse-buffer-menu-mode-groups): Add a "GDB" group.
1832 2011-02-04 Andreas Schwab <schwab@linux-m68k.org>
1834 * international/mule-util.el (with-coding-priority): Doc fix.
1836 2011-02-04 Eli Zaretskii <eliz@gnu.org>
1838 * arc-mode.el (archive-mode-map): Fix a typo in last change.
1840 2011-02-03 Sam Steingold <sds@gnu.org>
1842 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
1843 Do not error out when `func' is nil.
1845 2011-02-03 Michael Albinus <michael.albinus@gmx.de>
1847 * net/tramp-sh.el (tramp-remote-path): Add default settings for
1848 `tramp-default-remote-path' to the docstring.
1849 (tramp-get-remote-path): Suppress error message when `getconf
1852 * net/tramp-smb.el (tramp-smb-errors): Add "NT_STATUS_UNSUCCESSFUL".
1854 2011-02-03 Glenn Morris <rgm@gnu.org>
1856 * vc/vc-hg.el (vc-hg-command): Doc fix.
1858 * term/w32-win.el (libpng-version): Declare for compiler.
1860 * msb.el: No need to load dired while compiling.
1862 * emacs-lisp/elint.el (elint-standard-variables):
1863 Remove a couple of built-ins that now have doc-strings.
1865 * hi-lock.el, ps-bdf.el, ps-mule.el, ps-print.el, ps-samp.el:
1866 `require' is automatically `eval-and-compile'd.
1868 * net/rcirc.el (rcirc-nick-completion-format): Add :version tag.
1869 (rcirc-log-directory, rcirc-log-flag): Move definitions before use.
1871 * strokes.el (strokes-fill-current-buffer-with-whitespace):
1872 Move definition before use.
1873 (strokes-report-bug): Make it obsolete.
1875 2011-02-02 Sam Steingold <sds@gnu.org>
1877 * apropos.el (apropos-print): Now that `apropos-mode' inherits
1878 from `special-mode', entering it makes the buffer read-only, so
1879 call it only when everything has been already inserted.
1880 * emacs-lisp/ert.el (ert--setup-results-buffer)
1881 (ert-results-pop-to-backtrace-for-test-at-point)
1882 (ert-results-pop-to-messages-for-test-at-point)
1883 (ert-results-pop-to-timings): Ditto.
1884 * emacs-lisp/package.el (package--list-packages): Ditto.
1885 * play/solitaire.el (solitaire): Ditto.
1887 2011-02-02 Chong Yidong <cyd@stupidchicken.com>
1889 * progmodes/compile.el: Make all faces inherit.
1890 (compilation-warning): Inherit from font-lock-variable-name-face.
1891 (compilation-info): Inherit from font-lock-type-face.
1892 (compilation-line-number): Reassign to font-lock-keyword-face.
1893 (compilation-column-number): Reassign to font-lock-doc-face.
1894 (compilation-leave-directory-face): Reassign to
1895 font-lock-builtin-face.
1897 2011-02-02 Eli Zaretskii <eliz@gnu.org>
1899 * dired.el (dired-insert-directory): Don't invoke `ls' when
1900 ls-lisp.el is used to emulate it.
1902 2011-02-01 Julien Danjou <julien@danjou.info>
1904 * color.el (color-gradient): Add a color-gradient function.
1906 2011-02-01 Sam Steingold <sds@gnu.org>
1908 * simple.el (special-mode-map): Bind "h" to `describe-mode';
1909 bind "z" to `kill-this-buffer'.
1910 (completion-list-mode-map): Bind "z" to `kill-this-buffer'.
1911 * apropos.el (apropos-mode-map): Inherit from `special-mode-map'.
1912 (apropos-mode): Inherit from `special-mode'.
1913 * arc-mode.el (archive-mode-map): Inherit from `special-mode-map'.
1914 * bookmark.el (bookmark-bmenu-mode): Define using
1915 `define-derived-mode' inheriting from `special-mode'.
1916 * dired.el (dired-mode-map): Inherit from `special-mode-map'.
1917 * image-mode.el (image-mode-map): Ditto.
1918 * replace.el (occur-mode): Define using
1919 `define-derived-mode' inheriting from `special-mode'.
1920 * tar-mode.el (tar-mode): Inherit from `special-mode'.
1921 * calendar/diary-lib.el (diary-fancy-display-mode):
1922 Inherit from `special-mode-map'.
1923 * emacs-lisp/ert.el (ert-simple-view-mode, ert-results-mode):
1924 Inherit from `special-mode'.
1925 * emacs-lisp/package.el (package-menu-mode-map): Copy from
1927 (package-menu-mode): Define using `define-derived-mode'
1928 inheriting from `special-mode'.
1929 * erc/erc-list.el (erc-list-menu-mode): Inherit from `special-mode'.
1930 * net/xesam.el (xesam-mode): Inherit from `special-mode'.
1931 (xesam-mode-map): Define separately.
1932 * play/solitaire.el (solitaire-mode): Inherit from `special-mode'.
1933 * progmodes/compile.el (compilation-minor-mode-map)
1934 (compilation-mode-map): Inherit from `special-mode-map'.
1935 * vc/diff-mode.el (diff-mode-shared-map):
1936 Inherit from `special-mode-map'.
1937 * vc/log-view.el (log-view-mode-map): Add a comment.
1939 2011-02-01 Chong Yidong <cyd@stupidchicken.com>
1941 * custom.el (load-theme): Define return value. Drop use of
1942 unsafep; call custom-theme-load-confirm for non-known-safe themes.
1943 (custom-theme-load-confirm): Scroll in the correct window.
1944 (custom-enabled-themes): Add custom-safe-themes to :set-after.
1946 * cus-theme.el (custom-theme-checkbox-toggle): Don't activate the
1947 checkbox if load-theme fails.
1949 2011-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
1951 * progmodes/compile.el (compilation-next-error): Check there's
1952 a message before using it (bug#7941).
1954 2011-02-01 Jay Belanger <jay.p.belanger@gmail.com>
1956 * calc/calc-mtx.el (math-lud-pivot-check): New function.
1957 (math-do-matrix-lud): Use `math-lud-pivot-check' to check the size
1958 of potential pivots.
1960 2011-01-31 Alan Mackenzie <acm@muc.de>
1962 * progmodes/cc-cmds.el (c-forward-over-illiterals):
1963 Continue parsing if we encounter a naked # (Bug#7595).
1964 (c-beginning-of-statement): Avoid loop in locating the beginning
1965 of a macro. (Not actually committed until 2011-02-20, see above).
1967 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1969 * files.el (copy-directory): Fix arguments to recursive call.
1971 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1973 * files.el (copy-directory): If destination is an existing
1974 directory, copy into a subdirectory there.
1976 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
1978 * emacs-lisp/shadow.el (load-path-shadows-find): Ignore leim-list
1981 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1983 * image-dired.el (image-dired-mouse-display-image): No-op if no
1984 file is found (Bug#7817).
1986 * mouse.el (mouse-menu-non-singleton): Doc fix (Bug#7801).
1988 2011-01-31 Kenichi Handa <handa@m17n.org>
1990 * international/quail.el (quail-keyboard-layout-alist):
1991 Remove superfluous SPC for "pc105-uk" (bug#7927).
1993 2011-01-31 Glenn Morris <rgm@gnu.org>
1995 * msb.el (msb-menu-bar-update-buffers): Update for changed
1996 argument handling of menu-bar-select-frame. (Bug#7902)
1998 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2000 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Set a limit
2001 to the recursion depth (Bug#7722).
2003 2011-01-31 Roy Liu <carsomyr@gmail.com> (tiny change)
2005 * term/ns-win.el (ns-find-file): Expand ns-input-file with
2006 command-line-default-directory (Bug#7872).
2008 2011-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
2010 * progmodes/compile.el (compilation--flush-directory-cache):
2011 New function, extracted from compilation--remove-properties.
2012 (compilation--remove-properties, compilation--parse-region): Use it.
2013 (compilation--previous-directory): Handle one more case.
2014 (compilation-enable-debug-messages): Remove.
2015 (compilation-parse-errors, compilation--flush-parse): Just remove the
2016 left over debug messages.
2018 2011-01-31 Sam Steingold <sds@gnu.org>
2020 * progmodes/compile.el (compilation-enable-debug-messages):
2021 Add a variable to make the parsing messages introduced in
2022 2011-01-28T22:12:05Z!monnier@iro.umontreal.ca optional.
2023 (compilation-parse-errors, compilation--flush-parse): Use it.
2025 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2027 * net/rcirc.el: New customizable nick completion format. (Bug#6314)
2028 (rcirc-nick-completion-format): New defcustom.
2029 (rcirc-complete): Use it.
2031 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2033 * net/rcirc.el: Clean log filenames (Bug#7933).
2034 (rcirc-log-write): Use convert-standard-filename.
2035 (rcirc-log-filename-function): Documentation updates.
2037 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
2039 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer):
2040 Check report-emacs-bug-can-use-osx-open and use that if t.
2041 (report-emacs-bug-can-use-osx-open): New function.
2042 (report-emacs-bug): Rename can-xdg-email to can-insert-mail.
2043 Check report-emacs-bug-can-use-osx-open also for can-insert-mail.
2045 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
2047 * vc/vc-dispatcher.el (vc-set-async-update): New function for
2048 updating Dired or VC-dir buffers after async command completes.
2050 * vc/vc-bzr.el (vc-bzr-async-command): Return the process buffer.
2051 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-set-async-update.
2053 * vc/vc-git.el (vc-git-merge-branch): Add FETCH_HEAD to branch
2054 completions if it exists. Use vc-set-async-update.
2055 (vc-git-pull): Use vc-set-async-update.
2057 * vc/vc-hg.el (vc-hg-pull): Fix default-contents arg to
2058 read-shell-command. Use vc-set-async-update.
2059 (vc-hg-merge-branch): Use vc-set-async-update.
2061 2011-01-29 Daiki Ueno <ueno@unixuser.org>
2063 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED):
2064 Don't presume KEYEXPIRED and KEYREVOKED to be a fatal error status
2067 2011-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
2069 * progmodes/compile.el: Avoid an N² behavior in grep.
2070 (compilation--previous-directory): New fun.
2071 (compilation--previous-directory-cache): New var.
2072 (compilation--remove-properties): Flush it.
2073 (compilation-directory-properties, compilation-error-properties):
2074 Use the new fun to speed up looking for the current directory.
2076 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
2078 * vc/vc-hg.el (vc-hg-history): New var.
2079 (vc-hg-pull): Perform default pull if called via Lisp by vc-pull.
2080 (vc-hg-merge-branch): New function.
2082 * vc/vc.el (vc-pull): Make vc-update an alias for this, instead of
2083 the other way around.
2085 * vc/vc-git.el (vc-git-branches, vc-git-pull)
2086 (vc-git-merge-branch): New functions.
2087 (vc-git-history): New var.
2089 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2091 * vc/vc-dispatcher.el (vc-do-async-command): New function.
2093 * vc/vc-bzr.el (vc-bzr-async-command): Convert into a wrapper for
2094 vc-do-async-command.
2096 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch):
2099 2011-01-28 Leo <sdl.web@gmail.com>
2101 * emacs-lisp/advice.el (ad-make-advised-docstring): Don't apply
2102 highlighting to the "this function is advised" message.
2104 * help-mode.el (help-mode-finish): Apply highlighting here, to
2105 avoid clobbering by substitute-command-keys (Bug#6304).
2107 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2109 * woman.el (woman0-roff-buffer): Process roff escape sequences
2110 occurring prior to the first request (Bug#7843).
2112 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2114 * progmodes/compile.el: Don't use font-lock any more.
2115 (compilation-error-regexp-alist-alist): Change handling of makepp
2116 so it preserves the warning/error distinction on subsequent files.
2117 Simplify various rules.
2118 (compilation-directory-properties): Use font-lock-face.
2119 Add a compilation-message property.
2120 (compilation-internal-error-properties): Use font-lock-face.
2121 Don't set the compilation-debug property here.
2122 (compilation--put-prop, compilation--remove-properties)
2123 (compilation--parse-region, compilation--ensure-parse)
2124 (compilation--ensure-parse): New functions.
2125 (compilation-parse-errors): New function, largely inspired of
2126 compilation-mode-font-lock-keywords. Set compilation-debug here.
2127 (compilation--parsed): New var.
2128 (compilation--flush-parse): Use compilation--ensure-parse.
2129 (compilation-start): Don't call font-lock.
2130 (compilation-turn-on-font-lock): Remove.
2131 (compilation-setup): Don't set font-lock-extra-managed-props not change
2132 other font-lock settings, other than keywords.
2133 Don't activate font-lock-mode.
2134 Set change-major-mode-hook and before-change-functions.
2135 (compilation--unsetup): Remove properties and hooks.
2136 (compilation-next-single-property-change): New function.
2137 (compilation-next-error): Use it to parse when needed.
2138 (compile-goto-error): Parse buffer as needed.
2139 (compilation--compat-error-properties): Don't need a dummy `face'
2142 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2144 * progmodes/compile.el: Use accessors for clarity and fix omake hack.
2145 (compilation-process-setup-function): Fix docstring's false promises.
2146 (compilation-error-regexp-alist-alist): Catch omake's continuous
2147 recompilation message and avoid reuse of old markers.
2148 (compilation-parse-errors-function): Declare obsolete.
2149 (compilation-buffer-modtime): Remove.
2150 (compilation--make-cdrloc, compilation--loc->col)
2151 (compilation--loc->line, compilation--loc->file-struct)
2152 (compilation--loc->marker, compilation--loc->visited)
2153 (compilation--make-file-struct, compilation--file-struct->file-spec)
2154 (compilation--file-struct->formats)
2155 (compilation--file-struct->loc-tree): New macros. Use them.
2156 (compilation--message): New defstruct. Use them.
2157 (compilation-next-error-function): Don't mess with timestamps to try
2158 and guess when to reparse.
2160 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2162 * textmodes/tex-mode.el: Get rid of compilation-parse-errors-function
2163 (tex-old-error-file-name): New function,
2164 extracted from tex-compilation-parse-errors.
2165 (tex-compilation-parse-errors): Remove.
2166 (tex-error-regexp-alist): New var.
2167 (tex-shell): Use it to avoid compilation-parse-errors-function.
2169 * progmodes/grep.el (grep-regexp-alist): Tighten regexp.
2170 (grep-mode-font-lock-keywords): Remove regexp that seems like
2171 a left-over from before we used compile.el.
2172 (grep-mode-font-lock-keywords): Call syntax-ppss-flush-cache when
2173 modifying the buffer within with-silent-modifications.
2175 * progmodes/compile.el: Cleanup text-properties namespace by using
2176 `compilation-message' instead of `message', `compilation-directory'
2177 instead of `directory', and `compilation-debug' instead of `debug'.
2178 (compilation-last-buffer, compilation-parsing-end)
2179 (compilation-error-list, compilation-old-error-list): Move to the
2180 compatibility part of the code.
2181 (compilation-error-properties): If `file' is a function, let it return
2183 (compilation-mode-font-lock-keywords): Be more conservative with the
2184 omake "^ *" pattern prefix, to try and minimize the risk of
2185 pathologically slow regexp matching.
2186 (compilation-start): Use inhibit-read-only.
2187 (compilation--unsetup): New function.
2188 (compilation-shell-minor-mode, compilation-minor-mode): Use it.
2189 (compilation-filter): Minor tweaks.
2190 (compilation-next-error-function): Try and avoid abusing variables.
2191 (compilation--flush-file-structure): New fun.
2192 (compilation-fake-loc): Use it to improve behavior when file is reused.
2193 (debug-ignored-errors): Add "Moved past last ...".
2194 (compilation--compat-error-properties)
2195 (compilation--compat-parse-errors): Rename by doubling the "-".
2197 Port features from the previous prolog.el to the new one.
2198 * progmodes/prolog.el (prolog-system): Add GNU and ECLiPSe options.
2199 (prolog-program-name, prolog-program-switches, prolog-consult-string)
2200 (prolog-compile-string, prolog-prompt-regexp): Get rid of the <foo>-i
2201 variable and use a function to compute the value dynamically.
2202 (prolog-prompt-regexp): Add regexp for GNU Prolog.
2203 (prolog-continued-prompt-regexp): Remove, unused.
2204 (prolog-find-value-by-system): Try and use the value of prolog-system
2205 in the *prolog* buffer if it helps.
2206 (prolog-mode-keybindings-common): Bind C-c C-z unconditionally...
2207 (prolog-zip-on): ..and check prolog-system and version here instead.
2208 (prolog-inferior-self-insert-command): New command.
2209 (prolog-inferior-mode-map): Use it.
2210 (prolog-inferior-error-regexp-alist): New var.
2211 (prolog-inferior-mode): Use it, with compilation-shell-minor-mode.
2212 (prolog-input-filter): Use derived-mode-p.
2213 (prolog-inferior-guess-flavor): New function.
2214 (prolog-ensure-process): Use it. Use make-comint-in-buffer rather than
2215 make-comint to avoid running comint-mode twice.
2216 (prolog-inferior-buffer): New fun.
2217 (prolog-old-process-region, prolog-old-process-file):
2218 Don't call prolog-bsts here...
2219 (prolog-build-prolog-command): ...do it here instead.
2220 (prolog-old-process-region, prolog-old-process-file):
2221 Use compilation-fake-loc and compilation-forget-errors.
2222 (prolog-consult-compile-region): Use bolp.
2224 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2226 * image-mode.el (image-display-size): Doc fix (Bug#7820).
2228 2011-01-27 Sam Steingold <sds@gnu.org>
2230 * midnight.el (clean-buffer-list-kill-never-buffer-names):
2231 Remove "*server*" which is never created by emacs server.
2233 2011-01-27 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2235 * vc/vc-bzr.el (vc-bzr-diff): Don't pass --diff-options unless
2236 there are some diff switches.
2238 2011-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2240 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2241 Copy change made to ruby-font-lock-syntactic-keywords.
2243 * htmlfontify.el: Make it obey the font-lock-face text property.
2244 Miscellaneous cleanup such as:
2245 - Don't hide expressions after a closing paren.
2246 - Move initial setq into let.
2247 - Hoist common parts out of ifs.
2248 (hfy-p-to-face, hfy-p-to-face-lennart): Remove.
2249 (hfy-face-at): Use get-text-property instead.
2250 (hfy-prop-invisible-p): Use invisible-p if available.
2251 (htmlfontify-manual): Use \\[...].
2252 (hfy-html-quote-regex): Use [...].
2253 (hfy-combined-face-spec): Simplify.
2254 (hfy-compile-face-map): Don't presume point-min==1.
2255 (hfy-css-name, hfy-buffer, htmlfontify-buffer): Use \' rather than $ to
2256 match end of string.
2257 (hfy-text-p): η-reduce.
2258 (hfy-tags-for-file): Receive cache-hash directly.
2259 (hfy-mark-tag-names): Adjust call.
2261 2011-01-27 Glenn Morris <rgm@gnu.org>
2263 * msb.el (msb-after-load-hooks): Make it an obsolete alias.
2264 (msb-after-load-hook): Remove eval-after-load wackiness.
2266 2011-01-25 Sam Steingold <sds@gnu.org>
2268 * vc/vc-svn.el (vc-svn-diff): Use `diff-command' instead of the
2269 literal "diff" (important for windows-nt).
2271 2011-01-25 Glenn Morris <rgm@gnu.org>
2273 * emacs-lisp/copyright.el (copyright-at-end-flag)
2274 (copyright-names-regexp): Add safety properties.
2275 (copyright-year-ranges): New option.
2276 (copyright-find-end): New function, split from copyright-update-year.
2277 (copyright-update-year): Use copyright-find-end.
2278 (copyright-fix-years): Optionally, convert years to ranges.
2279 Handle years continued over comment lines.
2280 Do not mess with the fill-prefix.
2281 Do not call copyright-update.
2282 (copyright-update-directory): Optionally, fix years rather than update.
2283 Skip directories. Find files with only safe local vars.
2285 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
2287 * files.el (file-name-non-special): Only change buffer-file-name after
2288 insert-file-contents if it's `visit'ing the file (bug#7854).
2290 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
2292 * dired.el (dired-revert): Doc fix (Bug#7758).
2294 * simple.el (line-move-visual): Doc fix (Bug#7594).
2296 2011-01-25 Nobuyoshi Nakada <nobu@ruby-lang.org>
2298 * progmodes/ruby-mode.el (ruby-here-doc-beg-match): Fix for
2299 here-doc which ends with an underscore.
2300 (ruby-mode-set-encoding): Skip shebang line always.
2301 (ruby-mode-map): Bind C-c C-c to comment-region.
2302 (ruby-font-lock-keywords): Highlight literal hash key labels as symbols.
2303 (ruby-forward-sexp): Stop after literal hash key labels.
2304 (ruby-font-lock-syntactic-keywords): Highlight regexp after open
2307 2011-01-25 Keitaro Miyazaki <keitaro.miyazaki@gmail.com> (tiny change)
2309 * emacs-lisp/re-builder.el (reb-mode-map): Set case-fold-search in
2310 the correct buffer (Bug#7650).
2312 2011-01-25 Glenn Morris <rgm@gnu.org>
2314 * comint.el (comint-mode): Doc fix. (Bug#7897)
2316 * simple.el (do-auto-fill): Give it a doc string.
2318 * button.el (make-text-button): Doc fix. (See bug#7881)
2320 2011-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2322 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
2323 Don't move backward, so as not to fall in an inf-loop (bug#7736).
2325 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): (bug#7735)
2326 Handle ?" and friends differently (e.g. don't use backrefs).
2328 2011-01-24 Jay Belanger <jay.p.belanger@gmail.com>
2330 * calc/calc.el (calc-default-power-reference-level)
2331 (calc-default-field-reference-level): New variables.
2332 * calc/calc-units.el (math-standard-units): Add dB and Np.
2333 (math-logunits): New variable.
2334 (math-extract-logunits, math-logcombine, calcFunc-luplus)
2335 (calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
2336 (calcFunc-fieldlevel, calcFunc-powerlevel, calc-level):
2338 (math-find-base-units-rec): Add entry for ln(10).
2339 * calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
2340 (calc-ul-prefix-help): New function.
2341 * calc/calc-ext.el (calc-init-extensions): Autoload new units
2342 functions. Add keybindings for new units functions.
2344 2011-01-22 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2346 * net/rcirc.el (rcirc-kill-buffer-hook): Flush logs when killing
2347 rcirc buffers. (Bug#4940)
2349 2011-01-22 Glenn Morris <rgm@gnu.org>
2351 * emacs-lisp/copyright.el (copyright-find-copyright): New function,
2352 split out from copyright-update-year.
2353 (copyright-update): Don't mess with the GPL version if we don't own the
2354 copyright. Update license regexp, and remove no longer needed
2356 (copyright-fix-years): Use copyright-find-copyright.
2358 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2360 * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
2362 2011-01-22 Jari Aalto <jari.aalto@cante.net>
2364 * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
2365 (lm): Rename to landmark.
2366 (lm-test-run): Rename to landmark-test-run.
2368 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2370 * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in
2371 "Case sensitive" menu item.
2373 2011-01-22 Roland McGrath <roland@frob.com>
2375 * comint.el (comint-replace-by-expanded-history-before-point): Fix
2376 expansion of !$ and !!:N syntax to pick the indicated word (bug#7883).
2378 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2380 * progmodes/js.el (js--regexp-literal): Count backslashes (bug#7882).
2382 2011-01-22 Jari Aalto <jari.aalto@cante.net>
2384 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2385 Assume foo(bar) is a manpage reference rather than some unquoted
2388 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2390 * subr.el (shell-quote-argument): Properly quote \n (bug#7687).
2391 Suggested by Flo <sensorflo@gmail.com>.
2393 2011-01-22 Glenn Morris <rgm@gnu.org>
2395 * progmodes/compile.el (compilation-error-regexp-alist):
2396 Fix custom type. (Bug#7812)
2398 2011-01-22 Ken Manheimer <ken.manheimer@gmail.com>
2400 * allout.el (allout-prefixed-keybindings): Bind (prefixed) '#' to
2401 allout-number-siblings, in keeping with what obtained due to
2402 (now-defunct) allout-keybindings-list. Ditch repeat binding to
2404 (allout-before-change-handler): Better expose spots affected by
2407 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2409 * man.el (Man-highlight-references0): Use make-button (Bug#7881).
2411 2011-01-22 Phil Hagelberg <phil@evri.com>
2413 * pcmpl-unix.el (pcmpl-ssh-config-file): New option.
2414 (pcmpl-ssh-known-hosts): Rename from pcmpl-ssh-hosts.
2415 (pcmpl-ssh-config-hosts): New function.
2416 (pcmpl-ssh-hosts): Use pcmpl-ssh-config-hosts in addition to
2417 pcmpl-ssh-known-hosts.
2419 2011-01-21 Jay Belanger <jay.p.belanger@gmail.com>
2421 * calc/calc-undo.el (calc-undo): Autoload it.
2422 * calc/calc-ext.el (calc-init-extensions): Remove keybindings
2423 and autoload for `calc-undo'.
2424 * calc/calc.el (calc-mode-map): Add keybindings for `calc-undo'.
2425 * calc/calc-prog.el:
2426 * calc/calc-graph.el:
2427 * calc/calc-map.el: Change `arglist' to `math-arglist' throughout.
2429 2011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
2431 * calc/calc-ext.el (calc-init-extensions): Map all `undo'
2432 keybindings to `calc-undo'.
2434 2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2436 Don't mess with *temp*.
2437 * obsolete/spell.el: Move from textmodes/spell.el.
2439 * term.el (term-read-input-ring):
2440 * startup.el (display-startup-echo-area-message):
2441 * progmodes/antlr-mode.el (antlr-directory-dependencies):
2442 * comint.el (comint-read-input-ring): Use with-temp-buffer.
2443 * international/mule.el (ctext-pre-write-conversion): Don't hardcode
2446 2011-01-20 Ken Manheimer <ken.manheimer@gmail.com>
2448 * allout.el (allout-institute-keymap): Use fset instead of
2449 reapplying defalias.
2451 (allout-hotspot-key-handler): Check for non-control-modified
2452 bindings for hotspot characters if there are no control-modified
2455 * allout.el: Summary - migrate to defining allout mode using
2456 define-minor-mode instead of defun. Significantly clean-up
2457 internal keymap provisions, refactoring and, in the process,
2458 removing a lot of accumulated cruft.
2460 allout-mode-map is now a keymap by virtue of being a defalias to
2461 allout-mode-map-value, which contains the actual keymap structure.
2463 (allout-mode): Use define-minor-mode rather than defun.
2464 Remove now-unnecessary minor-mode setup activities from the body.
2465 Specify :keymap as allout-mode-map so the minor-mode-map-alist
2466 entry will be '(allout-mode . allout-mode-map) - see
2467 allout-mode-map-value, below. Adjust docstring to track changes.
2468 (allout-minor-mode): Remove this defalias, now that we're using
2470 (allout-mode-map): Set value to be 'allout-mode-map. The actual
2471 keymap is allout-mode-map-value, via defalias.
2472 (allout-mode-map-value): The variable holding the actual mode
2473 keymap structure, by virtue of defalias from allout-mode-map.
2474 (allout-compose-and-institute-keymap): Rename from
2475 allout-bind-keys, and including the binding-composition
2476 functionality of the former produce-allout-mode-map and
2477 allout-setup-mode-map.
2478 (allout-institute-keymap): Take over the "setup" part of the former
2479 allout-setup-mode-map. Reassign allout-mode-map-value value and
2480 update the defalias.
2481 (allout-command-prefix, allout-prefixed-keybindings)
2482 (allout-unprefixed-keybindings):
2483 Use allout-compose-and-institute-keymap to process the bindings.
2484 (allout-unprefixed-keybindings): Remove extraneous '?' question marks.
2485 (allout-prefixed-keybindings): Elide binding to (prefixed) \C-h -
2486 user can customize if they want to use that binding.
2487 Bind allout-copy-topic-as-kill to (prefixed) \M-k.
2488 Bind allout-up-current-level to (prefixed) \C-u. (I think i mistakenly
2489 elided that, previously, instead of the one for \C-h.)
2490 (allout-hotspot-key-handler): Remove attempt to resolve the key
2491 through the literal key-string lookup on allout-keybindings-list.
2492 That probably hasn't worked for a Long Time, and removal of
2493 allout-keybindings-list further simplifies the keybindings situation.
2494 (allout-pre-command-business): Use allout-mode-map-value instead
2496 (allout-preempt-trailing-ctrl-h): Remove. The user can customize
2497 the bindings if they want to use a keybinding having a trailing
2498 \C-h. No deprecation needed since this feature was never in a release.
2499 (allout-keybindings-list): Remove. It's not been useful for a
2500 while. (See allout-hotspot-key-handler changes, above.)
2501 (produce-allout-mode-map): Remove. Consolidate into
2502 allout-compose-and-institute-keymap.
2503 (allout-mode-map-adjustments): Remove. No longer necessary with
2504 removal of allout-preempt-trailing-ctrl-h.
2505 (allout-setup-mode-map): Remove. Consolidate into
2506 allout-compose-and-institute-keymap and allout-institute-keymap.
2508 2011-01-20 Glenn Morris <rgm@gnu.org>
2510 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
2512 * simple.el (read-expression-history): Remove, it's in minibuf.c.
2514 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
2516 * subr.el (y-or-n-p): Revert 2011-01-07 change, removing ARGS.
2518 * files.el (find-alternate-file, basic-save-buffer)
2519 (basic-save-buffer-2, revert-buffer, recover-file)
2520 (kill-buffer-ask, abort-if-file-too-large)
2521 (set-visited-file-name, write-file, backup-buffer)
2522 (basic-save-buffer, save-some-buffers):
2523 * dired-aux.el (dired-compress-file): Callers changed.
2525 2011-01-19 Glenn Morris <rgm@gnu.org>
2527 * vc/vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
2528 Also check the property status. (Bug#7861)
2530 2011-01-18 Michael Albinus <michael.albinus@gmx.de>
2532 * net/tramp.el (tramp-debug-message): Extend function exclude
2533 list. Use `regexp-opt'.
2535 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2537 * textmodes/tex-mode.el (tex-font-lock-verb): Make sure \verb
2538 highlighting doesn't spill over subsequent lines.
2540 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't re-evaluate the
2541 keymap expression. Improve docstring.
2543 * electric.el (electric-indent-post-self-insert-function):
2544 Don't auto-indent for indent-to-left-margin, it's too often
2547 2011-01-16 Tassilo Horn <tassilo@member.fsf.org>
2549 * strokes.el (strokes-read-stroke): Re-fill strokes buffer with
2550 spaces if the frame was resized, so that the full visible buffer
2551 serves as canvas for strokes.
2553 2011-01-16 Glenn Morris <rgm@gnu.org>
2555 * info-xref.el (info-xref-docstrings): Replace cl function.
2556 Also skip directories.
2558 2011-01-16 Kevin Ryde <user42@zip.com.au>
2560 * info-xref.el: Version 3.
2561 (info-xref-check, info-xref-check-all): Move commentary details
2562 into docstrings for better visibility.
2563 Use compilation-mode for the results buffer.
2564 (info-xref-output, info-xref-output-error, info-xref-with-output)
2565 (info-xref-filename, info-xref-in-progress):
2566 New internals for this.
2567 (info-xref-check-list, info-xref-check-buffer)
2568 (info-xref-check-all-custom): Use those.
2569 (info-xref-output-buffer): Rename from info-xref-results-buffer.
2570 (info-xref-output-heading): Rename from info-xref-filename-heading.
2571 (info-xref-good, info-xref-bad, info-xref-xfile-alist)
2572 (info-xref-filename-heading): Move to output managing section.
2573 (info-xref-docstrings): New command checking "Info node `(foo)Bar'"
2574 (info-xref-lock-file-p, info-xref-with-file): New helpers for it.
2575 (info-xref-subfile-p): Move to generic section with those two.
2576 (info-xref-check-node): New function split from
2577 info-xref-check-buffer, shared by info-xref-docstrings.
2578 (info-xref-goto-node-p): Move to a checking section with that func.
2579 (info-xref-unavail): New counter.
2580 (info-xref-check-node): Use it.
2581 (info-xref-with-output): Show count of unavailables at end of output.
2582 (info-xref-all-info-files): Exclude ".*" dotfiles. Ignore broken
2583 symlinks. Exclude .texi files. Exclude Emacs backup files.
2584 (info-xref-check-all-custom): Fix quietening viper-mode and
2585 gnus-registry-install -- use setq not let so as not to unbind
2588 2011-01-16 Juri Linkov <juri@jurta.org>
2590 * isearch.el (isearch-abort): Don't quit if search has
2591 an incomplete regexp (isearch-error is non-nil). (Bug#7534)
2593 2011-01-15 Mark Diekhans <markd@soe.ucsc.edu>
2595 * files.el (backup-buffer): Make last-resort backup file in
2596 .emacs.d (Bug#6953).
2598 * subr.el (locate-user-emacs-file): If .emacs.d does not exist,
2599 make it with permission 700.
2601 2011-01-15 Kenichi Handa <handa@m17n.org>
2603 * mail/rmailmm.el (rmail-mime-insert-header):
2604 Set rmail-mime-coding-system to a cons whose car is the last coding
2605 system used to decode the header.
2606 (rmail-mime-find-header-encoding): New function.
2607 (rmail-mime-insert-decoded-text):
2608 Override rmail-mime-coding-system if it is a cons.
2609 (rmail-show-mime): If only a header part was decoded, find the
2610 coding system while ignoring mm-charset-override-alist.
2612 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
2614 * subr.el (event-start, event-end): Doc fix (Bug#7826).
2616 2011-01-15 Kenichi Handa <handa@m17n.org>
2618 * mail/rmailmm.el (rmail-mime-next-item)
2619 (rmail-mime-previous-item): Delete them.
2620 (rmail-mime-shown-mode): Recursively call for children.
2621 (rmail-mime-hidden-mode): Delete the 2nd arg TOP.
2623 (rmail-mime-raw-mode): Recursively call for children.
2624 (rmail-mode-map): Change mapping of tab and backtab to
2625 forward-button and backward-button respectively.
2626 (rmail-mime-insert-tagline): Always insert "Hide" or "Show"
2628 (rmail-mime-update-tagline): New function.
2629 (rmail-mime-insert-text): Call rmail-mime-update-tagline if the
2630 body display is changed.
2631 (rmail-mime-toggle-button): Rename from rmail-mime-image.
2632 (rmail-mime-image): Delete this button type.
2633 (rmail-mime-toggle): New button type.
2634 (rmail-mime-insert-bulk): Call rmail-mime-update-tagline if the
2635 body display is changed. Change the save button label to "Save".
2636 Don't process show/hide button here.
2637 (rmail-mime-insert-multipart): Call rmail-mime-update-tagline if
2638 the body display is changed. Unconditionally call
2639 rmail-mime-insert for children.
2640 (rmail-mime-handle): Update `display' vector of the just inserted
2642 (rmail-mime-process): If mail-header-parse-content-type returns
2643 nil, use "text/plain" as the fallback type.
2644 (rmail-mime-insert): For raw-mode, recursively call
2645 rmail-mim-insert for children.
2646 (rmail-mime): Handle the case that the current buffer is not rmail
2647 buffer (e.g. in summary buffer).
2649 2011-01-15 Kenichi Handa <handa@m17n.org>
2651 * mail/rmailmm.el (rmail-mime-next-item)
2652 (rmail-mime-previous-item): Skip the body of a non-multipart
2653 entity if a tagline is shown.
2655 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2657 * tmm.el (tmm-get-keymap): Skip bindings without labels (bug#7721).
2658 (tmm-prompt): Simplify.
2659 (tmm-add-prompt): Remove unused var `win'.
2661 * whitespace.el (global-whitespace-newline-mode): Fix call (bug#7810)
2662 to minor mode which used nil accidentally to mean "turn off".
2664 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
2666 * net/tramp-sh.el (tramp-find-inline-compress)
2667 (tramp-get-inline-coding): Quote command after pipe symbol for
2668 local calls under W32. (Bug#6784)
2670 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
2672 * net/tramp.el (tramp-default-method): Initialize with pscp/plink
2673 only when running under W32.
2675 2011-01-15 Eli Zaretskii <eliz@gnu.org>
2677 * progmodes/grep.el (grep-compute-defaults): Quote the program
2678 file name after the pipe symbol in Grep templates. (Bug#6784)
2679 * jka-compr.el (jka-compr-partial-uncompress): Likewise.
2681 2011-01-15 Lennart Borgman <lennart.borgman@gmail.com>
2683 * buff-menu.el (Buffer-menu-buffer-list): New var.
2684 (Buffer-menu-revert-function, list-buffers-noselect): Use it, so a
2685 restricted buffer list is not lost on revert (Bug#7749).
2687 2011-01-15 Eric Hanchrow <eric.hanchrow@gmail.com>
2689 * net/ldap.el (ldap-search-internal): Discard stderr output.
2691 2011-01-15 Eli Zaretskii <eliz@gnu.org>
2693 * files.el (directory-abbrev-alist): Doc fix. (Bug#7777)
2695 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2697 * vc-bzr.el (vc-bzr-annotate-time): Tweak previous change.
2699 2011-01-15 Kenichi Handa <handa@m17n.org>
2701 * mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
2702 part as a plain text.
2703 (rmail-mime-process-multipart): Set the default content-type to
2704 nil for unknown multipart subtypes (bug#7651).
2706 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2708 * hexl.el (hexl-mode-old-*): Remove.
2709 (hexl-mode--old-var-vals): New var to replace them.
2710 (hexl-mode--minor-mode-p, hexl-mode--setq-local): New funs.
2711 (hexl-mode, hexl-follow-line, hexl-activate-ruler):
2712 Use them to set local vars (bug#7846).
2713 (hexl-mode-exit): Use hexl-mode--old-var-vals to restore state.
2714 (hexl-backward-short, hexl-backward-word, hexl-scroll-down)
2715 (hexl-scroll-up, hexl-end-of-1k-page, hexl-end-of-512b-page): Simplify.
2717 * vc/smerge-mode.el: Resolve comment conflicts more aggressively.
2718 (smerge-resolve--normalize-re): New var.
2719 (smerge-resolve--extract-comment, smerge-resolve--normalize): New funs.
2720 (smerge-resolve): Use them.
2721 * newcomment.el (comment-only-p): New function.
2722 (comment-or-uncomment-region): Use it.
2724 2011-01-14 Brent Goodrick <bgoodr@gmail.com> (tiny change)
2726 * abbrev.el (prepare-abbrev-list-buffer): If listing local abbrev
2727 table, get the value before switching to the output buffer. (Bug#7733)
2729 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2731 * progmodes/python.el (python-mode): Don't impose font-lock (bug#3628).
2733 2011-01-14 Kim F. Storm <storm@cua.dk>
2735 * emulation/cua-base.el (cua--init-keymaps):
2736 Remap exchange-point-and-mark in cua-global-keymap.
2738 2011-01-14 Tassilo Horn <tassilo@member.fsf.org>
2740 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach
2743 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2745 * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label.
2747 (easy-menu-create-menu, easy-menu-convert-item-1):
2748 Use :label rather than nil for labels. Use `case'.
2749 Add :enable as alias for :active.
2750 (easy-menu-binding): Obey :label.
2752 2011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2754 Use run-mode-hooks for major mode hooks (bug#513).
2755 * textmodes/reftex-toc.el (reftex-toc-mode-map):
2756 Rename from reftex-toc-map.
2757 (reftex-toc-mode): Use define-derived-mode.
2758 * textmodes/reftex-sel.el (reftex-select-shared-map): New map.
2759 (reftex-select-label-mode-map, reftex-select-bib-mode-map):
2760 Rename from reftex-select-(label|bib)-map. Move init into declaration.
2761 (reftex-select-label-mode, reftex-select-bib-mode):
2762 Use define-derived-mode.
2763 * textmodes/reftex-index.el (reftex-index-phrases-mode-map)
2764 (reftex-index-mode-map): Rename from reftex-index(-phrases)-map.
2765 Move init into delcaration.
2766 (reftex-index-mode, reftex-index-phrases-mode):
2767 Use define-derived-mode.
2768 * speedbar.el (speedbar-mode-syntax-table): Renaqme from
2769 speedbar-syntax-table. Move init into declaration.
2770 (speedbar-mode-map): Rename from speedbar-key-map.
2771 Move init into declaration.
2772 (speedbar-file-key-map): Move init into declaration.
2773 (speedbar-mode): Use define-derived-mode.
2774 * recentf.el (recentf-mode): Don't run hook (or message) redundantly.
2775 * net/rcirc.el (rcirc-mode): Use run-mode-hooks.
2776 * emacs-lisp/chart.el (chart-mode-map): Rename from chart-map.
2777 (chart-face-list): Move initialization into declaration.
2778 (chart-mode): Use define-derived-mode.
2779 * calculator.el (calculator-mode-map): Move init into declaration.
2780 (calculator-mode): Use define-derived-mode.
2782 * mail/mail-utils.el (mail-strip-quoted-names): Make the regexp code
2783 work for nested comments.
2785 * progmodes/prolog.el: Use syntax-propertize. Further code cleanup.
2786 (prolog-use-prolog-tokenizer-flag): Change default when
2787 syntax-propertize can be used.
2788 (prolog-syntax-propertize-function): New var.
2789 (prolog-mode-variables): Move make-local-variable into `set'.
2790 Don't make comment-column local since we don't set it.
2791 Set comment-add (as it was in previous prolog.el). Use dolist.
2792 Set syntax-propertize-function.
2793 (prolog-mode, prolog-inferior-mode):
2794 Call prolog(-inferior)-menu directly, not through the mode-hook.
2795 (prolog-buffer-module, prolog-indent-level)
2796 (prolog-paren-is-the-first-on-line-p, prolog-paren-balance)
2797 (prolog-comment-limits, prolog-goto-comment-column):
2798 Use line-(end|beginning)-position.
2799 (prolog-build-prolog-command): Tighten up regexp.
2800 (prolog-consult-compile): Move make-local-variable into `set'.
2801 (prolog-consult-compile-filter, prolog-goto-next-paren)
2802 (prolog-help-on-predicate, prolog-clause-info)
2803 (prolog-mark-predicate): Don't let+setq.
2804 (prolog-indent-line): Use indent-line-to.
2805 Only call prolog-goto-comment-column if necessary.
2806 (prolog-indent-level): Use bobp.
2807 (prolog-first-pos-on-line): Remove, not used any more.
2808 (prolog-in-string-or-comment): Use syntax-ppss if available.
2809 (prolog-help-on-predicate): Use read-string.
2810 (prolog-goto-predicate-info): Simplify.
2811 (prolog-read-predicate): Use `default' rather than `initial'.
2812 (prolog-temporary-file): Use make-temp-file to close a security hole.
2813 (prolog-toggle-sicstus-sd): New command.
2814 (prolog-electric-underscore, prolog-variables-to-anonymous):
2815 Use dynamic-scoping as it was meant.
2816 (prolog-menu): Move menu definitions to top-level.
2817 Use a toggle-button for Sicstus's source debugger.
2818 Change "Code" to the more usual "Prolog", and hence change "Prolog"
2820 (prolog-inferior-menu): Reuse prolog-menu's help menu.
2821 Move other menu definition to top-level.
2823 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
2825 * doc-view.el (doc-view-open-text): Use meaningful text buffer
2826 name. Keep original document's directory as default-directory
2828 (doc-view-initiate-display): Fall back to normal mode when
2829 doc-view-mode cannot be enabled, also when extracting the document
2830 text into a separate buffer (bug#6446).
2832 * simple.el (shell-command): Don't error out if shell command
2833 buffer contains text with non-nil read-only property when erasing
2836 2011-01-13 Kim F. Storm <storm@cua.dk>
2838 * ido.el (ido-may-cache-directory): Move "too-big" check later.
2839 (ido-next-match, ido-prev-match): Fix stray reordering of matching
2840 items when cycling through the matches.
2842 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
2844 * dired-x.el (dired-omit-verbose): New defcustom that allows
2845 disabling the omit messages.
2846 (dired-omit-expunge): Use it.
2848 2011-01-13 Christian Ohler <ohler@gnu.org>
2850 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: New files.
2852 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
2854 * font-lock.el (font-lock-verbose): Default to nil.
2856 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
2858 * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
2859 (compose-mail): New arg RETURN-ACTION.
2860 (compose-mail-other-window, compose-mail-other-frame): Likewise.
2862 * mail/sendmail.el (mail-return-action): New var.
2863 (mail-mode): Make it buffer-local.
2864 (mail-bury): Obey it. Move special Rmail window handling to
2866 (mail, mail-setup): New arg RETURN-ACTION.
2867 (sendmail-user-agent-compose): Move from simple.el.
2869 * mail/rmail.el (rmail-mail-return): New function.
2870 (rmail-start-mail): Pass it to compose-mail.
2872 2011-01-12 Chong Yidong <cyd@stupidchicken.com>
2874 * menu-bar.el (menu-bar-custom-menu): Tweak Mule and Customize
2875 menus. Add menu item for customize-themes.
2877 * cus-theme.el (customize-themes):
2878 * emacs-lisp/package.el (package--list-packages):
2879 Use switch-to-buffer.
2881 2011-01-11 Johan Bockgård <bojohan@gnu.org>
2883 * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
2885 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
2887 * progmodes/prolog.el: Fix up coding convention and such.
2888 (prolog-indent-width): Use the same default as in
2889 previous prolog.el rather than tab-width which depends on which buffer
2890 is current when the file is loaded.
2891 (prolog-electric-newline-flag): Only enable if electric-indent-mode
2893 (prolog-emacs): Remove. Use (featurep 'xemacs) instead.
2894 (prolog-known-systems): Remove.
2895 (prolog-mode-syntax-table, prolog-inferior-mode-map):
2896 Move initialization into declaration.
2897 (prolog-mode-map): Move initialization into declaration.
2898 Remove system-specific mode-map vars, since they referred to the same
2900 (prolog-mode-variables): Obey the user's preference w.r.t
2901 adaptive-fill-mode. Prefer symbol-value to `eval'.
2902 (prolog-mode-keybindings-edit): Add compatibility bindings.
2903 (prolog-mode): Use define-derived-mode. Don't handle mercury here.
2904 (mercury-mode-map): New var.
2905 (mercury-mode, prolog-inferior-mode): Use define-derived-mode.
2906 (prolog-ensure-process, prolog-process-insert-string)
2907 (prolog-consult-compile): Use with-current-buffer.
2908 (prolog-guess-fill-prefix): Simplify data flow.
2909 (prolog-replace-in-string): New function to use instead of
2911 (prolog-enable-sicstus-sd): Don't abuse `eval'.
2912 (prolog-uncomment-region): Use `uncomment-region' when available.
2913 (prolog-electric-colon, prolog-electric-dash): Use `eolp'.
2914 (prolog-int-to-char, prolog-char-to-int): New functions to use instead
2915 of int-to-char and char-to-int.
2916 (prolog-mode-hook, prolog-inferior-mode-hook): Don't force font-lock.
2918 2011-01-11 Stefan Bruda <stefan@bruda.ca>
2920 * progmodes/prolog.el: Replace by a whole new file.
2922 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
2924 * subr.el (eval-after-load): Fix timing for features (bug#7769).
2925 (declare-function, undefined, insert-for-yank)
2926 (replace-regexp-in-string): Follow checkdoc's recommendations.
2928 2011-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2930 * calendar/diary-lib.el (diary-mode): Refresh *Calendar* after
2931 refreshing the diary buffer.
2933 2011-01-10 Ken Manheimer <ken.manheimer@gmail.com>
2935 * allout.el: Add 2011 to the file copyright.
2936 (allout-encrypt-string): Prevent encryption from adding an extra
2937 newline at the end of the topic body.
2938 (allout-version): Increment to 2.3.
2940 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
2942 * net/dbus.el (dbus-unregister-service): Complete doc.
2943 Fix call of dbus-error signal.
2944 (dbus-register-property): Use `dont-register' keyword.
2946 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
2948 * net/dbus.el (dbus-unregister-service): Translate returned
2949 integer into a symbol.
2950 (dbus-register-property): Use `dbus-register-service' to do the
2953 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2955 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
2956 Suggested by Joakim Verona.
2958 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
2960 * wid-edit.el (visibility): Replace :on-image and :off-image
2961 widget properties with :on-glyph and :off-glyph, for consistency
2962 with the `visibility' widget.
2963 (widget-toggle-value-create, widget-visibility-value-create):
2964 Merge into a single function `widget-toggle-value-create'.
2966 * cus-edit.el (custom-variable-value-create, custom-visibility)
2967 (custom-face-edit-value-create, custom-face-value-create):
2968 Replace :on-image and :off-image widget properties with :on-glyph and
2969 :off-glyph, for consistency with the `visibility' widget.
2971 2011-01-09 Andreas Schwab <schwab@linux-m68k.org>
2973 * net/ldap.el (ldap-search-internal): Don't use eval.
2975 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2977 * subr.el (read-char-choice): Use read-key.
2979 * custom.el (custom-safe-themes): Rename from
2980 custom-safe-theme-files. Add :risky tag.
2981 (load-theme, custom-theme-load-confirm): Save sha1 hashes to
2982 custom-safe-themes, not filenames. Suggested by Stefan Monnier.
2984 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2986 * tool-bar.el (tool-bar-setup): Remove Help button. Remove label
2987 from Search and add a label to Undo.
2989 * vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
2990 inappropriate buttons and adding :vert-only tags.
2992 * progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
2993 removal of Help tool-bar button. Remove Undo button for space.
2995 * info.el (info-tool-bar-map): Add :vert-only tags.
2997 2011-01-08 Tassilo Horn <tassilo@member.fsf.org>
2999 * doc-view.el (doc-view-mode-p): Check for png or imagemagick
3000 image backend support. Either of them is fine.
3002 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
3004 * subr.el (y-or-n-p): Doc fix.
3006 * custom.el (custom-safe-theme-files): New defcustom.
3007 (custom-theme-load-confirm): New function.
3008 (load-theme): Load theme using `load', confirming with
3009 custom-theme-load-confirm if necessary.
3011 * subr.el (read-char-choice): New function, factored out from
3012 dired-query and hack-local-variables-confirm.
3014 * dired-aux.el (dired-query):
3015 * files.el (hack-local-variables-confirm): Use it.
3017 * dired-aux.el (dired-compress-file):
3018 * files.el (abort-if-file-too-large, find-alternate-file)
3019 (set-visited-file-name, write-file, backup-buffer)
3020 (basic-save-buffer, basic-save-buffer-2, save-some-buffers)
3021 (delete-directory, revert-buffer, recover-file, kill-buffer-ask):
3022 Use new format string args for y-or-n-p and yes-or-no-p.
3024 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
3026 * progmodes/compile.el (compilation-error-regexp-alist-alist)
3027 [gcc-include]: Tighten file name match, add match for column
3029 [gnu]: Remove unused group.
3031 2011-01-08 Glenn Morris <rgm@gnu.org>
3033 * makefile.w32-in (EMACSOPT): Add --no-site-lisp.
3035 * makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
3037 2011-01-07 Sam Steingold <sds@gnu.org>
3039 * w32-fns.el (w32-shell-name): Use `shell-file-name' instead of
3040 the `explicit-shell-file-name' because that is the
3041 non-interactive shell.
3043 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
3045 * subr.el (y-or-n-p): Accept format string args.
3047 2011-01-07 Glenn Morris <rgm@gnu.org>
3049 * Makefile.in (EMACSOPT): Add --no-site-lisp.
3051 2011-01-06 Ken Manheimer <ken.manheimer@gmail.com>
3053 * allout.el (allout-back-to-current-heading): Ensure return to
3054 the visible containing topic, rather than a collapsed one.
3055 (allout-view-change-hook): Remove hook that was deprecated long ago.
3056 (allout-exposure-change-hook): Remove documentation remarks
3057 concerning removed allout-view-change-hook.
3058 (allout-flag-region): Remove invocation of and documentation
3059 remarks concerning allout-view-change-hook.
3061 2011-01-06 Glenn Morris <rgm@gnu.org>
3063 * vc/vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time)
3064 (vc-bzr-annotate-extract-revision-at-line):
3065 Handle authors with embedded spaces. (Bug#7792)
3067 2011-01-05 Tassilo Horn <tassilo@member.fsf.org>
3069 * doc-view.el (doc-view-image-width): New variable.
3070 (doc-view-enlarge, doc-view-insert-image): Prefer imagemagick
3071 backend for PNG images, and do dynamic rescaling instead of
3072 reconverting the whole doc.
3074 2011-01-05 Glenn Morris <rgm@gnu.org>
3076 * emacs-lisp/rx.el (rx-repeat): Replace CL function.
3078 2011-01-04 Ken Manheimer <ken.manheimer@gmail.com>
3080 * allout.el: Reconcile with changes in line movement behavior for
3081 long text lines that cross more than a single physical window
3082 line, ie when truncate-lines is nil.
3083 (allout-next-visible-heading): Provide for change in line-move
3084 behavior on long lines when truncate-lines is nil. In that case,
3085 line-move can wind up on the same textual line when it moves to
3086 the next window line, and moving to the bullet position after the
3087 move yields zero advancement. Add logic to detect and compensate
3088 for the lack of progress.
3089 (allout-current-topic-collapsed-p): move-end-of-line respect for
3090 field boundaries is different when operating with body lines
3091 shorter than window width versus ones greater than window width,
3092 which can yield false negatives in this function. Avoid
3093 difference by applying move-end-of-line while field-text-motion is
3096 2011-01-04 Glenn Morris <rgm@gnu.org>
3098 * textmodes/rst.el (rst-compile-toolsets):
3099 Add pdf and s5 to option alist.
3101 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
3103 * net/dbus.el (dbus-register-property): Add optional parameter
3104 dont-register-service. Updated docstring accordingly.
3106 2011-01-04 Andreas Schwab <schwab@linux-m68k.org>
3108 * textmodes/rst.el (rst-compile-pdf-preview)
3109 (rst-compile-slides-preview): Remove extra line.
3111 2011-01-04 Glenn Morris <rgm@gnu.org>
3113 * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
3114 Add `pdf' and `s5' entries. Use `prog.py' if found, otherwise
3115 default to `prog' without a .py extension.
3116 (rst-compile-pdf-preview, rst-compile-slides-preview):
3117 Use program names from rst-compile-toolsets, rather than hard-coding.
3118 (rst-portable-mark-active-p): Fix presumed typo.
3120 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3122 * term/w32-win.el (dynamic-library-alist): Set up correctly for
3123 libpng versions both before and after 1.4.0. (Bug#7716)
3125 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3127 * time.el (display-time-mode): Mention display-time-interval in
3128 the doc string. (Bug#7713)
3130 2011-01-02 Kenichi Handa <handa@m17n.org>
3132 * mail/rmailmm.el (rmail-mime-parse): Perform parsing in
3133 condition-case and return an error message string if something
3135 (rmail-show-mime): Adjust for the above change. Insert the
3136 header by rmail-mime-insert-header.
3138 2011-01-02 Kenichi Handa <handa@m17n.org>
3140 * mail/rmailmm.el: New key bindings for rmail-mime-next-item,
3141 rmail-mime-previous-item, and rmail-mime-toggle-hidden.
3142 (rmail-mime-mbox-buffer)
3143 (rmail-mime-view-buffer, rmail-mime-coding-system): New variables.
3144 (rmail-mime-entity): Argument changed. All codes handling an
3145 entity object are changed.
3146 (rmail-mime-entity-header, rmail-mime-entity-body): Adjust for
3148 (rmail-mime-entity-children, rmail-mime-entity-handler)
3149 (rmail-mime-entity-tagline): New functions.
3150 (rmail-mime-message-p): New function.
3151 (rmail-mime-save): Bind rmail-mime-mbox-buffer.
3152 (rmail-mime-entity-segment, rmail-mime-next-item)
3153 (rmail-mime-previous-item, rmail-mime-shown-mode)
3154 (rmail-mime-hidden-mode, rmail-mime-raw-mode)
3155 (rmail-mime-toggle-raw, rmail-mime-toggle-hidden)
3156 (rmail-mime-insert-tagline, rmail-mime-insert-header):
3158 (rmail-mime-text-handler): Call rmail-mime-insert-text.
3159 (rmail-mime-insert-decoded-text): New function.
3160 (rmail-mime-insert-text): Call rmail-mime-insert-decoded-text.
3161 (rmail-mime-insert-image): Argument changed. Caller changed.
3162 (rmail-mime-image): Call rmail-mime-toggle-hidden.
3163 (rmail-mime-set-bulk-data): New function.
3164 (rmail-mime-insert-bulk): Argument changed.
3165 (rmail-mime-multipart-handler): Return t.
3166 (rmail-mime-process-multipart): Argument changed.
3167 Handle "multipart/alternative" here.
3168 (rmail-mime-process): Argument changed.
3169 (rmail-mime-parse): Bind rmail-mime-mbox-buffer.
3170 (rmail-mime-insert): Argument changed. Handle raw display mode.
3171 (rmail-mime): Argument changed. Handle toggling of raw display
3173 (rmail-show-mime): Bind rmail-mime-mbox-buffer and
3174 rmail-mime-view-buffer.
3175 (rmail-insert-mime-forwarded-message): Likewise.
3176 (rmail-search-mime-message): Likewise. Don't bind rmail-buffer.
3178 * mail/rmail.el (rmail-show-message-1): If rmail-enable-mime is
3179 non-nil, handle the header in rmail-show-mime-function.
3181 2011-01-02 Leo <sdl.web@gmail.com>
3183 * help-fns.el (describe-variable): Fix previous change.
3185 2011-01-02 Juri Linkov <juri@jurta.org>
3187 * isearch.el (isearch-lazy-highlight-error): New variable.
3188 (isearch-lazy-highlight-new-loop): Compare `isearch-error' and
3189 `isearch-lazy-highlight-error'. Set `isearch-lazy-highlight-error'
3190 to the current value of `isearch-error' (Bug#7468).
3192 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
3194 * help-fns.el (describe-variable): Don't emit trailing whitespace
3197 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
3199 * textmodes/rst.el (rst-compile-pdf-preview)
3200 (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
3202 2011-01-02 Kevin Gallagher <Kevin.Gallagher@boeing.com>
3204 * emulation/edt-mapper.el: Override mapping of function keys so
3205 that the later call to read-key-sequence works.
3207 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3209 * mail/smtpmail.el (smtpmail-send-it): Write queued mail body with
3210 Unix EOLs. (Bug#7589)
3212 2011-01-02 Leo <sdl.web@gmail.com>
3214 * eshell/em-hist.el (eshell-previous-matching-input): Signal error
3215 if point is not behind eshell-last-output-end (Bug#7585).
3217 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
3219 * files.el (file-local-variables-alist):
3220 Make permanent-local (bug#7767).
3222 2011-01-02 Glenn Morris <rgm@gnu.org>
3224 * version.el (emacs-copyright): Set short copyright year to 2011.
3226 2011-01-02 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
3228 * mail/mail-utils.el (mail-strip-quoted-names): Avoid clobbering
3229 an existing temp buffer. (Bug#7746)
3231 2011-01-02 Glenn Morris <rgm@gnu.org>
3233 * mail/mail-utils.el (mail-mbox-from): Handle From: headers with
3234 multiple addresses. (Bug#7760)
3236 2011-01-01 Ken Manheimer <ken.manheimer@gmail.com>
3238 * allout.el (allout-auto-fill): Do not infinitely recurse - use
3239 do-auto-fill if everything points back to allout-auto-fill.
3240 (allout-mode-deactivate-hook): Declare obsolete, in favor of
3241 standard-formed minor-mode deactivate hook, allout-mode-off-hook.
3243 2010-12-31 Michael Albinus <michael.albinus@gmx.de>
3245 * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
3248 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3250 * doc-view.el (doc-view-set-doc-type): New function refactored
3252 (doc-view-fallback-mode): New function.
3253 (doc-view-mode): Use it.
3254 (doc-view-mode-maybe): New function that checks if doc-view-mode
3255 can be used and falls back to the next best mode otherwise.
3257 * files.el (auto-mode-alist): Use doc-view-mode-maybe for PDF,
3258 DVI, OpenDocument, and MS Office files.
3260 2010-12-30 Andreas Schwab <schwab@linux-m68k.org>
3262 * emacs-lisp/rx.el (rx-syntax): Fix typo.
3264 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3266 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
3267 on a copy of auto-mode-alist, because that deletes with side
3270 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3272 * doc-view.el (doc-view-mode, doc-view-toggle-display):
3273 Use normal-mode without doc-view-mode bindings in auto-mode-alist as
3274 fallback instead of hard coding fundamental mode.
3276 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3278 * doc-view.el (doc-view-doc->txt): Handle OpenDocument (or MS
3279 Office) files also for searching.
3281 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3283 * doc-view.el: Implement viewing of OpenDocument (and Microsoft
3284 Office) files. Not yet enabled via auto-mode-list.
3285 (doc-view-unoconv-program): New custom variable.
3286 (doc-view-mode-p): Handle new odf document type.
3287 (doc-view-odf->pdf): New conversion function.
3288 (doc-view-convert-current-doc): Call it for odf files.
3289 (doc-view-mode): Recognize newly supported file extensions.
3291 2010-12-30 Michael Albinus <michael.albinus@gmx.de>
3293 * net/tramp.el (tramp-default-method-alist)
3294 (tramp-default-user-alist)
3295 (tramp-local-host-regexp, tramp-prefix-domain-format)
3296 (tramp-prefix-domain-regexp): Set tramp-autoload cookie.
3299 * net/tramp-gvfs.el:
3301 * net/tramp-imap.el:
3303 * net/tramp-smb.el: Add tramp-autoload cookie for initialisation
3304 code of `tramp-default-method-alist' and `tramp-default-user-alist'.
3306 2010-12-29 Karl Fogel <kfogel@red-bean.com>
3308 * saveplace.el (save-place-alist-to-file): Save list sorted and
3309 pretty-printed, so that it is mergeable by line-based text merging,
3310 as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
3312 2010-12-28 Ken Manheimer <ken.manheimer@gmail.com>
3314 * allout.el (allout-v18/19-file-var-hack): Obsolete, remove.
3315 (allout-mode): Argument "toggle" => "force".
3316 Refine the docstring.
3317 Remove special provisions for reactivation, besides the 'force'
3319 Consolidate layout provisions coce directly into the activation
3320 condition branch, now that we've removed those provisions.
3321 (allout-unload-function): Explicitly activate the mode before
3322 deactivating, if it's initially deactivated.
3323 (allout-set-buffer-multibyte): Properly prevent byte-compiler
3324 warnings for version of function used only where
3325 set-buffer-multibyte is unavailable.
3327 2010-12-28 Chong Yidong <cyd@stupidchicken.com>
3329 * tool-bar.el (tool-bar-setup): Remove :enable conditions, which
3330 are handled by the menu-bar entries. As before, don't use
3331 :visibile to avoid changing the tool-bar.
3333 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
3335 * net/secrets.el (secrets-delete-alias): New defun.
3337 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
3339 * net/tramp.el (tramp-default-user-alist): Do not add "ssh" based
3340 methods, otherwise ~/.ssh/config would be ignored.
3342 2010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
3344 * emacs-lisp/rx.el: Make it a superset of sregex.
3345 (rx-constituents): Add `any => "."', mark `repeat' as taking any number
3346 of args, add `regex' alias.
3347 (rx-info): Add arg to distinguish head and standalone forms.
3348 (rx-check, rx-form): Pass the corresponding arg.
3350 (rx-repeat): Make it work for any number of args.
3351 (rx-syntax): Make it accept syntax chars as is.
3352 * obsolete/sregex.el: Move from emacs-lisp/.
3353 * emacs-lisp/re-builder.el: Remove sregex support.
3354 * emacs-lisp/edebug.el (sregexq, rx): Remove redundant defs.
3356 2010-12-25 Eli Zaretskii <eliz@gnu.org>
3358 * mouse.el (mouse-yank-primary): On MS-Windows, try the (emulated)
3359 PRIMARY first, then the clipboard. (Bug#7699)
3361 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
3363 * emacs-lisp/bytecomp.el (byte-compile-output-docform): Fix up use of
3366 2010-12-21 Chong Yidong <cyd@stupidchicken.com>
3368 * help-fns.el (find-lisp-object-file-name): Locate .emacs from
3369 .emacs.elc (Bug#7530).
3371 * wid-edit.el (widget-image-find): Remove bogus :ascent spec from
3372 image spec (Bug#7480).
3374 2010-12-21 Daiki Ueno <ueno@unixuser.org>
3376 * obsolete/pgg-parse.el, obsolete/pgg-pgp5.el, obsolete/pgg-pgp.el,
3377 * obsolete/pgg-gpg.el, obsolete/pgg-def.el, obsolete/pgg.el:
3380 2010-12-20 Leo <sdl.web@gmail.com>
3382 * dnd.el (dnd-get-local-file-name): Unhex of file name shall
3383 always be performed (Bug#7680).
3385 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
3387 * menu-bar.el (menu-bar-kill-ring-save): Make obsolete.
3388 (menu-bar-edit-menu): Bind "Copy" to kill-ring-save. Don't use
3391 * color.el: Move from gnus/.
3393 * vc/diff.el (diff-better-file-name): Function deleted.
3394 abbreviating file names causes problems with shell-quote-argument.
3395 (diff-no-select): Just use expand-file-name.
3397 * tool-bar.el (tool-bar--image-expression): New function.
3398 (tool-bar-local-item, tool-bar--image-exp): Use it.
3399 (tool-bar-setup): Initialize tool-bar-separator-image-expression.
3400 Use :enable instead of :visible to avoid changing the tool-bar
3401 configuration unnecessarily.
3403 * info.el (info-tool-bar-map): Add separators.
3405 2010-12-17 Ken Brown <kbrown@cornell.edu>
3407 * loadup.el: Use version numbers in Cygwin build.
3409 2010-12-17 Ryan Twitchell <metatheorem@gmail.com> (tiny change)
3411 * ido.el (ido-file-internal): Ask for confirmation before
3412 overwriting an existing file (Bug#1238).
3414 2010-12-16 Chong Yidong <cyd@stupidchicken.com>
3416 * tool-bar.el (tool-bar-setup): Add separators.
3418 * menu-bar.el (featurep): Use menu-bar-separator.
3420 2010-12-16 Ken Manheimer <ken.manheimer@gmail.com>
3422 Migrate allout encryption provisions from pgg to epg.
3424 * allout.el (allout-toggle-current-subtree-encryption)
3425 (allout-toggle-subtree-encryption): Adjust docstrings to reflect
3426 defaulting policy and other changes. Change fetch-pass to keymode-cue,
3427 for simpler universal argument interpretation.
3428 (allout-toggle-subtree-encryption): Adjust docstring to describe
3429 changed encryption provisions. Change fetch-pass to keymode-cue, for
3430 simpler universal argument interpretation. Remove provisions for
3431 handling key type and identity - they'll all be within
3432 allout-encrypt-string or epg/epg or even contained all the way in gpg.
3433 (allout-encrypt-string): Include keymode-cue, for optionally prompting
3434 for keypair recipients (universal argument > 1) and, in addition,
3435 associating the specified recipients with the outline (universal
3436 argument > 4) using a file local variable setting for
3437 'epa-file-encrypt-to'.
3438 Require epa, for recipients handling.
3439 Change how regexp filtering elements are named.
3440 Describe the problem with caching of incorrect symmetric-decryption
3442 Use the epa-passphrase-callback-function, in case the user is using
3444 Support saving of the selected keypair recipients when invoked with a
3446 Remove obsolete arguments 'fetch-pass', 'target-cache-id', 'retried'.
3448 Establish epg-context with armoring and default epg-protocol.
3449 Remove all passphrase cache, verification, and hinting code.
3450 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling):
3451 No longer used, delete.
3452 (allout-mode): Adjust docstring to describe changed encryption
3453 provisions. Describe the problem with caching of incorrect
3454 symmetric-decryption keys.
3455 (allout-obtain-passphrase, allout-epg-passphrase-callback-function)
3456 (allout-make-passphrase-state, allout-passphrase-state-passphrase)
3457 (allout-encrypted-key-info, allout-update-passphrase-mnemonic-aids)
3458 (allout-get-encryption-passphrase-verifier, allout-verify-passphrase):
3461 2010-12-16 Daiki Ueno <ueno@unixuser.org>
3463 * epa-file.el (epa-file-select-keys): Accept 'silent to inhibit
3464 key selection prompt; make 'silent as default (Bug#7487).
3466 2010-12-16 Leo <sdl.web@gmail.com>
3468 * eshell/eshell.el (eshell-directory-name):
3469 Use locate-user-emacs-file (Bug#7578).
3471 2010-12-15 Glenn Morris <rgm@gnu.org>
3473 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
3475 2010-12-15 Jari Aalto <jari.aalto@cante.net>
3476 Scott Evans <gse@antisleep.com>
3478 * rect.el (rectange--default-line-number-format)
3479 (rectangle-number-line-callback): New functions.
3480 (rectangle-number-lines): New command, bound to C-x r N (Bug#4382).
3482 2010-12-15 Chong Yidong <cyd@stupidchicken.com>
3484 * rect.el (operate-on-rectangle-lines, string-rectangle-string):
3485 Delete unused variables.
3486 (move-to-column-force): Remove function obsolete since 21.2.
3488 2010-12-14 Michael Albinus <michael.albinus@gmx.de>
3490 * net/tramp.el (tramp-temp-buffer-file-name): Make it permanent-local.
3491 (tramp-handle-insert-file-contents): Do not set permanent-local
3494 * net/tramp-cache.el (tramp-persistency-file-name):
3495 Use `locate-user-emacs-file' if fboundp.
3497 * net/tramp-sh.el (tramp-methods): Add "ksu".
3498 (tramp-default-user-alist): Add "ksu". Use `regexp-opt' for
3501 2010-12-14 Glenn Morris <rgm@gnu.org>
3503 * progmodes/js.el: Doc't require font-lock, etags, or easymenu.
3504 (find-tag-marker-ring): Declare.
3505 (js-find-symbol): Require etags.
3507 * mail/sendmail.el: Don't require rmail or mailalias when compiling.
3509 (mail-alias-file): Don't autoload. Doc fix.
3510 (mail-bury-selects-summary, mail-send-nonascii): Don't autoload.
3511 (mail-mailer-swallows-blank-line): Default to nil. Doc fix.
3512 Mark as obsolete, and risky.
3513 (mail-setup): Simplify.
3515 * mail/mailalias.el (build-mail-aliases): Make it interactive.
3516 * mail/sendmail.el (build-mail-aliases): Update autoload.
3518 * dired.el (dired-trivial-filenames, dired-chown-program)
3519 (dired-auto-revert-buffer): Remove autoload cookies.
3520 * mail/sendmail.el (mail-recover-1): Require 'dired.
3522 * dired.el (dired-subdir-switches, dired-chown-program)
3523 (dired-use-ls-dired, dired-chmod-program, dired-touch-program):
3524 Make into defcustoms.
3525 (dired-chown-program): Simplify initialization.
3527 * mail/mail-utils.el: No need to require lisp-mode, it's in loadup.
3529 2010-12-13 Romain Francoise <romain@orebokech.com>
3531 * net/gnutls.el (gnutls-negotiate): Fix setting of default trustfiles.
3533 2010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3535 * net/netrc.el (netrc-point-at-eol): Remove the unused
3536 netrc-point-at-old and netrc-bound-and-true-p bindings.
3537 (netrc-parse): Cache the netrc contents.
3539 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3541 * subr.el (posn-col-row): Evaluate header-line-format in the
3542 context of the POSITION window's buffer.
3544 2010-12-13 Glenn Morris <rgm@gnu.org>
3546 * subr.el (member-ignore-case, run-mode-hooks, insert-for-yank-1)
3547 (with-silent-modifications): Doc fixes.
3549 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
3551 * net/tramp.el (tramp-action-password, tramp-process-actions):
3552 Revert previous from. Use `save-restriction'.
3554 2010-12-13 Stephen Berman <stephen.berman@gmx.net>
3556 * calendar/diary-lib.el (diary-list-sexp-entries):
3557 Handle case of no newline at end of file. (Bug#7536)
3559 2010-12-13 Glenn Morris <rgm@gnu.org>
3561 * mail/smtpmail.el (smtpmail-send-it): Revert previous change.
3563 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
3565 * net/tramp.el (tramp-action-password): Delete region, do not narrow.
3566 (tramp-process-actions): Do not widen.
3568 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3569 Protect buffer-modified value. (Bug#7557)
3571 2010-12-13 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
3573 * log-edit.el (log-edit-changelog-entries):
3574 Regexp quote filename. (Bug#7505)
3576 2010-12-13 Tom Breton <tehom@panix.com>
3578 * cus-edit.el (custom-save-all):
3579 Bind print-length and print-level to nil. (Bug#7581)
3581 2010-12-13 Glenn Morris <rgm@gnu.org>
3583 * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
3584 Run hooks to update menu contents. (Bug#7586)
3586 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
3587 file names, for the sake of MS Windows. (Bug#7588)
3589 2010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3591 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
3592 empty lines without a leading space.
3594 2010-12-13 Leo <sdl.web@gmail.com>
3596 * dired-aux.el (dired-do-redisplay): Postpone dired-after-readin-hook
3597 while mapping over marks (Bug#6810).
3599 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3601 * image-dired.el (image-dired-db-file)
3602 (image-dired-temp-image-file, image-dired-gallery-dir)
3603 (image-dired-temp-rotate-image-file): Set default values relative
3604 to image-dired-dir (Bug#7518).
3606 2010-12-13 Lawrence Mitchell <wence@gmx.li>
3608 * format.el (format-decode-run-method): Pass args FROM and TO, not
3609 point-min and point-max, to shell-command-on-region (Bug#7488).
3611 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3613 * frame.el (blink-cursor-mode): Make default t for ns.
3615 2010-12-13 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
3617 * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
3619 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3621 * comint.el (comint-dynamic-list-input-ring)
3622 (comint-dynamic-complete-filename)
3623 (comint-replace-by-expanded-filename)
3624 (comint-dynamic-simple-complete)
3625 (comint-dynamic-list-filename-completions)
3626 (comint-dynamic-list-completions): Doc fix (Bug#7499).
3628 * subr.el (posn-x-y, posn-object-x-y, posn-object-width-height):
3631 2010-12-13 Martin Rudalics <rudalics@gmx.at>
3633 * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil
3636 2010-12-13 W. Martin Borgert <debacle@debian.org> (tiny change)
3638 * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode.
3641 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3643 * files.el (file-relative-name): Handle UNC file names on
3644 DOS/Windows. (Bug#4674)
3646 2010-12-13 Daiki Ueno <ueno@unixuser.org>
3648 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
3649 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
3650 (epg-context-set-passphrase-callback): Mention that the callback
3651 is not called when used with GnuPG 2.x.
3653 2010-12-13 Glenn Morris <rgm@gnu.org>
3655 * ps-print.el (ps-line-lengths-internal, ps-nb-pages):
3656 Ensure ps-footer-font-size-internal is initialized.
3657 Call ps-get-page-dimensions before trying to use ps-font-for-text.
3659 2010-12-13 Kenichi Handa <handa@m17n.org>
3661 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
3662 within condition-case.
3663 (rmail-show-mime): Don't use condition-case.
3664 (rmail-search-mime-message): New function.
3665 (rmail-search-mime-message-function): Set to
3666 rmail-search-mime-message.
3668 2010-12-13 Leo <sdl.web@gmail.com>
3670 * ido.el (ido-common-initialization): New function. (bug#3274)
3672 (ido-completing-read): Call it.
3674 2010-12-12 Karl Fogel <kfogel@red-bean.com>
3676 * bookmark.el (bookmark-name-from-full-record): Rename back to
3677 this original name from `bookmark-name-from-record' reverting part
3678 of 2010-12-08T08:09:27Z!kfogel@red-bean.com / kfogel@red-bean.com-20101208080927-5j9jqnb2xvcw4ogm.
3679 As Drew Adams pointed out, there was no reason to cause churn for
3680 third-party callers. (Bug#7609)
3682 2010-12-12 Alan Mackenzie <acm@muc.de>
3684 * progmodes/cc-engine.el (c-forward-type): Before scanning a
3685 template arglist, check that the current language supports this.
3687 2010-12-11 Glenn Morris <rgm@gnu.org>
3689 * vc/vc-bzr.el (vc-bzr-state-heuristic): Also check that the executable
3690 state of the file matches. (Bug#7544)
3691 (vc-bzr-register, vc-bzr-checkin)
3692 (vc-bzr-annotate-extract-revision-at-line): Doc fixes.
3693 (vc-directory-exclusion-list): Remove unnecessary eval-after-load.
3695 * textmodes/sgml-mode.el (sgml-xml-guess): Add .xhtml extension.
3697 2010-12-11 Karel Klíč <kklic@redhat.com>
3699 * files.el (auto-mode-alist): Use html-mode for *.xhtml. (Bug#7606)
3701 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3703 Derive from prog-mode, use derived-mode-p, and fix up various
3704 minor style issues in lisp/progmodes.
3706 * progmodes/vhdl-mode.el (vhdl-mode):
3707 * progmodes/verilog-mode.el (verilog-mode):
3708 * progmodes/vera-mode.el (vera-mode):
3709 * progmodes/sql.el (sql-mode):
3710 * progmodes/scheme.el (scheme-mode):
3711 * progmodes/perl-mode.el (perl-mode):
3712 * progmodes/octave-inf.el (inferior-octave-mode):
3713 * progmodes/autoconf.el (autoconf-mode):
3714 * progmodes/m4-mode.el (m4-mode):
3715 * progmodes/inf-lisp.el (inferior-lisp-mode):
3716 * progmodes/idlwave.el (idlwave-mode):
3717 * progmodes/icon.el (icon-mode):
3718 * progmodes/idlw-help.el (idlwave-help-mode):
3719 * progmodes/dcl-mode.el (dcl-mode):
3720 * progmodes/idlw-shell.el (idlwave-shell-mode):
3721 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
3722 (ebrowse-member-mode, ebrowse-electric-position-mode):
3723 Use define-derived-mode.
3725 * progmodes/xscheme.el (exit-scheme-interaction-mode)
3726 (xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
3727 (xscheme-debugger-mode-p, xscheme-send-string-1):
3728 * progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
3729 (tcl-load-file, tcl-restart-with-file):
3730 * progmodes/ps-mode.el (ps-run-running):
3731 * progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
3732 * progmodes/js.el (js--get-all-known-symbols):
3733 * progmodes/inf-lisp.el (inferior-lisp-proc):
3734 * progmodes/idlwave.el (idlwave-beginning-of-statement)
3735 (idlwave-template, idlwave-update-buffer-routine-info)
3736 (idlwave-update-current-buffer-info)
3737 (idlwave-get-routine-info-from-buffers, idlwave-choose)
3738 (idlwave-scan-class-info, idlwave-fix-keywords)
3739 (idlwave-list-buffer-load-path-shadows):
3740 * progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
3741 (idlwave-toolbar-remove):
3742 * progmodes/idlw-shell.el (idlwave-shell-save-and-action)
3743 (idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
3744 (idlwave-shell-menu-def):
3745 * progmodes/idlw-complete-structtag.el
3746 (idlwave-prepare-structure-tag-completion):
3747 * progmodes/gud.el (gud-set-buffer):
3748 * progmodes/f90.el (f90-backslash-not-special):
3749 * progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
3751 * progmodes/xscheme.el (xscheme-start)
3752 (local-set-scheme-interaction-buffer, scheme-interaction-mode):
3753 * progmodes/which-func.el (which-function):
3754 * progmodes/vhdl-mode.el (vhdl-set-style):
3755 * progmodes/verilog-mode.el (verilog-set-compile-command)
3756 (verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
3757 (verilog-set-define, verilog-auto-reeval-locals):
3758 * progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
3759 * progmodes/simula.el (simula-mode):
3760 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
3761 * progmodes/python.el (python-check, python-mode):
3762 * progmodes/prolog.el (prolog-mode-variables):
3763 * progmodes/gud.el (gud-tooltip-activate-mouse-motions):
3764 * progmodes/ebrowse.el (ebrowse-view-file-other-frame):
3765 * progmodes/delphi.el (delphi-mode):
3766 * progmodes/cc-styles.el (c-setup-paragraph-variables):
3767 * progmodes/cc-mode.el (c-basic-common-init, c-common-init)
3768 (c-font-lock-init): Move make-local-variable to their setq.
3770 * progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
3771 (vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
3773 * progmodes/sh-script.el (sh-require-final-newline): Remove.
3774 (sh-set-shell): Don't set require-final-newline since it's already done
3776 * progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
3777 since we never set it.
3778 * progmodes/ebrowse.el (ebrowse-set-tree-indentation):
3779 Use read-string and standard prompt.
3780 * progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
3781 * progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
3782 (meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
3783 (meta-common-mode-map): Rename from meta-mode-map.
3784 Remove C-m binding, which is a user preference, not mode specific.
3785 (meta-common-mode): New major mode; replace meta-common-initialization.
3786 * progmodes/js.el (js-mode): Call syntax-propertize rather than messing
3787 around with font-lock.
3788 * progmodes/etags.el (select-tags-table-mode):
3789 Derive from special-mode.
3790 * progmodes/octave-mod.el (octave-mode):
3791 * progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
3792 (gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
3793 (gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
3794 Let define-derived-mode do its job.
3795 * progmodes/cpp.el (cpp-edit-mode-map):
3796 Move initialization into declaration.
3797 (cpp-edit-mode): Use define-derived-mode.
3798 (cpp-edit-load): Use derived-mode-p.
3799 * progmodes/mixal-mode.el (mixal-mode):
3800 * progmodes/f90.el (f90-mode):
3801 * progmodes/cfengine.el (cfengine-mode): Don't bother setting
3802 require-final-newline since prog-mode does it already.
3803 * progmodes/cc-cmds.el (c-update-modeline): Use match-string.
3804 * progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
3805 * progmodes/antlr-mode.el: Require cc-mode upfront.
3806 (antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
3808 (antlr-directory-dependencies, antlr-show-makefile-rules):
3810 (antlr-language-option): Don't assume point-min==1.
3811 (antlr-mode): Use define-derived-mode.
3812 * progmodes/ada-mode.el: Use derived-mode-p.
3813 (ada-mode): Use define-derived-mode.
3814 Use hack-local-variables-hook.
3816 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3818 * textmodes/texinfo.el (texinfo-mode-map): Bind texinfo-insert-@end.
3819 (texinfo-mode): Don't disable adaptive-fill-mode.
3820 (texinfo-insert-block): Adjust cursor placement for blocks with arg.
3821 (texinfo-insert-@end, texinfo-insert-braces, texinfo-insert-@code)
3822 (texinfo-insert-@dfn, texinfo-insert-@email, texinfo-insert-@emph)
3823 (texinfo-insert-@example, texinfo-insert-@file, texinfo-insert-@item)
3824 (texinfo-insert-@kbd, texinfo-insert-@node, texinfo-insert-@noindent)
3825 (texinfo-insert-@quotation, texinfo-insert-@samp)
3826 (texinfo-insert-@strong, texinfo-insert-@table, texinfo-insert-@var)
3827 (texinfo-insert-@uref): Use define-skeleton.
3828 (texinfo-insert-@-with-arg): Delete.
3830 2010-12-10 Eli Zaretskii <eliz@gnu.org>
3832 * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
3833 nil, do quote archive member names. (Bug#6144)
3835 2010-12-10 Glenn Morris <rgm@gnu.org>
3837 * files.el (diff-no-select): Declare.
3839 * mail/emacsbug.el (report-emacs-bug): Use mail-user-agent properties.
3840 (report-emacs-bug-create-existing-bugs-buffer): Avoid free variables.
3842 * comint.el (comint-input-ring-file-name): Doc fix.
3844 2010-12-09 Eli Zaretskii <eliz@gnu.org>
3846 * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
3848 (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>:
3849 Use them instead of `nil' and `>', respectively.
3850 (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
3852 (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
3853 and menu-bar-positive-p instead of `nil' and `>', respectively.
3856 2010-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3858 * whitespace.el (whitespace-newline-mode): Code fix.
3860 2010-12-09 Glenn Morris <rgm@gnu.org>
3862 * play/landmark.el (lm-print-y,s,noise-int, lm-print-y,s,noise):
3863 Rename functions without commas, update callers.
3865 2010-12-08 Jeff Dairiki <dairiki@dairiki.org> (tiny change)
3867 * whitespace.el (whitespace-cleanup-region):
3868 Clean up spaces before tabs. (Bug#7582)
3870 2010-12-08 Karl Fogel <kfogel@red-bean.com>
3872 * bookmark.el: Adjust parameter names and doc strings to resolve
3873 confusion over whether "bookmark" meant a bookmark name or a
3874 bookmark record. Along the way, shorten one function's name for
3875 similar reasons. (Issue #7548)
3876 (bookmark-name-from-record): New name for
3877 `bookmark-name-from-full-record'. All callers changed.
3878 (bookmark-get-bookmark, bookmark-get-bookmark-record)
3879 (bookmark-default-annotation-text, bookmark-prop-get, bookmark-prop-set)
3880 (bookmark-get-annotation, bookmark-set-annotation)
3881 (bookmark-get-filename, bookmark-set-filename)
3882 (bookmark-get-position, bookmark-set-position)
3883 (bookmark-get-front-context-string, bookmark-set-front-context-string)
3884 (bookmark-get-rear-context-string, bookmark-set-rear-context-string)
3885 (bookmark-get-handler, bookmark-edit-annotation, bookmark--jump-via)
3886 (bookmark-handle-bookmark, bookmark-location, bookmark-show-annotation):
3887 Rename `bookmark' parameter to `bookmark-name-or-record', to
3888 clearly show its role, and shorten or adjust doc strings accordingly.
3889 (bookmark-set-name): Same, and pass the parameter directly to
3890 `bookmark-get-bookmark' instead of redundantly doing the callee's work.
3891 (bookmark-default-annotation-text, bookmark-send-edited-annotation)
3892 (bookmark-relocate, bookmark-insert-location, bookmark-insert)
3893 (bookmark-delete): Rename `bookmark' parameter to `bookmark-name',
3894 and in some cases shorten doc string accordingly.
3895 (bookmark-rename): Change `old' and `new' parameters to `old-name'
3896 and `new-name', and adjust an internal variable to avoid confusion.
3897 (bookmark-jump, bookmark-jump-noselect): Clarify `bookmark'
3898 parameter in doc string.
3900 2010-12-08 Glenn Morris <rgm@gnu.org>
3902 * progmodes/gdb-mi.el (gdb): Try to initialize comint input history
3903 from gdb's history file. (Bug#7575)
3905 * mail/emacsbug.el (report-emacs-bug):
3906 Try to handle some other mail clients.
3908 2010-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3910 * files.el (dir-locals-collect-variables): Don't let errors stop us.
3911 Use string-prefix-p.
3912 (file-name-version-regexp): New var.
3913 (file-name-sans-versions):
3914 * jka-cmpr-hook.el (jka-compr-build-file-regexp): Use it,
3915 (jka-compr-get-compression-info): Use dolist.
3916 (jka-compr-compression-info-list): Don't bother specifying
3917 version/backup regexps.
3919 2010-12-07 Tassilo Horn <tassilo@member.fsf.org>
3921 * simple.el (just-one-space): Make argument n default to 1 if
3924 2010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3926 * electric.el (electric-indent-post-self-insert-function):
3927 Delete trailing newlines even if we don't reindent.
3929 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3931 * minibuffer.el (completion-at-point): Remove the `arg'.
3932 * bindings.el (complete-symbol): Move back from minibuffer.el.
3934 2010-12-06 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3936 * simple.el (just-one-space): Delete newlines for negative arg.
3938 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3940 * ansi-color.el (ansi-color-unfontify-region): Replace by trivial def.
3941 (ansi-color-filter-apply): Simplify.
3942 (ansi-color-apply): Use `font-lock-face' rather than `face'.
3944 2010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
3946 * vc/vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
3948 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
3950 * dired.el (dired-use-ls-dired): Set default to a special
3951 "unspecified" value.
3952 (dired-insert-directory): When called the first time, check
3953 whether "ls --dired" succeeds and set dired-use-ls-dired (Bug#7546).
3955 2010-12-04 Tak Ota <Takaaki.Ota@am.sony.com>
3957 * replace.el: Add "collect" feature to occur.
3958 (occur-collect-regexp-history): New var.
3959 (occur-read-primary-args): Return a replace string for nlines,
3961 (occur): Extend the meaning of nlines.
3963 2010-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3965 * progmodes/which-func.el (which-func-ff-hook): Log the error message.
3966 (which-func-update-1): Distinguish symbols from strings.
3967 (which-function): Stay within 80 columns.
3969 2010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3971 * subr.el (with-demoted-errors): Distinguish symbols from strings.
3973 * newcomment.el (comment-styles): Add docs to each style (bug#7509).
3975 (comment-style): Use comment-styles's docs to describe values.
3977 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
3979 * term/common-win.el (x-setup-function-keys): Restore ns-new-frame
3980 and ns-show-prefs (Bug#7535).
3982 * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
3983 bindings (Bug#7535).
3985 2010-12-03 Glenn Morris <rgm@gnu.org>
3987 * nxml/nxml-mode.el: Require rng-nxml.
3988 (rng-nxml-mode-init, nxml-enable-unicode-char-name-sets):
3989 Remove declarations.
3991 * nxml/nxml-mode.el, nxml/nxml-outln.el, nxml/rng-loc.el:
3992 * nxml/rng-nxml.el, nxml/rng-valid.el:
3993 Remove leading `*' from defcustom docs.
3995 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
3996 (normal-top-level-add-to-load-path, tty-handle-args):
3997 Convert comments to basic doc-strings.
3999 * net/browse-url.el (browse-url-url-at-point)
4000 (browse-url-default-browser): Remove autoload cookies.
4002 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4003 Remove more undefined cl functions.
4005 * vc/diff.el (diff-sentinel): Make new arguments optional.
4006 * ibuf-ext.el (diff-sentinel): Update declaration.
4008 2010-12-03 Daiki Ueno <ueno@unixuser.org>
4010 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
4011 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
4012 (epg-context-set-passphrase-callback): Mention that the callback
4013 is not called when used with GnuPG 2.x.
4015 2010-12-02 Michael Albinus <michael.albinus@gmx.de>
4017 * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
4018 (tramp-file-name-port): Check also for `tramp-default-port'.
4019 (tramp-get-connection-name): New defun.
4020 (tramp-get-connection-process): Use it.
4021 (tramp-debug-message): Extend function exclude list.
4022 (tramp-drop-volume-letter): Fix doc string.
4024 * net/tramp-cmds.el: Remove solved todo item.
4027 * net/tramp-gvfs.el:
4029 * net/tramp-imap.el:
4030 * net/tramp-smb.el: Fix regexps added to `tramp-default-method-alist'
4031 and `tramp-default-user-alist', respectively.
4033 * net/tramp-gw.el (tramp-gw-open-connection):
4034 Use `tramp-get-connection-name' and `tramp-get-connection-buffer'.
4036 * net/tramp-imap.el (tramp-imap-make-iht): Use just
4037 `tramp-file-name-port'.
4039 * net/tramp-sh.el (tramp-methods): Add recursive options to "pscp"
4040 and "psftp". Exchange "%k" marker with options.
4041 (tramp-do-copy-or-rename-file, tramp-sh-handle-file-local-copy):
4042 Compute size of link target.
4043 (tramp-do-copy-or-rename-file-out-of-band): Move setting of
4044 `tramp-current-*' up due to gateway methods. Optimize computing of
4045 copy arguments. Use `tramp-get-connection-name' and
4046 `tramp-get-connection-buffer'. Improve debug messages.
4047 (tramp-compute-multi-hops): Remove port determination.
4048 (tramp-maybe-open-connection): Use `tramp-get-connection-name'.
4050 * net/trampver.el: Update release number.
4052 2010-12-02 Glenn Morris <rgm@gnu.org>
4054 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
4055 Avoid infinite loop over windows. (Bug#7492)
4057 * progmodes/flymake.el (flymake-check-file-limit):
4058 Allow nil to mean "no limit".
4059 (flymake-check-patch-master-file-buffer): Update for above change.
4060 Allow a .tex file-name extension to be optional.
4061 (flymake-master-tex-init): Also match \include statements.
4063 2010-11-30 Sam Steingold <sds@gnu.org>
4065 * nxml/nxml-mode.el (nxml-parent-document): Add a variable.
4066 (nxml-parent-document-set): A function to set `nxml-parent-document'.
4067 (nxml-mode): Define using `define-derived-mode' instead of `defun'.
4068 (nxml-mode-hook): Remove `defcustom' (auto-defined by
4069 define-derived-mode').
4070 * nxml/rng-valid.el (rng-dtd-trivial-p): Add a helper function for
4071 users who want to call `nxml-parent-document-set'.
4073 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4075 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
4076 stand-alone lines, since that is handled by log-edit-match-to-eoh
4079 2010-11-27 Eduard Wiebe <usenet@pusto.de>
4081 * dired.el (dired-get-filename): Replace backslashes with slashes
4082 in file names on MS-Windows, needed by `locate'. (Bug#7308)
4083 * locate.el (locate-default-make-command-line): Don't consider
4084 drive letter and root directory part of
4085 `directory-listing-before-filename-regexp'. (Bug#7308)
4086 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
4088 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4090 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
4091 of :smie-open/close-alist.
4092 (smie-next-sexp): Make it accept a "start token" as argument.
4093 (smie-indent-keyword): Be careful not to misidentify tokens that span
4094 more than one line, as empty lines. Add argument `token'.
4096 2010-11-27 Kenichi Handa <handa@m17n.org>
4098 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
4099 multipart subtypes, insert all as usual.
4101 * mail/rmail.el: Require rfc2047.
4103 2010-11-27 Kenichi Handa <handa@m17n.org>
4105 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
4106 (rmail-mime-entity-disposition)
4107 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
4108 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
4109 (rmail-mime-save): Handle the case that the button's `data' is a
4111 (rmail-mime-insert-text): New function.
4112 (rmail-mime-insert-image): Handle the case that DATA is a MIME entity.
4113 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
4114 (rmail-mime-insert-bulk): New function mostly copied from the old
4115 rmail-mime-bulk-handler.
4116 (rmail-mime-multipart-handler): Just call rmail-mime-process-multipart.
4117 (rmail-mime-process-multipart): New function mostly copied from
4118 the old rmail-mime-multipart-handler.
4119 (rmail-mime-show): Just call rmail-mime-process.
4120 (rmail-mime-process): New function mostly copied from the old
4122 (rmail-mime-insert-multipart, rmail-mime-parse)
4123 (rmail-mime-insert, rmail-show-mime)
4124 (rmail-insert-mime-forwarded-message)
4125 (rmail-insert-mime-resent-message): New functions.
4126 (rmail-insert-mime-forwarded-message-function): Set to
4127 rmail-insert-mime-forwarded-message.
4128 (rmail-insert-mime-resent-message-function): Set to
4129 rmail-insert-mime-resent-message.
4131 * mail/rmailsum.el: Require rfc2047.
4132 (rmail-header-summary): Handle multiline Subject: field.
4133 (rmail-summary-line-decoder): Change the default to
4134 rfc2047-decode-string.
4136 * mail/rmail.el (rmail-enable-mime): Change the default to t.
4137 (rmail-mime-feature): Change the default to `rmailmm'.
4138 (rmail-quit): Delete the specifal code for rmail-enable-mime.
4139 (rmail-display-labels): Likewise.
4140 (rmail-show-message-1): Check rmail-enable-mime, and use
4141 rmail-show-mime-function for a MIME message. Decode the headers
4142 according to RFC2047.
4144 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4146 * progmodes/which-func.el (which-func-imenu-joiner-function):
4147 Return a string, as expected.
4148 (which-function-mode): Make sure we stop any previous timer before
4151 2010-11-27 Michael Albinus <michael.albinus@gmx.de>
4153 * net/tramp.el (tramp-default-method-alist)
4154 (tramp-default-user-alist, tramp-default-proxies-alist):
4155 Adapt custom options type. (Bug#7445)
4157 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4159 * progmodes/python.el: Add Ipython support (Bug#5390).
4160 (python-shell-prompt-alist)
4161 (python-shell-continuation-prompt-alist): New options.
4162 (python--set-prompt-regexp): New function.
4163 (inferior-python-mode, run-python, python-shell):
4164 Require ansi-color. Use python--set-prompt-regexp to set the comint
4165 prompt based on the Python interpreter.
4166 (python--prompt-regexp): New var.
4167 (python-check-comint-prompt)
4168 (python-comint-output-filter-function): Use it.
4169 (run-python): Use a pipe (Bug#5694).
4171 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4173 * progmodes/python.el (run-python): Doc fix.
4174 (python-keep-current-directory-in-path): New var (Bug#7454).
4176 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4178 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4179 Prompt user before actually printing.
4181 2010-11-27 Glenn Morris <rgm@gnu.org>
4183 * startup.el (package-enable-at-startup, package-initialize):
4184 Remove unnecessary declarations.
4186 2010-11-27 Eli Zaretskii <eliz@gnu.org>
4188 * international/characters.el (glyphless-char-display-control):
4189 Exclude newline and TAB from the c0-control group.
4191 2010-11-27 Glenn Morris <rgm@gnu.org>
4193 * mail/sendmail.el (build-mail-aliases): Doc fix for autoload.
4194 (expand-mail-aliases): Remove unnecessary autoload.
4196 * allout.el (allout-command-prefix, allout-mode-map): Declare.
4198 * shell.el (shell-dir-cookie-re): Move definition before use.
4200 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4201 Replace undefined CL functions.
4203 2010-11-26 Eli Zaretskii <eliz@gnu.org>
4205 * simple.el (prog-mode): Set bidi-paragraph-direction to
4208 * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
4210 2010-11-26 Glenn Morris <rgm@gnu.org>
4212 * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
4213 diary-outlook-formats can be sensitive to calendar-date-style.
4214 (diary-outlook-formats): Simplify the default setting.
4215 (diary-from-outlook-internal): Pass subject and body as arguments.
4216 Use dolist rather than dotimes. Don't save the diary buffer.
4217 (diary-from-outlook-gnus, diary-from-outlook-rmail):
4218 Pass subject and body as explicit arguments to the -internal function.
4220 2010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4222 * mail/rfc2368.el (rfc2368-parse-mailto-url): Unfold URLs before
4223 parsing them. This makes mailto:...?subject=foo\nbar work.
4225 2010-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4227 * vc/diff.el (diff): Fix last change.
4229 2010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4231 * emacs-lisp/pcase.el: Improve pcase-let. Use "pcase--" prefix.
4232 (pcase--dontcare-upats): New var.
4233 (pcase-let, pcase-let*): Generate better code.
4234 Accept the same bodies as `let'.
4235 (pcase-dolist): New macro.
4236 (pcase--trivial-upat-p): New helper function.
4237 (pcase--expand): Strip leading "(let nil" if any.
4239 2010-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4241 * mail/mailclient.el (browse-url): Require.
4242 (mailclient-send-it): Bind `browse-url-mailto-function' to nil to
4243 use the external browser function to send the mail (bug#7469).
4245 * net/browse-url.el (browse-url-browser-function): Revert the
4246 default back to the previous value, since the new value broke
4248 (browse-url-mailto-function): New variable for mailto: URLs.
4249 (browse-url): Use the new variable for mailto: URLs.
4251 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4253 * eshell/esh-cmd.el (eshell-parse-command):
4254 * eshell/esh-arg.el (eshell-parse-arguments):
4255 * eshell/em-script.el (eshell-source-file):
4256 Use with-silent-modifications.
4258 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
4260 * vc/vc.el (vc-merge): Remove optional arg PROMPT. Always prompt
4261 for a merge location.
4263 * vc/vc-bzr.el (vc-bzr-pull): Remove unused var.
4264 (vc-bzr-merge-branch): Always prompt.
4265 (vc-bzr-async-command): Use the full branch filename.
4267 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4269 * shell.el (shell): Use current-buffer by default if it's already
4270 a shell mode buffer and its process is dead.
4271 Suggested by Jose E. Marchesi <jemarch@gnu.org>.
4273 2010-11-23 Tassilo Horn <tassilo@member.fsf.org>
4275 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4276 Mention that the keywords should be comma separated.
4278 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
4280 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
4281 Accept optional prefix arg meaning to prompt for a command.
4282 (vc-update): Use vc-BACKEND-pull if available. Accept optional
4283 prefix arg meaning to prompt for a command.
4284 (vc-pull): Alias for vc-update.
4286 * vc/vc-bzr.el (vc-bzr-admin-branchconf, vc-bzr-history): New vars.
4287 (vc-bzr--branch-conf, vc-bzr-async-command, vc-bzr-pull)
4288 (vc-bzr-merge-branch): New functions, implementing merge-branch
4289 and pull operations.
4291 2010-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
4293 * Makefile.in: Fix up last merge.
4295 * vc/diff.el (diff-old-temp-file, diff-new-temp-file): Remove.
4296 (diff-sentinel): Get them as arguments instead.
4297 (diff-old-file, diff-new-file, diff-extra-args): Remove.
4298 (diff-file-local-copy, diff-better-file-name): New funs.
4299 (diff-no-select): Rename from diff-into-buffer.
4300 Support buffers additionally to files. Move `buf' arg. Don't display buf.
4301 Prefer closures to buffer-local variables.
4302 (diff): Adjust accordingly.
4303 (diff-buffer-with-file): Move from files.el.
4304 * files.el (diff-buffer-with-file): Move to vc/diff.el.
4305 (diff-buffer-internal): Remove.
4306 (diff-buffer-buffer): Remove.
4307 (save-some-buffers-action-alist): Use diff-no-select so as not to guess
4308 the buffer name used, and so as not to mess up windows and frames.
4310 2010-11-22 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
4312 * files.el: Make revert work with diff-buffer-with-file (bug#7277).
4313 (diff-buffer-internal): New function extracted from diff-buffer-with-file
4314 (diff-buffer-with-file): Use it.
4315 * vc/diff.el (diff-into-buffer): New fun, extracted from diff.
4318 2010-11-22 Tassilo Horn <tassilo@member.fsf.org>
4320 * textmodes/reftex-ref.el (reftex-goto-label): Use the current
4321 \ref's or \pageref's value as default instead of initial input.
4323 2010-11-21 Michael Albinus <michael.albinus@gmx.de>
4325 * files.el (backup-by-copying-when-mismatch): The default value is
4328 * startup.el (normal-top-level):
4329 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
4330 `backup-by-copying-when-mismatch'.
4332 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4334 * tool-bar.el (tool-bar-setup): Remove save as, print and customize.
4336 2010-11-21 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4338 * progmodes/python.el (python-font-lock-keywords):
4339 Highlight top-level augmented assignments (Bug#6445).
4341 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4343 * term/ns-win.el (ns-right-control-modifier)
4344 (ns-right-command-modifier): Defvar them.
4346 * cus-start.el (all): Add ns-right-control-modifier and
4347 ns-right-command-modifier (Bug#7458).
4349 2010-11-20 Glenn Morris <rgm@gnu.org>
4351 * emacs-lisp/authors.el (authors-ignored-files)
4352 (authors-valid-file-names, authors-renamed-files-alist): Add entries.
4354 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4356 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs)
4357 (report-emacs-bug-parse-query-results)
4358 (report-emacs-bug-create-existing-bugs-buffer): Pass through
4359 keywords used for querying the bug database to show them in the
4360 existing bugs buffer.
4362 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
4364 * tool-bar.el (tool-bar-setup): Add some :vert-only keywords.
4366 * info.el (info-tool-bar-map): Add some :vert-only keywords.
4368 2010-11-20 Eli Zaretskii <eliz@gnu.org>
4370 * international/characters.el (glyphless-char-display-control):
4371 Make it a defcustom, with update-glyphless-char-display as its
4373 (top level): Don't call update-glyphless-char-display.
4375 2010-11-20 Michael Albinus <michael.albinus@gmx.de>
4377 Sync with Tramp 2.2.0.
4379 * net/tramp.el (tramp-handle-insert-file-contents): Don't use
4380 `file-remote-p' (due to compatibility).
4382 * net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
4383 (tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
4385 * net/trampver.el: Update release number.
4387 2010-11-20 Eli Zaretskii <eliz@gnu.org>
4389 * faces.el (glyphless-char): Define value for `pc'.
4391 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4393 Implemented a bug querying mechanism.
4394 * mail/emacsbug.el (report-emacs-bug-tracker-url): New variable.
4395 (report-emacs-bug-create-existing-bugs-buffer)
4396 (report-emacs-bug-parse-query-results)
4397 (report-emacs-bug-query-existing-bugs): New functions.
4399 2010-11-19 Tassilo Horn <tassilo@member.fsf.org>
4401 * textmodes/reftex-ref.el (reftex-goto-label): If point is inside
4402 a \ref{} or \pageref{} macro, then use its value as initial input.
4404 2010-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4406 * calc/calc-units.el (math-build-units-table-buffer):
4407 calc/README: Mention that the TeX specific units won't use the
4408 `tex' prefix in TeX mode.
4409 calc/calc-lang.el (math-variable-table): Don't use the `tex'
4410 prefix for units in TeX mode.
4412 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4414 * simple.el (kill-new, kill-append, kill-region):
4415 * comint.el (comint-kill-region): Make the yank-handler argument
4418 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4420 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
4421 that are both openers (resp. closers) and something else.
4422 (smie-grammar): Loosen definition of valid values.
4423 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
4424 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
4425 (smie-indent-after-keyword): Adjust users.
4426 (smie-indent-keyword): Don't indent empty lines.
4428 * vc-hg.el (vc-hg-program): New var.
4429 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
4430 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
4432 2010-11-18 Glenn Morris <rgm@gnu.org>
4434 * emacs-lisp/autoload.el (autoload-find-destination): The function
4435 coding-system-eol-type may return non-numeric values. (Bug#7414)
4437 2010-11-18 Ulrich Mueller <ulm@gentoo.org>
4439 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
4441 2010-11-18 Eli Zaretskii <eliz@gnu.org>
4443 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
4445 2010-11-18 Chong Yidong <cyd@stupidchicken.com>
4447 * textmodes/picture.el (picture-mouse-set-point): Don't use
4448 posn-col-row; explicitly compute the motion based on the posn at
4449 the window-start (Bug#7390).
4451 2010-11-18 Glenn Morris <rgm@gnu.org>
4453 * novice.el (disabled-command-function):
4454 Fix 2009-11-15 change. (Bug#7384)
4456 2010-11-18 Glenn Morris <rgm@gnu.org>
4458 * calendar/calendar.el (diary-iso-date-forms): Make elements
4459 mutually exclusive. (Bug#7377)
4461 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4463 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
4464 when filling the remaining "unconstrained" values.
4466 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4468 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
4471 * files.el (safe-local-variable-p): Gracefully handle errors.
4473 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
4474 Use smie-indent-virtual when indenting relative to an opener.
4475 (smie-rule-separator): Use smie-rule-parent.
4476 (smie-indent-keyword): Consult rules, even for openers at bol.
4477 (smie-indent-comment-close): Try to align closer's content.
4479 2010-11-18 Glenn Morris <rgm@gnu.org>
4481 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
4483 2010-11-18 Glenn Morris <rgm@gnu.org>
4485 * printing.el (pr-menu-bind): Doc fix.
4487 * speedbar.el (speedbar-toggle-images): Doc fix.
4489 * progmodes/python.el (python-shell): Doc fix.
4491 * wid-edit.el (widget-field-use-before-change)
4492 (widget-use-overlay-change): Doc fixes.
4494 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4496 Minor cleanup to improve style.
4497 * textmodes/rst.el (rst-update-section): Use point-marker.
4498 (rst-get-decoration): Eliminate unneeded assignment.
4499 (rst-promote-region, rst-straighten-decorations)
4500 (rst-section-tree, rst-adjust): Use point-marker.
4501 (rst-toc-mode-mouse-goto): Avoid setq.
4502 (rst-shift-region-guts, rst-shift-region-left)
4503 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2)
4504 (rst-convert-bullets-to-enumeration): Use copy-marker.
4506 * minibuffer.el (completion-fail-discreetly): New var.
4507 (completion--do-completion): Use it.
4509 * electric.el (electric-pair-pairs): New var.
4510 (electric-pair-post-self-insert-function): Use it.
4511 (electric-layout-post-self-insert-function): Don't insert a before
4512 newline unless it's actually needed.
4514 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
4516 * progmodes/python.el (run-python): Explain why we remove the current
4517 directory from sys.path. Suggested by Eric Hanchrow <erich@cozi.com>.
4519 * progmodes/grep.el (grep-regexp-alist): Tighten the regexp (bug#7378).
4521 2010-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4523 * progmodes/octave-mod.el: Rely on elecric-*-modes.
4524 (octave-mode-map): Don't bind ;, SPC, and LF.
4525 (octave-auto-indent, octave-auto-newline): Remove.
4526 (electric-layout-rules): Declare.
4527 (octave-mode): Set electric-layout-rules.
4528 (octave-indent-new-comment-line): Use reindent-then-newline-and-indent.
4529 (octave-reindent-then-newline-and-indent, octave-electric-semi)
4530 (octave-electric-space): Remove.
4532 * electric.el (electric-layout-mode): New minor mode.
4533 (electric--after-char-pos): New function.
4534 (electric-indent-post-self-insert-function): Use it.
4535 (electric-layout-rules): New var.
4536 (electric-layout-post-self-insert-function): New function.
4537 (electric-indent-mode): Make them interact better.
4539 2010-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4541 * emacs-lisp/checkdoc.el (checkdoc-syntax-table): Fix last change.
4542 (checkdoc-sentencespace-region-engine, checkdoc-this-string-valid)
4543 (checkdoc-proper-noun-region-engine): Use with-syntax-table.
4545 2010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
4547 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
4548 Make sure to check inside the word (Bug#6761).
4550 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
4552 * startup.el (command-line): If the cursorColor resource is set,
4553 change the cursor face-spec (Bug#7392).
4555 2010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
4557 The main features of the following allout.el changes are:
4558 - implement user customization for the allout key bindings
4559 - add a customization control by which the user can inhibit use of
4560 a trailing Ctrl-H, so by default it's reserved for use with
4561 describe-prefix-bindings
4562 - adapt to new version of called-interactively-p, while
4563 maintaining backwards compatibility with old version
4564 - fix hotspot navigation so i works properly with meta-modified keys.
4566 * allout.el (allout-keybindings, allout-bind-keys)
4567 (allout-keybindings-binding, allout-prefixed-keybindings)
4568 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
4569 (allout-keybindings-list, allout-mode-map-adjustments)
4570 (allout-setup-mode-map): Establish allout-mode keymaps as user
4571 customizable settings, and also establish a customizable setting which
4572 regulates whether or not a trailing control-h is reserved for use with
4573 describe-prefix-bindings - and inhibit it by default, so that control-h
4574 *is* reserved for describe-prefix-bindings unless the user changes it.
4576 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
4577 and accurately between modified and unmodified events, and handle
4578 modified events more comprehensively.
4580 * allout.el (allout-substring-no-properties):
4581 Alias to use or provide version of `substring-no-properties'.
4582 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
4584 * allout.el (allout-next-single-char-property-change):
4585 Alias to use or provide version of `next-single-char-property-change'.
4586 (allout-annotate-hidden, allout-hide-by-annotation):
4587 Use `allout-next-single-char-property-change'.
4589 * allout.el (allout-select-safe-coding-system):
4590 Alias to use or provide version of `select-safe-coding-system'.
4591 (allout-toggle-subtree-encryption):
4592 Use `allout-select-safe-coding-system'.
4594 * allout.el (allout-set-buffer-multibyte):
4595 Alias to use or provide version of `set-buffer-multibyte'.
4596 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
4598 * allout.el (allout-called-interactively-p): Macro for using the
4599 different versions of called-interactively-p identically, depending on
4600 the subroutine's argument signature.
4601 (allout-back-to-current-heading, allout-beginning-of-current-entry):
4602 Use `(interactive "p")' instead of `(called-interactively-p)'.
4604 * allout.el (allout-init, allout-ascend, allout-end-of-level)
4605 (allout-previous-visible-heading, allout-forward-current-level)
4606 (allout-backward-current-level, allout-show-children):
4607 Use `allout-called-interactively-p' instead of `called-interactively-p'.
4609 * allout.el (allout-before-change-handler):
4610 Exempt edits to the (overlaid) character after the allout outline
4611 bullet from edit confirmation prompt.
4613 * allout.el (allout-add-resumptions):
4614 Ensure that it respects correct buffer for keybindings.
4616 * allout.el (allout-beginning-of-line):
4617 Use `allout-previous-single-char-property-change' alias for the sake of
4618 diverse compatibility.
4620 * allout.el (allout-end-of-line):
4621 Use `allout-mark-active-p' to encapsulate respect for mark activity.
4623 2010-11-13 Chong Yidong <cyd@stupidchicken.com>
4625 * frame.el (frame-notice-user-settings): Don't clobber other
4626 user-set parameters when calling face-set-after-frame-default in
4627 response to background-color parameter (Bug#7373).
4629 2010-11-13 Eli Zaretskii <eliz@gnu.org>
4631 * international/characters.el (glyphless-char-display-control):
4632 Rename from glyphless-char-control; all users changed. Doc fix.
4633 Signal an error if display method is not one of the recognized
4636 2010-11-13 Michael Albinus <michael.albinus@gmx.de>
4638 * net/tramp-compat.el (tramp-compat-line-beginning-position)
4639 (tramp-compat-line-end-position): Remove them.
4641 * net/tramp.el (tramp-parse-rhosts-group)
4642 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
4643 (tramp-parse-hosts-group, tramp-parse-passwd-group)
4644 (tramp-parse-netrc-group, tramp-parse-putty-group)
4645 * net/tramp-cmds.el (tramp-append-tramp-buffers)
4646 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
4647 (tramp-sh-handle-file-selinux-context)
4648 (tramp-sh-handle-file-name-all-completions)
4649 (tramp-sh-handle-insert-directory)
4650 (tramp-sh-handle-expand-file-name, tramp-find-executable)
4651 (tramp-wait-for-output, tramp-send-command-and-read)
4652 * net/tramp-smb.el (tramp-smb-read-file-entry)
4653 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
4655 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
4657 (tramp-remote-coding-commands): Add an alternative using "base64
4658 -d -i". This is needed for older base64 versions from GNU
4659 coreutils. Reported by Klaus Reichl
4660 <Klaus.Reichl@thalesgroup.com>.
4662 2010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
4664 * simple.el (count-words-region): New function.
4666 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4668 * shell.el (shell-dir-cookie-re): New custom variable.
4669 (shell-dir-cookie-watcher): New function.
4671 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
4672 and compilation-mode (bug#7350).
4674 * vc/smerge-mode.el (smerge-refine): Choose better default part to
4675 highlight when one of them is empty.
4677 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
4679 (skeleton-newline): New function.
4680 (skeleton-internal-1): Use it.
4682 * simple.el (open-line): `newline' may strip trailing space.
4684 2010-11-12 Kevin Ryde <user42@zip.com.au>
4686 * international/mule-cmds.el (princ-list): Use mapc.
4688 2010-11-12 Glenn Morris <rgm@gnu.org>
4690 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
4691 Use it to replace all instances of "*Compile-Log*".
4693 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4695 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
4698 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4700 * progmodes/modula2.el: Use SMIE and skeleton.
4701 (m2-mode-syntax-table): (*..*) can be nested.
4702 Add //...\n. Fix paren syntax.
4703 (m2-mode-map): Remove LF and TAB bindings.
4704 (m2-indent): Add safety property.
4705 (m2-smie-grammar): New var.
4706 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
4707 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
4708 (m2-mode): Use define-derived-mode.
4709 (m2-newline, m2-tab): Remove.
4710 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
4711 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
4712 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
4713 (m2-import): Use define-skeleton.
4715 2010-11-11 Glenn Morris <rgm@gnu.org>
4717 * obsolete/lucid.el: Don't warn about any CL functions in this file.
4719 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
4720 (ls-lisp-verbosity): Add custom :set-after property.
4721 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
4722 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
4723 (ls-lisp-insert-directory): Update caller.
4724 (ls-lisp-set-options): New function.
4725 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
4728 * play/landmark.el (lm-prompt-for-move):
4729 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
4731 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
4733 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
4734 (idlwave-study-twins): Prefix dynamic local variable `name'.
4735 (idlwave-routine-twin-compare): Update for above change.
4737 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
4738 Prefix dynamic local variables `name', `kwd', and `link'.
4739 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
4740 * progmodes/idlw-complete-structtag.el
4741 (idlwave-complete-structure-tag-help):
4742 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
4743 (idlwave-complete-sysvar-tag-help)
4744 (idlwave-complete-class-structure-tag-help):
4745 Update for above name changes.
4747 2010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4749 * net/browse-url.el (browse-url-browser-function): Change the
4750 default to use `browse-url-mail' on mailto: URLs.
4752 2010-11-10 Chong Yidong <cyd@stupidchicken.com>
4754 * emacs-lisp/package.el (package-read-all-archive-contents):
4755 Reset package-archive-contents to nil before re-reading.
4757 2010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
4759 * textmodes/flyspell.el (flyspell-word): Do not re-check words
4760 already found as misspellings by (flyspell-large-region), just
4761 do highlighting (bug#7322).
4763 2010-11-10 Glenn Morris <rgm@gnu.org>
4765 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
4767 * emulation/edt.el (edt-with-position): New macro.
4768 (edt-find-forward, edt-find-backward, edt-find-next-forward)
4769 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
4770 (edt-paragraph-forward, edt-paragraph-backward): Use it.
4772 * emulation/tpu-extras.el (tpu-with-position): New macro.
4773 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
4775 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
4777 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
4778 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
4779 (texinfo-master-menu, texinfo-insert-node-lines)
4780 (texinfo-multiple-files-update):
4781 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
4782 Use line-beginning-position.
4784 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
4785 No recent Emacs supports system-type `emx'.
4787 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
4788 (ada-command-separator, ada-default-prj-properties)
4789 (ada-find-any-references): Update for above name change.
4791 * dirtrack.el (dirtrack-directory-function)
4792 (dirtrack-canonicalize-function):
4793 * filecache.el (file-cache-completion-ignore-case)
4794 (file-cache-case-fold-search, file-cache-ignore-case):
4795 * term.el (serial-port-is-file-p): Cosmetic change.
4797 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
4798 Remove non-existent `windows-95' system-type.
4799 * dired.el (dired-chown-program): Remove non-existent `linux'
4802 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
4803 (ping-program-options): Remove non-existent `linux' system-type.
4805 * startup.el (package-initialize): Update declaration.
4807 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
4808 (ls-lisp-handle-switches): Use time-less-p.
4809 (ls-lisp-format-time): Use float-time.
4811 * textmodes/remember.el (remember-time-to-seconds): Remove.
4812 (remember-store-in-mailbox): Use float-time.
4814 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
4816 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
4817 never a real function.
4818 (with-no-warnings): Remove compat stub, now unused.
4819 (time-less-p): Doc fix.
4820 (time-to-number-of-days): Simplify.
4822 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
4824 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
4825 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
4826 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
4827 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
4828 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
4830 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
4831 (eshell-shuffle-files, eshell-shorthand-tar-command)
4832 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
4833 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
4834 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
4835 Prefix dynamic local variable `matches'.
4837 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
4838 Prefix dynamic local variable `skeleton'.
4840 2010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
4842 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
4843 in mail buffer; make yank-action always a command that yanks original
4846 2010-11-09 Glenn Morris <rgm@gnu.org>
4848 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
4850 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4852 * minibuffer.el (minibuffer-completion-help): Specify the end of the
4853 completion field (bug#7211).
4855 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
4856 Fix handling of backslash escapes.
4857 (python-quote-syntax): Adjust accordingly.
4859 2010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
4861 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
4862 (vc-mtn-workfile-branch): Adjust to new output format.
4864 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4866 * international/mule-cmds.el (princ-list): Mark as obsolete.
4868 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4870 * emacs-lisp/smie.el: New package.
4872 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
4874 * files.el (backup-by-copying-when-mismatch):
4875 Set `permanent-local' property.
4877 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
4878 `permanent-local' property for `backup-by-copying-when-mismatch'.
4880 2010-11-09 Eli Zaretskii <eliz@gnu.org>
4882 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
4884 2010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
4886 * progmodes/verilog-mode.el (verilog-insert-one-definition)
4887 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
4888 AUTOINOUT for SV style multidimensional arrays, bug294.
4889 Reported by Eric Mastromarchi.
4890 (verilog-preprocess): Use with-current-buffer and
4891 font-lock-fontify-buffer to cleanup style issues.
4893 2010-11-09 Glenn Morris <rgm@gnu.org>
4895 * locate.el (locate, locate-mode): Doc fixes.
4897 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
4899 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
4900 user for confirmation.
4901 (server-force-stop): Use it.
4902 (server-start): Use server-force-stop for kill-emacs-hook, to
4903 avoid user interaction while killing Emacs.
4905 2010-11-09 Glenn Morris <rgm@gnu.org>
4907 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
4908 (meta-indent-line): Simplify.
4910 * vc/emerge.el (emerge-line-number-in-buf):
4911 * textmodes/ispell.el (ispell-region):
4912 * textmodes/fill.el (current-fill-column):
4913 * progmodes/xscheme.el (xscheme-send-current-line):
4914 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
4915 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
4916 * progmodes/sh-script.el (sh-handle-prev-do):
4917 * progmodes/meta-mode.el (meta-indent-line):
4918 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
4920 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
4921 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
4922 * progmodes/fortran.el (fortran-looking-at-if-then):
4923 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
4924 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
4925 (cperl-find-pods-heres):
4926 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
4927 * net/quickurl.el (quickurl-list-insert):
4928 * net/ldap.el (ldap-search-internal):
4929 * net/eudc.el (eudc-expand-inline):
4930 * mail/sendmail.el (sendmail-send-it):
4931 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
4932 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
4933 (viper-brac-function):
4934 * calc/calc-yank.el (calc-do-grab-region):
4935 * calc/calc-keypd.el (calc-keypad-press):
4936 * term.el (term-move-columns, term-insert-spaces):
4937 * speedbar.el (speedbar-highlight-one-tag-line):
4938 * simple.el (current-word):
4939 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
4940 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
4942 * hippie-exp.el (he-line-beg):
4943 * epa.el (epa--marked-keys):
4944 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
4945 (dired-update-file-line, dired-add-entry, dired-remove-entry)
4946 (dired-relist-entry):
4947 * buff-menu.el (Buffer-menu-buffer):
4948 * array.el (current-line):
4949 * allout.el (allout-resolve-xref)
4950 (allout-latex-verbatim-quote-curr-line):
4951 Replace yet more uses of end-of-line etc with line-end-position, etc.
4953 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4955 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
4956 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
4957 (checkdoc-syntax-table): Initialize in the declaration.
4958 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
4959 the mode on unconditionally.
4961 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
4962 (extent-end-position, extent-start-position): Remove setf method for
4963 non-existing functions (bug#7319).
4965 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
4967 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
4968 (smie-precs->prec2): Rename from smie-precs-precedence-table.
4969 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
4970 (smie-prec2->grammar): Rename from smie-prec2-levels.
4971 (smie-grammar): Rename from smie-op-levels.
4972 (smie-indent--hanging-p): Rename from smie-hanging-p.
4973 (smie-rule-hanging-p): New alias.
4974 (smie-indent--bolp): Rename from smie-bolp.
4975 (smie-indent--hanging-p): New alias.
4976 (smie--token): New dynamically bound variable.
4977 (smie-indent--parent): New function.
4978 (smie-rule-parent-p): Use it; rename from smie-parent-p.
4979 (smie-rule-next-p): Rename from smie-next-p.
4980 (smie-rule-prev-p): Rename from smie-prev-p.
4981 (smie-rule-sibling-p, smie-rule-parent)
4982 (smie-indent--separator-outdent, smie-rule-separator): New functions.
4983 (smie-rule-separator-outdent): New var.
4984 (smie-indent--rule): Merge with smie-indent--column.
4985 (smie-indent-forward-token, smie-indent-backward-token):
4986 Also recognize close parens.
4987 (smie-indent-keyword): Don't use smie-indent--column any more.
4988 (smie-indent-after-keyword): Ignore closers by default.
4989 (smie-indent-line): Use with-demoted-errors.
4990 * progmodes/octave-mod.el (octave-smie-grammar):
4991 Rename from octave-smie-op-levels.
4992 (octave-smie-rules): Adjust to new behavior.
4993 * progmodes/prolog.el (prolog-smie-grammar):
4994 Rename from prolog-smie-op-levels.
4996 2010-11-07 Glenn Morris <rgm@gnu.org>
4998 * eshell/esh-util.el (subst-char-in-string)
4999 (directory-files-and-attributes): These compatibility definitions are
5000 not needed on any version of Emacs since at least 21.4.
5002 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
5003 (verilog-get-end-of-line): Remove.
5004 (verilog-within-string, verilog-re-search-forward-substr)
5005 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
5006 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
5007 Use point-at-bol, point-at-eol.
5008 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
5010 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
5011 (electric-pascal-terminate-line, pascal-set-auto-comments)
5012 (pascal-indent-paramlist, pascal-indent-declaration)
5013 (pascal-get-lineup-indent, pascal-func-completion)
5014 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
5015 Use point-at-bol, point-at-eol.
5016 * progmodes/flymake.el (flymake-line-beginning-position)
5017 (flymake-line-end-position): Remove.
5018 (flymake-highlight-line): Use point-at-bol, point-at-eol.
5019 * eshell/esh-util.el (line-end-position, line-beginning-position):
5020 Remove compat definitions.
5022 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5024 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
5025 Use line-end-position.
5027 * emacs-lisp/chart.el (chart-zap-chars):
5028 * play/decipher.el (decipher-set-map):
5029 * progmodes/ada-mode.el (ada-get-current-indent)
5030 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
5031 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
5032 * progmodes/ada-xref.el (ada-initialize-runtime-library)
5033 (ada-get-all-references):
5034 * progmodes/cperl-mode.el (cperl-electric-paren)
5035 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
5036 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
5037 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
5038 (cperl-word-at-point-hard):
5039 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
5040 (idlwave-shell-filename-string, idlwave-shell-batch-command)
5041 (idlwave-shell-display-line):
5042 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
5043 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
5044 * progmodes/js.el (js--re-search-forward-inner)
5045 (js--re-search-backward-inner):
5046 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
5047 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
5048 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
5049 * textmodes/flyspell.el (flyspell-process-localwords):
5050 * textmodes/ispell.el (ispell-buffer-local-parsing)
5051 (ispell-buffer-local-dict, ispell-buffer-local-words):
5052 Use point-at-bol and point-at-eol.
5054 * speedbar.el (speedbar-generic-item-info)
5055 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
5056 (speedbar-add-indicator, speedbar-check-vc-this-line)
5057 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
5058 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
5059 Replace more uses of end-of-line etc with line-end-position.
5061 2010-11-06 Glenn Morris <rgm@gnu.org>
5063 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
5064 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
5065 (texinfo-delete-existing-pointers, texinfo-find-pointer)
5066 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
5067 (texinfo-multiple-files-update):
5068 * textmodes/table.el (table--probe-cell-left-up)
5069 (table--probe-cell-right-bottom):
5070 * textmodes/picture.el (picture-tab-search):
5071 * textmodes/page-ext.el (pages-copy-header-and-position)
5072 (pages-directory-for-addresses):
5073 * progmodes/vera-mode.el (vera-get-offset):
5074 * progmodes/simula.el (simula-calculate-indent):
5075 * progmodes/python.el (python-pdbtrack-overlay-arrow):
5076 * progmodes/prolog.el (end-of-prolog-clause):
5077 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
5078 * progmodes/icon.el (indent-icon-exp):
5079 * progmodes/etags.el (tag-re-match-p):
5080 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
5081 * progmodes/ebnf2ps.el (ebnf-begin-file):
5082 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
5083 (dcl-save-local-variable):
5084 * play/life.el (life-setup):
5085 * play/gametree.el (gametree-looking-at-ply):
5086 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5087 * mail/sendmail.el (mail-mode-auto-fill):
5088 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
5089 * emacs-lisp/edebug.el (edebug-overlay-arrow):
5090 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
5091 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
5092 (woman-tab-to-tab-stop, WoMan-warn-ignored):
5093 * type-break.el (type-break-file-keystroke-count):
5094 * term.el (term-replace-by-expanded-history-before-point)
5095 (term-skip-prompt, term-extract-string):
5096 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
5097 (speedbar-contract-line, speedbar-toggle-line-expansion)
5098 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
5099 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
5100 * sort.el (sort-skip-fields):
5101 * skeleton.el (skeleton-internal-list):
5102 * simple.el (line-move-finish, line-move-to-column):
5103 * shell.el (shell-forward-command):
5104 * misc.el (copy-from-above-command):
5105 * makesum.el (double-column):
5106 * ebuff-menu.el (electric-buffer-update-highlight):
5107 * dired.el (dired-move-to-end-of-filename):
5108 * dframe.el (dframe-popup-kludge):
5109 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
5110 * arc-mode.el (archive-get-lineno):
5111 Use line-end-position and line-beginning-position.
5113 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
5114 (idlwave-study-twins): Prefix dynamic local `class'.
5115 (idlwave-routine-twin-compare): Update for above name change.
5117 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
5118 Use boundp tests to silence compiler. Update for changed name of
5119 bytecomp-filename variable.
5121 * emulation/viper-cmd.el (viper-read-string-with-history):
5122 Prefix dynamic local `initial'.
5123 (viper-minibuffer-standard-hook): Update for above name change.
5125 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
5126 (elint-init-form): Update for above name change.
5128 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
5129 local variables `cbeg' and `cend' a prefix.
5130 (mail-extr-voodoo): Update for above name change.
5132 * textmodes/reftex-toc.el (reftex-toc-do-promote)
5133 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
5134 (reftex-toc-promote-action): Doc fix.
5136 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
5137 `prompt', `data' a prefix.
5138 (reftex-select-post-command-hook, reftex-select-callback)
5139 (reftex-select-mouse-accept, reftex-select-read-cite):
5140 Update for above name changes.
5142 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
5143 `refstyle' to reftex-refstyle.
5144 (reftex-offer-label-menu): Update for above name change.
5145 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
5146 `refstyle' name change.
5148 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
5149 with with-current-buffer.
5150 (diff, template): Give dynamic local variables a prefix.
5151 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
5152 (emerge-line-number-in-buf): Update for above name change.
5153 (emerge-combine-versions-internal): Rename local `template' to
5154 emerge-combine-template.
5155 (emerge-combine-versions-edit): Update for above name change.
5157 2010-11-06 Ralf Angeli <angeli@caeruleus.net>
5159 * textmodes/reftex-cite.el
5160 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
5161 entries with whitespace after \bibitem.
5162 (reftex-create-bibtex-file): Match entries containing numbers and
5163 symbol constituents. Make sure that entries with whitespace at
5164 various places are found.
5166 2010-11-05 Christian Millour <cm@abtela.com> (tiny change)
5168 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
5170 2010-11-05 Jan Djärv <jan.h.d@swipnet.se>
5172 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
5174 2010-11-05 Glenn Morris <rgm@gnu.org>
5176 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
5177 (woman2-roff-buffer): Give local variable `request' a prefix.
5178 (woman0-macro): Rename argument `request' in the same way.
5179 (woman-request): New name for `request' dynamic variable.
5180 (woman-unquote, woman-forward-arg): Update for above name change.
5181 (woman1-roff-buffer): Give local variable `unquote' a prefix.
5182 (woman1-unquote): New name for `unquote' dynamic variable.
5183 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
5184 (woman-translations): Rename from `translations'. No longer global.
5185 (woman2-tr, woman-translate): Update for above name change.
5186 (woman-translate): Check for bound variable.
5187 (woman2-roff-buffer): Give local variable `translations' a prefix.
5189 * play/doctor.el: Give all local variables a prefix. Update callers.
5190 (doc$, doctor-put-meaning): Use backquote.
5192 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
5193 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
5195 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
5196 variables bytes, ptr, op a prefix.
5197 (disassemble-offset): Update for above change.
5199 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
5201 * emacs-lisp/package.el (package-unpack): Remove no-op.
5202 (package--builtins, package--dir): Doc fix.
5203 (package-activate-1, package-activate, package-install)
5204 (package-compute-transaction): Fix error message.
5205 (package-delete): Use delete-directory. Omit system packages.
5206 (package-initialize): Set package-alist to nil first.
5207 (package-menu-mark-delete, package-menu-mark-install): Don't add
5208 symbols that are inconsistent with the package state.
5209 (package-menu-execute): Perform deletions and installations as
5210 single batch operations.
5212 2010-11-03 Glenn Morris <rgm@gnu.org>
5214 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
5215 (props): Remove unnecessary declaration.
5217 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
5218 set-process-query-on-exit-flag.
5220 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
5221 (reftex-toc-do-promote): Remove unused local `mpos'.
5222 (reftex-toc-restore-region): Make `mpos' local to this function.
5224 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
5226 * play/landmark.el (lm-losing-threshold): Correct spelling.
5227 (lm-human-plays): Use new name.
5229 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
5230 (gomoku-human-plays): Use new name.
5232 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
5233 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
5234 (gomoku-score-trans-table, gomoku-winning-threshold)
5235 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
5237 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
5239 * emacs-lisp/package.el: Don't put built-in packages in
5240 package-alist, to avoid loading inefficiencies.
5241 (package-built-in-p): Make VERSION optional, and treat it as a
5242 minimum acceptable version.
5243 (package-activate): Search separately for built-in packages.
5244 Emit a warning if a dependency fails.
5245 (define-package): Handle most common case, where there is no
5246 obsolete package, first.
5247 (package-compute-transaction): Print required version in error.
5248 (package--initialized): New variable.
5249 (list-packages): Use it.
5250 (package-initialize): Optional arg NO-ACTIVATE. Don't put
5251 built-in packages in packages-alist; keep it separate.
5252 Set package--initialized.
5253 (describe-package): Avoid activating packages as a side-effect.
5254 Search separately for built-in packages.
5255 (describe-package-1): Handle the case where an elpa package is
5256 simultaneously built-in and available/installed.
5257 (package-installed-p, package--generate-package-list):
5258 Search separately for built-in packages.
5259 (package-load-descriptor): Doc fix.
5261 2010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5263 * progmodes/perl-mode.el (perl-syntax-propertize-function):
5264 Handle __DATA__ and __END__.
5266 2010-11-02 Noah Friedman <friedman@splode.com>
5268 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
5269 nil, do not ask to recompile files that are not already compiled,
5270 and do not recompile them.
5272 2010-11-02 Chong Yidong <cyd@stupidchicken.com>
5274 * emacs-lisp/package.el (package-initialize): Ensure that
5275 obsoleted built-in packages are not in package-activated-list
5277 (describe-package-1): Make the "installed" status override
5280 2010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5282 * subr.el (version-separator, version-regexp-alist): Remove '*'
5284 (version-list-<=, version<=, version=): Doc fix.
5286 2010-11-01 Kenichi Handa <handa@m17n.org>
5288 * faces.el (glyphless-char): Inherit underline for tty.
5290 2010-11-01 Kenichi Handa <handa@m17n.org>
5292 Implement various display methods for glyphless characters.
5294 * international/characters.el (char-acronym-table): New variable.
5295 (glyphless-char-control): New variable.
5296 (update-glyphless-char-display): New function.
5298 * faces.el (glyphless-char): New face.
5300 2010-11-01 Glenn Morris <rgm@gnu.org>
5302 * calendar/holidays.el (general-holidays, oriental-holidays)
5303 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
5304 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
5305 the definitions of their targets.
5307 * emacs-lisp/smie.el (smie): New custom group.
5308 (smie-blink-matching-inners, smie-indent-basic): Add :group.
5310 * faces.el (xw-defined-colors, x-setup-function-keys):
5311 * mouse-sel.el (x-select-text):
5312 * term/w32console.el (x-setup-function-keys): Update declarations.
5314 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
5316 * textmodes/ispell.el (comment-add): Declare.
5318 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
5321 * info.el (finder-keywords-hash, package-alist): Declare.
5323 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
5325 * finder.el (finder-compile-keywords): Don't use intern-soft,
5326 since package names may not yet exist in the obarray.
5328 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
5330 * vc/vc-arch.el (vc-arch-checkin):
5331 * vc/vc-cvs.el (vc-cvs-checkin):
5332 * vc/vc-mtn.el (vc-mtn-checkin):
5333 * vc/vc-rcs.el (vc-rcs-checkin):
5334 * vc/vc-sccs.el (vc-sccs-checkin):
5335 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
5336 since 2010-04-21 commit by Stefan Monnier.
5338 2010-11-01 Glenn Morris <rgm@gnu.org>
5340 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
5342 * startup.el (package-enable-at-startup, package-initialize):
5345 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
5348 2010-10-31 Julien Danjou <julien@danjou.info>
5350 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
5351 (byte-recompile-directory):
5352 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
5353 Use `byte-recompile-file'.
5355 2010-10-31 Glenn Morris <rgm@gnu.org>
5357 * cus-start.el: Handle standard values via a keyword.
5358 Only set version property if specified.
5359 (cursor-in-non-selected-windows, menu-bar-mode)
5360 (tool-bar-mode, show-trailing-whitespace):
5361 Do not specify standard values.
5362 (transient-mark-mode, temporary-file-directory): Use :standard.
5364 2010-10-31 Jan Djärv <jan.h.d@swipnet.se>
5366 * term/x-win.el (x-get-selection-value): New function that gets
5367 PRIMARY with type as specified in x-select-request-type. (Bug#6802)
5369 2010-10-31 Michael Albinus <michael.albinus@gmx.de>
5371 * net/tramp.el (tramp-handle-insert-file-contents): For root,
5372 preserve owner and group when editing files. (Bug#7289)
5374 2010-10-31 Glenn Morris <rgm@gnu.org>
5376 * speedbar.el (speedbar-mode):
5377 * play/fortune.el (fortune-in-buffer, fortune):
5378 * play/gomoku.el (gomoku-mode):
5379 * play/landmark.el (lm-mode):
5380 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
5381 Replace inappropriate uses of toggle-read-only. (Bug#7292)
5383 * select.el (x-selection): Mark it as an obsolete alias.
5385 2010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5387 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
5388 major-mode (bug#7284).
5390 2010-10-31 Glenn Morris <rgm@gnu.org>
5392 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
5393 rather than just an unused variable that inherits from the real one.
5395 2010-10-31 Alan Mackenzie <acm@muc.de>
5397 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
5398 This fixes bug #7185.
5400 2010-10-30 Chong Yidong <cyd@stupidchicken.com>
5402 * startup.el (command-line): Search for package directories, and
5403 don't load package.el if none are found.
5405 * emacs-lisp/package.el (describe-package, list-packages):
5406 Call package-initialize if it has not been called yet.
5408 2010-10-30 Alan Mackenzie <acm@muc.de>
5410 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
5411 which fontifies the tail of an enum.
5412 (c-basic-matchers-after): Insert a call to the above new function.
5413 This fixes bug #7264.
5415 2010-10-30 Glenn Morris <rgm@gnu.org>
5417 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
5418 tool-bar-mode, transient-mark-mode. (Bug#7306)
5419 Include the :set property in the dumped Emacs.
5421 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5423 SMIE: change indent rules format, improve smie-setup.
5424 * emacs-lisp/smie.el (smie-precs-precedence-table)
5425 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
5426 Mark them pure so the tables gets built at compile time.
5427 (smie-bnf-precedence-table): Store the closer-alist in the table.
5428 (smie-prec2-levels): Preserve the closer-alist.
5429 (smie-blink-matching-open): Be more forgiving in case of indentation.
5430 (smie-hanging-p): Rename from smie-indent--hanging-p.
5431 (smie-bolp): Rename from smie-indent--bolp.
5432 (smie--parent, smie--after): New dynamic vars.
5433 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
5434 (smie-indent-rules): Remove.
5435 (smie-indent--offset-rule): Remove fun.
5436 (smie-rules-function): New var.
5437 (smie-indent--rule): New fun.
5438 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
5439 (smie-indent-exps): Use it.
5440 (smie-setup): Setup paren blinking; add keyword args for token
5441 functions; extract closer-alist from op-levels.
5442 (smie-indent-debug-log): Remove var.
5443 (smie-indent-debug): Remove fun.
5444 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
5445 (prolog-smie-rules): New fun to replace it.
5446 (prolog-mode-variables): Simplify.
5447 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
5448 it's setup automatically.
5449 (octave-smie-indent-rules): Remove.
5450 (octave-smie-rules): New fun to replace it.
5451 (octave-mode): Simplify.
5453 2010-10-29 Glenn Morris <rgm@gnu.org>
5455 * files.el (temporary-file-directory): Remove (already defined in C).
5456 * cus-start.el: Add temporary-file-directory.
5458 * abbrev.el (abbrev-mode):
5459 * composite.el (auto-composition-mode):
5460 * menu-bar.el (menu-bar-mode):
5461 * simple.el (transient-mark-mode):
5462 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
5463 that they do not define the associated variables twice.
5464 * simple.el (transient-mark-mode): Remove defvar.
5465 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
5466 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
5467 Handle multiple groups, and also custom-delayed-init-variables.
5468 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
5470 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5472 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
5473 (pcase-if): Add one minor optimization.
5474 (pcase-split-equal): Rename from pcase-split-eq.
5475 (pcase-split-member): Rename from pcase-split-memq.
5476 (pcase-u1): Add strings to the member optimization.
5477 Add `guard' variant of predicates.
5478 (pcase-q1): Add string patterns.
5480 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5482 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
5484 2010-10-28 Glenn Morris <rgm@gnu.org>
5486 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5487 Move menu-bar related settings to ../menu-bar.el.
5488 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5489 Move ns-specific settings here from term/ns-win.el.
5491 * simple.el (x-selection-owner-p): Remove unused declaration.
5493 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5495 * minibuffer.el (completion-cycling): New var (bug#7266).
5496 (minibuffer-complete, completion--do-completion):
5497 Use completion--flush-all-sorted-completions.
5498 (minibuffer-complete): Only cycle if completion-cycling is set.
5499 (completion--flush-all-sorted-completions): Unset completion-cycling.
5500 (minibuffer-force-complete): Set completion-cycling.
5501 (completion-all-sorted-completions): Move declaration before first use.
5503 2010-10-28 Leo <sdl.web@gmail.com>
5505 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
5506 which changes the order of matches seen by users (bug#7231).
5508 2010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
5510 * progmodes/compile.el (compilation-mode-font-lock-keywords):
5511 Don't confuse -omega as "-o mega".
5513 2010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
5515 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
5516 (log-edit-author): New dynamic var.
5517 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
5518 to return the author if different from committer.
5519 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
5521 * play/landmark.el: Adjust commenting convention.
5522 (lm-nil-score): Rename from nil-score.
5523 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
5524 (OOOOscore): Move into a let in lm-score-trans-table.
5525 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
5527 * electric.el (electric-indent-chars): Autoload.
5528 * progmodes/octave-mod.el (octave-mode):
5529 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
5530 (ruby-mode-abbrev-table): Merge initialization and declaration.
5532 2010-10-27 Glenn Morris <rgm@gnu.org>
5534 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
5537 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
5539 * term/ns-win.el: Restore require of cl when compiling.
5540 (menu-bar-final-items): Remove non-existent `windows' menu.
5541 (ns-handle-nxopen): Optionally handle the temp-case.
5542 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
5543 (ns-insert-file, ns-find-file): Use `pop'.
5545 2010-10-26 Glenn Morris <rgm@gnu.org>
5547 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
5549 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
5551 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
5553 * term/common-win.el (x-setup-function-keys): Remove most of the
5554 keymappings. Comment on the remaining ones.
5556 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
5558 * server.el (server-port): New option. (Bug#854)
5559 (server-start): Use server-port.
5561 2010-10-26 Glenn Morris <rgm@gnu.org>
5563 * term/ns-win.el (ns-version-string): Remove unused declaration.
5564 (ns-invocation-args): Change to x-invocation-args.
5565 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
5566 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
5567 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
5568 Use x-invocation-args instead of ns-invocation-args.
5569 (ns-initialize-window-system, handle-args-function-alist):
5570 Use x-handle-args instead of ns-handle-args.
5571 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
5572 * startup.el (command-line-ns-option-alist): Replace
5573 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
5574 ns-handle-iconic with the x- equivalents.
5576 * term/common-win.el (x-select-enable-clipboard):
5577 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
5579 * term/ns-win.el: No need to require cl when compiling.
5580 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
5581 (xw-defined-colors): Use the common-win definitions.
5582 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
5583 (ns-handle-iconic): Make it an alias for x-handle-iconic.
5584 * term/common-win.el (x-select-text, x-alternatives-map)
5585 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
5586 * loadup.el [ns]: Load common-win.
5588 2010-10-26 Daiki Ueno <ueno@unixuser.org>
5590 * epa-mail.el (epa-mail-encrypt): Handle local-part only
5591 recipients; expand mail aliases (Bug#7280).
5593 2010-10-25 Glenn Morris <rgm@gnu.org>
5595 * term/common-win.el (x-handle-switch): Simplify with pop.
5596 Optionally handle numeric switches.
5597 (x-handle-numeric-switch): Just call x-handle-switch.
5598 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
5599 (x-handle-name-switch, x-handle-display, x-handle-args):
5602 * term/ns-win.el: Do not require easymenu.
5603 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
5604 <spell>: Move adjustments to menu-bar.el.
5605 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
5606 <separator-undo, spell>: Move ns-win's adjustments here.
5607 * loadup.el [ns]: Do not load easymenu.
5609 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5611 * image.el (image-checkbox-checked, image-checkbox-unchecked):
5614 * startup.el (fancy-startup-tail): Instead of using inline images,
5615 refer to image files from etc/.
5617 * wid-edit.el (checkbox): Likewise.
5618 (widget-image-find): Center image specs.
5620 2010-10-24 Glenn Morris <rgm@gnu.org>
5622 * term/ns-win.el (x-select-text): Doc fix.
5623 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
5624 (x-select-text): Move to term/common-win.
5625 * term/w32-win.el (xw-defined-colors): Move to common-win.
5626 * term/x-win.el (xw-defined-colors, x-alternatives-map)
5627 (x-setup-function-keys, x-select-text): Move to common-win.
5628 * term/common-win.el (x-select-text, x-alternatives-map)
5629 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
5632 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
5634 * net/mairix.el (mairix-searches-mode-map):
5635 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
5637 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
5639 * progmodes/verilog-mode.el (verilog-directive-re): Make this variable
5640 auto-built for efficiency of execution and updating.
5641 (verilog-extended-complete-re): Support 'pure' fucntion & task
5642 declarations (these have no bodies).
5643 (verilog-beg-of-statement): General cleanup to enable support of
5644 'pure' fucntion & task declarations (these have no bodies).
5645 These efforts together fix Verilog bug210 from veripool; which was also
5646 noticed by Steve Pearlmutter.
5647 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
5648 (verilog-directive-nest-re, verilog-set-auto-endcomments):
5649 Support `elsif. Reported by Shankar Giri.
5650 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
5651 attribute handling for lining up declarations and assignments.
5652 (verilog-beg-of-statement-1): Fix issue where continued declaration
5653 is indented differently if it is after a begin..end clock.
5654 (verilog-in-attribute-p, verilog-skip-backward-comments)
5655 (verilog-skip-forward-comment-p): Support proper treatment of
5656 attributes by indent code. Reported by Jeff Steele.
5657 (verilog-in-directive-p): Fix comment to correctly describe function.
5658 (verilog-backward-up-list, verilog-in-struct-region-p)
5659 (verilog-backward-token, verilog-in-struct-p)
5660 (verilog-in-coverage-p, verilog-do-indent)
5661 (verilog-pretty-declarations): Use verilog-backward-up-list as
5662 wrapper around backward-up-list inorder to properly skip comments.
5663 Reported by David Rogoff.
5664 (verilog-property-re, verilog-endcomment-reason-re)
5665 (verilog-beg-of-statement, verilog-set-auto-endcomments)
5666 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
5667 of if). Reported by Max Bjurling and
5668 (verilog-calc-1): Fix for clocking block in modport
5669 declaration. Reported by Brian Hunter.
5671 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
5673 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
5674 (verilog-gate-keywords, verilog-read-sub-decls)
5675 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
5676 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
5677 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
5678 (verilog-read-decls): Fix spaces in V2K module parameters causing
5679 mis-identification as interfaces, bug287.
5680 (verilog-read-decls): Fix not treating "parameter string" as a
5681 parameter in AUTOINSTPARAM.
5682 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
5683 treating `elsif similar to `endif inside AUTOSENSE.
5684 (verilog-do-indent): Implement correct automatic or static task or
5685 function end comment highlight. Reported by Steve Pearlmutter.
5686 (verilog-font-lock-keywords-2): Fix highlighting of single
5687 character pins, bug264. Reported by Michael Laajanen.
5688 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
5689 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
5690 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
5691 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
5692 (verilog-pretty-expr): Fix interactive arguments, bug272.
5693 Reported by Mark Johnson.
5694 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
5695 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
5696 bug269. Suggested by Gary Delp.
5697 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
5698 (verilog-preprocessor, verilog-set-compile-command):
5699 Create verilog-preprocess and verilog-preprocessor to show
5700 preprocessed output.
5701 (verilog-get-beg-of-line, verilog-get-end-of-line)
5702 (verilog-modi-file-or-buffer, verilog-modi-name)
5703 (verilog-modi-point, verilog-within-string): Move defmacro's
5704 before first use to avoid warning. Reported by Steve Pearlmutter.
5705 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
5706 (verilog-colorize-region, verilog-highlight-buffer)
5707 (verilog-highlight-includes, verilog-highlight-modules)
5708 (verilog-highlight-region, verilog-mode): Rename colorize to
5709 highlight to match other packages. Disable module highlighting,
5710 as received speed complaints, reenable for experimentation only
5711 using new verilog-highlight-modules.
5712 (verilog-read-decls): Fix regexp stack overflow in very large
5713 AUTO_TEMPLATEs, bug250.
5714 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
5715 (verilog-scan): Create verilog-save-buffer-state to standardize
5716 making insignificant changes that shouldn't call hooks.
5717 (verilog-save-no-change-functions, verilog-save-scan-cache)
5718 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
5719 Create verilog-save-no-change-functions to wrap verilog-scan
5720 preservation, and fix to work with nested preserved calls.
5721 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
5722 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
5723 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
5724 (verilog-submit-bug-report): Update variable list to be complete.
5725 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
5726 breaking on-the-fly font-locking.
5727 (verilog-colorize-buffer, verilog-colorize-include-files)
5728 (verilog-colorize-include-files-buffer, verilog-colorize-region)
5729 (verilog-load-file-at-mouse, verilog-load-file-at-point)
5730 (verilog-mode, verilog-read-inst-module-matcher): With point on a
5731 AUTOINST cell instance name, middle mouse button now finds-file on
5732 it. Suggested by Brad Dobbie.
5733 (verilog-alw-get-temps, verilog-auto-reset)
5734 (verilog-auto-sense-sigs, verilog-read-always-signals)
5735 (verilog-read-always-signals-recurse): Fix loop indexes being
5736 AUTORESET. AUTORESET now assumes any variables in the
5737 initialization section of a for() should be ignored.
5738 Reported by Dan Dever.
5739 (verilog-error-font-lock-keywords)
5740 (verilog-error-regexp-emacs-alist)
5741 (verilog-error-regexp-xemacs-alist): Fix error detection of
5742 Cadence HAL, reported by David Asher. Repair drift between the
5743 three similar error variables.
5744 (verilog-modi-lookup, verilog-modi-lookup-cache)
5745 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
5746 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
5747 Fix slow verilog-auto expansion on very large files.
5748 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
5749 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
5750 "{1*2{...". Broke in last revision.
5751 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
5752 submodule connections with replications "{#{a},#{b}}".
5754 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
5756 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
5757 Fix typo in docstring.
5759 2010-10-24 Kenichi Handa <handa@m17n.org>
5761 * face-remap.el (text-scale-adjust): Call read-event with a proper
5764 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5766 * emacs-lisp/unsafep.el: Don't mark functions that display
5767 messages as safe. Suggested by Johan Bockgård.
5769 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5771 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
5772 Turn comments into docstrings.
5774 * minibuffer.el (completion--replace): Move point where it belongs
5775 when there's a common suffix (bug#7215).
5777 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5779 Merge read-color and facemenu-read-color (Bug#7242).
5781 * faces.el (read-color): Use the completion code from
5782 facemenu-read-color. Require match in completion. Doc fix.
5784 * facemenu.el (facemenu-read-color): Alias for read-color.
5785 (facemenu-set-foreground, facemenu-set-background):
5788 * frame.el (set-background-color, set-foreground-color)
5789 (set-cursor-color, set-mouse-color, set-border-color):
5792 2010-10-24 Leo <sdl.web@gmail.com>
5794 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
5795 argument of delete-file and delete-directory (Bug#7011).
5797 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5799 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
5802 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
5804 * emacs-lisp/package.el (package--generate-package-list): Make the
5805 *Packages* buffer read-only.
5807 2010-10-24 Alan Mackenzie <acm@muc.de>
5809 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
5810 result of `c-beginning-of-decl-1' between invocations of a lambda
5811 function (Bug #7265).
5813 2010-10-24 Daiki Ueno <ueno@unixuser.org>
5815 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
5816 executable is not available on the system (Bug#7268).
5818 2010-10-24 Glenn Morris <rgm@gnu.org>
5820 * select.el (selection-coding-system, next-selection-coding-system):
5821 Sync doc with C versions.
5823 * w32-vars.el (x-select-enable-clipboard):
5824 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
5825 * term/common-win.el (x-select-enable-clipboard): Move here.
5827 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
5828 definition of C variable.
5830 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
5831 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
5832 Don't redefine things that are defined in C.
5833 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
5834 (show-trailing-whitespace, auto-hscroll-mode)
5835 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
5836 Set up the appropriate custom properties.
5838 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5841 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
5842 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
5843 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
5844 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
5846 2010-10-23 Glenn Morris <rgm@gnu.org>
5848 * textmodes/flyspell.el (flyspell-mode): If there was an error,
5851 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
5852 Sync docs with C version.
5854 * term/ns-win.el (xw-defined-colors):
5855 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
5857 * term/pc-win.el (x-select-enable-clipboard):
5858 * term/x-win.el (x-select-enable-clipboard):
5859 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
5861 * comint.el (comint-password-prompt-regexp): Make it less vague.
5864 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
5866 * help.el (finder-by-keyword): Remove unnecessary autoload.
5868 2010-10-22 Glenn Morris <rgm@gnu.org>
5870 * loadup.el: Unconditionally load float-sup.
5871 * paren.el (show-paren-delay):
5872 * emacs-lisp/float-sup.el:
5873 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
5874 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
5875 (lazy-lock-stealth-verbose): Assume float support.
5876 * ps-print.el: Assume float support on Emacs.
5877 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
5878 Remove non-float branch.
5880 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
5881 src/Makefile no longer being pre-processed.
5883 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5885 * emacs-lisp/find-func.el (find-library): Use test-completion.
5887 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5889 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
5891 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
5893 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
5894 space in stat format string.
5895 (tramp-send-command): Unset $PS1 when using here documents, in
5896 order not to get several prompts.
5897 (tramp-get-inline-coding): Return `nil' in case of errors.
5899 2010-10-21 Daiki Ueno <ueno@unixuser.org>
5901 * hexl.el (hexl-mode, hexl-mode-exit):
5902 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
5903 (hexl-revert-buffer-function): New function.
5904 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
5906 2010-10-19 Alan Mackenzie <acm@muc.de>
5908 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
5909 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
5910 that these keywords aren't wrongly matched as identifiers.
5912 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
5913 setting of c-new-BEG and c-new-END from c-before-change to
5914 c-after-change. (Bug#7181)
5916 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
5918 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
5921 * custom.el (custom-theme-set-variables): Likewise.
5922 (load-theme): Add custom-theme-set-faces and
5923 custom-theme-set-variables to safe-functions while loading.
5924 (custom-enabled-themes): Mark as risky.
5926 2010-10-18 Julien Danjou <julien@danjou.info>
5928 * bindings.el: Remove end dashes in default mode-line-format.
5930 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
5932 * bindings.el (global-map): Bind C-d to delete-char and deletechar
5933 to delete-forward-char.
5935 * simple.el (normal-erase-is-backspace-mode): Remap delete to
5936 deletechar, and hence delete-forward-char.
5938 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5940 * repeat.el (repeat): Use read-key (bug#6256).
5942 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
5944 * emacs-lisp/unsafep.el: Don't mark functions that display
5945 messages as safe. Suggested by Johan Bockgård.
5947 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5949 * minibuffer.el (completion--replace): Move point where it belongs
5950 when there's a common suffix (bug#7215).
5952 2010-10-19 Kenichi Handa <handa@m17n.org>
5954 * international/characters.el: Add category '|' (word breakable)
5955 to fullwidth characters.
5957 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
5959 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
5960 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
5961 order to make stat results a float. Patch by Andreas Schwab
5962 <schwab@linux-m68k.org>.
5964 2010-10-18 Julien Danjou <julien@danjou.info>
5966 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
5967 hidden by `make-pointer-invisible'.
5969 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5971 * files.el (locate-file-completion-table): Strip non-matching elements
5972 before checking length of list (bug#7238).
5974 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
5976 * custom.el (custom-theme-set-variables): Mark as a safe function.
5977 (load-theme): Check forms using unsafep.
5979 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
5981 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
5983 * textmodes/ispell.el (ispell-aspell-find-dictionary):
5984 Fix aspell data file searching (bug#7230).
5986 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
5988 * cus-theme.el (custom-theme--migrate-settings): New var.
5989 (customize-create-theme): Allow editing the `user' theme.
5990 (custom-theme-add-variable, custom-theme-add-var-1)
5991 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
5992 to the front of each variable or face widget.
5993 (custom-theme-write): Save theme settings in the correct order.
5994 Optionally, remove saved settings from user customizations.
5995 (custom-theme-write-variables, custom-theme-write-faces):
5996 Save only the checked widgets.
5997 (customize-themes): Add a link for migrating custom settings.
5999 * custom.el (custom-declare-theme, provide-theme):
6000 Use custom-theme-name-valid-p.
6001 (custom-theme-name-valid-p): Remove checks that are now
6002 unnecessary since themes no longer obey load-path.
6004 * cus-edit.el (custom-variable-value-create): For the simple
6005 style, hide documentation string when hidden.
6007 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6009 * cus-edit.el (custom-variable, custom-face): Combine the
6010 :inhibit-magic and :display-style properties into a single
6011 :custom-style property.
6012 (custom-toggle-hide-variable, custom-toggle-hide-face):
6013 New functions. If hiding an edited value, save it to :shown-value.
6014 (custom-variable-value-create, custom-face-value-create): Use them.
6015 (custom-magic-reset): Allow magic property to be unset.
6017 * custom.el: Custom themes no longer use load-path.
6018 (custom-theme-load-path): New option. Change built-in theme
6020 (custom-enabled-themes): Add custom-theme-load-path dependency.
6021 (custom-theme--load-path): New function.
6022 (load-theme, custom-available-themes): Use it.
6024 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
6025 (customize-themes): Link to custom-theme-load-path variable.
6026 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
6027 :custom-style property.
6029 * themes/*.el: Moved to etc/.
6031 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
6033 * textmodes/reftex-cite.el
6034 (reftex-extract-bib-entries-from-thebibliography): Do not move
6035 point when searching for \bibitem entries. Match entries with
6036 spaces or tabs in front of arguments.
6038 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6040 * cus-theme.el (customize-create-theme): Delete overlays after
6041 erasing. If given a THEME arg, display only the faces of that arg
6042 instead of custom-theme--listed-faces.
6043 (custom-theme-variable-menu, custom-theme-variable-action)
6044 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
6045 (custom-theme-add-variable, custom-theme-add-face): Apply value
6046 from the theme settings, instead of the current value.
6047 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
6048 (custom-theme-visit-theme): Allow calling outside theme buffers.
6049 (custom-theme-merge-theme): Don't enable the theme when merging.
6050 (custom-theme-write-variables, custom-theme-write-faces): Use the
6051 :shown-value properties to save buffer values, not global ones.
6052 (customize-themes): Display a warning about user customizations.
6054 * cus-edit.el (custom-variable-value-create)
6055 (custom-face-value-create): Obey new special properties
6056 :shown-value and :inhibit-magic.
6058 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
6060 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
6061 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
6064 2010-10-14 Kenichi Handa <handa@m17n.org>
6066 * mail/rmail.el (rmail-show-message-1): Catch an error of
6067 base64-decode-region and just show an error message (bug#7165).
6069 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
6070 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
6071 a font-spec (bug#7197).
6073 2010-10-14 Glenn Morris <rgm@gnu.org>
6075 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
6077 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
6079 * international/mule.el (define-coding-system):
6080 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6081 * composite.el (compose-region): Fix typo in docstring.
6083 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
6085 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
6086 only after checking the theme-face property.
6088 * faces.el (face-spec-reset-face): Reset all attributes in one
6089 single call to set-face-attribute.
6090 (face-spec-match-p): Make it a defsubst.
6091 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
6092 (x-create-frame-with-faces, tty-create-frame-with-faces)
6093 (tty-set-up-initial-frame-faces): Don't recompute face specs in
6094 frame-set-background-mode, since they are recomputed immediately
6095 afterwards in face-set-after-frame-default.
6096 (face-set-after-frame-default): Minor optimization.
6097 (cursor): Provide non-trivial defface spec.
6099 * custom.el (custom-theme-recalc-face): Simplify.
6101 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
6103 * calc/calc-alg.el (math-var): Rename from `var'.
6104 (math-is-polynomial, math-is-poly-rec): Replace `var'
6107 * calc/calcalg2.el (math-var): Rename from `var'.
6108 (calcFunc-table, math-scan-for-limits): Replace `var'
6111 2010-10-13 Glenn Morris <rgm@gnu.org>
6113 * subr.el (last): Deal with dotted lists (reported in bug#7174).
6115 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
6117 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
6119 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
6121 * net/tls.el (tls-program): Remove spurious %s from openssl.
6122 (tls-starttls-switches): Remove starttls hack.
6123 (open-tls-stream): Ditto.
6124 (tls-find-starttls-argument): Ditto.
6126 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
6128 * image.el (image-library-alist): Declare as obsolete alias.
6129 (image-type-available-p): Use `dynamic-library-alist'.
6131 * term/w32-win.el (dynamic-library-alist):
6132 Use instead of `image-library-alist'.
6134 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
6136 * subr.el (last): Make it faster. (Bug#7174)
6138 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
6140 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
6142 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
6144 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
6145 (describe-theme-1): Extract doc from unloaded themes.
6147 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
6149 * themes/tango-theme.el:
6150 * themes/tango-dark-theme.el:
6151 * themes/wheatgrass-theme.el: New files.
6153 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
6155 * cus-theme.el (describe-theme, customize-themes)
6156 (custom-theme-save): New commands.
6157 (custom-new-theme-mode-map): Bind C-x C-s.
6158 (custom-new-theme-mode): Use custom--initialize-widget-variables.
6159 (customize-create-theme): New optional arg THEME.
6160 (custom-theme-revert): Use it.
6161 (custom-theme-visit-theme): Remove dead code.
6162 (custom-theme-merge-theme): Use custom-available-themes.
6163 (custom-theme-write): Make interactive.
6164 (custom-theme-write): Use custom-theme-name-valid-p.
6165 (describe-theme-1, custom-theme-choose-revert)
6166 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
6168 (custom-theme-allow-multiple-selections): New option.
6169 (custom-theme-choose-mode): New major mode.
6171 * custom.el (custom-theme-set-variables): Remove dead code.
6172 Obey custom--inhibit-theme-enable.
6173 (custom--inhibit-theme-enable): New var.
6174 (provide-theme): Obey it.
6175 (load-theme): Replace load with manual read/eval, in order to
6176 check for correctness. Use custom-theme-name-valid-p.
6177 (custom-theme-name-valid-p): New function.
6178 (custom-available-themes): Use it.
6180 * cus-edit.el (custom--initialize-widget-variables): New function.
6181 (Custom-mode): Use it.
6183 * cus-face.el (custom-theme-set-faces): Remove dead code.
6184 Obey custom--inhibit-theme-enable.
6186 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
6188 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
6190 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
6192 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
6194 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
6195 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
6196 (mac-right-option-modifier): New alias for ns-right-option-modifier.
6198 * cus-start.el (all): ns-right-alternate-modifier is new.
6200 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
6202 * emacs-lisp/lisp.el (lisp-completion-at-point):
6203 Use emacs-lisp-mode-syntax-table for the whole function.
6205 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
6207 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
6208 instead of font-lock-mode before adding keywords.
6209 Remove hi-lock-mode off code. Remove inhibit hack.
6210 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
6211 non-nil; removed hook inhibit hack.
6213 2010-10-12 Glenn Morris <rgm@gnu.org>
6215 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
6216 (load-path-shadows-find): ... to this.
6217 (list-load-path-shadows): Update for above change.
6219 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
6221 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
6223 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
6224 Fix comment for declare-function.
6226 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
6228 * custom.el (custom-fix-face-spec): New function; code moved from
6229 custom-face-edit-fix-value.
6230 (custom-push-theme): Use it when checking if a face has been
6231 changed outside customize.
6232 (custom-available-themes): New function.
6233 (load-theme): Use it.
6235 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
6237 * custom.el (custom-push-theme): Cleanup (use cond).
6238 (disable-theme): Recompute the saved-face property.
6239 (custom-theme-recalc-face): Follow face alias before setting prop.
6241 * image.el (image-checkbox-checked, image-checkbox-unchecked):
6242 New variables, containing checkbox images.
6244 * startup.el (fancy-startup-tail):
6245 * wid-edit.el (checkbox): Use them.
6247 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
6249 * shell.el (shell-mode-map):
6250 * progmodes/modula2.el (m2-mode-map):
6251 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
6252 * play/mpuz.el (mpuz-mode-map):
6253 * play/landmark.el (lm-mode-map):
6254 * play/decipher.el (decipher-mode-map):
6255 * play/5x5.el (5x5-mode-map):
6256 * net/telnet.el (telnet-mode-map):
6257 * net/quickurl.el (quickurl-list-mode-map):
6258 * net/mairix.el (mairix-searches-mode-map):
6259 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
6260 * net/dig.el (dig-mode-map):
6261 * mail/mspools.el (mspools-mode-map):
6262 * hexl.el (hexl-mode-map):
6263 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
6264 (wordstar-C-o-map, wordstar-C-q-map):
6265 * emacs-lisp/edebug.el (edebug-eval-mode-map):
6266 * emacs-lisp/chart.el (chart-map):
6267 * edmacro.el (edmacro-mode-map):
6268 * erc/erc-list.el (erc-list-menu-mode-map):
6269 * array.el (array-mode-map): Declare and define in one step.
6271 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
6273 2010-10-10 Daiki Ueno <ueno@unixuser.org>
6275 * epa.el (epa-passphrase-callback-function): Display filename
6276 passed as the 3rd arg.
6277 * epa-file.el (epa-file-passphrase-callback-function):
6278 Pass filename to epa-passphrase-callback-function.
6280 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
6282 * cus-edit.el (custom-face-widget-to-spec)
6283 (custom-face-get-current-spec, custom-face-state): New functions.
6284 (custom-face-set, custom-face-mark-to-save)
6285 (custom-face-value-create, custom-face-state-set): Use them.
6287 * cus-theme.el (custom-theme--listed-faces): New var.
6288 (customize-create-theme): Use *Custom Theme* as the buffer name.
6289 Set revert-buffer-function. Optional arg BUFFER. Insert all
6290 faces listed in custom-theme--listed-faces.
6291 (custom-theme-revert): New function.
6292 (custom-theme-add-variable, custom-theme-add-face): Insert at the
6294 (custom-theme-write): Prompt for theme name if empty.
6295 (custom-theme-write-variables): Use dolist.
6296 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
6298 2010-10-09 Alan Mackenzie <acm@muc.de>
6300 Enhance fontification of declarators to take account of the
6301 presence/absence of "typedef".
6303 * cc-engine.el (c-forward-type): New &optional param
6305 (c-forward-decl-or-cast-1): cdr of return value now indicates the
6306 presence of either or both of a "struct"-like keyword and "typedef".
6308 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
6309 fontification of declarators which follow a "}".
6310 (c-font-lock-declarations): Fontify declarators according to the
6311 presence/absence of "typedef".
6313 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
6315 (c-typedef-decl-key): New lang variable built from
6316 c-typedef-decl-kwds.
6318 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
6320 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
6321 since that's too annoying. Move the filter groups commands to
6324 * epa.el (epa-passphrase-callback-function): Say what we're
6325 querying the password for.
6327 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
6328 behaviour, don't bury the ibuffer buffer when visiting other buffers.
6330 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
6332 * cus-edit.el (custom-commands, custom-buffer-create-internal)
6333 (custom-magic-value-create): Pad button tags with spaces.
6334 (custom-face-edit): New variable.
6335 (custom-face-value-create): Determine whether to use the usual
6336 face editor here, instead of using custom-face-selected.
6337 Pass face defaults to custom-face-edit widget.
6338 (custom-face-selected, custom-display-unselected): Delete widgets.
6339 (custom-display-unselected-match): Function removed.
6340 (custom-face-set, custom-face-mark-to-save):
6341 Accept custom-face-edit widgets as the direct widget child.
6343 * wid-edit.el (widget--completing-widget): New var.
6344 (widget-default-complete): Bind it when doing completion.
6345 (widget-string-complete, widget-file-complete): Use it.
6347 2010-10-09 Glenn Morris <rgm@gnu.org>
6349 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
6350 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
6351 (holiday-hebrew-misc): Small simplifications.
6353 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
6355 * net/browse-url.el: Don't require thingatpt, term, dired,
6356 executable, or w3-auto when compiling.
6357 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
6359 (browse-url-text-emacs): Require term.
6361 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
6363 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
6365 2010-10-08 Glenn Morris <rgm@gnu.org>
6367 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
6369 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
6370 (shadows-compare-text-p): Make it an obsolete alias for...
6371 (load-path-shadows-compare-text): ... new name.
6372 (find-emacs-lisp-shadows): Update for above name change.
6373 (load-path-shadows-same-file-or-nonexistent): New name for the old
6374 shadow-same-file-or-nonexistent.
6376 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
6378 * minibuffer.el (completion--some, completion--do-completion)
6379 (minibuffer-complete-and-exit, minibuffer-completion-help)
6380 (completion-basic-try-completion)
6381 (completion-basic-all-completions)
6382 (completion-pcm--find-all-completions): Use lexical-let to
6383 avoid some false matches in variable completion (Bug#7056)
6385 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
6387 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
6389 2010-10-08 Leo <sdl.web@gmail.com>
6391 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
6392 return non-nil if the file exists (Bug#7090).
6394 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
6396 * minibuffer.el (completion--replace):
6397 Better preserve markers (bug#7138).
6399 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
6401 * server.el (server-process-filter): Doc fix.
6403 2010-10-08 Drew Adams <drew.adams@oracle.com>
6405 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
6407 2010-10-08 Glenn Morris <rgm@gnu.org>
6409 * vc/ediff-wind.el (ediff-setup-control-frame):
6410 * vc/ediff-ptch.el (ediff-default-backup-extension):
6411 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
6412 (ediff-exec-process): Remove system-types emx, windows-95.
6414 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
6416 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
6418 * cus-edit.el (custom-variable, custom-face): Doc fix.
6419 (custom-face-edit): Add value-create attribute.
6420 (custom-face-edit-value-create)
6421 (custom-face-edit-value-visibility-action): New functions.
6422 Hide unused face attributes by default, and add a visibility toggle.
6423 (custom-face-edit-deactivate): Show empty values with shadow face.
6424 (custom-face-selected): Only use this for face specs with default
6426 (custom-face-value-create): Cleanup.
6428 * wid-edit.el (widget-checklist-value-create): Use dolist.
6429 (widget-checklist-match-find): Make second arg optional.
6431 2010-10-07 Glenn Morris <rgm@gnu.org>
6433 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
6436 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
6437 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
6438 load-path-shadows-mode, update references.
6439 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
6440 Rename variable and button.
6441 (list-load-path-shadows): Update button caller.
6443 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
6445 * emacs-lisp/smie.el (smie-bnf-classify): New function.
6446 (smie-bnf-precedence-table): Use it to remember the closers/openers.
6447 (smie-merge-prec2s): Handle those new entries.
6448 (smie-prec2-levels): Only set precedence to nil for actual
6450 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
6451 that is now unnecessary.
6453 2010-10-07 Miles Bader <miles@gnu.org>
6455 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
6457 2010-10-07 Glenn Morris <rgm@gnu.org>
6459 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
6460 (mail-position-on-field): Remove declarations.
6461 (mail-position-on-field): Autoload it.
6462 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
6463 and mail-header-end. Don't require sendmail.
6465 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
6466 (shadow-mode): New mode.
6467 (shadow-find-file): New button.
6468 (list-load-path-shadows): Use shadow-mode and buttons.
6470 * iimage.el (iimage-version): Remove.
6471 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
6472 Turn into defcustoms.
6473 (iimage-mode-map): Give it a doc string.
6475 * calendar/appt.el (appt-activate): Give a warning rather than an error
6476 if there is no diary-file.
6478 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
6480 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6481 Use `tramp-handle-find-backup-file-name'.
6483 2010-10-06 Glenn Morris <rgm@gnu.org>
6485 * font-core.el (font-lock-defaults-alist): Remove variable.
6486 (font-lock-mode): Doc fix.
6487 (font-lock-default-function): Do not consult font-lock-defaults-alist.
6488 * font-lock.el (font-lock-refresh-defaults): Doc fix.
6489 (font-lock-set-defaults): Doc fix.
6490 Do not consult font-lock-defaults-alist.
6492 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
6494 * emacs-lisp/cl.el: No longer provide cl-19.
6496 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
6498 * net/tramp.el (tramp-handle-directory-files-and-attributes)
6499 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
6500 New defuns, taken from tramp-smb.el.
6501 (tramp-coding-system-change-eol-conversion)
6502 (tramp-set-process-query-on-exit-flag): Remove.
6504 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
6505 (tramp-compat-coding-system-change-eol-conversion)
6506 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
6509 * net/tramp-gvfs.el:
6510 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
6511 by `tramp-compat-set-process-query-on-exit-flag'.
6513 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6514 Use `tramp-handle-directory-files-and-attributes',
6515 `tramp-handle-file-exists-p' and
6516 `tramp-handle-file-newer-than-file-p'.
6517 (tramp-imap-handle-file-exists-p)
6518 (tramp-imap-handle-file-executable-p)
6519 (tramp-imap-handle-file-readable-p)
6520 (tramp-imap-handle-directory-files-and-attributes)
6521 (tramp-imap-handle-file-newer-than-file-p): Remove.
6523 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
6524 by `tramp-compat-set-process-query-on-exit-flag' and
6525 `tramp-coding-system-change-eol-conversion' by
6526 `tramp-compat-coding-system-change-eol-conversion'.
6528 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6529 Use `tramp-handle-directory-files-and-attributes',
6530 `tramp-handle-file-exists-p' and
6531 `tramp-handle-file-newer-than-file-p'.
6532 (tramp-smb-handle-directory-files-and-attributes)
6533 (tramp-smb-handle-file-exists-p)
6534 (tramp-smb-handle-file-newer-than-file-p): Remove.
6535 (tramp-smb-maybe-open-connection):
6536 Replace `tramp-set-process-query-on-exit-flag' by
6537 `tramp-compat-set-process-query-on-exit-flag'.
6539 2010-10-05 Glenn Morris <rgm@gnu.org>
6541 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
6543 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
6545 Continue reorganization of load dependencies. (Bug#7156)
6547 * net/tramp.el (tramp-handle-file-local-copy-hook)
6548 (tramp-delete-temp-file-function): Move down.
6549 (tramp-exists-file-name-handler): Move up.
6550 (tramp-register-file-name-handlers): Simplify autoload.
6551 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
6552 (tramp-handle-directory-files, tramp-handle-dired-uncache)
6553 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
6554 (tramp-handle-file-name-completion)
6555 (tramp-handle-file-name-directory)
6556 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
6557 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
6558 (tramp-handle-find-backup-file-name)
6559 (tramp-handle-insert-file-contents, tramp-handle-load)
6560 (tramp-handle-substitute-in-file-name)
6561 (tramp-handle-unhandled-file-name-directory)
6562 (tramp-mode-string-to-int, tramp-local-host-p)
6563 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
6565 * net/tramp-gvfs.el (top):
6566 * net/tramp-smb.el (top): Do not require 'tramp-sh.
6568 * net/tramp-sh.el (all): Move several objects to tramp.el, see
6569 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
6571 2010-10-04 Glenn Morris <rgm@gnu.org>
6573 * calendar/appt.el (appt-add): Ensure reminders are enabled.
6574 (appt-activate): Give status messages.
6576 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6578 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
6579 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
6580 `gnutls-negotiate' (formerly `starttls-negotiate').
6581 Remove trivial wrapper `starttls-open-stream'.
6583 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
6585 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
6586 log-outgoing commands.
6587 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
6588 to create a buffer local revert-buffer-function variable.
6589 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
6590 revert-buffer-function lambda.
6592 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6594 * net/gnutls.el (starttls-negotiate): Use the plist interface to
6595 `gnutls-boot'. Make TYPE the only required parameter.
6596 Allow TRUSTFILES and KEYFILES to be lists.
6597 (open-ssl-stream): Use it.
6599 2010-10-03 Glenn Morris <rgm@gnu.org>
6601 * subr.el (directory-sep-char): Remove obsolete variable.
6602 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
6605 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
6606 * vc/vc.el (vc-static-header-alist): Doc fix.
6607 * vc/vc-cvs.el (vc-cvs-header):
6608 * vc/vc-rcs.el (vc-rcs-header):
6609 * vc/vc-sccs.el (vc-sccs-header):
6610 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
6611 * obsolete/vc-mcvs.el (vc-mcvs-header):
6612 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
6615 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
6617 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
6618 Remove obsolete use of binary-overwrite-mode (Bug#7001).
6620 2010-10-03 Glenn Morris <rgm@gnu.org>
6622 * obsolete/x-menu.el: Remove file, obsolete since 21.1.
6624 * textmodes/rst.el (rst-font-lock-keywords-function):
6627 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
6629 * printing.el: Drop Emacs 20 code.
6631 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
6632 without having used appt.el already).
6634 * subr.el (make-local-hook): Remove function obsolete since 21.1.
6635 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
6636 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
6638 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
6639 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
6641 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
6642 (charset-width, find-charset-region, chars-in-region, forward-point)
6643 (encode-coding-string, coding-system-p, ccl-execute-on-string)
6644 (define-ccl-program, multibyte-string-p, string-make-multibyte):
6645 Remove compatibility cruft (none of these are used by ps*.el).
6647 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6649 * subr.el (booleanp): Return t instead of a list (Bug#7086).
6651 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
6653 * server.el (server-process-filter, server-return-error):
6654 Give emacsclient time to shut down after receiving an error string.
6656 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
6658 * files.el (remote-file-name-inhibit-cache): New defcustom.
6660 * time.el (display-time-file-nonempty-p):
6661 Use `remote-file-name-inhibit-cache'.
6663 * net/tramp.el (tramp-completion-reread-directory-timeout):
6666 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
6667 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
6668 `remote-file-name-inhibit-cache'. Check also for an integer
6669 value. Add/increase counter when `tramp-verbose' >= 10.
6670 (tramp-set-file-property): Add/increase counter when
6671 `tramp-verbose' >= 10.
6673 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6674 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
6675 (tramp-bug): Set tramp-autoload cookie. Report all interned
6676 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
6677 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
6678 characters only in strings.
6680 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
6681 to backward compatibility.
6683 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
6684 (tramp-handle-file-name-all-completions)
6685 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
6686 (tramp-open-connection-setup-interactive-shell):
6687 Call `tramp-cleanup-connection' directly.
6689 2010-10-02 Glenn Morris <rgm@gnu.org>
6691 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
6693 * subr.el (char-bytes): Remove obsolete function.
6695 * isearch.el (isearch-return-char): Remove obsolete function.
6697 * mouse.el: No longer provide mldrag.
6698 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
6699 Remove obsolete aliases.
6701 * comint.el (comint-kill-output): Remove obsolete alias.
6703 * composite.el (decompose-composite-char): Remove obsolete function.
6704 * ps-def.el (decompose-composite-char): Remove unused function.
6706 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
6708 * outline.el (outline-visible): Remove obsolete function.
6710 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
6711 * faces.el (internal-find-face, internal-get-face)
6712 (frame-update-faces, frame-update-face-colors)
6713 (x-frob-font-weight, x-frob-font-slant)
6714 (internal-frob-font-weight, internal-frob-font-slant)
6715 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
6716 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
6717 (x-make-font-bold-italic): Remove functions and aliases, obsolete
6719 * emulation/viper-util.el (viper-get-face):
6720 * obsolete/lucid.el (find-face, get-face): Use facep.
6721 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
6722 Remove unused functions.
6723 * vc/ediff-util.el (ediff-submit-report): Doc fix.
6725 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
6726 delete tempfile if interrupted during compilation.
6728 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6730 * net/tls.el (tls-starttls-switches): Give up on using starttls with
6732 (tls-program): Add --insecure to be consistent with the defaults from
6733 openssl s_client. Now all three commands are insecure.
6735 2010-10-01 Eli Zaretskii <eliz@gnu.org>
6737 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
6738 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
6739 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
6741 2010-10-01 Glenn Morris <rgm@gnu.org>
6743 * obsolete/sc.el: Remove file.
6745 * files.el (temporary-file-directory): On darwin, also try
6746 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
6748 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
6750 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
6751 Let's not break compatibility gratuitously, shall we?
6753 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
6755 * net/tls.el (tls-starttls-switches): New variable.
6756 (tls-find-starttls-argument): Use it.
6757 (open-tls-stream): Ditto.
6759 * net/netrc.el (netrc-credentials): Return the value of the "default"
6761 (netrc-machine): Ditto.
6763 2010-09-30 Eli Zaretskii <eliz@gnu.org>
6765 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
6767 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
6769 * server.el (server-start): Don't write pid to the authentication file.
6770 (server-create-tty-frame): Don't send pid.
6771 (server-process-filter): Send pid at the start of every connection.
6773 2010-09-30 Glenn Morris <rgm@gnu.org>
6775 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
6776 (show-all-diary-entries): Remove obsolete function aliases.
6778 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
6779 Remove options, obsolete since 22.1.
6780 (appt-display-format, appt-display-message):
6781 Remove backwards-compatibility code.
6782 (appt-check): No longer check appt-issue-message.
6783 (appt-make-list): No longer autoload it. Doc fix. No longer
6784 activate the package.
6786 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
6788 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
6789 (starttls-negotiate): Just call boot, and let the handshake be
6790 triggered from the read loop.
6792 2010-09-29 Glenn Morris <rgm@gnu.org>
6794 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
6795 not displaying the diary.
6796 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
6797 * calendar/appt.el (appt-check): No longer need to kill diary.
6799 * calendar/diary-lib.el (diary-list-entries): Move the
6800 "Preparing..." message entirely here.
6801 (diary-simple-display, diary-fancy-display): Move "Preparing..."
6802 messages to diary-list-entries.
6803 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
6804 diary-display-function.
6806 * calendar/diary-lib.el (diary-include-other-diary-files):
6807 Trap some recursive includes.
6809 * calendar/appt.el (appt-activate): Check diary file.
6811 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
6813 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
6816 * calendar/time-date.el: No need to require cl for Emacs 21.
6818 2010-09-28 Glenn Morris <rgm@gnu.org>
6820 * calendar/appt.el (appt-check): Minor simplification.
6822 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
6824 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
6827 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
6829 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
6830 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
6832 2010-09-27 Kenichi Handa <handa@m17n.org>
6834 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
6837 2010-09-27 Kenichi Handa <handa@m17n.org>
6839 * international/mule.el (define-coding-system): Docstring fixed.
6841 * international/mule-diag.el (describe-character-set): Use princ
6842 with proper print-length and print-level instead of insert.
6844 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
6846 * window.el (walk-windows): Doc fix (bug#7105).
6848 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6850 * emacs-lisp/float-sup.el (e): Remove.
6852 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
6854 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
6856 (starttls-negotiate): Use it.
6858 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
6860 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
6863 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
6865 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
6867 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
6869 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
6871 * net/netrc.el (netrc-store-data): New function.
6873 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
6875 * net/gnutls.el: GnuTLS glue code to set up a connection.
6877 2010-09-25 Julien Danjou <julien@danjou.info>
6879 * notifications.el: Call dbus-register-signal only if it is bound.
6881 2010-09-25 Glenn Morris <rgm@gnu.org>
6883 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6884 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
6885 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
6886 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
6887 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
6888 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
6889 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
6890 * eshell/esh-util.el, eshell/esh-var.el:
6891 Remove leading `*' from docs of faces and defcustoms.
6893 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
6895 * eshell/em-ls.el (eshell-ls-archive-regexp):
6896 * eshell/esh-util.el (eshell-tar-regexp):
6897 * ibuffer.el (ibuffer-compressed-file-name-regexp):
6898 * info.el (Info-suffix-list):
6899 * international/mule.el (auto-coding-alist):
6900 * woman.el (woman-file-regexp, woman-file-compression-regexp):
6901 * progmodes/etags.el (tags-compression-info-list):
6902 Support xz compression.
6904 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
6906 * files.el (get-free-disk-space): Don't assume the "df" output
6907 columns line up (Bug#6995).
6909 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
6911 * finder.el (finder-unknown-keywords):
6912 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
6913 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
6915 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
6917 * server.el (server-start): Revert part of 2010-08-08 change. Using
6918 address 127.0.0.1 for local host is now done in Fmake_network_process.
6920 2010-09-24 Glenn Morris <rgm@gnu.org>
6922 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
6923 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
6924 * textmodes/css-mode.el, textmodes/dns-mode.el:
6925 Move autoloaded auto-mode-alist entries to files.el.
6926 * files.el (auto-mode-alist): Move entries here.
6928 2010-09-23 Glenn Morris <rgm@gnu.org>
6930 * isearch.el (isearch-lazy-highlight-cleanup)
6931 (isearch-lazy-highlight-initial-delay)
6932 (isearch-lazy-highlight-interval)
6933 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
6934 * net/net-utils.el (ipconfig-program-options):
6935 Move aliases to options before the associated definitions.
6937 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6939 * newcomment.el (comment-normalize-vars): Better test validity of
6942 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6944 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
6945 (float-e): New name for `e'.
6946 (degrees-to-radians, radians-to-degrees):
6947 * calendar/solar.el (solar-longitude):
6948 * calculator.el (calculator-registers, calculator-funcall):
6949 * textmodes/artist.el (artist-spray-random-points):
6950 * play/bubbles.el (bubbles--initialize-images): Use new names.
6952 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
6954 Update to CEDET 1.0's version of EIEIO.
6956 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
6958 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
6959 (eieio-default-eval-maybe): Eval val instead of unquoting only.
6960 (class-precedence-list): If class is nil, return nil.
6961 (eieio-generic-call): If class of first input arg is nil, don't
6962 look up static methods, and do check for primary methods.
6963 (initialize-instance): See if the default needs to be evaluated
6964 during the constructor.
6965 (eieio-perform-slot-validation-for-default): Don't do the check
6966 for values that will eventually be evaluated.
6967 (eieio-eval-default-p): New function.
6968 (eieio-default-eval-maybe): Use it.
6970 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
6972 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
6973 method-invocation-order.
6974 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
6975 (eieio-class-precedence-dfs): Compute class precedence list using
6977 (eieio-class-precedence-bfs): Compute class precedence list using
6979 (eieio-class-precedence-c3): Compute class precedence list using
6981 (class-precedence-list): New function.
6982 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
6983 (inconsistent-class-hierarchy): New error symbol.
6984 (call-next-method): Stow the replacement argument list for future
6985 call-next-method invocations.
6987 2010-09-23 Glenn Morris <rgm@gnu.org>
6989 * calendar/appt.el (appt-check): If not displaying the diary,
6990 use (diary 1) to only get the entries we need.
6991 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
6992 that it is in day order. (Bug#7019)
6994 * calendar/appt.el (appt-check): Rather than showing the diary,
6995 just turn off invisible display, and only if needed.
6997 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
6999 2010-09-23 Glenn Morris <rgm@gnu.org>
7001 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
7002 (byte-compile-defvar, byte-compile-cl-warn):
7003 Start warnings with lower-case, like the majority.
7005 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
7007 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
7009 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
7010 * files.el (auto-mode-alist): Move ld-script entries here, further down
7013 * vc/add-log.el: Don't require timezone when compiling.
7014 (timezone-make-date-sortable): Autoload it.
7015 (change-log-sortable-date-at): Don't require timezone.
7016 Use `ignore-errors'.
7018 * comint.el (comint-use-prompt-regexp-instead-of-fields):
7019 Move alias before definition, so it does not need autoloading.
7021 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
7022 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
7023 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
7024 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
7025 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
7026 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
7027 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
7028 * textmodes/tex-mode.el, textmodes/two-column.el:
7029 Remove leading `*' from docs of defcustoms etc.
7031 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
7033 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
7035 2010-09-22 Dan Christensen <jdc@uwo.ca>
7037 * calendar/time-date.el (date-to-time): Try using parse-time-string
7038 first before using the slower timezone-make-date-arpa-standard.
7040 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
7042 * calendar/time-date.el (format-seconds): Comment fix.
7044 2010-09-22 Glenn Morris <rgm@gnu.org>
7046 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
7047 is not automatically buffer-local.
7049 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7051 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
7052 (smie-indent-comment): Be more careful with comment-start-skip.
7053 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
7054 (smie-indent-functions): Use them.
7056 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
7058 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
7060 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
7062 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
7063 tool-bar-position. Don't modify frame parameters here.
7064 (menu-bar-options-save): Add tool-bar-position.
7066 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
7068 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7070 * textmodes/reftex-parse.el (reftex-what-macro)
7071 (reftex-context-substring): Let-bind forward-sexp-function to nil
7072 since we don't need/want to treat \begin...\end as a block (bug#7053).
7074 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
7076 * simple.el (blink-matching-open): Use syntax-class.
7078 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
7079 Set invisibility spec for pascal's outline mode.
7080 (pascal-outline-change): Clean up calling convention.
7081 (pascal-show-all, pascal-hide-other-defuns): Update callers.
7083 * progmodes/prolog.el (prolog-smie-forward-token)
7084 (prolog-smie-backward-token): New functions.
7085 (prolog-mode-variables): Use them to parse "!," correctly.
7086 Set up smie-blink-matching for ".".
7088 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
7090 (ispell-region, ispell-process-line): Update users.
7092 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
7095 * textmodes/ispell.el: Fix commenting convention.
7096 (ispell-parse-output): Simplify, use push.
7097 (ispell-region): Use match-string-no-properties.
7098 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
7099 (ispell-minor-mode): Use define-minor-mode.
7100 (ispell-message): Remove unused var `skip-regexp'.
7101 (ispell-add-per-file-word-list): Use dynamic let-binding.
7102 Try and use the proper comment marker.
7104 * mail/sendmail.el: Fix commenting convention.
7105 (sendmail-send-it): Use line-beginning-position.
7107 * help-fns.el (describe-variable): Add original value, if applicable.
7109 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
7111 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
7113 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
7115 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7117 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
7118 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
7119 (smie-prec2-levels): Use them to better diagnose precedence cycles.
7120 (smie-blink-matching-check): Don't signal a mismatch if car is t.
7121 (smie-blink-matching-open): Rewrite to remove assumptions, so that
7122 something like "." can also be a closer.
7123 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
7124 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
7125 Rename internal functions to use "--". Update callers.
7127 * frame.el (make-frame-names-alist): Don't list frames on other displays.
7129 * fringe.el (fringe-styles): New var.
7130 (fringe-mode, fringe-query-style): Use it.
7132 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
7134 * progmodes/sql.el: Version 2.8
7135 (sql-login-params): Update widget structure; changes still needed.
7136 (sql-product-alist): Add :list-all and :list-table features for
7137 SQLite, Postgres and MySQL products.
7138 (sql-redirect): Handle default value.
7139 (sql-execute, sql-execute-feature): New functions.
7140 (sql-read-table-name): New function.
7141 (sql-list-all, sql-list-table): New functions. User API.
7142 (sql-mode-map, sql-interactive-mode-map): Add key definitions
7143 for above functions.
7144 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
7145 for above functions.
7146 (sql-postgres-login-params): Add user and database defaults.
7147 (sql-buffer-live-p): Bug fix.
7148 (sql-product-history): New variable.
7149 (sql-read-product): New function. Use it.
7150 (sql-set-product, sql-product-interactive): Use it.
7151 (sql-connection-history): New variable.
7152 (sql-read-connection): New function. Use it.
7153 (sql-connect): New function.
7154 (sql-for-each-login): Redesign function interface.
7155 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
7156 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
7157 (sql-comint): Check for program. Existing live buffer.
7158 (sql-comint-postgres): Add port parameter.
7160 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7162 * emacs-lisp/warnings.el: Fix commenting convention.
7163 (display-warning): Use special mode and make the buffer read-only.
7165 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
7167 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
7168 empty string when it follows a repeated or optional pattern.
7170 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7172 * indent.el (indent-according-to-mode): Apply syntax-propertize.
7173 (indent-region): Use indent-according-to-mode.
7175 2010-09-18 Eli Zaretskii <eliz@gnu.org>
7177 * fringe.el (fringe-mode): Doc fix.
7179 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
7181 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
7182 refreshing the preview buffer.
7184 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7186 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
7187 (latex-syntax-propertize-rules): New consts; replace
7188 tex-font-lock-syntactic-keywords.
7189 (tex-env-mark, latex-env-before-change): New functions.
7190 (latex-electric-env-pair-mode): New minor mode.
7191 (tex-font-lock-verb): Change arguments; do move point.
7192 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
7193 representation as a form of comment.
7194 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
7195 (doctex-syntax-propertize-rules): New const; replaces
7196 doctex-font-lock-syntactic-keywords.
7197 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
7199 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
7200 (fortran-make-syntax-propertize-function): New function; replaces
7201 fortran-font-lock-syntactic-keywords.
7202 (fortran-mode): Use it.
7203 (fortran-line-length): Use it. Improve interactive spec.
7205 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
7206 (syntax-propertize-rules): Add var-ref case. Fix offset computation
7207 when adding surrounding \(..\).
7209 * progmodes/js.el (js-mode): Fix last change (bug#7054).
7211 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7213 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
7214 Use with-current-buffer.
7216 * isearch.el (isearch-face): Rename from `isearch'.
7217 (isearch-highlight): Use new name.
7219 2010-09-17 Eli Zaretskii <eliz@gnu.org>
7221 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
7222 5, for `half' width fringes. (Bug#6933)
7224 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7226 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
7227 (byte-compile-defvar): "foo/bar" does not lack a prefix.
7229 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
7231 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
7233 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
7234 in calculating new frame position. Add more space between new and
7235 parent on the left (Bug#7048).
7237 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
7239 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
7242 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
7244 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
7246 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
7247 obsolete alias for x-selection-value.
7249 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
7251 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
7253 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
7256 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
7258 * net/tramp-compat.el (tramp-compat-with-temp-message)
7259 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
7260 (tramp-compat-process-put): New defuns.
7262 * net/tramp.el (top):
7263 * net/tramp-gvfs.el (top):
7264 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
7266 * net/tramp.el (tramp-progress-reporter-update):
7267 Use `tramp-compat-funcall'.
7269 * net/tramp.el (tramp-process-actions):
7270 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
7271 * net/tramp-sh.el (tramp-handle-vc-registered)
7272 (tramp-get-remote-stat, tramp-get-remote-readlink):
7273 Use `tramp-compat-with-temp-message'.
7275 * net/tramp-sh.el (top): Require 'cl.
7276 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
7277 (tramp-open-connection-setup-interactive-shell):
7278 Use `tramp-compat-process-put'.
7280 2010-09-15 Alan Mackenzie <acm@muc.de>
7282 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
7284 (c-forward-<>-arglist-recur): Fix an infinite recursion.
7286 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
7288 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
7289 `lexical' for warnings related to lexical scoping.
7290 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
7291 global vars which don't have a prefix and could hence affect lexical
7292 scoping in unrelated files.
7294 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7296 * net/imap.el: Revert back to version
7297 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
7300 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
7302 * obsolete/old-whitespace.el (whitespace-unload-function):
7303 Explicitly pass `obarray' to `unintern' to avoid a warning.
7305 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7307 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
7308 Add `when' argument. Update callers.
7310 * subr.el (unintern): Declare the obarray arg mandatory.
7312 2010-09-14 Glenn Morris <rgm@gnu.org>
7314 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
7317 * calendar/diary-lib.el (diary-included-files): New variable.
7318 (diary-list-entries): Maybe initialize diary-included-files.
7319 (diary-include-other-diary-files): Append to diary-included-files.
7320 * calendar/appt.el (appt-update-list): Also check the members of
7321 diary-included-files. (Bug#6999)
7322 (appt-check): Doc fix.
7324 2010-09-14 David Reitter <david.reitter@gmail.com>
7326 * simple.el (line-move-visual): Do not truncate goal column to
7327 integer size. (Bug#7020)
7329 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7331 * repeat.el (repeat): Allow repeating when the last event is a click.
7332 Suggested by Drew Adams (bug#6256).
7334 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
7336 * vc/vc-hg.el (vc-hg-state, vc-hg-working-revision):
7337 Replace setting HGRCPATH to "" by some less invasive --config options.
7339 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7341 * font-lock.el (font-lock-beginning-of-syntax-function):
7344 2010-09-14 Glenn Morris <rgm@gnu.org>
7346 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
7347 and tool-bar modes. (Bug#6211)
7348 (menu-bar-mode): Move setting of standard-value after the
7349 minor-mode definition, otherwise it seems to have no effect.
7351 2010-09-14 Masatake YAMATO <yamato@redhat.com>
7353 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
7354 Fix typo. (Bug#6976)
7356 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7358 * whitespace.el: Allow cleaning up blanks without blank
7359 visualization (Bug#6651). Adjust help window for
7360 whitespace-toggle-options (Bug#6479). Allow to use fill-column
7361 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
7362 (whitespace-style): Add new value 'face. Adjust docstring.
7363 (whitespace-space, whitespace-hspace, whitespace-tab):
7364 Adjust foreground property face.
7365 (whitespace-line-column): Adjust docstring and type declaration.
7366 (whitespace-style-value-list, whitespace-toggle-option-alist)
7367 (whitespace-help-text): Adjust const initialization.
7368 (whitespace-toggle-options, global-whitespace-toggle-options):
7370 (whitespace-display-window, whitespace-interactive-char)
7371 (whitespace-style-face-p, whitespace-color-on): Adjust code.
7372 (whitespace-help-scroll): New fun.
7374 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
7376 * calendar/time-date.el (format-seconds): Comment fix.
7378 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
7380 * progmodes/sql.el: Version 2.7.
7381 (sql-buffer-live-p): Improve detection.
7382 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7383 (sql-set-sqli-buffer): Use it.
7384 (sql-product-interactive): Run `sql-set-sqli-hook'.
7385 (sql-rename-buffer): Code cleanup.
7386 (sql-redirect, sql-redirect-value): New functions. More to come.
7388 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
7390 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.
7391 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
7392 (TRAMP_SRC): New macro.
7393 ($(lisp)/net/tramp-loaddefs.el): New target.
7395 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
7397 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
7399 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
7401 * net/tramp.el (top): Don't show loading message. Require just
7402 'tramp-compat, everything else is required there.
7403 Use `ignore-errors' where appropriate.
7404 (tramp-inline-compress-start-size, tramp-copy-size-limit)
7405 (tramp-terminal-type, tramp-end-of-output)
7406 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
7407 (tramp-completion-function-alist-ssh)
7408 (tramp-completion-function-alist-telnet)
7409 (tramp-completion-function-alist-su)
7410 (tramp-completion-function-alist-putty, tramp-remote-path)
7411 (tramp-remote-process-environment, tramp-sh-extra-args)
7412 (tramp-actions-before-shell, tramp-uudecode)
7413 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
7414 (tramp-perl-file-attributes)
7415 (tramp-perl-directory-files-and-attributes)
7416 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
7417 (tramp-perl-encode, tramp-perl-decode)
7418 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
7419 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
7420 (tramp-handle-make-symbolic-link, tramp-handle-load)
7421 (tramp-handle-file-name-as-directory)
7422 (tramp-handle-file-name-directory)
7423 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
7424 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
7425 (tramp-do-file-attributes-with-ls)
7426 (tramp-do-file-attributes-with-perl)
7427 (tramp-do-file-attributes-with-stat)
7428 (tramp-handle-set-visited-file-modtime)
7429 (tramp-handle-verify-visited-file-modtime)
7430 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
7431 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
7432 (tramp-handle-file-selinux-context)
7433 (tramp-handle-set-file-selinux-context)
7434 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
7435 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
7436 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
7437 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
7438 (tramp-handle-file-ownership-preserved-p)
7439 (tramp-handle-directory-file-name, tramp-handle-directory-files)
7440 (tramp-handle-directory-files-and-attributes)
7441 (tramp-do-directory-files-and-attributes-with-perl)
7442 (tramp-do-directory-files-and-attributes-with-stat)
7443 (tramp-handle-file-name-all-completions)
7444 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
7445 (tramp-handle-copy-file, tramp-handle-copy-directory)
7446 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
7447 (tramp-do-copy-or-rename-file-via-buffer)
7448 (tramp-do-copy-or-rename-file-directly)
7449 (tramp-do-copy-or-rename-file-out-of-band)
7450 (tramp-handle-make-directory, tramp-handle-delete-directory)
7451 (tramp-handle-delete-file)
7452 (tramp-handle-dired-recursive-delete-directory)
7453 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
7454 (tramp-handle-insert-directory)
7455 (tramp-handle-unhandled-file-name-directory)
7456 (tramp-handle-expand-file-name)
7457 (tramp-handle-substitute-in-file-name)
7458 (tramp-handle-executable-find, tramp-process-sentinel)
7459 (tramp-handle-start-file-process, tramp-handle-process-file)
7460 (tramp-handle-call-process-region, tramp-handle-shell-command)
7461 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
7462 (tramp-handle-insert-file-contents)
7463 (tramp-handle-insert-file-contents-literally)
7464 (tramp-handle-find-backup-file-name)
7465 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
7466 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
7467 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
7468 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
7469 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
7470 (tramp-find-file-exists-command, tramp-open-shell)
7471 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
7472 (tramp-open-connection-setup-interactive-shell)
7473 (tramp-local-coding-commands, tramp-remote-coding-commands)
7474 (tramp-find-inline-encoding, tramp-call-local-coding-command)
7475 (tramp-inline-compress-commands, tramp-find-inline-compress)
7476 (tramp-compute-multi-hops, tramp-maybe-open-connection)
7477 (tramp-send-command, tramp-wait-for-output)
7478 (tramp-send-command-and-check, tramp-barf-unless-okay)
7479 (tramp-send-command-and-read, tramp-mode-string-to-int)
7480 (tramp-convert-file-attributes, tramp-check-cached-permissions)
7481 (tramp-file-mode-from-int, tramp-file-mode-permissions)
7482 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
7483 (tramp-method-out-of-band-p, tramp-local-host-p)
7484 (tramp-get-remote-path, tramp-get-remote-tmpdir)
7485 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
7486 (tramp-get-test-command, tramp-get-test-nt-command)
7487 (tramp-get-file-exists-command, tramp-get-remote-ln)
7488 (tramp-get-remote-perl, tramp-get-remote-stat)
7489 (tramp-get-remote-readlink, tramp-get-remote-trash)
7490 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
7491 (tramp-get-local-uid, tramp-get-local-gid)
7492 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
7494 (tramp-methods, tramp-default-method-alist)
7495 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
7496 Move initialization to tramp-sh.el.
7497 (tramp-temp-name-prefix): Make it a defconst.
7498 (tramp-dissect-file-name): Don't check anymore for multi-hop
7500 (tramp-debug-outline-regexp): Add a docstring.
7501 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
7502 (tramp-get-debug-buffer): Use it.
7504 * net/tramp-cache.el (top): Set tramp-autoload cookie for
7505 initialization forms.
7506 (tramp-set-connection-property): Don't protect `tramp-message'
7507 call, it isn't necessary any longer.
7508 (tramp-dump-connection-properties): Use `ignore-errors'.
7510 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
7511 'password-cache and 'auth-source.
7513 * net/tramp-gvfs.el (top):
7514 * net/tramp-smb.el (top): Require 'tramp-sh.
7516 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
7518 * net/tramp-sh.el: New file, derived from tramp.el.
7519 (top): Initialize `tramp-methods', `tramp-default-method-alist',
7520 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
7521 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
7522 Use `ignore-errors' where appropriate.
7523 (tramp-sh-file-name-handler-alist): Rename from
7524 `tramp-file-name-handler-alist'.
7525 (tramp-send-command-and-check): Return t or nil. Remove all
7526 `zerop' checks, where called.
7527 (tramp-handle-set-file-modes)
7528 (tramp-do-copy-or-rename-file-directly)
7529 (tramp-handle-delete-directory, tramp-handle-delete-file)
7530 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
7531 (tramp-sh-file-name-handler, tramp-send-command-and-check)
7532 (tramp-get-remote-ln): Set tramp-autoload cookie.
7534 * net/tramp-fish.el: Remove file.
7536 2010-09-13 Daiki Ueno <ueno@unixuser.org>
7538 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
7539 buffer-file-name to avoid file-locking. (Bug#7026)
7541 2010-09-13 Julien Danjou <julien@danjou.info>
7543 * notifications.el (notifications-notify): Add support for
7544 image-path and sound-name.
7545 (notifications-specification-version): Add this variable.
7547 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7549 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
7551 2010-09-12 Leo <sdl.web@gmail.com>
7553 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
7554 (rcirc-completion-start): New variables.
7555 (rcirc-nick-completions): Rename to rcirc-completions.
7556 (rcirc-nick-completion-start-offset): Delete.
7557 (rcirc-completion-at-point): New function for constructing
7558 completion data for both nicks and irc commands. Add to
7559 completion-at-point-functions in rcirc mode.
7560 (rcirc-complete): Rename from rcirc-nick-complete; use
7561 rcirc-completion-at-point.
7562 (defun-rcirc-command): Update rcirc-client-commands.
7564 2010-09-11 Glenn Morris <rgm@gnu.org>
7566 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
7567 atomically, to avoid parallel build errors. (Bug#4196)
7569 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
7571 * progmodes/sql.el: Version 2.6
7572 (sql-dialect): Synonym for "sql-product".
7573 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7574 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
7575 Set "sql-buffer" to buffer name not buffer object so multiple sql
7576 interactive buffers work properly. Reverts misguided changes in
7578 (sql-comint): Make sure different buffer name is used if "*SQL*"
7579 buffer is for a different product.
7580 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
7582 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
7583 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
7584 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
7585 Accept new buffer name or prompt for one.
7586 (sql-port): Default to zero.
7587 (sql-comint-mysql): Handle "sql-port" as a numeric.
7588 (sql-port-history): Delete unused variable.
7589 (sql-get-login): Default "sql-port" to a number.
7590 (sql-product-alist): Correct Postgres prompt and terminator regexp.
7591 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
7592 "sqlite3" executables.
7593 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
7594 (sql-buffer-live-p): New function.
7595 (sql-mode-menu, sql-send-string): Use it.
7596 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
7598 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
7599 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
7601 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
7603 * net/netrc.el (netrc-credentials): New convenience function.
7605 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7607 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
7608 to replace texinfo-font-lock-syntactic-keywords.
7609 (texinfo-mode): Use it.
7611 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
7612 Use syntax-propertize-function.
7614 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
7615 replace sgml-font-lock-syntactic-keywords.
7616 (sgml-mode): Use it.
7618 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
7619 since we don't use it.
7621 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
7623 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
7625 (vhdl-fontify-buffer): Adjust.
7627 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
7628 replace tcl-font-lock-syntactic-keywords.
7631 * progmodes/simula.el (simula-syntax-propertize-function): New var to
7632 replace simula-font-lock-syntactic-keywords.
7633 (simula-mode): Use it.
7635 * progmodes/sh-script.el (sh-st-symbol): Remove.
7636 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
7637 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
7638 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
7639 (sh-font-lock-paren): Set syntax-multiline.
7640 (sh-font-lock-syntactic-keywords): Remove.
7641 (sh-syntax-propertize-function): New function to replace it.
7644 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
7645 Define while compiling.
7646 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7647 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
7648 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
7649 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7650 (ruby-here-doc-end-syntax): Only define when
7651 syntax-propertize is not available.
7652 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
7654 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
7655 (electric-indent-chars): Silence bytecompiler.
7656 (ruby-mode): Use prog-mode, syntax-propertize-function, and
7657 electric-indent-chars.
7659 * progmodes/python.el (python-syntax-propertize-function): New var to
7660 replace python-font-lock-syntactic-keywords.
7661 (python-mode): Use it.
7662 (python-quote-syntax): Simplify and adjust to new use.
7664 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
7665 replace perl-font-lock-syntactic-keywords.
7666 (perl-syntax-propertize-special-constructs): New fun to replace
7667 perl-font-lock-special-syntactic-constructs.
7668 (perl-font-lock-syntactic-face-function): New fun.
7669 (perl-mode): Use it.
7671 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
7672 to replace octave-font-lock-close-quotes.
7673 (octave-syntax-propertize-function): New function to replace
7674 octave-font-lock-syntactic-keywords.
7675 (octave-mode): Use it.
7677 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
7678 replaces mixal-font-lock-syntactic-keywords.
7679 (mixal-mode): Use it.
7681 * progmodes/make-mode.el (makefile-syntax-propertize-function):
7682 New var; replaces makefile-font-lock-syntactic-keywords.
7683 (makefile-mode): Use it.
7684 (makefile-imake-mode): Adjust.
7686 * progmodes/js.el (js--regexp-literal): Define while compiling.
7687 (js-syntax-propertize-function): New var; replaces
7688 js-font-lock-syntactic-keywords.
7691 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
7692 replaces gdb-script-font-lock-syntactic-keywords.
7693 (gdb-script-mode): Use it.
7695 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
7696 (fortran--font-lock-syntactic-keywords): New var.
7697 (fortran-line-length): Update syntax-propertize-function and
7698 fortran--font-lock-syntactic-keywords.
7700 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
7702 * progmodes/cfengine.el (cfengine-mode):
7703 Use syntax-propertize-function.
7704 (cfengine-font-lock-syntactic-keywords): Remove.
7706 * progmodes/autoconf.el (autoconf-mode):
7707 Use syntax-propertize-function.
7708 (autoconf-font-lock-syntactic-keywords): Remove.
7710 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
7711 (ada-after-change-function, ada-initialize-syntax-table-properties)
7712 (ada-handle-syntax-table-properties): Only define when
7713 syntax-propertize is not available.
7714 (ada-mode): Use syntax-propertize-function.
7716 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
7717 (font-lock-fontify-syntactic-keywords-region): Move handling of
7718 font-lock-syntactically-fontified to...
7719 (font-lock-default-fontify-region): ...here.
7720 Let syntax-propertize-function take precedence.
7721 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
7723 * emacs-lisp/syntax.el (syntax-propertize-function)
7724 (syntax-propertize-chunk-size, syntax-propertize--done)
7725 (syntax-propertize-extend-region-functions): New vars.
7726 (syntax-propertize-wholelines, syntax-propertize-multiline)
7727 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
7728 (syntax-propertize): New functions.
7729 (syntax-propertize-rules): New macro.
7730 (syntax-ppss-flush-cache): Set syntax-propertize--done.
7731 (syntax-ppss): Call syntax-propertize.
7733 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
7735 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
7737 * textmodes/ispell.el (ispell-init-process): Improve comments.
7738 XEmacs compatibility changes regarding (add-hook) 'local option
7739 and (set-process-query-on-exit-flag).
7741 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
7743 * net/tramp-cache.el (tramp-parse-connection-properties):
7744 Set tramp-autoload cookie.
7746 2010-09-09 Glenn Morris <rgm@gnu.org>
7748 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
7749 (imagemagick-register-types): Doc fix.
7751 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
7753 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
7755 * progmodes/js.el (require): Require is already "eval-and-compile".
7756 (js--re-search-forward): Avoid `eval'. Preserve the error data.
7757 (js--re-search-backward): Use js--re-search-forward.
7759 * progmodes/fortran.el (fortran-line-length): Don't recompute
7760 syntactic keywords redundantly a second time.
7762 * progmodes/ada-mode.el: Replace "(set '" with setq.
7763 (ada-mode): Simplify.
7764 (ada-create-case-exception, ada-adjust-case-interactive)
7765 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
7766 (ada-search-ignore-string-comment, ada-move-to-start)
7767 (ada-move-to-end): Use with-syntax-table.
7769 * font-lock.el (save-buffer-state): Remove `varlist' arg.
7770 (font-lock-unfontify-region, font-lock-default-fontify-region):
7771 Update usage correspondingly.
7772 (font-lock-fontify-syntactic-keywords-region):
7773 Set parse-sexp-lookup-properties buffer-locally here.
7774 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
7776 * simple.el (blink-matching-open): Don't burp if we can't find a match.
7778 2010-09-08 Glenn Morris <rgm@gnu.org>
7780 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
7781 Error if not compiled with -DBYTE_CODE_METER.
7783 * emacs-lisp/bytecomp.el (byte-recompile-directory):
7784 Ignore dir-locals-file.
7786 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
7788 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7790 (compilation-error-regexp-alist-alist): Rule out ": " in file names
7791 for the `gnu' messages.
7792 (compilation-set-skip-threshold): New command.
7793 (compilation-start): Use \' rather than $.
7794 (compilation-forget-errors): Use clrhash.
7796 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
7798 * textmodes/ispell.el (ispell-valid-dictionary-list):
7801 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
7803 Migrate to Tramp 2.2. Rearrange load dependencies.
7804 (Bug#1529, Bug#5448, Bug#5705)
7806 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
7807 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
7808 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
7810 * net/tramp.el (top): Remove all other tramp-* loads except
7811 tramp-compat.el. Remove all changes to tramp-unload-hook for
7812 other tramp-* packages. Rearrange defun order. Change calls of
7813 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
7814 `tramp-compat-octal-to-decimal' to new function names.
7815 (tramp-terminal-type, tramp-initial-end-of-output)
7816 (tramp-methods, tramp-foreign-file-name-handler-alist)
7817 (tramp-tramp-file-p, tramp-completion-mode-p)
7818 (tramp-send-command-and-check, tramp-get-remote-path)
7819 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
7820 (tramp-shell-quote-argument): Set tramp-autoload cookie.
7821 (with-file-property, with-connection-property): Move to
7823 (tramp-local-call-process, tramp-decimal-to-octal)
7824 (tramp-octal-to-decimal): Move to tramp-compat.el.
7825 (tramp-handle-shell-command): Do not require 'shell.
7826 (tramp-compute-multi-hops): No special handling for tramp-gw-*
7828 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
7830 * net/tramp-cache.el (top): Require 'tramp. Add to
7831 `tramp-unload-hook'.
7832 (tramp-cache-data, tramp-get-file-property)
7833 (tramp-set-file-property, tramp-flush-file-property)
7834 (tramp-flush-directory-property, tramp-get-connection-property)
7835 (tramp-set-connection-property, tramp-flush-connection-property)
7836 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
7838 (with-file-property, with-connection-property): New defuns, moved
7840 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
7843 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
7844 (tramp-version): Set tramp-autoload cookie.
7846 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
7847 changes to tramp-unload-hook for other tramp-* packages. Add to
7848 `tramp-unload-hook'.
7849 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
7850 (tramp-compat-call-process): New defuns, moved from tramp.el.
7852 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
7853 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
7854 Add to `tramp-unload-hook'. Change call of
7855 `tramp-compat-decimal-to-octal' to new function name.
7856 (tramp-fish-method): Make it a defconst.
7857 (tramp-fish-file-name-p): Make it a defsubst.
7858 (tramp-fish-method, tramp-fish-file-name-handler)
7859 (tramp-fish-file-name-p): Set tramp-autoload cookie.
7861 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
7862 `tramp-foreign-file-name-handler-alist'. Add to
7863 `tramp-unload-hook'.
7864 (tramp-ftp-method): Make it a defconst.
7865 (tramp-ftp-file-name-p): Make it a defsubst.
7866 (tramp-ftp-method, tramp-ftp-file-name-handler)
7867 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
7869 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
7870 `tramp-foreign-file-name-handler-alist'. Add to
7871 `tramp-unload-hook'. Change checks, whether package can be
7873 (tramp-gvfs-file-name-p): Make it a defsubst.
7874 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
7875 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
7876 (tramp-gvfs-handle-file-directory-p): New defun.
7877 (tramp-gvfs-file-name-handler-alist): Use it.
7879 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
7880 `tramp-foreign-file-name-handler-alist'. Add to
7881 `tramp-unload-hook'.
7882 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
7883 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
7885 (tramp-gw-tunnel-method, tramp-gw-socks-method)
7886 (tramp-gw-open-connection): Set tramp-autoload cookie.
7888 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
7889 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
7890 Add to `tramp-unload-hook'. Change checks, whether package can be
7892 (tramp-imap-file-name-p): Make it a defsubst.
7893 (tramp-imap-method, tramp-imaps-method)
7894 (tramp-imap-file-name-handler)
7895 (tramp-imap-file-name-p): Set tramp-autoload cookie.
7897 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
7898 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
7899 Add to `tramp-unload-hook'. Change checks, whether package can be
7900 loaded. Change call of `tramp-compat-decimal-to-octal' to new
7902 (tramp-smb-tunnel-method): Make it a defconst.
7903 (tramp-smb-file-name-p): Make it a defsubst.
7904 (tramp-smb-method, tramp-smb-file-name-handler)
7905 (tramp-smb-file-name-p): Set tramp-autoload cookie.
7907 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
7908 (tramp-uuencode-region): Set tramp-autoload cookie.
7910 * net/trampver.el (top) Add to `tramp-unload-hook'.
7911 (tramp-version, tramp-bug-report-address): Set tramp-autoload
7912 cookie. Update release number.
7914 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
7916 * textmodes/ispell.el (ispell-start-process): Make sure original
7917 arg list is properly initialized (Bug#6993, Bug#6994).
7919 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
7921 * files.el (directory-abbrev-alist): Use \` as default regexp.
7923 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
7924 chars like - or ] (bug#6984).
7925 (rx-any-condense-range): Explode 2-char ranges.
7927 2010-09-06 Glenn Morris <rgm@gnu.org>
7929 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
7931 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7933 * textmodes/bibtex.el:
7934 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
7936 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7938 * net/imap.el (imap-message-map): Remove optional buffer parameter,
7939 since no callers use it.
7940 (imap-message-get): Ditto.
7941 (imap-message-put): Ditto.
7942 (imap-mailbox-map): Ditto.
7943 (imap-mailbox-put): Ditto.
7944 (imap-mailbox-get): Ditto.
7945 (imap-mailbox-get): Revert last change for this function.
7947 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7949 * net/imap.el (imap-fetch-safe): Remove function, and alter all
7950 callers to use `imap-fetch' instead. According to the comments, this
7951 should be safe, since all other IMAP clients use the 1:* syntax.
7952 (imap-enable-exchange-bug-workaround): Remove.
7953 (imap-debug): Remove -- doesn't seem very useful.
7955 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7957 * net/imap.el (imap-log): New convenience function used throughout
7958 instead of repeating the same code all over the place.
7960 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
7962 * mouse.el (mouse-save-then-kill): Save region to kill-ring
7963 when mouse-drag-copy-region is non-nil (Bug#6956).
7965 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
7967 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
7968 Improve regexps (Bug#6987).
7969 (dired-sort-toggle): Search more robustly for -t flag.
7971 * files.el (get-free-disk-space): Search more robustly for
7972 "available" column. Suggested by Ehud Karni
7973 <ehud@unix.mvs.co.il>.
7975 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
7977 * international/uni-bidi.el:
7978 * international/uni-category.el:
7979 * international/uni-combining.el:
7980 * international/uni-decimal.el:
7981 * international/uni-mirrored.el:
7982 * international/uni-name.el: Regenerate.
7984 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7986 * electric.el (electric-indent-post-self-insert-function):
7987 Don't reindent with a sloppy indentation function.
7989 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
7990 border case in change-log-mode.
7992 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
7994 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7995 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
7996 Recognize leading tab in gcc-include regexp. Ignore names with
7997 leading "from" or "in" in gnu regexp (Bug#6937).
7999 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8001 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
8002 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
8003 (ispell-start-process): Avoid setq and simplify logic.
8004 (ispell-init-process): Setup kill-buffer-hook locally when needed.
8005 (kill-buffer-hook): Don't use it globally with code that uses
8006 expand-file-name since that may call kill-buffer via
8007 code_conversion_restore.
8009 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
8011 * emacs-lisp/package.el (package-directory-list): Only call
8012 file-name-nondirectory on a string.
8014 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
8016 * emacs-lisp/package.el (package--download-one-archive):
8017 Ensure that archive-contents is valid before saving it.
8018 (package-activate-1, package-mark-obsolete, define-package)
8019 (package-compute-transaction, package-list-maybe-add): Use push.
8021 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
8023 Use SMIE's blink-paren for octave-mode.
8024 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
8025 Backslashes do not escape single-quotes, single-quotes do.
8026 (octave-block-else-regexp, octave-block-end-regexp)
8027 (octave-block-match-alist): Remove.
8028 (octave-smie-bnf-table): New var, with old content.
8029 (octave-smie-op-levels): Use it.
8030 (octave-smie-closer-alist): New var.
8031 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
8032 (octave-blink-matching-block-open): Remove.
8033 (octave-reindent-then-newline-and-indent, octave-electric-semi)
8034 (octave-electric-space): Let self-insert-command run expand-abbrev and
8037 * electric.el (electricity): New group.
8038 (electric-indent-chars): New var.
8039 (electric-indent-post-self-insert-function): New fun.
8040 (electric-indent-mode): New minor mode.
8041 (electric-pair-skip-self): New custom.
8042 (electric-pair-post-self-insert-function): New function.
8043 (electric-pair-mode): New minor mode.
8045 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
8046 calcAlg-blink-matching-open.
8047 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
8048 (calc-do-alg-entry): Only touch the part of the keymap that varies.
8049 Use the new blink-matching-check-function.
8051 Provide blink-matching support to SMIE.
8052 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
8053 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
8054 (smie-blink-matching-check, smie-blink-matching-open): New functions.
8056 * simple.el (newline): Fix last change to properly remove itself from
8059 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
8061 * simple.el (newline): Eliminate optimization.
8062 Use post-self-insert-hook to set hard-newline and things before
8063 running post-self-insert-hook.
8064 (blink-matching-check-mismatch): New function.
8065 (blink-matching-check-function): New variable.
8066 (blink-matching-open): Use them.
8067 Skip back forward over prefix chars skipped by forward-sexp.
8068 Don't check if the parens are backslash escaped.
8069 (blink-paren-post-self-insert-function): Check backslash escaping here.
8071 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
8073 * emacs-lisp/package.el (package-menu-mode-map):
8074 Change package-menu-revert bindings to revert-buffer.
8075 (package-menu-mode): Set revert-buffer-function.
8076 (package-menu-revert): Doc fix.
8078 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
8080 * textmodes/ispell.el (ispell-init-process): Use "~/" as
8081 `default-directory' unless using Ispell per-directory personal
8082 dictionaries and not in a mini-buffer under XEmacs.
8083 (kill-buffer-hook): Do not kill ispell process on exit when
8084 `ispell-process-directory' is "~/". (Bug#6143)
8086 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
8088 * simple.el (kill-new): Call interprogram-cut-function with only
8091 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
8092 Remove cut buffer from error message.
8094 * term/x-win.el (x-select-text):
8095 * term/pc-win.el (x-selection-value):
8096 * term/ns-win.el (x-selection-value):
8097 * eshell/em-term.el:
8098 * w32-fns.el (x-get-selection-value):
8099 * mouse-sel.el (mouse-sel-set-selection-function):
8100 * frame.el (display-selections-p): Remove cut-buffer in documentation.
8102 * term/x-win.el: Update documentation for x-last-selected-text-*.
8103 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
8104 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
8105 (x-select-text): Remove argument PUSH, update documentation.
8106 Remove cut-buffer code.
8107 (x-selection-value-internal): Was previously x-selection-value.
8108 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
8109 Update documentation, remove cut-buffer code.
8110 Call x-selection-value-internal.
8111 (x-clipboard-yank): Call x-selection-value-internal.
8112 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
8114 * term/pc-win.el (x-last-selected-text):
8115 x-cut-buffer-or-selection-value renamed to x-selection-value
8116 (x-select-text): Remove argument PUSH, update documentation.
8118 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
8119 x-cut-buffer-or-selection-value renamed to x-selection-value
8120 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
8121 (x-select-text): Remove argument PUSH, update documentation.
8123 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
8125 * w32-fns.el (x-last-selected-text):
8126 x-cut-buffer-or-selection-value renamed to x-selection-value.
8127 (x-cut-buffer-max): Remove.
8128 (x-select-text): Remove argument PUSH, update documentation.
8130 * simple.el (interprogram-cut-function): Remove mention of PUSH.
8132 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
8134 * mouse-sel.el (mouse-sel-get-selection-function):
8135 x-cut-buffer-or-selection-value renamed to x-selection-value.
8136 (x-select-text): Remove optional push.
8138 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
8140 * simple.el (blink-paren-function): Move from C to here.
8141 (blink-paren-post-self-insert-function): New function.
8142 (post-self-insert-hook): Use it.
8144 * emacs-lisp/pcase.el (pcase-split-memq):
8145 Fix overenthusiastic optimisation.
8146 (pcase-u1): Handle the case of a lambda pred.
8148 2010-08-31 Kenichi Handa <handa@m17n.org>
8150 * international/mule-cmds.el (standard-display-european-internal):
8151 Setup standard-display-table for 8-bit characters by storing 8-bit
8152 characters in the element vector.
8154 * disp-table.el (standard-display-8bit):
8155 Setup standard-display-table for 8-bit characters by storing 8-bit
8156 characters in the element vector.
8157 (standard-display-european): Likewise.
8159 2010-08-31 Masatake YAMATO <yamato@redhat.com>
8161 * textmodes/nroff-mode.el (nroff-view): New command.
8162 (nroff-mode-map): Bind it to C-c C-c.
8164 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8166 * emacs-lisp/smie.el (smie-down-list): New command.
8168 Remove old indentation and navigation code on octave-mode.
8169 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
8170 smie-down-list rather than add a binding for octave-down-block.
8171 (octave-mark-block, octave-blink-matching-block-open):
8172 Rely on forward-sexp-function.
8173 (octave-fill-paragraph): Don't narrow, so you can use
8174 indent-according-to-mode.
8175 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
8176 (octave-in-block-p, octave-re-search-forward-kw)
8177 (octave-re-search-backward-kw, octave-indent-calculate)
8178 (octave-end-as-array-index-p, octave-block-end-offset)
8179 (octave-scan-blocks, octave-forward-block, octave-backward-block)
8180 (octave-down-block, octave-backward-up-block, octave-up-block)
8181 (octave-before-magic-comment-p, octave-indent-line): Remove.
8183 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
8185 * emacs-lisp/package.el (package--read-archive-file): Just use
8186 `read', to avoid copying an additional string.
8187 (package-menu-mode): Set header-line-format here.
8188 (package-menu-refresh, package-menu-revert): Signal an error if
8189 not in the Package Menu.
8190 (package-menu-package-list): New var.
8191 (package--generate-package-list): Operate on the current buffer;
8192 don't assume that it is *Packages*, since the user may rename it.
8193 Allow persistent package listings and sort keys using
8194 package-menu-package-list and package-menu-package-sort-key.
8195 (package-menu--version-predicate): Fix version calculation.
8196 (package-menu-sort-by-column): Don't select the window.
8197 (package--list-packages): Create the *Packages* buffer.
8198 Set package-menu-package-list-key.
8199 (list-packages): Sorting by status is now the default.
8200 (package-buffer-info): Use match-string-no-properties.
8201 (define-package): Add a &rest argument for future proofing, but
8203 (package-install-from-buffer, package-install-buffer-internal):
8204 Merge into a single function, package-install-from-buffer.
8205 (package-install-file): Change caller.
8207 * finder.el: Load finder-inf using `require'.
8208 (finder-list-matches): Sorting by status is now the default.
8209 (finder-compile-keywords): Simpify printing.
8211 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8213 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8214 (octave-mode-map): Remove special bindings for forward/backward-block
8215 and octave-backward-up-block. Use smie-close-block.
8216 (octave-continuation-marker-regexp): New var.
8217 (octave-continuation-regexp): Use it.
8218 (octave-operator-table, octave-smie-op-levels)
8219 (octave-operator-regexp, octave-smie-indent-rules): New vars.
8220 (octave-smie-backward-token, octave-smie-forward-token): New funs.
8221 (octave-mode): Use SMIE.
8222 (octave-close-block): Delete.
8224 2010-08-30 Eli Zaretskii <eliz@gnu.org>
8226 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
8227 CLIPBOARD, not in PRIMARY. (Bug#6944)
8229 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8231 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
8233 (smie-indent-column): Allow indirection through variables.
8235 * composite.el (save-buffer-state): Delete, unused.
8236 * font-lock.el (save-buffer-state): Use with-silent-modifications.
8237 (font-lock-default-fontify-region): Use with-syntax-table.
8238 * jit-lock.el (with-buffer-unmodified): Remove.
8239 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
8241 Use `declare' in defmacros.
8242 * window.el (save-selected-window):
8243 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
8244 * progmodes/python.el (def-python-skeleton):
8245 * net/dbus.el (dbus-ignore-errors):
8246 * jka-cmpr-hook.el (with-auto-compression-mode):
8247 * international/mule.el (with-category-table):
8248 * emacs-lisp/timer.el (with-timeout):
8249 * emacs-lisp/lisp-mnt.el (lm-with-file):
8250 * emacs-lisp/eieio.el (with-slots):
8251 * emacs-lisp/easymenu.el (easy-menu-define):
8252 * emacs-lisp/debug.el (debugger-env-macro):
8253 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
8254 (Multiple-value-call, Multiple-value-prog1):
8255 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
8256 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
8257 edebug rule to definition.
8258 * emacs-lisp/lisp-mode.el (save-selected-window)
8259 (with-current-buffer, combine-after-change-calls)
8260 (with-output-to-string, with-temp-file, with-temp-buffer)
8261 (with-temp-message, with-syntax-table, read-if, eval-after-load)
8262 (dolist, dotimes, when, unless):
8263 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
8265 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
8267 * finder.el: Require `package'.
8268 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
8269 (finder-package-info): Var deleted.
8270 (finder-keywords-hash, finder--builtins-alist): New vars.
8271 (finder-compile-keywords): Compute package--builtins and
8272 finder-keywords-hash instead of finder-keywords-hash, respecting
8273 the "Package" header.
8274 (finder-unknown-keywords, finder-list-matches):
8275 Use finder-keywords-hash and package--list-packages.
8276 (finder-mode): Don't set font-lock-defaults.
8277 (finder-exit): We don't use "*Finder-package*" and "*Finder
8278 Category*" buffers anymore.
8280 * emacs-lisp/package.el (package--builtins-base): Var deleted.
8281 (package--builtins): Set default value to nil.
8282 (package-initialize): Load precomputed value of package--builtins
8284 (package-alist, package-compute-transaction)
8285 (package-download-transaction): Improve docstring.
8286 (package-read-all-archive-contents): Do not change
8287 package--builtins here.
8288 (list-packages): Make package-list-packages an alias for this.
8289 Sort by status by default.
8290 (package--list-packages): Add optional PACKAGES arg.
8291 (describe-package-1): Use font-lock-face property. For built-in
8292 packages, insert file commentary.
8293 (package--generate-package-list): Rename from
8294 package-list-packages-internal; all callers changed. Add optional
8295 PACKAGES arg. Add alphabetical sort fallbacks.
8296 (package-menu--version-predicate, package-menu--status-predicate)
8297 (package-menu--description-predicate)
8298 (package-menu--name-predicate): New functions.
8300 * info.el (Info-finder-find-node): Search package-alist instead of
8301 finder-package-info.
8303 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
8305 * subr.el (version-regexp-alist): Don't use "a" and "b" for
8307 (version-to-list): Handle versions like "10.3d".
8309 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8311 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
8312 (macroexp-accumulate): Use `declare'.
8314 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8316 * whitespace.el (whitespace-style): Adjust type declaration.
8318 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
8320 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
8322 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
8324 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
8327 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
8329 * progmodes/js.el: Make indentation more customizable (Bug#6914).
8330 (js-paren-indent-offset, js-square-indent-offset)
8331 (js-curly-indent-offset): New options.
8332 (js--proper-indentation): Use them.
8334 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
8336 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
8337 instead of inspecting font-lock properties (Bug#6916).
8339 2010-08-26 David Reitter <david.reitter@gmail.com>
8341 * server.el (server-visit-files): Run pre-command-hook and
8342 post-command-hook for each buffer while it is current (Bug#6910).
8343 (server-execute): Do not run hooks here.
8345 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
8347 Sync with Tramp 2.1.19.
8349 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
8350 Protect deleting tmpfile.
8351 (tramp-gvfs-maybe-open-connection): Use `tramp-compat-funcall'.
8353 * net/tramp.el (tramp-handle-expand-file-name)
8354 (tramp-completion-handle-file-name-all-completions)
8355 (tramp-completion-handle-file-name-completion):
8356 Use `tramp-connectable-p'.
8358 * net/trampver.el: Update release number.
8360 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
8362 * help.el (help-map): Bind `C-h P' to describe-package.
8364 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
8366 * emacs-lisp/package.el (package-refresh-contents): Catch errors
8367 when downloading archives.
8368 (describe-package-1): Add package commentary.
8369 (package-install-button-action): New function.
8370 (package-menu-mode-map): Bind ? to package-menu-describe-package.
8371 (package-menu-view-commentary): Function removed.
8372 (package-list-packages-internal): Hide the `package' package too.
8374 2010-08-25 Kenichi Handa <handa@m17n.org>
8376 * language/misc-lang.el ("Arabic"): New language environment.
8377 Setup composition-function-table for Arabic characters.
8379 * international/fontset.el (setup-default-fontset): Fix typo for
8380 arabic OTF spec (fini->fina).
8382 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
8384 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
8387 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8389 * whitespace.el: Allow cleaning up blanks without blank
8390 visualization (Bug#6651). Adjust help window for
8391 whitespace-toggle-options (Bug#6479). Allow to use fill-column
8392 instead of whitespace-line-column (from EmacsWiki). New version
8394 (whitespace-style): Add new value 'face. Adjust docstring.
8395 (whitespace-space, whitespace-hspace, whitespace-tab):
8396 Adjust foreground property face.
8397 (whitespace-line-column): Adjust docstring and type declaration.
8398 (whitespace-style-value-list, whitespace-toggle-option-alist)
8399 (whitespace-help-text): Adjust const initialization.
8400 (whitespace-toggle-options, global-whitespace-toggle-options):
8402 (whitespace-display-window, whitespace-interactive-char)
8403 (whitespace-style-face-p, whitespace-color-on): Adjust code.
8404 (whitespace-help-scroll): New fun.
8406 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8408 * emacs-lisp/package.el (list-packages): Alias for
8409 package-list-packages.
8411 2010-08-24 Kevin Ryde <user42@zip.com.au>
8413 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
8416 * progmodes/ruby-mode.el (ruby): Add defgroup.
8418 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8420 * progmodes/python.el: Add Ipython support (Bug#5390).
8421 (python-shell-prompt-alist)
8422 (python-shell-continuation-prompt-alist): New options.
8423 (python--set-prompt-regexp): New function.
8424 (inferior-python-mode, run-python, python-shell):
8425 Require ansi-color. Use python--set-prompt-regexp to set the comint
8426 prompt based on the Python interpreter.
8427 (python--prompt-regexp): New var.
8428 (python-check-comint-prompt)
8429 (python-comint-output-filter-function): Use it.
8430 (run-python): Use a pipe (Bug#5694).
8432 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
8434 * progmodes/python.el (python-send-region): Send a different
8435 Python command if Ipython is in use.
8436 (python-check-version): Use a Python command to find the version.
8438 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8440 * mouse.el (mouse-yank-primary): Avoid setting primary when
8441 deactivating the mark (Bug#6872).
8443 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
8445 * progmodes/python.el (python-block-pairs): Allow use of "finally"
8446 with "else" (Bug#3991).
8448 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
8450 * net/dbus.el: Accept UNIX domain sockets as bus address.
8451 (top): Don't initialize `dbus-registered-objects-table' anymore,
8452 this is done in dbusbind.c.
8453 (dbus-check-event): Adapt test for bus.
8454 (dbus-return-values-table, dbus-unregister-service)
8455 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
8458 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
8460 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
8462 2010-08-22 Juri Linkov <juri@jurta.org>
8464 * simple.el (read-extended-command): New function with the logic
8465 for `completing-read' moved to Elisp from `execute-extended-command'.
8466 Use `function-called-at-point' in `minibuffer-default-add-function'
8467 to get a command name for M-n (bug#5364, bug#5214).
8469 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8471 * startup.el (command-line-1): Issue warning for ignored arguments
8472 --unibyte, etc (Bug#6886).
8474 2010-08-22 Leo <sdl.web@gmail.com>
8476 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
8477 (ignore, bright, dim, keyword): Split list of nicknames before
8478 passing to rcirc-add-or-remove (Bug#6894).
8480 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8482 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
8484 2010-08-22 Leo <sdl.web@gmail.com>
8486 Fix buffer-list rename&refresh after killing a buffer in ido.
8487 * ido.el: Revert Óscar's.
8488 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
8489 Remember the buffers at head, rather than their name.
8490 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
8492 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
8493 Stefan Monnier <monnier@iro.umontreal.ca>
8495 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
8496 extra backslash added to each line (bug#6890).
8498 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
8500 * subr.el (read-key): Don't echo keystrokes (bug#6883).
8502 2010-08-22 Glenn Morris <rgm@gnu.org>
8504 * menu-bar.el (menu-bar-games-menu): Add landmark.
8506 2010-08-22 Glenn Morris <rgm@gnu.org>
8508 * align.el (align-regexp): Make group and spacing arguments
8509 use the interactive defaults when non-interactive. (Bug#6698)
8511 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
8512 expansion, so as not to need sendmail.
8513 (mail-text-start): Remove declaration.
8514 (rmail-retry-failure): Require sendmail.
8516 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8518 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
8520 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
8522 * progmodes/flymake.el (flymake-start-syntax-check-process):
8523 Use `start-file-process' in order to let it run also on remote hosts.
8525 2010-08-22 Kenichi Handa <handa@m17n.org>
8527 * files.el: Add `word-wrap' as safe local variable.
8529 2010-08-22 Glenn Morris <rgm@gnu.org>
8531 * woman.el (woman-translate): Case matters. (Bug#6849)
8533 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8535 * simple.el (kill-region): Doc fix (Bug#6787).
8537 2010-08-22 Glenn Morris <rgm@gnu.org>
8539 * calendar/diary-lib.el (diary-header-line-format):
8540 Fit it to the window, not the frame.
8542 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
8544 * subr.el (ignore-errors): Add debug declaration.
8546 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
8548 * whitespace.el (whitespace-color-off): Remove post-command-hook
8551 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
8553 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
8555 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
8557 * cus-edit.el (custom-group-value-create): Add extra newline
8558 before end line (Bug#6876).
8560 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
8562 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
8563 when extending it. Before killing on the second click, check if
8564 the buffer is the correct one. Doc fix.
8565 (mouse-secondary-save-then-kill): Allow usage without first
8566 calling mouse-start-secondary, by defaulting to point. Don't save
8567 an empty secondary selection. Doc fix.
8569 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8571 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
8572 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
8574 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
8575 Adjust initialization.
8576 (whitespace-bob-marker, whitespace-eob-marker)
8577 (whitespace-buffer-changed): New vars.
8578 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
8579 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
8580 (whitespace-post-command-hook, whitespace-display-char-on):
8582 (whitespace-looking-back, whitespace-buffer-changed): New funs.
8583 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
8585 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
8587 * files.el (locate-file-completion-table): Only list the .el and .elc
8588 extensions if there's no other choice (bug#5955).
8590 * facemenu.el (facemenu-self-insert-data): New var.
8591 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
8593 (facemenu-add-face): Use them.
8595 * simple.el (blink-matching-open): Obey forward-sexp-function.
8597 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
8599 * simple.el (prog-mode-map): New var.
8600 (prog-indent-sexp): New command.
8602 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
8604 * progmodes/prolog.el (smie): Require.
8606 * emacs-lisp/smie.el (smie-default-backward-token)
8607 (smie-default-forward-token): Strip properties.
8608 (smie-next-sexp): Be more careful with associative operators.
8609 (smie-forward-sexp-command): Generalize.
8610 (smie-backward-sexp-command): Simplify.
8611 (smie-closer-alist): New var.
8612 (smie-close-block): New command.
8613 (smie-indent-debug-log): New var.
8614 (smie-indent-offset-rule): Add a few more cases.
8615 (smie-indent-column): New function.
8616 (smie-indent-after-keyword): Use it.
8617 (smie-indent-keyword): Use it.
8618 Fix up the opener code's point position.
8619 (smie-indent-comment): Only applies at BOL.
8620 (smie-indent-debug): New command.
8622 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
8623 declarations that are useful before running the macro.
8625 2010-08-18 Joakim Verona <joakim@verona.se>
8627 * image.el (imagemagick-types-inhibit): New variable.
8628 (imagemagick-register-types): New function.
8629 * image-mode.el (image-transform-properties): New function.
8630 (image-transform-set-scale, image-transform-fit-to-height)
8631 (image-transform-set-rotation, image-transform-set-resize)
8632 (image-transform-fit-to-width, image-transform-fit-to-height):
8634 (image-toggle-display-image): Support image transforms.
8636 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
8638 * image.el (create-animated-image): Don't add heuristic mask to image
8641 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
8643 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
8644 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
8646 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
8648 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
8650 Font-lock '...' strings, plus various simplifications and fixes.
8651 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8652 (octave-font-lock-close-quotes): New function.
8653 (octave-font-lock-syntactic-keywords): New var.
8654 (octave-mode): Use it. Set beginning-of-defun-function.
8655 (octave-mode-map): Don't override the <foo>-defun commands.
8656 (octave-mode-menu): Pass it directly to easy-menu-define;
8657 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
8658 (octave-block-match-alist): Fix up last change so that
8659 octave-close-block uses the more specific keyword.
8660 (info-lookup-mode): Silence byte-compiler.
8661 (octave-beginning-of-defun): Not interactive any more.
8663 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
8664 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
8665 (octave-completion-at-point-function): Make sure point is within
8667 (octave-reindent-then-newline-and-indent):
8668 Use reindent-then-newline-and-indent.
8669 (octave-add-octave-menu): Remove.
8671 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
8673 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
8674 (report-emacs-bug-can-use-xdg-email): New functions.
8675 (report-emacs-bug): Set can-xdg-email to result of
8676 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
8677 \C-cm to report-emacs-bug-insert-to-mailer and add help text
8680 * net/browse-url.el (browse-url-default-browser): Add cond
8681 for browse-url-xdg-open.
8682 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
8684 2010-08-17 Glenn Morris <rgm@gnu.org>
8686 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
8687 (c-fontify-recorded-types-and-refs): Define for compiler.
8688 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
8691 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
8694 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
8696 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
8698 (tramp-handle-process-file): Call the program in a subshell, in
8699 order to preserve working directory.
8700 (tramp-action-password): Hide password prompt before next run.
8701 (tramp-process-actions): Widen connection buffer for the trace.
8703 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8705 * net/rcirc.el (rcirc-log-process-buffers): New option.
8706 (rcirc-print): Use it.
8707 (rcirc-generate-log-filename): New function.
8708 (rcirc-log-filename-function): Change default to
8709 rcirc-generate-log-filename (Bug#6828).
8711 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
8713 * simple.el (deactivate-mark): If select-active-regions is `only',
8714 only set selection for temporarily active regions.
8716 * cus-start.el: Change defcustom for select-active-regions.
8718 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
8720 * mouse.el (mouse--drag-set-mark-and-point): New function.
8721 (mouse-drag-track): Use LOCATION arg to push-mark.
8722 Use mouse--drag-set-mark-and-point to take click-count into
8723 consideration when updating point and mark (Bug#6840).
8725 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
8727 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8728 Give the Ruby rule a lower priority than Gnu (Bug#6778).
8730 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
8732 * font-lock.el (lisp-font-lock-keywords-2):
8733 Add combine-after-change-calls, condition-case-no-debug,
8734 with-demoted-errors, and with-silent-modifications (Bug#6025).
8736 2010-08-14 Kevin Ryde <user42@zip.com.au>
8738 * emacs-lisp/copyright.el (copyright-update-year)
8739 (copyright-update): Temporary switch-to-buffer to ensure the
8740 buffer change being queried is visible (Bug#5394).
8742 2010-08-14 Tom Tromey <tromey@redhat.com>
8744 * progmodes/etags.el (tags-file-name): Mark safe if stringp
8747 2010-08-14 Eli Zaretskii <eliz@gnu.org>
8749 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
8752 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
8754 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
8755 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
8756 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
8757 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
8758 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
8759 Call menu-bar-set-tool-bar-position.
8761 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8763 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
8764 comment style (bug#6834).
8765 * progmodes/scheme.el (scheme-mode-syntax-table):
8766 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
8767 "b" flag in "' 14b" syntax.
8769 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
8770 for (un)commenting the region and performing completion.
8771 (octave-mode-menu): Use standard commands for help and completion.
8772 (octave-mode-syntax-table): Support %{..%} comments (sort of).
8773 (octave-mode): Use define-derived-mode.
8774 Set completion-at-point-functions and don't set columns.
8775 Don't disable adaptive-fill-regexp.
8776 (octave-describe-major-mode, octave-comment-region)
8777 (octave-uncomment-region, octave-comment-indent)
8778 (octave-indent-for-comment): Remove.
8779 (octave-indent-calculate): Rename from calculate-octave-indent.
8780 (octave-indent-line, octave-fill-paragraph): Update caller.
8781 (octave-initialize-completions): No need to make an alist.
8782 (octave-completion-at-point-function): New function.
8783 (octave-complete-symbol): Use it.
8784 (octave-insert-defun): Use define-skeleton.
8786 * progmodes/octave-mod.el (octave-mode): Set comment-add.
8787 (octave-mode-map): Use comment-dwim (bug#6829).
8789 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com>
8791 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
8792 indentation of inserted comment.
8794 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
8796 * faces.el (region): Add type gtk that uses gtk colors.
8798 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
8799 Handle theme-name change.
8801 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
8803 * progmodes/sql.el: Version 2.5
8804 (sql-product-alist): Add :prompt-cont-regexp property for several
8806 (sql-prompt-cont-regexp): New variable.
8807 (sql-output-newline-count, sql-output-by-send):
8808 New variables. Record number of newlines in input text.
8809 (sql-send-string): Handle multiple filters and count newlines.
8810 (sql-send-magic-terminator): Count terminator newline.
8811 (sql-interactive-remove-continuation-prompt): Filters output to
8812 remove continuation prompts; one for each newline.
8813 (sql-interactive-mode): Set up new variables, prompt regexp and
8815 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
8816 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
8818 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8820 * emacs-lisp/pcase.el: New file.
8822 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
8824 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
8825 as here-document, otherwise the command could exceed maximum
8826 length of command line.
8827 (tramp-handle-vc-registered): Call script accordingly.
8828 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
8830 2010-08-10 Kenichi Handa <handa@m17n.org>
8832 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
8835 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
8837 * emacs-lisp/package.el (package-version-split)
8838 (package--version-first-nonzero, package-version-compare):
8840 (package-directory-list, package-load-all-descriptors)
8841 (package--built-in, package-activate, define-package)
8842 (package-installed-p, package-compute-transaction)
8843 (package-read-all-archive-contents)
8844 (package--add-to-archive-contents, package-buffer-info)
8845 (package-tar-file-info, package-list-packages-internal):
8846 Use version-to-list and version-list-*.
8848 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8849 Use version-to-list.
8850 (package-upload-buffer-internal): Use version-list-<=.
8852 2010-08-09 Kenichi Handa <handa@m17n.org>
8854 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
8857 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
8859 * tutorial.el (tutorial--default-keys): C-d is now bound to
8860 delete-forward-char (Bug#6826).
8862 * mouse.el (mouse-drag-track): Remove accidentally-removed check
8863 for `double' value of mouse-1-click-follows-link (Bug#6807).
8865 2010-08-08 Johan Bockgård <bojohan@gnu.org>
8867 * replace.el (replace-highlight): Bind isearch-forward and
8868 isearch-error, ensuring that highlighting is updated if the user
8869 switches the search direction (Bug#6808).
8871 * isearch.el (isearch-lazy-highlight-forward): New var.
8872 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8873 (isearch-lazy-highlight-update): Use it.
8875 2010-08-08 Kenichi Handa <handa@m17n.org>
8877 * international/mule.el (define-charset): Store NAME as :base property.
8878 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
8879 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
8880 current priority. Force using the designation of the specific
8881 charset by adding `charset' text property. Improve the whole algorithm.
8883 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8885 * emulation/pc-select.el (pc-selection-mode-hook)
8886 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
8887 (pc-selection-mode): Fix typos in docstrings.
8889 2010-08-08 Kenichi Handa <handa@m17n.org>
8891 * language/cyrillic.el: Don't add "microsoft-cp1251" to
8892 ctext-non-standard-encodings-alist here.
8894 * international/mule.el (ctext-non-standard-encodings-alist):
8895 Add "koi8-r" and "microsoft-cp1251".
8896 (ctext-standard-encodings): New variable.
8897 (ctext-non-standard-encodings-table): List only elements for
8898 non-standard encodings.
8899 (ctext-pre-write-conversion): Adjust for the above change.
8900 Check ctext-standard-encodings.
8902 * international/mule-conf.el (compound-text): Doc fix.
8903 (ctext-no-compositions): Doc fix.
8904 (compound-text-with-extensions): Doc fix.
8906 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8908 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
8910 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8912 * progmodes/which-func.el (which-func-format): Split help-echo text
8913 into lines, like other mode-line tooltips.
8915 * server.el (server-start): When using TCP sockets, force IPv4
8916 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
8918 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8920 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
8922 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8924 * term.el (term-delimiter-argument-list): Reflow docstring.
8925 (term-read-input-ring, term-write-input-ring, term-send-input)
8926 (term-bol, term-erase-in-display, serial-supported-or-barf):
8927 Fix typos in docstrings.
8929 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8931 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
8933 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8935 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
8937 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
8939 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
8940 Fix typo in docstring (bug#6747).
8942 2010-08-08 Leo <sdl.web@gmail.com>
8944 * eshell/esh-io.el (eshell-get-target): Better detection of
8945 read-only file (Bug#6762).
8947 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8949 * align.el (align-default-spacing): Doc fix.
8950 (align-region-heuristic, align-regexp): Fix typos in docstrings.
8952 2010-08-08 Stephen Peters <speters@itasoftware.com>
8954 * calendar/icalendar.el
8955 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
8956 (icalendar--get-weekday-numbers): New.
8957 (icalendar--convert-recurring-to-diary): Handle multiple byday
8958 values in weekly rules. (Bug#6766)
8960 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
8962 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
8963 (icalendar--create-uid, icalendar-export-region)
8964 (icalendar--parse-summary-and-rest): Code formatting.
8966 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
8968 * calc/calc.el (calc-trail-mode, calc-refresh): Use `face' property
8969 to italicize headers.
8970 (calc-highlight-selections-with-faces): New variable.
8971 (calc-selected-face, calc-nonselected-face): New faces.
8973 * calc/calccomp.el (math-comp-highlight-string): Use
8974 `calc-highlight-selections-with-faces' to determine how to highlight
8977 * calc/calc-sel.el (calc-show-selections): Change message to when
8978 using faces to highlight selections.
8980 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
8982 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
8983 Add SQLite 3 keywords, functions and datatypes.
8984 (sql-interactive-mode): Remove `comint-process-echoes' set to t
8987 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
8989 * simple.el (select-active-regions): Move to keyboard.c.
8990 (deactivate-mark): Used saved-region-selection.
8991 (select-active-region): Function removed.
8992 (activate-mark, set-mark, push-mark-command)
8993 (handle-shift-selection): Don't call it.
8994 (keyboard-quit): Avoid adding the region to the window selection.
8996 * mouse.el (mouse-drag-track): Remove hacks to deal with old
8997 select-active-regions implementation.
8998 (mouse-yank-at-click): Doc fix.
9000 * cus-start.el: Add custom declaration for select-active-regions.
9002 2010-08-07 Eli Zaretskii <eliz@gnu.org>
9004 * simple.el (delete-forward-char): Doc fix.
9006 * tutorial.el (help-with-tutorial): Hack safe file-local variables
9007 after reading the tutorial.
9009 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
9011 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph):
9012 Fix for the case that a C style comment has its delimiters alone on
9013 their respective lines. (Bug#193)
9015 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
9017 * net/tramp.el (tramp-handle-start-file-process): Set connection
9019 (tramp-process-sentinel): Use it for flushing the cache.
9020 We cannot do it via the process buffer, the buffer could be deleted
9021 already when running the sentinel.
9023 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
9025 * comint.el (comint-mode): Make directory tracking functions
9026 functional on remote files. (Bug#6764)
9028 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
9030 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
9032 2010-08-05 Eli Zaretskii <eliz@gnu.org>
9034 * emacs-lisp/find-gc.el (find-gc-source-files):
9035 Rename unexec.c => unexcoff.c.
9037 * emacs-lisp/authors.el (authors-fixed-entries):
9038 Rename unexec.c => unexcoff.c.
9040 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
9042 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
9043 cache, not only file cache.
9044 (tramp-process-sentinel): New defun.
9045 (tramp-handle-start-file-process): Use it, in order to invalidate
9048 2010-08-03 Leo <sdl.web@gmail.com>
9050 * server.el (server-start): Simplify loop.
9052 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
9054 * frame.el (screen-height, screen-width, set-screen-width)
9055 (set-screen-height): Remove ancient compatibility aliases.
9057 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
9058 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
9060 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
9061 that change current buffer.
9063 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9065 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
9066 beginning of the string. Use `string-match-p'. (Bug#6765)
9068 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
9070 * cus-start.el (x-gtk-use-system-tooltips): New variable.
9072 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
9074 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
9075 (package--builtins): Tweak descriptions.
9076 (package-print-package): Upcase descriptions if necessary.
9077 Show all built-in packages in font-lock-builtin-face.
9078 (package-list-packages-internal): Omit "emacs" package.
9079 Show status of built-in packages as "built-in".
9081 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
9083 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
9084 before killing to preserve the primary selection (Bug#6701).
9086 * term/x-win.el (x-select-text): Doc fix.
9088 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
9090 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
9091 (objc-font-lock-extra-types):
9092 * progmodes/cc-mode.el (c-basic-common-init):
9093 * progmodes/cc-langs.el (c-make-mode-syntax-table)
9094 (c++-make-template-syntax-table)
9095 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
9096 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
9097 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
9098 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
9099 * progmodes/cc-fonts.el (c-make-inverse-face)
9100 (c-basic-matchers-after):
9101 * progmodes/cc-engine.el (c-forward-keyword-clause)
9102 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
9103 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
9104 (c-guess-continued-construct, c-guess-basic-syntax):
9105 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
9106 The above functions were modified or created.
9108 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
9110 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
9112 2010-07-31 Eli Zaretskii <eliz@gnu.org>
9114 * files.el (bidi-paragraph-direction): Define safe local values.
9116 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
9117 language-info-alist. Remove outdated FIXME in a comment.
9119 2010-07-31 Alan Mackenzie <acm@muc.de>
9121 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
9122 Auto-fill broken in C/C++ modes.
9124 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
9126 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
9127 (menu-bar-showhide-tool-bar-menu-customize-disable)
9128 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
9129 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
9130 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
9131 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
9132 make a menu for Options => toolbar that can move it.
9134 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
9136 * emacs-lisp/package-x.el (package--make-rss-entry):
9137 (package-maint-add-news-item, package--update-news)
9138 (package-upload-buffer-internal): New arg ARCHIVE-URL.
9140 * emacs-lisp/package.el (package-archive-url): Rename from
9142 (package-install): Doc fix.
9143 (package-download-single, package-download-tar, package-install)
9144 (package-menu-view-commentary): Callers changed.
9146 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
9148 * net/tramp.el (tramp-handle-start-file-process): Check only for
9149 `remote-tty' process property.
9150 (tramp-open-shell): Don't check for tty.
9151 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
9154 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
9157 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
9159 * emacs-lisp/package.el (package-load-list, package-archives)
9160 (package-archive-contents, package-user-dir)
9161 (package-directory-list, package--builtins, package-alist)
9162 (package-activated-list, package-obsolete-alist): Mark as risky.
9164 2010-07-28 Phil Hagelberg <phil@evri.com>
9166 Add support for non-default package repositories.
9167 * emacs-lisp/package.el (package-archive-base): Var deleted.
9168 (package-archives): New variable.
9169 (package-archive-contents): Doc fix.
9170 (package-load-descriptor): Do nothing if descriptor file is missing.
9171 (package--write-file-no-coding): New function.
9172 (package-unpack-single): Use it.
9173 (package-archive-id): New function.
9174 (package-download-single, package-download-tar)
9175 (package-menu-view-commentary): Use it.
9176 (package-installed-p): Make second argument optional.
9177 (package-read-all-archive-contents): New function.
9178 (package-initialize): Use it.
9179 (package-read-archive-contents): Add ARCHIVE argument.
9180 (package--add-to-archive-contents): New function.
9181 (package-install): Don't call package-read-archive-contents.
9182 (package--download-one-archive): Store archive file in a
9183 subdirectory of package-user-dir.
9184 (package-menu-execute): Remove spurious line movement.
9186 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
9188 * cus-start.el (tool-bar-style): Add text-image-horiz.
9190 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
9192 * progmodes/gud.el (gud-common-init): Check for remoteness of
9193 `file', and not of `default-directory'.
9195 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
9197 * net/tramp.el (tramp-methods): Move hostname to the end in all
9198 ssh `tramp-login-args'.
9199 (tramp-verbose): Describe verbose level 9.
9200 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
9201 (tramp-open-connection-setup-interactive-shell): Trace stty
9202 settings if `tramp-verbose' >= 9.
9203 (tramp-handle-start-file-process): Implement tty setting.
9204 (Bug#4604, Bug#6360)
9206 * net/tramp-cmds.el (tramp-bug): Recommend setting of
9207 `tramp-verbose' to 9.
9209 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
9211 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
9212 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
9213 Remove references to package `lisp-re' (bug#4369).
9215 2010-07-27 Tom Tromey <tromey@redhat.com>
9217 * progmodes/js.el (js-mode):
9218 * progmodes/make-mode.el (makefile-mode):
9219 * progmodes/simula.el (simula-mode):
9220 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
9222 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
9224 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
9226 * time.el (display-time-day-and-date): Remove spurious * in docstring.
9227 (display-time-world-buffer-name, display-time-world-mode-map):
9228 Fix typos in docstrings.
9230 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
9232 * image-mode.el (image-display-size): New function.
9233 (image-forward-hscroll, image-next-line, image-eol, image-eob)
9234 (image-mode-fit-frame): Use it (Bug#6639).
9236 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
9238 * dired.el (dired-buffers-for-dir): Handle list values of
9239 dired-directory (Bug#6636).
9241 2010-07-26 Sam Steingold <sds@gnu.org>
9243 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
9244 Do not call `x-get-selection' the second time, reuse the value.
9246 2010-07-26 Daiki Ueno <ueno@unixuser.org>
9248 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
9249 which consist of control chars only. Suggested by Richard Stallman.
9251 2010-07-25 Daiki Ueno <ueno@unixuser.org>
9253 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
9254 exists before passing an error to find-file-not-found-functions
9257 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
9259 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
9260 Remove leading nil element, adjust values.
9261 (tetris-shapes, tetris-shape-scores):
9262 Change representation of shapes and remove some redundancy.
9263 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
9264 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
9265 Adjust for working with new representation of shapes.
9266 (tetris-shape-rotations): New function.
9267 (tetris-move-bottom, tetris-move-left, tetris-move-right)
9268 (tetris-rotate-prev, tetris-rotate-next):
9269 Adjust for working with the new version of tetris-test-shape.
9271 2010-07-23 Markus Triska <markus.triska@gmx.at>
9273 * progmodes/ps-mode.el: Use comint (bug#5954).
9274 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
9275 (ps-mode-other-newline): Simplify.
9276 (ps-run-mode): Derive from comint-mode instead of
9277 fundamental-mode, yielding input history etc.
9278 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
9279 (ps-run-send-string): Adapt for comint-mode.
9280 (ps-run-newline): Remove now unneeded function.
9282 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9284 * net/tramp.el (tramp-methods): Move hostname to the end in all
9285 plink `tramp-login-args'.
9287 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9289 * net/tramp.el (tramp-open-shell): New defun.
9290 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9293 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9295 * net/tramp.el (tramp-file-name-regexp-unified)
9296 (tramp-completion-file-name-regexp-unified): On W32 systems, do
9297 not regard the volume letter as remote filename. (Bug#5447)
9299 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
9301 * custom.el (custom-declare-variable): Give a clearer error message
9302 when the docstring is missing (bug#6476).
9304 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
9306 * progmodes/sql.el: Version 2.4. Improved Login prompting.
9307 (sql-login-params): New widget definition.
9308 (sql-oracle-login-params, sql-mysql-login-params)
9309 (sql-solid-login-params, sql-sybase-login-params)
9310 (sql-informix-login-params, sql-ingres-login-params)
9311 (sql-ms-login-params, sql-postgres-login-params)
9312 (sql-interbase-login-params, sql-db2-login-params)
9313 (sql-linter-login-params): Use it.
9314 (sql-sqlite-login-params): Use it; Define "database" parameter as
9316 (sql-sqlite-program): Change to "sqlite3".
9317 (sql-comint-sqlite): Make sure database name is complete.
9318 (sql-for-each-login): New function.
9319 (sql-connect, sql-save-connection): Use it.
9320 (sql-get-login-ext): New function.
9321 (sql-get-login): Use it.
9322 (sql-make-alternate-buffer-name): Handle :file parameters.
9324 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
9326 * dired.el (dired-no-confirm): Document value t and fix defcustom to
9327 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
9329 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
9331 * dired.el (dired-mode-map): Use command remapping (bug#6632).
9333 2010-07-22 Lawrence Mitchell <wence@gmx.li>
9335 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
9337 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
9339 * net/tramp.el (tramp-get-ls-command)
9340 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
9343 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
9345 * progmodes/sql.el: Version 2.3.
9346 (sql-connection-alist): Change keys from symbols to strings;
9347 enhanced the widget definition.
9348 (sql-mode-menu): Add submenu to select connections.
9349 (sql-interactive-mode-menu): Add "Save Connection" item.
9350 (sql-add-product): Fix menu item.
9351 (sql-get-product-feature): Improved error handling.
9352 (sql--alt-buffer-part, sql--alt-if-not-empty): Remove.
9353 (sql-make-alternate-buffer-name): Simplified.
9354 (sql-product-interactive): Handle missing product.
9355 (sql-connect): Support string keys, minor improvements.
9356 (sql-save-connection): New function.
9357 (sql-connection-menu-filter): New function.
9359 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
9361 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
9362 (tramp-open-connection-setup-interactive-shell):
9363 Apply workaround for IRIX64 bug. Move argument of last
9364 `tramp-send-command' where it belongs to.
9366 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
9368 * net/tramp.el (tramp-perl-file-attributes)
9369 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
9370 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
9371 front of `login-args'.
9373 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
9375 * time.el (display-time-world-mode): Define with `define-derived-mode'.
9376 Set `show-trailing-whitespace' to nil.
9377 (display-time-world-display): Simplify.
9379 2010-07-18 Alan Mackenzie <acm@muc.de>
9381 Enhance `c-file-style' in file/directory local variables.
9382 * progmodes/cc-mode.el (c-count-cfss): New function.
9383 (c-before-hack-hook): Call `c-set-style' differently according to
9384 whether c-file-style was set in file or directory local
9387 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
9389 * progmodes/sql.el: Version 2.2.
9390 (sql-product, sql-user, sql-database, sql-server, sql-port):
9391 Use defcustom :safe keyword rather than putting safe-local-variable
9393 (sql-password): Use defcustom :risky keyword rather than putting
9394 risky-local-variable property.
9395 (sql-oracle-login-params, sql-sqlite-login-params)
9396 (sql-solid-login-params, sql-sybase-login-params)
9397 (sql-informix-login-params, sql-ingres-login-params)
9398 (sql-ms-login-params, sql-postgres-login-params)
9399 (sql-interbase-login-params, sql-db2-login-params)
9400 (sql-linter-login-params): Add `port' option.
9401 (sql-get-product-feature): Add NO-INDIRECT parameter.
9402 (sql-comint-oracle, sql-comint-sybase)
9403 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
9404 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
9405 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
9406 (sql-comint-linter): Rename sql-connect-* functions to
9408 (sql-product-alist, sql-mode-menu): Rename as above and
9409 :sqli-connect-func to :sqli-comint-func.
9410 (sql-connection): New variable.
9411 (sql-interactive-mode): Set it.
9412 (sql-connection-alist): New variable.
9413 (sql-connect): New function.
9414 (sql--alt-buffer-part, sql--alt-if-not-empty)
9415 (sql-make-alternate-buffer-name): Improved alternative buffer name.
9417 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9419 * image-mode.el (image-bookmark-make-record): Do not set context
9420 in an image (Bug#6650).
9422 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
9424 * simple.el (select-active-region): New function.
9425 (push-mark-command, set-mark, activate-mark)
9426 (handle-shift-selection): Use it.
9427 (deactivate-mark): Don't check for size of region.
9429 * mouse.el (mouse-drag-track): Use select-active-region.
9431 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
9433 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
9436 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
9438 * term/x-win.el (x-select-enable-primary): Change default to nil.
9439 (x-select-enable-clipboard): Add :version keyword.
9441 * mouse.el (mouse-drag-copy-region):
9442 * simple.el (select-active-regions): Likewise.
9444 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
9446 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
9447 (vc-coding-system-for-diff): Use it to decide whether to inherit
9448 from the file the EOL format for reading the diffs of that file.
9451 2010-07-16 Eli Zaretskii <eliz@gnu.org>
9453 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
9454 unibyte, so compressed attachments are not compressed again.
9456 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
9458 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
9459 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
9460 (tramp-find-shell): Simplify setting connection property.
9461 (tramp-get-ls-command): Make test for "--color=never" stronger.
9463 2010-07-15 Simon South <ssouth@member.fsf.org>
9465 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
9466 blocks within record declarations (i.e. variant parts) correctly.
9468 2010-07-15 Simon South <ssouth@member.fsf.org>
9470 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
9471 over literal tokens when parsing so newlines aren't "absorbed" by
9472 single-line comments. Corrects the indentation of case blocks
9473 that have a comment on the first line.
9475 2010-07-14 Karl Fogel <kfogel@red-bean.com>
9477 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
9478 by Drew Adams (Bug#5504).
9480 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
9482 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
9483 now that Unicode is used (Bug#6594).
9485 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
9487 * term/x-win.el (x-select-enable-clipboard): Default to t.
9488 (x-initialize-window-system): Don't overwrite Paste menu item.
9490 * simple.el (select-active-regions): Default to t.
9491 (push-mark-command): Don't overwrite primary with empty string.
9493 * mouse.el: Bind mouse-2 to mouse-yank-primary.
9494 (mouse-drag-copy-region): Default to nil.
9496 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
9497 Cut/Copy/Paste menu bar items.
9499 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9501 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
9502 Patch applied by Karl Fogel.
9504 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
9505 and `bookmark-current-buffer' if they have been already set in
9506 another buffer (e.g gnus-art).
9508 2010-07-13 Karl Fogel <kfogel@red-bean.com>
9509 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9511 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
9513 * bookmark.el (bookmark-make-record-default): Allow unneeded
9514 information to be omitted from the record.
9516 Adjust declarations and calls:
9518 * info.el (bookmark-make-record-default): Adjust declaration.
9519 (Info-bookmark-make-record): Adjust call.
9521 * woman.el (bookmark-make-record-default): Adjust declaration.
9522 (woman-bookmark-make-record): Adjust call.
9524 * man.el (bookmark-make-record-default): Adjust declaration.
9525 (Man-bookmark-make-record): Adjust call.
9527 * image-mode.el (bookmark-make-record-default): Adjust declaration.
9529 * doc-view.el (bookmark-make-record-default): Adjust declaration.
9531 2010-07-13 Karl Fogel <kfogel@red-bean.com>
9533 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
9534 This is also from Thierry Volpiatto's patch in bug #6444. However,
9535 because it was extraneous to the functional change in that patch,
9536 and causes a re-indendation, I am committing it separately.
9538 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9540 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
9541 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
9542 Patch applied by Karl Fogel (Bug#6444).
9544 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
9546 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
9548 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
9550 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
9551 Dempsky; bug#5084). Remove incorrect binding for S-tab.
9552 (ns-alternatives-map): Change S-tab binding to backtab
9555 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
9558 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
9560 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
9563 * language/tv-util.el (tai-viet-re): Remove format.
9565 2010-07-12 Kenichi Handa <handa@m17n.org>
9567 * language/hebrew.el: Remove no-byte-compile declaration.
9568 Change coding: tag to utf-8. Register hebrew-shape-gstring in
9569 composition-function-table for 3-character looking back.
9570 (hebrew-font-get-precomposed): New function.
9571 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
9573 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
9575 * mouse.el (mouse-drag-track): Handle select-active-regions
9578 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
9580 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
9581 empty argument to gvfs-copy.
9583 2010-07-10 Glenn Morris <rgm@gnu.org>
9585 * calendar/calendar.el (calendar-week-end-day): New function.
9586 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
9587 Respect calendar-week-start-day. (Bug#6606)
9588 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
9589 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
9590 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
9591 respect calendar-week-start-day.
9593 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
9595 * simple.el (use-region-p): Doc fix (Bug#6607).
9597 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
9599 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9600 Add regexps for cucumber and ruby.
9602 2010-07-08 Daiki Ueno <ueno@unixuser.org>
9604 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
9605 (epa-file-insert-file-contents): Hack to prevent
9606 find-file from opening empty buffer when decryption failed
9609 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
9611 * textmodes/ispell.el (ispell-alternate-dictionary):
9612 Use file-readable-p.
9613 Return nil if no word-list is found at default locations.
9614 (ispell-complete-word-dict): Default to nil.
9615 (ispell-command-loop): Use 'word-list' when using lookup-words.
9616 (lookup-words): Use ispell-complete-word-dict or
9617 ispell-alternate-dictionary. Check for word-list availability
9618 and handle errors if needed with better messages (Bug#6539).
9619 (ispell-complete-word): Use ispell-complete-word-dict or
9620 ispell-alternate-dictionary.
9622 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
9624 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
9625 builtins (BufferError, BytesWarning, WindowsError; callables
9626 bin, bytearray, bytes, format, memoryview, next, print; __package__).
9628 2010-07-07 Glenn Morris <rgm@gnu.org>
9630 * play/zone.el (top-level): Do not require timer, tabify, or cl.
9631 (zone-shift-left): Ignore intangibility, and any errors from
9633 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
9634 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
9635 deleting, and copying text properties.
9636 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
9637 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
9638 to point-max is hard.
9639 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
9640 (zone-fill-out-screen): Ignore intangibility.
9642 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
9644 * menu-bar.el (menu-bar-mode):
9645 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
9648 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
9649 word/line selection (Bug#6565).
9651 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
9653 * net/dbus.el (dbus-send-signal): Declare function.
9655 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
9657 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
9658 (dbus-register-property): New optional argument EMITS-SIGNAL.
9659 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
9661 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
9663 * mouse.el (mouse-drag-overlay): Variable deleted.
9664 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
9665 (mouse--remap-link-click-p): New function.
9666 (mouse-drag-track): Handle dragging by using temporary Transient
9667 Mark mode, instead of a special overlay.
9668 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
9671 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
9674 2010-07-02 Juri Linkov <juri@jurta.org>
9676 * autoinsert.el (auto-insert-alist): Fix readability
9677 by using dotted pair notation for lambda.
9679 2010-07-02 Juri Linkov <juri@jurta.org>
9681 * faces.el (read-face-name): Rename arg `string-describing-default'
9682 to `default'. Doc fix. Display the default value in quotes
9683 in the prompt. With empty input, return the `default' arg,
9684 unless the default value is a string (in which case return nil).
9685 (describe-face): Replace the string `default' arg of `read-face-name'
9686 with the symbol `default'.
9688 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
9690 * emulation/viper-cmd.el (viper-delete-backward-char)
9691 (viper-del-backward-char-in-insert)
9692 (viper-del-backward-char-in-replace, viper-change)
9693 (viper-backward-indent): Replace delete-backward-char with
9694 delete-char (Bug#6552).
9696 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
9698 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
9700 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9702 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
9703 argument passed to frame-creation-function (Bug#5378).
9705 * faces.el (x-handle-named-frame-geometry)
9706 (x-handle-reverse-video, x-create-frame-with-faces)
9707 (face-set-after-frame-default, tty-create-frame-with-faces):
9708 Don't separately consult default-frame-alist. It is now passed as the
9711 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
9713 * startup.el (command-line): Don't call tool-bar-setup in a
9716 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9718 * ruler-mode.el (ruler--save-header-line-format): New fun.
9719 (ruler-mode): Use it as a setter function, so as not to overwrite
9720 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
9722 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
9724 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
9725 (vc-root-diff, vc-print-root-log, vc-log-incoming)
9726 (vc-log-outgoing): Use it.
9727 (vc-diff-internal): Set diff-vc-backend.
9729 * vc/diff-mode.el (diff-vc-backend): New var.
9731 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
9733 * dynamic-setting.el (font-setting-change-default-font):
9734 Remove call to message.
9736 2010-06-28 Kenichi Handa <handa@m17n.org>
9738 * international/quail.el (quail-insert-kbd-layout): Fix the
9739 showing of untranslated characters.
9741 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
9743 * simple.el (delete-active-region): New option.
9744 (delete-backward-char): Implement in Lisp.
9745 (delete-forward-char): New command.
9747 * mouse.el (mouse-region-delete-keys): Delete.
9748 (mouse-show-mark): Simplify.
9750 * bindings.el (global-map): Bind delete and DEL, the former to
9751 delete-forward-char.
9753 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
9755 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
9756 (ruby-mode): Bind indent-line-function (Bug#5119).
9758 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
9760 * startup.el (command-line): Recognize "0" X resource value.
9762 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
9764 * startup.el (command-line): Use X resources to set the value of
9765 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
9767 * menu-bar.el (menu-bar-mode):
9768 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
9769 Set init-value to t.
9771 * frame.el (frame-notice-user-settings): Don't change
9772 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
9773 vice versa (Bug#2249).
9775 2010-06-26 Eli Zaretskii <eliz@gnu.org>
9777 * w32-fns.el (w32-convert-standard-filename): Doc fix.
9779 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
9781 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
9782 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
9784 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
9785 default directories are expanded (Bug#6143).
9787 2010-06-24 Juri Linkov <juri@jurta.org>
9789 * minibuffer.el (completions-format): Change default from nil to
9790 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
9792 2010-06-24 Juri Linkov <juri@jurta.org>
9794 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
9795 buffer-locally to lambda that re-runs the vc diff command.
9798 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
9800 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
9801 echo area is in use (Bug#3412).
9803 2010-06-22 Glenn Morris <rgm@gnu.org>
9805 * textmodes/texinfmt.el (texinfo-format-region)
9806 (texinfo-raise-lower-sections, texinfo-format-separate-node)
9807 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
9808 (texinfo-format-option, texinfo-noindent):
9809 Use line-beginning-position and line-end-position.
9811 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
9812 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
9813 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
9816 2010-06-21 Karl Fogel <kfogel@red-bean.com>
9818 * play/zone.el (zone-fall-through-ws): Fix next-line ->
9819 forward-line fallout.
9821 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
9823 * mouse.el (mouse-appearance-menu): Add docstring.
9825 * help.el (describe-key): Print up-event using key-description.
9827 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
9829 * net/zeroconf.el (zeroconf-resolve-service)
9830 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
9831 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
9833 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
9835 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
9837 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
9839 Avoid displaying files with a nil state in vc-dir.
9840 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
9841 cases that cause insertion.
9842 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
9845 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9847 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
9849 2010-06-29 Leo <sdl.web@gmail.com>
9851 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
9853 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9855 * generic-x.el (bat-generic-mode): Fix regexp for command line
9856 switches (Bug#5719).
9858 2010-06-27 Masatake YAMATO <yamato@redhat.com>
9860 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
9861 of nconc to avoid pure storage error (Bug#6239).
9863 2010-06-27 Christoph Scholtes <cschol2112@googlemail.com>
9865 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
9866 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
9867 bindings of bookmark-automatically-show-annotations (Bug#6515).
9869 2010-06-25 Eli Zaretskii <eliz@gnu.org>
9871 * arc-mode.el (archive-zip-extract): Don't quote the file name on
9872 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
9874 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
9876 * comint.el (make-comint, make-comint-in-buffer): Mention return
9877 value in the docstrings. (Bug#6498)
9879 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
9881 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
9882 since it is not present when using some non-default switches.
9884 2010-06-23 Karl Fogel <kfogel@red-bean.com>
9886 * simple.el (compose-mail): Fix doc string to refer to
9887 `compose-mail-user-agent-warnings', instead of to the
9888 nonexistent `compose-mail-check-user-agent'.
9890 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
9892 Fix an indentation bug:
9894 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
9895 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
9898 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
9899 (c-clear->-pair-props-if-match-before): now return t when they've
9900 cleared properties, nil otherwise.
9901 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
9902 by taking account of the existing value.
9904 * progmodes/cc-defs.el
9905 (c-clear-char-property-with-value-function): Fix this to clear the
9906 property rather than overwriting it with nil.
9908 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
9910 * emacs-lisp/package.el (package-print-package): Add link to
9911 package description via describe-package.
9912 (describe-package-1): List package requirements. Add button to
9913 perform installation.
9914 (package-menu-describe-package): New command.
9916 * help-mode.el (help-package): New button type.
9918 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
9920 * emacs-lisp/package.el: Move package-list-packages binding to
9922 (describe-package, describe-package-1, package--dir): New funs.
9923 (package-activate-1): Use package--dir.
9925 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
9927 * help-mode.el (help-package-def): New button type.
9929 * menu-bar.el: Move package-list-packages binding here from
9932 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
9934 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
9936 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9938 * emacs-lisp/edebug.el (edebug-read-list):
9939 Phase out old-style backquotes.
9941 2010-06-17 Juri Linkov <juri@jurta.org>
9943 * help-mode.el (help-mode): Set buffer-local variable
9944 revert-buffer-function to help-mode-revert-buffer.
9945 (help-mode-revert-buffer): New function.
9947 * info.el (Info-revert-find-node): Check for major-mode Info-mode
9948 before popping to "*info*" (like in other Info functions).
9949 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
9950 old-history-forward. Pop to old-buffer-name or "*info*" to
9951 recreate the killed buffer. Set Info-history-forward from
9952 old-history-forward.
9953 (Info-breadcrumbs-depth): Add :group and :version.
9955 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
9957 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
9959 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
9961 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
9962 for languages like Portuguese with pt_{BR,PT} and no plain pt.
9964 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
9966 * emacs-lisp/package.el (package-menu-mode-map):
9967 Move initialization into declaration.
9969 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
9971 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
9973 * emacs-lisp/package.el (package-archive-base): Point to
9975 (package-enable, package-load-list): New defcustoms.
9976 (package-user-dir, package-directory-list): Turn into defcustoms.
9977 Don't include package-user-dir in package-directory-list.
9978 (package--builtins-base): Don't include Emacs as a "package".
9979 (package-subdirectory-regexp): New var.
9980 (package-load-all-descriptors, package-compute-transaction)
9981 (package-download-transaction): Obey package-load-list.
9982 (package-activate-1): Rename from package-do-activate.
9983 (package-list-packages-internal): Check package-load-list.
9984 (package-load-descriptor, package-generate-autoloads)
9985 (package-unpack, package-unpack-single)
9986 (package--read-archive-file, package-delete):
9987 Use expand-file-name.
9989 * emacs-lisp/package-x.el: New file. Package uploading
9990 functionality split out from package.el.
9992 * startup.el (command-line): Load packages after reading init file.
9994 2010-06-17 Tom Tromey <tromey@redhat.com>
9996 * emacs-lisp/package.el: New file.
9998 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10000 Fix vc-annotate for renamed files when using Git.
10001 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
10002 ls-files. Doe not pass the object as a file name to cat-file, it
10003 is not a file name.
10004 (vc-git-annotate-command): Pass the file name using -- to avoid
10005 ambiguity with the revision.
10006 (vc-git-previous-revision): Pass a relative file name.
10008 2010-06-22 Glenn Morris <rgm@gnu.org>
10010 * progmodes/js.el (js-mode-map): Use standard capitalization and
10011 ellipses for menu entries.
10013 * wid-edit.el (widget-complete): Doc fix.
10015 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
10017 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
10019 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10021 Fix annotating other revisions for renamed files in vc-annotate.
10022 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
10023 VC backend. Use it when non-nil.
10024 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
10027 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
10028 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
10029 Do not pass the file name to the 'previous-revision call when we
10030 don't want a file diff. (Bug#6489)
10032 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10034 Fix finding revisions for renamed files in vc-annotate.
10035 * vc/vc.el (vc-find-revision): Add an optional argument for
10036 the VC backend. Use it when non-nil.
10037 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
10038 backend to vc-find-revision. (Bug#6487)
10040 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10042 Fix reading file names in Git annotate buffers.
10043 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
10044 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
10046 2010-06-20 Alan Mackenzie <acm@muc.de>
10048 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
10049 in file local variables, set it first.
10051 2010-06-19 Glenn Morris <rgm@gnu.org>
10053 * descr-text.el (describe-char-unicode-data): Insert separating
10054 space when needed. (Bug#6422)
10056 * progmodes/idlwave.el (idlwave-action-and-binding):
10057 Fix typo in 2009-12-03 change. (Bug#6450)
10059 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
10061 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
10062 handling for `lambda' (misunderstanding).
10064 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
10066 * calc/calc-poly.el (math-accum-factors): Make sure that
10067 constants aren't distributed after they are factored out.
10069 2010-06-16 Juri Linkov <juri@jurta.org>
10071 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
10072 `list-colors-print'. (Bug#6332)
10074 * subr.el (read-quoted-char): Fix up last change (bug#6290).
10076 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10078 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
10079 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
10081 * font-lock.el (font-lock-major-mode): Rename from
10082 font-lock-mode-major-mode to distinguish it from
10083 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
10084 (font-lock-set-defaults):
10085 * font-core.el (font-lock-default-function): Adjust users.
10086 (font-lock-mode): Don't set it at all.
10088 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10090 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
10092 2010-06-16 Glenn Morris <rgm@gnu.org>
10094 * calendar/appt.el (appt-time-msg-list): Doc fix.
10095 (appt-check): Let-bind appt-warn-time.
10096 (appt-add): Make the 3rd argument optional.
10097 Simplify argument names. Doc fix. Check for integer WARNTIME.
10098 Only add WARNTIME to the output list if non-nil.
10100 2010-06-16 Ivan Kanis <apple@kanis.eu>
10102 * calendar/appt.el (appt-check): Let the 3rd element of
10103 appt-time-msg-list specify the warning time.
10104 (appt-add): Add new argument with the warning time. (Bug#5176)
10106 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
10108 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
10109 older than version 1.6. (Bug#6361)
10111 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
10113 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
10114 used by cl-do-arglist. (Bug#6408)
10116 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
10118 * textmodes/ispell.el (ispell-dictionary-base-alist):
10119 Fix portuguese casechars/not-casechars for missing 'çÇ'.
10120 Suggested by Rolando Pereira (bug#6434).
10122 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
10124 * facemenu.el (list-colors-sort): Doc fix.
10126 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
10128 * progmodes/sql.el (sql-connect-mysql): Fix typo.
10130 2010-06-14 Juri Linkov <juri@jurta.org>
10132 Add sort option `list-colors-sort'. (Bug#6332)
10133 * facemenu.el (color-rgb-to-hsv): New function.
10134 (list-colors-sort): New defcustom.
10135 (list-colors-sort-key): New function.
10136 (list-colors-display): Doc fix. Sort list according to the option
10137 `list-colors-sort'.
10138 (list-colors-print): Add HSV values to `help-echo' property of
10141 2010-06-14 Juri Linkov <juri@jurta.org>
10143 * compare-w.el: Move to the "vc" subdirectory.
10145 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10147 * image-mode.el (image-mode-map): Remap left-char and right-char.
10149 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
10151 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
10153 * term/common-win.el (x-colors): Add all the color names defined
10154 in rgb.txt (Bug#6332).
10156 * facemenu.el (list-colors-print): Don't print extra names if it
10157 will overflow the window width.
10159 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
10162 2010-06-12 Eli Zaretskii <eliz@gnu.org>
10164 * files.el (make-directory): Doc fix (bug#6396).
10166 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
10168 * net/tramp.el (tramp-remote-process-environment): Protect version
10169 string by apostroph.
10170 (tramp-shell-prompt-pattern): Do not use a shy group in case of
10172 (tramp-file-name-for-operation): Add `call-process-region'.
10173 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
10175 * net/tramp-compat.el (top): Do not autoload
10176 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
10177 only when `start-file-process' is not bound.
10178 (tramp-advice-file-expand-wildcards): Do not use
10179 `tramp-handle-file-remote-p'.
10180 (tramp-compat-make-temp-file): Handle the case, that
10181 `make-temp-file' has no third argument EXTENSION.
10183 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
10185 * makefile.w32-in (WINS_BASIC): Include new directory vc.
10187 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
10189 2010-06-11 Juri Linkov <juri@jurta.org>
10191 * finder.el (finder-known-keywords): Add keyword "vc"
10192 for version control.
10194 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
10195 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
10196 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
10197 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
10199 2010-06-11 Juri Linkov <juri@jurta.org>
10201 Move version control related files to the "vc" subdirectory.
10202 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
10203 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
10204 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
10205 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
10206 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
10207 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
10208 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
10209 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
10210 Move files to the "vc" subdirectory.
10212 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
10214 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
10217 2010-06-11 Stephen Eglen <stephen@gnu.org>
10219 * shell.el: Bind `shell-resync-dirs' to M-RET.
10221 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
10223 * notifications.el: Move file from lisp/net, because it is
10224 supposed to talk locally to the user.
10226 2010-06-10 Julien Danjou <julien@danjou.info>
10228 * net/notifications.el (notifications-on-action-signal)
10229 (notifications-on-closed-signal): Pass notification id as first
10230 argument to the callback functions. Add docstrings.
10231 (notifications-notify): Fix docstring.
10233 2010-06-10 Glenn Morris <rgm@gnu.org>
10235 * emacs-lisp/authors.el (authors-ignored-files)
10236 (authors-valid-file-names): Add some files.
10238 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10240 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
10241 merge conflict, giving preference to the emacs-23 version of the code.
10243 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10245 * emacs-lisp/advice.el (ad-compile-function):
10246 Define warning-suppress-types before we let-bind it (bug#6275).
10248 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
10249 declare it, make it buffer-local and permanent-local (bug#6324).
10250 (vc-resynch-window): Adjust name.
10251 * vc-hooks.el (vc-find-file-hook): Adjust name.
10253 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
10255 * net/notifications.el (notifications-notify): Fix docstring.
10257 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
10259 Update to Unicode 6.0.0 beta.
10260 * international/charprop.el: Update copyright.
10261 * international/mule-cmds.el (ucs-names): Update character ranges.
10262 * international/uni-bidi.el:
10263 * international/uni-category.el:
10264 * international/uni-combining.el:
10265 * international/uni-comment.el:
10266 * international/uni-decimal.el:
10267 * international/uni-decomposition.el:
10268 * international/uni-digit.el:
10269 * international/uni-lowercase.el:
10270 * international/uni-mirrored.el:
10271 * international/uni-name.el:
10272 * international/uni-numeric.el:
10273 * international/uni-old-name.el:
10274 * international/uni-titlecase.el:
10275 * international/uni-uppercase.el: Regenerate.
10277 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
10279 * emacs-lisp/smie.el (comment-string-strip): Declare function.
10280 (smie-precs-precedence-table): Fix typo in docstring.
10282 * vc-mtn.el (log-edit-extract-headers): Declare function.
10284 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
10286 * net/notifications.el (dbus-register-signal): Declare function.
10287 (notifications-notify): Fix typos and reflow docstring.
10289 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10291 Improve VC create/retrieve tag/branch.
10292 * vc.el (vc-create-tag): Do not read the directory name for VCs
10293 with repository revision granularity. Adjust the tag/branch
10294 prompt. Reset VC properties.
10295 (vc-retrieve-tag): Do not read the directory name for VCs
10296 with repository revision granularity. Reset VC properties.
10298 2010-06-09 Julien Danjou <julien@danjou.info>
10300 * net/notifications.el: New file.
10302 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10304 Add optional support for resetting VC properties.
10305 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
10306 call vc-file-clearprops when true.
10307 (vc-resynch-buffer): Add new optional argument, pass it down.
10308 (vc-resynch-buffers-in-directory): Likewise.
10310 Improve support for special markup in the VC commit message.
10311 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
10312 * vc-hg.el (vc-hg-checkin): Add support for Date:.
10313 * vc-git.el (vc-git-checkin):
10314 * vc-bzr.el (vc-bzr-checkin): Likewise.
10316 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10318 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
10319 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
10321 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
10323 * iimage.el: Remove images as soon as the underlying text is modified.
10324 (iimage-modification-hook): New function.
10325 (iimage-mode-buffer): Use it.
10327 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10329 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
10330 smie-indent-offset-after. Add :prev case. Make a bit more generic.
10331 (smie-indent-virtual): Remove `virtual' arg. Update callers.
10332 (smie-indent-keyword): Add handling of open-paren keywords.
10333 (smie-indent-comment-continue): Don't assume comment-continue.
10335 2010-06-07 Martin Rudalics <rudalics@gmx.at>
10337 * window.el (pop-to-buffer): Remove the conditional that
10338 compares new-window and old-window, so it will reselect
10339 the selected window unconditionally.
10340 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
10342 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10344 * emacs-lisp/smie.el (smie-indent-offset-after)
10345 (smie-indent-forward-token, smie-indent-backward-token): New functions.
10346 (smie-indent-after-keyword): Use them.
10347 (smie-indent-fixindent): Only applies to the indentation of the BOL.
10348 (smie-indent-keyword): Tweak the black magic.
10349 (smie-indent-comment-continue): Strip comment-continue before use.
10350 (smie-indent-functions): Indent comments before keywords.
10352 2010-06-06 Juri Linkov <juri@jurta.org>
10354 * isearch.el (isearch-lazy-highlight-search): Fix looping
10355 by checking for empty match. This syncs this loop with the
10356 similar loop in `isearch-search'. (Bug#6362)
10358 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
10360 * net/dbus.el (dbus-register-method): Declare function.
10361 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
10362 (dbus-introspect): Doc fix.
10363 (dbus-event-bus-name, dbus-introspect-get-interface)
10364 (dbus-introspect-get-argument): Reflow docstrings.
10366 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
10368 vc-log-incoming/vc-log-outgoing fixes for Git.
10369 * vc-git.el (vc-git-log-view-mode): Fix font lock for
10370 incoming/outgoing logs.
10371 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
10372 instead of vc-git-compute-remote.
10373 (vc-git-compute-remote): Remove.
10375 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
10377 * term/common-win.el (x-colors): Add "dark green" and "dark
10378 turquoise" (Bug#6332).
10380 2010-06-04 Juri Linkov <juri@jurta.org>
10382 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
10383 Instead of setting `replace' to t and replacing the same string
10384 with itself, don't do certain actions when
10385 kill-do-not-save-duplicates is non-nil and string is equal to car
10386 of kill-ring: don't call menu-bar-update-yank-menu, don't push
10387 interprogram-paste strings to kill-ring, and don't push the input
10388 argument `string' to kill-ring.
10389 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
10391 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
10393 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
10395 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
10397 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
10398 (tramp-gvfs-handler-mounted-unmounted)
10399 (tramp-gvfs-connection-mounted-p): Handle default-location.
10401 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
10402 move files to trash.
10404 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
10406 * international/mule-cmds.el (nonascii-insert-offset)
10407 (nonascii-translation-table): Add obsolescence information.
10409 * international/mule.el (make-translation-table-from-vector): Doc fix.
10411 2010-06-03 Glenn Morris <rgm@gnu.org>
10413 * desktop.el (desktop-clear-preserve-buffers):
10414 Add "*Warnings*" buffer. (Bug#6336)
10416 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
10418 vc-log-incoming/vc-log-outgoing improvements for Git.
10419 * vc-git.el (vc-git-log-outgoing): Use the same format as the
10421 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
10423 Add bindings for vc-log-incoming and vc-log-outgoing.
10424 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
10425 and vc-log-outgoing.
10426 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
10427 and vc-log-outgoing.
10429 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
10431 * net/rcirc.el (rcirc-sort-nicknames): Remove.
10432 (rcirc-handler-366): Always sort nicknames.
10434 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
10436 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
10438 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
10440 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
10442 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10444 * net/rcirc.el (rcirc-sort-nicknames): Change default.
10445 (rcirc-sort-nicknames-join): Avoid setq.
10447 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
10449 * net/rcirc.el (rcirc-sort-nicknames): New custom.
10450 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
10451 (rcirc-handler-366): Use them.
10453 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10455 Split smie-indent-calculate into more manageable chunks.
10456 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
10457 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
10458 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
10459 (smie-indent-exps): Extract from smie-indent-calculate.
10460 (smie-indent-functions): New var.
10461 (smie-indent-functions): Use them.
10463 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10465 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
10466 (smie-indent-calculate): Simplify and cleanup.
10468 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
10470 * net/tramp-gvfs.el (top): Require url-util.
10471 (tramp-gvfs-mount-point): Remove.
10472 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
10474 (with-tramp-dbus-call-method): Format trace message.
10475 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
10476 Implement backup call, when operation on local files fails.
10477 Use progress reporter. Flush properties of changed files.
10478 (tramp-gvfs-handle-make-directory): Make more traces.
10479 (tramp-gvfs-url-file-name): Hexify file name in url.
10480 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
10481 into account for the resulting file name.
10482 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
10483 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
10484 (tramp-gvfs-handler-mounted-unmounted)
10485 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
10486 attribute "default_location". Set "prefix" property.
10487 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
10488 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
10489 exists. Raise an error, if not (due to a corresponding answer
10490 "no" in interactive questions, for example).
10492 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
10494 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
10496 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
10498 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
10499 right-*. (Bug#6265)
10501 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
10503 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
10504 * vc-git.el (vc-git-compute-remote): New function.
10505 (vc-git-log-outgoing): Use it instead of hard coding a value.
10506 (vc-git-log-incoming): New function.
10508 Improve state updating for VC tag commands.
10509 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
10510 to update the state of all buffers in the directory.
10512 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
10514 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10516 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
10517 `file-directory-p' to the filename part rather than to the whole text.
10519 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10521 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
10523 2010-05-31 Drew Adams <drew.adams@oracle.com>
10525 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
10527 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
10529 * subr.el (momentary-string-display): Just use read-event to read
10530 the exit event (Bug#6238).
10532 2010-05-30 Eli Zaretskii <eliz@gnu.org>
10534 * international/mule.el (define-coding-system): Doc fix (bug#6313).
10536 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
10538 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
10539 Suggested by Eli Zaretskii <eliz@gnu.org>.
10541 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10543 * minibuffer.el (completion-file-name-table): Don't return a boundary
10544 past the end of `string' (bug#6299).
10545 (completion--file-name-table): Delegate to completion-file-name-table
10546 for the `boundaries' case.
10548 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
10550 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
10553 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
10554 `path-separator', but maintain compatibility with Emacs 20.2.
10556 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
10558 * server.el (server-process-filter): Receive parent-id argument
10560 (server-create-window-system-frame): New arg. Pass parent-id as
10563 2010-05-29 Eli Zaretskii <eliz@gnu.org>
10565 Bidi-sensitive word movement with arrow keys.
10566 * subr.el (right-arrow-command, left-arrow-command): Move to
10569 * bindings.el (right-char, left-char): Move from subr.el and
10570 rename from right-arrow-command and left-arrow-command.
10571 (right-word, left-word): New functions.
10572 (global-map) <right>: Bind to right-char.
10573 (global-map) <left>: Bind to left-char.
10574 (global-map) <C-right>: Bind to right-word.
10575 (global-map) <C-left>: Bind to left-word.
10577 * ls-lisp.el (ls-lisp-classify-file): New function.
10578 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
10579 (ls-lisp-classify): Call ls-lisp-classify-file.
10580 (insert-directory): Remove blanks from switches.
10582 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
10584 * ansi-color.el: Delete unused escape sequences (Bug#6085).
10585 (ansi-color-drop-regexp): New constant.
10586 (ansi-color-apply, ansi-color-filter-region)
10587 (ansi-color-apply-on-region): Delete unrecognized control sequences.
10588 (ansi-color-apply): Build string list before calling concat.
10590 2010-05-28 Juri Linkov <juri@jurta.org>
10592 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
10593 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
10596 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
10598 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
10599 to ignored backtrace functions.
10600 (with-progress-reporter): Expand docstring.
10601 (tramp-handle-delete-file): Implement TRASH argument.
10602 (tramp-get-remote-trash): New defun.
10604 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
10606 * net/tramp-compat.el (tramp-compat-delete-file):
10607 Use `symbol-value' for backward compatibility.
10609 * net/tramp.el (tramp-handle-make-symbolic-link)
10610 (tramp-handle-load)
10611 (tramp-do-copy-or-rename-file-via-buffer)
10612 (tramp-do-copy-or-rename-file-directly)
10613 (tramp-do-copy-or-rename-file-out-of-band)
10614 (tramp-handle-process-file, tramp-handle-call-process-region)
10615 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10616 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10617 (tramp-delete-temp-file-function): Use `delete-file' instead
10618 of `tramp-compat-delete-file'.
10620 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10621 (tramp-fish-handle-make-symbolic-link)
10622 (tramp-fish-handle-process-file): Use `delete-file' instead
10623 of `tramp-compat-delete-file'.
10625 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
10626 Use `delete-file' instead of `tramp-compat-delete-file'.
10628 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
10629 Use `delete-file' instead of `tramp-compat-delete-file'.
10631 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
10632 Use `delete-file' instead of `tramp-compat-delete-file'.
10634 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10635 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10636 (tramp-smb-handle-write-region): Use `delete-file' instead of
10637 `tramp-compat-delete-file'.
10638 (tramp-smb-handle-delete-directory): Use 'trash as arg.
10640 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10642 * dired.el (dired-delete-file): New arg TRASH.
10643 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
10644 (dired-do-flagged-delete, dired-do-delete): Use trash.
10646 * speedbar.el (speedbar-item-delete): Allow trashing.
10648 * files.el (delete-directory): New arg TRASH.
10650 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
10651 (ange-ftp-rename-remote-to-remote)
10652 (ange-ftp-rename-local-to-remote)
10653 (ange-ftp-rename-remote-to-local, ange-ftp-load)
10654 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
10656 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
10659 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
10660 handle new TRASH arg of `delete-file'.
10662 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
10663 (tramp-handle-make-symbolic-link, tramp-handle-load)
10664 (tramp-do-copy-or-rename-file-via-buffer)
10665 (tramp-do-copy-or-rename-file-directly)
10666 (tramp-do-copy-or-rename-file-out-of-band)
10667 (tramp-handle-process-file, tramp-handle-call-process-region)
10668 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10669 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10670 (tramp-delete-temp-file-function): Use null TRASH arg in
10671 tramp-compat-delete-file call.
10673 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10674 (tramp-fish-handle-delete-file)
10675 (tramp-fish-handle-make-symbolic-link)
10676 (tramp-fish-handle-process-file): Use null TRASH arg in
10677 `tramp-compat-delete-file' call.
10679 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
10680 arg in `tramp-compat-delete-file' call.
10682 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
10683 (tramp-gvfs-handle-write-region): Use null TRASH arg in
10684 `tramp-compat-delete-file' call.
10686 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
10687 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
10688 `tramp-compat-delete-file' call.
10690 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10691 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10692 (tramp-smb-handle-write-region): Use null TRASH arg in
10693 tramp-compat-delete-file call.
10694 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
10695 (tramp-smb-handle-delete-file): Rename arg.
10697 * diff.el (diff-sentinel):
10698 * epg.el (epg--make-temp-file, epg-decrypt-string)
10699 (epg-verify-string, epg-sign-string, epg-encrypt-string):
10700 * jka-compr.el (jka-compr-partial-uncompress)
10701 (jka-compr-call-process, jka-compr-write-region):
10702 * server.el (server-sentinel): Remove optional arg from
10703 delete-file, reverting 2010-05-03 change.
10705 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10707 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10708 Use font-lock-constant-face, not obsolete font-lock-reference-face.
10710 2010-05-27 Kenichi Handa <handa@m17n.org>
10712 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
10713 element of GSTRING is nil.
10715 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10717 * emacs-lisp/smie.el (smie-forward-token-function)
10718 (smie-backward-token-function): New vars.
10719 (smie-backward-sexp, smie-forward-sexp)
10720 (smie-indent-hanging-p, smie-indent-calculate): Use them.
10721 (smie-default-backward-token): Rename from smie-backward-token and
10723 (smie-default-forward-token): Rename from smie-forward-token and
10725 (smie-next-sexp): Handle nil results from next-token.
10726 (smie-indent-calculate): Add a new case for special `fixindent' comments.
10728 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10730 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10731 Use font-lock-constant-face, not obsolete font-lock-reference-face.
10733 2010-05-27 Masatake YAMATO <yamato@redhat.com>
10735 * htmlfontify.el (hfy-face-resolve-face): New function.
10736 (hfy-face-to-style): Use it (Bug#6279).
10738 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10740 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
10741 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
10743 2010-05-26 Glenn Morris <rgm@gnu.org>
10745 * emulation/edt.el (edt-load-keys): Use locate-library.
10747 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
10749 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
10750 (log-edit-changelog-entries): Doc fix.
10751 (log-edit-changelog-insert-entries): Args changed.
10752 Rename relative filenames in ChangeLog entries. Delete tabs.
10753 (log-edit-insert-changelog-entries): Reorganize return value of
10754 `log-edit-changelog-entries' to pass filenames to
10755 log-edit-changelog-insert-entries.
10757 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10759 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
10760 `image-dired-dired-insert-marked-thumbs' to
10761 `image-dired-dired-toggle-marked-thumbs'.
10763 * image-dired.el: Require cl when compiling.
10764 (image-dired-dired-toggle-marked-thumbs): Rename from
10765 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
10766 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
10767 to 'no-dir. Skip files whose names don't match
10768 `image-file-name-regexp'. When file has a thumbnail overlay,
10769 delete it. (Bug#5270)
10771 2010-05-25 Juri Linkov <juri@jurta.org>
10773 * image-mode.el (image-mode): Add image-after-revert-hook to
10775 (image-after-revert-hook): New function. (Bug#5669)
10777 2010-05-25 Juri Linkov <juri@jurta.org>
10779 * image.el (image-animated-p): When delay between animated images
10780 is 0, set it to 10 (0.1 sec). (Bug#6258)
10782 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
10784 * net/tramp.el (tramp-handle-insert-directory): Don't use
10785 `forward-word', its default syntax could be changed.
10787 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
10789 * net/tramp.el (tramp-progress-reporter-update): New defun.
10790 (with-progress-reporter): Use it.
10791 (tramp-process-actions):
10792 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
10793 Preserve current message, in order to let progress reporter continue
10794 afterwards. (Bug#6257)
10796 2010-05-25 Glenn Morris <rgm@gnu.org>
10798 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
10801 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
10803 * net/rcirc.el (rcirc-default-user-name): Change to "user".
10804 (rcirc-default-full-name): Change to "unknown".
10805 (rcirc-user-name-history): Add variable.
10807 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
10808 Jonathan Rockway <jon@jrock.us>
10810 * net/rcirc.el (rcirc-server-alist): Add :pass.
10811 (rcirc): When prompting for connection parameters, also prompt for
10812 username and password.
10813 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
10814 value to server when connecting.
10816 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10818 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
10819 (smie-merge-prec2s): Pass the tables as separate args.
10820 (smie-bnf-precedence-table): Adjust call accordingly.
10821 (smie-prec2-levels): Set levels at the end.
10823 Replace Lisp calls to delete-backward-char by delete-char.
10824 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
10825 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
10826 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
10827 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
10828 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
10829 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
10830 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
10831 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
10832 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
10833 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
10834 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
10835 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
10836 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
10837 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
10838 delete-backward-char by calls to delete-char.
10840 2010-05-25 Kenichi Handa <handa@m17n.org>
10842 * language/hebrew.el (hebrew-shape-gstring): New function.
10843 Register it in composition-function-table for all Hebrew combining
10846 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10848 * epa.el (epa--select-keys): Don't explicitly delete the window since
10849 that can fail (e.g. sole window in frame). Use dedication instead.
10851 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
10853 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
10855 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
10857 * image.el (image-refresh): Define as an alias for image-flush.
10859 * image-mode.el (image-toggle-display-image): Caller changed.
10861 2010-05-21 Juri Linkov <juri@jurta.org>
10863 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
10864 Remove "all" from grep-files-aliases. Split grep-files-aliases by
10865 whitespace, call wildcard-to-regexp on substrings and concat them
10866 with "\\|". (Bug#6114)
10868 2010-05-21 Alan Mackenzie <acm@muc.de>
10870 * progmodes/cc-engine.el (c-parse-state-get-strategy):
10871 Replace parameter `here' with `here-' and `here-plus', which sandwich
10872 any pertinent CPP construct.
10873 (c-remove-stale-state-cache-backwards): Fix a bug which happens
10874 when doing (c-parse-state) in a CPP construct: Exclude any "new"
10875 CPP construct from taking part in the scanning.
10877 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
10879 * net/tramp.el (tramp-do-copy-or-rename-file)
10880 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
10881 Tune `with-progress-reporter' messages.
10882 (tramp-handle-vc-registered):
10883 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
10884 (tramp-fish-handle-insert-file-contents)
10885 (tramp-fish-maybe-open-connection):
10886 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
10887 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
10888 (tramp-imap-handle-insert-file-contents)
10889 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
10891 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
10893 * add-log.el (change-log-font-lock-keywords):
10894 Highlight all authors in multi-author entries.
10896 * smerge-mode.el (smerge-refine-ignore-whitespace)
10897 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
10898 Fix typos in docstrings.
10899 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
10901 2010-05-21 Glenn Morris <rgm@gnu.org>
10903 * progmodes/fortran.el (fortran-mode):
10904 * progmodes/f90.el (f90-mode): Derive from prog-mode.
10906 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
10907 having a relative path in src/Makefile.in.
10909 2010-05-20 Kevin Ryde <user42@zip.com.au>
10911 * help-mode.el (help-make-xrefs): For Info node links turn
10912 newlines into spaces. Link node names with newlines are matched
10913 by help-xref-info-regexp and buttonized, this change ensures they
10914 can be followed successfully with RET. (Bug#6206)
10916 2010-05-20 Juri Linkov <juri@jurta.org>
10918 * locate.el (locate): Use pop-to-buffer instead of
10919 switch-to-buffer-other-window. (Bug#6204)
10921 2010-05-20 Juri Linkov <juri@jurta.org>
10923 * replace.el (replace-highlight): Fix lazy-highlighting
10924 for `M-s w str M-% str RET'.
10926 2009-12-15 Masatake YAMATO <yamato@redhat.com>
10928 * isearch.el (isearch-yank-word-or-char): Pull next subword
10929 when `subword-mode' is activated. (Bug#6220)
10931 2010-05-20 Mark A. Hershberger <mah@everybody.org>
10933 * isearch.el (isearch-update-post-hook): New hook.
10934 (isearch-update): Use the new hook. (Bug#6225)
10936 2010-05-20 Juri Linkov <juri@jurta.org>
10938 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
10939 [f1], [help], and (char-to-string help-char) instead of "\C-h".
10942 2010-05-20 Juri Linkov <juri@jurta.org>
10944 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
10947 2010-05-20 Juri Linkov <juri@jurta.org>
10949 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
10950 FILE-NAME to read from the minibuffer when called interactively
10951 with prefix argument instead of using buffer-file-name.
10952 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
10954 * dired.el: Update autoloads.
10956 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
10958 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
10959 nxml-finish-element, for consistency with SGML mode.
10961 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
10962 octave-close-block.
10964 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
10966 * composite.el: Require cl when compiling.
10967 (reference-point-alist, compose-gstring-for-graphic)
10968 (compose-gstring-for-terminal): Fix typos in docstrings.
10970 2010-05-19 Juri Linkov <juri@jurta.org>
10972 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
10973 set-window-parameter.
10975 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
10977 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
10979 (tramp-maybe-open-connection): Use it.
10981 2010-05-19 Eli Zaretskii <eliz@gnu.org>
10983 * simple.el (move-end-of-line): Make sure we are at line beginning
10984 before backing up to end of previous line.
10986 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
10988 * password-cache.el (password-cache-remove): Fix docstring.
10990 * net/secrets.el: Autoload the widget functions.
10991 (secrets-search-items, secrets-create-item)
10992 (secrets-get-attributes, secrets-expand-item): Attributes will be
10993 stored on the password database without leading ":", as all other
10994 clients do as well.
10995 (secrets-mode): Fix docstring.
10996 (secrets-show-secrets): Provide it as autoloaded command only when
10997 D-Bus support is available. Check existence of Secret Service API.
10999 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11001 * indent.el (indent-region): Deactivate region (bug#6200).
11003 2010-05-19 Glenn Morris <rgm@gnu.org>
11005 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
11007 2010-05-19 Kenichi Handa <handa@m17n.org>
11009 * composite.el: Register compose-gstring-for-graphic in
11010 composition-function-table only for combining characters (Mn, Mc, Me).
11012 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
11014 * calc/calc-trail.el (calc-trail-isearch-forward)
11015 (calc-trail-isearch-backward): Ensure that the new window
11016 point is set correctly.
11018 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11020 * subr.el (read-quoted-char): Resolve modifiers after key
11021 remapping (bug#6212).
11023 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
11025 Add visualization code for secrets.
11026 * net/secrets.el (secrets-mode): New major mode.
11027 (secrets-show-secrets, secrets-show-collections)
11028 (secrets-expand-collection, secrets-expand-item)
11029 (secrets-tree-widget-after-toggle-function)
11030 (secrets-tree-widget-show-password): New defuns.
11032 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11034 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
11035 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
11036 handled in smie-next-sexp.
11037 (smie-indent-calculate): Provide a starting indentation (so the
11038 recursion is well-founded ;-).
11040 Fix handling of non-associative equal levels.
11041 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
11042 when it's not needed.
11043 (smie-op-left, smie-op-right): New functions.
11044 (smie-next-sexp): New function, extracted from smie-backward-sexp.
11045 Better handle equal levels to distinguish the associative case from
11046 the "multi-keyword construct" case.
11047 (smie-backward-sexp, smie-forward-sexp): Use it.
11049 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
11051 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
11053 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
11054 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
11056 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11058 Provide a simple generic indentation engine and use it for Prolog.
11059 * emacs-lisp/smie.el: New file.
11060 * progmodes/prolog.el (prolog-smie-op-levels)
11061 (prolog-smie-indent-rules): New var.
11062 (prolog-mode-variables): Use them to configure SMIE.
11063 (prolog-indent-line, prolog-indent-level): Remove.
11065 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
11067 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
11068 order before computing the averages.
11070 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
11072 * calc/calc-vec.el (calc-histogram):
11073 (calcFunc-histogram): Allow vectors as inputs.
11074 (math-vector-avg): New function.
11076 * calc/calc-ext.el (math-group-float): Have the number of digits
11077 being grouped depend on the radix (Bug#6189).
11079 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
11081 * version.el (emacs-copyright, emacs-version): Don't define here,
11082 now that emacs.c defines it.
11084 2010-05-15 Eli Zaretskii <eliz@gnu.org>
11086 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
11087 "Describe Language Environment" menu item.
11089 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
11091 Bidi-sensitive movement with arrow keys.
11092 * subr.el (right-arrow-command, left-arrow-command): New functions.
11094 * bindings.el (global-map): Bind them to right and left arrow keys.
11096 Don't override standard definition of convert-standard-filename.
11097 * files.el (convert-standard-filename):
11098 Call w32-convert-standard-filename and dos-convert-standard-filename on
11099 the corresponding systems.
11101 * w32-fns.el (w32-convert-standard-filename): Rename from
11102 convert-standard-filename. Doc fix.
11104 * dos-fns.el (dos-convert-standard-filename): Doc fix.
11105 (convert-standard-filename): Don't defalias.
11106 (register-name-alist, make-register, register-value)
11107 (set-register-value, intdos): Obsolete aliases for the
11108 corresponding dos-* functions and variables.
11109 (dos-intdos): Add a doc string.
11111 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
11113 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
11114 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
11115 (math-compose-tex-func):
11116 * calc/calccomp.el (math-compose-expr):
11117 * calc/calc-ext.el (math-format-flat-expr-fancy):
11118 * calc/calc-store.el (calc-read-var-name):
11119 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
11121 * calc/calc.el (var-π, var-φ, var-γ): New variables.
11122 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
11123 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
11124 (math-standard-units): Add units.
11126 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11128 * progmodes/asm-mode.el (asm-mode):
11129 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
11131 * pcomplete.el (pcomplete-completions-at-point): New function,
11132 extracted from pcomplete-std-complete.
11133 (pcomplete-std-complete): Use it.
11135 2010-05-15 Glenn Morris <rgm@gnu.org>
11137 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11138 Remove references to CVS, RCS and Old directories.
11140 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
11142 * calc/calc-bin.el (math-format-twos-complement): Group digits when
11145 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11147 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
11148 (sh-mode-syntax-table): Give it a default value instead.
11149 (sh-header-marker): Make buffer-local.
11150 (sh-mode): Move make-local-variable to the corresponding setq.
11151 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
11152 Use complete-with-action.
11154 * simple.el (prog-mode): New (abstract) major mode.
11155 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
11156 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
11158 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
11160 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
11161 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
11162 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
11163 (sql-make-alternate-buffer-name, sql-placeholders-filter)
11164 (sql-escape-newlines-filter, sql-input-sender)
11165 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
11167 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
11169 Add TeX open-block and close-block keybindings to SGML, and vice versa.
11171 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
11172 latex-open-block and C-c / to latex-close-block.
11174 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
11175 and C-c C-e to sgml-close-tag.
11177 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
11179 * net/tramp.el (with-progress-reporter): Create reporter object
11180 only when the message would be displayed. Handle nested calls.
11181 (tramp-handle-load, tramp-handle-file-local-copy)
11182 (tramp-handle-insert-file-contents, tramp-handle-write-region)
11183 (tramp-maybe-send-script, tramp-find-shell):
11184 Use `with-progress-reporter'.
11185 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
11188 * net/tramp-smb.el (tramp-smb-handle-copy-file)
11189 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
11190 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
11191 Use `with-progress-reporter'.
11193 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
11195 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
11196 process everytime when spellchecking from the minibuffer (bug#6143).
11198 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11200 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
11202 * dos-fns.el: Add "dos-" prefix for namespace control.
11203 (convert-standard-filename): Define as alias for
11204 dos-convert-standard-filename but only if applicable.
11206 2010-05-12 Alan Mackenzie <acm@muc.de>
11208 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
11209 Push the mark at the start of these functions when appropriate.
11211 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11213 * minibuffer.el (completion-cycle-threshold): New custom var.
11214 (completion--do-completion): Use it.
11215 (minibuffer-complete): Use cycling if appropriate.
11217 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
11219 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
11220 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
11222 2010-05-11 Juri Linkov <juri@jurta.org>
11224 * scroll-all.el (scroll-all-check-to-scroll):
11225 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
11227 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
11229 * iimage.el (iimage-mode-map): Move initialization into declaration.
11230 (iimage-mode-buffer): Use with-silent-modifications.
11231 Simplify calling convention. Adjust callers.
11232 (iimage-mode): Don't run hook redundantly.
11234 * minibuffer.el (completion-pcm--pattern->regex):
11235 Fix last change (bug#6160).
11237 2010-05-10 Juri Linkov <juri@jurta.org>
11239 Remove nodes visited during Isearch from the Info history.
11240 * info.el (Info-isearch-initial-history)
11241 (Info-isearch-initial-history-list): New variables.
11242 (Info-isearch-start): Record initial values of
11243 Info-isearch-initial-history and Info-isearch-initial-history-list.
11244 Add Info-isearch-end to isearch-mode-end-hook.
11245 (Info-isearch-end): New function.
11247 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
11249 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
11250 format string, in order to work around a bug in pdksh.
11251 Reported by Gilles Pion <gpion@lfdj.com>.
11252 (tramp-handle-verify-visited-file-modtime): Do not send a command
11253 when the connection is not established.
11254 (tramp-handle-set-file-times): Simplify the check for utc.
11256 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
11258 Fix use of `filter-buffer-substring' (rework previous change).
11259 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
11260 (cua-repeat-replace-region):
11261 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
11262 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11263 (cua-cut-region-to-global-mark): Use it.
11265 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
11267 * progmodes/sql.el: Version 2.1.
11268 (sql-product-alist): Redesign structure of product info.
11269 (sql-product, sql-user, sql-server, sql-database): Safe variables.
11270 (sql-port, sql-port-history): New variables.
11271 (sql-interactive-product): New variable.
11272 (sql-send-terminator): New variable.
11273 (sql-imenu-generic-expression): Add "Types" imenu entry.
11274 (sql-oracle-login-params, sql-sqlite-login-params)
11275 (sql-mysql-login-params, sql-solid-login-params)
11276 (sql-sybase-login-params, sql-informix-login-params)
11277 (sql-ingres-login-params, sql-ms-login-params)
11278 (sql-postgres-login-params, sql-interbase-login-params)
11279 (sql-db2-login-params, sql-linter-login-params)
11280 (sql-oracle-scan-on): New variables.
11281 (sql-mode-map): Add C-c C-i to start interactive mode.
11282 (sql-mode-menu): Update existing menu entries.
11283 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
11284 (sql-mode-oracle-font-lock-keywords)
11285 (sql-mode-postgres-font-lock-keywords)
11286 (sql-mode-ms-font-lock-keywords)
11287 (sql-mode-sybase-font-lock-keywords)
11288 (sql-mode-informix-font-lock-keywords)
11289 (sql-mode-interbase-font-lock-keywords)
11290 (sql-mode-ingres-font-lock-keywords)
11291 (sql-mode-solid-font-lock-keywords)
11292 (sql-mode-mysql-font-lock-keywords)
11293 (sql-mode-sqlite-font-lock-keywords)
11294 (sql-mode-db2-font-lock-keywords)
11295 (sql-mode-linter-font-lock-keywords): Update initialization to
11296 reduce run-time complexity.
11297 (sql-add-product, sql-del-product): New functions.
11298 (sql-set-product-feature, sql-get-product-feature): New functions.
11299 (sql-product-font-lock): Update product API.
11300 (sql-add-product-keywords): New function.
11301 (sql-highlight-product): Update product API.
11302 (sql-help-list-products): New function.
11303 (sql-help): Dynamically lists free and non-free products.
11304 (sql-get-login): Correct bug in handling history and added
11306 (sql-copy-column): Copy without properties.
11307 (sqli-input-sender): Apply filters to SQLi input.
11308 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
11309 Implement as a filter.
11310 (sql-escape-newlines-filter): Implement as a filter.
11311 (sql-remove-tabs-filter): New function.
11312 (sql-send-magic-terminator): New function.
11313 (sql-send-string): Implement magic terminator.
11314 (sql-send-region): Use `sql-send-string'.
11315 (sql-interactive-mode): Use product API.
11316 (sql-product-interactive): Use product API.
11317 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
11318 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
11319 (sql-db2, sql-linter): Use `sql-product-interactive'.
11320 (sql-connect): New function.
11321 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
11322 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
11323 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
11324 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
11327 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11329 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
11330 New custom variable.
11331 (completion-pcm--string->pattern): Use it.
11332 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
11333 Make it handle any symbol as `any'.
11334 (completion-pcm--merge-completions): Extract common suffix for the new
11335 `prefix' symbol as well.
11336 (completion-substring--all-completions): Use the new `prefix' symbol.
11338 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
11340 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
11342 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
11343 (tramp-compat-funcall): New defmacro.
11344 (tramp-compat-line-beginning-position)
11345 (tramp-compat-line-end-position)
11346 (tramp-compat-temporary-file-directory)
11347 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
11348 (tramp-compat-copy-file, tramp-compat-copy-directory)
11349 (tramp-compat-delete-file, tramp-compat-delete-directory)
11350 (tramp-compat-number-sequence, tramp-compat-process-running-p)
11351 * net/tramp.el (top, with-progress-reporter)
11352 (tramp-rfn-eshadow-setup-minibuffer)
11353 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
11354 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
11355 (tramp-completion-mode-p, tramp-check-for-regexp)
11356 (tramp-open-connection-setup-interactive-shell)
11357 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
11358 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
11359 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
11360 * net/tramp-cmds.el (tramp-cleanup-all-connections)
11361 (tramp-reporter-dump-variable, tramp-load-report-modules)
11362 (tramp-append-tramp-buffers)
11363 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
11365 * net/tramp-imap.el (top): Autoload `epg-make-context'.
11367 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11369 * progmodes/compile.el (compilation-buffer-modtime): Rename from
11370 buffer-modtime. Adjust users.
11372 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11374 * international/mule.el (auto-coding-alist): Only purecopy
11375 car of each item, not the whole list (Bug#6083).
11377 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11379 * progmodes/js.el (js-mode): Make paragraph variables local before
11380 calling c-setup-paragraph-variables (Bug#6071).
11382 2010-05-08 Eli Zaretskii <eliz@gnu.org>
11384 * composite.el (compose-region, reference-point-alist): Fix typos
11385 in the doc strings.
11387 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
11389 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
11390 gnuplot's "set" command.
11392 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11394 * abbrev.el (last-abbrev-text): Doc fix.
11395 (abbrev-prefix-mark): Don't escape parenthesis.
11397 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
11399 * composite.el (find-composition): Doc fix.
11401 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11403 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
11404 (sql-oracle-program, sql-sqlite-options)
11405 (sql-query-placeholders-and-send): Doc fixes.
11406 (sql-set-product, sql-interactive-mode): Reflow docstrings.
11407 (sql-imenu-generic-expression, sql-buffer)
11408 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
11409 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
11410 (sql-mode-sybase-font-lock-keywords)
11411 (sql-mode-informix-font-lock-keywords)
11412 (sql-mode-interbase-font-lock-keywords)
11413 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
11414 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
11415 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
11416 (sql-product-feature, sql-highlight-product)
11417 (comint-line-beginning-position, sql-rename-buffer)
11418 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
11419 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
11420 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
11421 Fix typos in docstrings.
11423 2010-05-08 Juri Linkov <juri@jurta.org>
11425 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
11426 property instead of `invisible' and `after-string' (bug#5998).
11428 2010-05-08 Juri Linkov <juri@jurta.org>
11430 * image-mode.el (image-mode-as-text): Fix typo in docstring.
11432 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11434 * filecache.el (file-cache-add-directory-list)
11435 (file-cache-add-directory-recursively): Fix typos in docstrings.
11437 2010-05-08 Kenichi Handa <handa@m17n.org>
11439 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
11440 (gujarati-composable-pattern): Fix typo.
11442 2010-05-08 Kenichi Handa <handa@m17n.org>
11444 * language/indian.el (oriya-composable-pattern)
11445 (tamil-composable-pattern, malayalam-composable-pattern):
11446 Add two-part vowels to "v" (vowel sign).
11448 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11450 * files.el (copy-directory): Handle symlinks (Bug#5982).
11452 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
11454 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
11455 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
11458 2010-05-08 Glenn Morris <rgm@gnu.org>
11460 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
11462 * minibuffer.el (completion-at-point): Doc fix.
11464 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11466 * electric.el (Electric-command-loop): Minor tweak.
11468 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
11469 better with dedicated windows.
11471 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
11473 * Version 23.2 released.
11475 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
11476 Stefan Monnier <monnier@iro.umontreal.ca>
11478 Highlight vendor specific properties.
11479 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
11480 (css-proprietary-property): New face.
11481 (css-font-lock-keywords): Use them.
11483 2010-05-07 Eli Zaretskii <eliz@gnu.org>
11485 * cus-start.el (all): Add native condition for tool-bar-* symbols.
11487 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11489 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
11490 * files.el (auto-mode-alist): Remove redundant entries.
11492 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
11493 * simple.el (auto-save-mode): Move from files.el.
11494 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
11496 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
11498 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
11500 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
11502 * mail/binhex.el (binhex-decode-region-internal)
11503 * mail/uudecode.el (uudecode-decode-region-internal)
11504 * net/dns.el (dns-read-string-name, dns-write, dns-read)
11505 (dns-read-type, dns-query)
11506 * pgg-parse.el (pgg-parse-armor)
11507 * pgg.el (pgg-verify-region)
11508 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
11511 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
11513 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
11515 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
11517 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
11518 * emulation/cua-base.el (cua-repeat-replace-region):
11519 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11520 (cua-cut-region-to-global-mark):
11521 Remove text properties with `set-text-properties'.
11523 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
11525 * net/tramp.el (top, with-progress-reporter):
11526 Use `symbol-function' inside `funcall'.
11528 * net/tramp-compat.el (tramp-compat-file-attributes)
11529 (tramp-compat-delete-file, tramp-compat-delete-directory):
11530 Handle only `wrong-number-of-arguments' error.
11532 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
11533 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
11536 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11538 * minibuffer.el (completion--sreverse, completion--common-suffix):
11540 (completion-pcm--merge-completions): Extract common suffix when safe.
11542 * emacs-lisp/easy-mmode.el (define-minor-mode):
11543 Make :variable more flexible.
11544 * files.el (auto-save-mode): Use it to define using define-minor-mode.
11546 2010-05-05 Juri Linkov <juri@jurta.org>
11548 Add `slow' and `history' tags to the desktop data.
11550 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
11551 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
11552 (Info-finder-find-node): Require `finder.el' to be able
11553 to restore node from the desktop.
11554 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
11555 data `Info-history' and `slow' tag in the assoc list.
11556 (Info-restore-desktop-buffer): Don't restore nodes with the
11557 `slow' tag. Restore `Info-history'.
11559 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
11561 Add FORCE argument to `delete-file'.
11563 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
11564 forcing to delete the temporary file.
11565 (ange-ftp-delete-file): Add FORCE arg.
11566 (ange-ftp-rename-remote-to-remote)
11567 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
11568 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
11569 Force file deletion.
11571 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
11573 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
11574 (tramp-handle-make-symbolic-link, tramp-handle-load)
11575 (tramp-do-copy-or-rename-file-via-buffer)
11576 (tramp-do-copy-or-rename-file-directly)
11577 (tramp-do-copy-or-rename-file-out-of-band)
11578 (tramp-handle-process-file, tramp-handle-call-process-region)
11579 (tramp-handle-shell-command, tramp-handle-file-local-copy)
11580 (tramp-handle-insert-file-contents, tramp-handle-write-region)
11581 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
11583 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
11584 (tramp-fish-handle-make-symbolic-link)
11585 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
11587 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
11588 Use `tramp-compat-delete-file'.
11590 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
11591 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
11593 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
11594 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
11596 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
11597 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
11598 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
11599 Use `tramp-compat-delete-file'.
11601 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11604 * subr.el (add-minor-mode): Use push.
11605 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
11606 * emulation/edt.el (edt-select-mode): Simplify.
11608 Use define-minor-mode in more cases.
11609 * term/tvi970.el (tvi970-set-keypad-mode):
11610 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
11611 (normal-erase-is-backspace-mode):
11612 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
11613 (set-scroll-bar-mode-1): (Re)move to its sole caller.
11614 (get-scroll-bar-mode): New function.
11615 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
11617 Use define-minor-mode for less obvious cases.
11618 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
11619 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
11620 * international/iso-ascii.el (iso-ascii-mode):
11621 * frame.el (auto-raise-mode, auto-lower-mode):
11622 * composite.el (global-auto-composition-mode): Use define-minor-mode.
11624 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
11626 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
11627 in order to see error messages for failed logins.
11629 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
11631 * diff.el (diff-sentinel):
11633 * epg.el (epg--make-temp-file, epg-decrypt-string)
11634 (epg-verify-string, epg-sign-string, epg-encrypt-string):
11636 * jka-compr.el (jka-compr-partial-uncompress)
11637 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
11639 * server.el (server-sentinel): Use delete-file's new FORCE arg
11642 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11644 Use define-minor-mode where applicable.
11645 * view.el (view-mode):
11646 * type-break.el (type-break-query-mode)
11647 (type-break-mode-line-message-mode):
11648 * textmodes/reftex.el (reftex-mode):
11649 * term/vt100.el (vt100-wide-mode):
11650 * tar-mode.el (tar-subfile-mode):
11651 * savehist.el (savehist-mode):
11652 * ibuf-ext.el (ibuffer-auto-mode):
11653 * composite.el (auto-composition-mode):
11654 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
11655 Use define-minor-mode.
11656 (vhdl-mode): Use static mode-line format.
11657 (vhdl-mode-line-update): Delete.
11658 (vhdl-create-mode-menu, vhdl-activate-customizations)
11659 (vhdl-hs-minor-mode): Don't bother calling it.
11661 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11663 * simple.el (with-wrapper-hook): Move.
11664 (buffer-substring-filters): Mark obsolete.
11665 (filter-buffer-substring-functions): New variable.
11666 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
11668 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
11669 Michael Albinus <michael.albinus@gmx.de>
11671 Implement compression for inline methods.
11673 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
11674 (tramp-copy-size-limit): Allow also nil.
11675 (tramp-inline-compress-commands): New defconst.
11676 (tramp-find-inline-compress, tramp-get-inline-compress)
11677 (tramp-get-inline-coding): New defuns.
11678 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
11679 replaced by `tramp-get-inline-coding'.
11680 (tramp-handle-file-local-copy, tramp-handle-write-region)
11681 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
11683 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11685 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
11686 Remove unused functions.
11688 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
11689 Set find-tag-default-function as a variable rather than a property.
11691 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
11692 * progmodes/etags.el (tags-completion-at-point-function):
11693 Remove left over interactive spec. Add autoloading stub.
11694 (complete-tag): Use tags-completion-at-point-function.
11696 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
11698 * minibuffer.el (tags-completion-at-point-function): Fix return value.
11700 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
11702 * ido.el (ido-init-completion-maps): Remove C-v binding.
11703 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
11705 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
11707 * minibuffer.el (tags-completion-at-point-function): New function.
11708 (completion-at-point-functions): Use it.
11710 * progmodes/etags.el (complete-tag): Revert last change.
11712 2010-04-29 Alan Mackenzie <acm@muc.de>
11714 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
11715 off-by-one error (in end of macro position).
11717 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11719 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
11720 firefox is absent. Don't autoload.
11721 (browse-url-galeon-program): Don't autoload.
11723 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
11725 * bindings.el (complete-symbol): Move into minibuffer.el.
11727 * minibuffer.el (complete-tag): Move from etags.el. If tags
11728 completion cannot be performed, return nil instead of signalling
11730 (completion-at-point): Make it an alias for complete-symbol.
11731 (complete-symbol): Move from bindings.el, and replace with the
11732 body of completion-at-point.
11734 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
11736 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
11738 * net/tramp.el (tramp-remote-selinux-p): New defun.
11739 (tramp-handle-file-selinux-context)
11740 (tramp-handle-set-file-selinux-context): Use it.
11742 2010-04-28 Sam Steingold <sds@gnu.org>
11744 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
11745 `safe-local-variable' if the value is a string or a symbol with
11746 the property `bug-reference-url-format'.
11748 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
11750 * progmodes/bug-reference.el (bug-reference-url-format):
11751 Revert 2010-04-27 change due to security risk.
11753 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11755 Make it possible to locally disable a globally enabled mode.
11756 * simple.el (fundamental-mode): Run fundamental-mode-hook.
11757 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
11758 rather than kill-all-local-variables so it runs fundamental-mode-hook.
11759 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
11760 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
11761 that subsequent hooks get a chance to disable it.
11763 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11765 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
11766 Avoid re-enabling a minor mode after the user turned the minor mode
11767 off if MODE-enable-in-buffers is run twice (typically once from
11768 fundamental-mode's after-change-major-mode-hook and a second time from
11769 run-mode-hook's own after-change-major-mode-hook).
11771 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
11773 2010-04-27 Sam Steingold <sds@gnu.org>
11775 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
11776 `safe-local-variable' if the value is a string or a function, as
11777 documented and implemented on 2010-04-02.
11779 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
11781 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
11782 when method is 'kill.
11784 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
11786 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
11787 condition in default directory check.
11788 (ispell-init-process, ispell-kill-ispell, kill-buffer-hook):
11789 Kill ispell process when killing its associated buffer.
11791 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
11793 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
11794 but we aren't using it.
11796 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
11798 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
11799 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
11801 2010-04-24 Glenn Morris <rgm@gnu.org>
11803 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
11804 Ignore VCS-ignore files, and deleted nextstep preferences files.
11805 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
11806 (authors-ambiguous-files): New list.
11807 (authors-valid-file-names): Add some deleted files.
11808 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
11809 (authors-disambiguate-file-name): New function. (Bug#5501)
11810 (authors-canonical-file-name): Doc fix.
11811 Don't warn about obsolete files.
11812 (authors-canonical-file-name, authors-scan-el):
11813 Use authors-disambiguate-file-name.
11815 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
11816 Add autoload cookies.
11817 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
11818 (generated-autoload-file): Set file-local value to "htmlfontify.el".
11819 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
11820 They have definitions / compiler macros in cl.el.
11821 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
11822 Replace manual autoloads with generated ones.
11823 (htmlfontify-unload-rgb-file): Remove autoload.
11824 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
11826 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
11828 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
11829 (byte-compile-setq-default): Optimize for the
11830 single-var case and don't call byte-compile-form in this case to avoid
11831 inf-loop with byte-compile-set-default.
11833 * progmodes/compile.el (compilation-start): Abbreviate default directory.
11835 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
11837 Implement SELINUX backends.
11839 * net/tramp.el (tramp-file-name-handler-alist):
11840 Add `file-selinux-context' and `set-file-selinux-context'.
11841 (tramp-handle-file-selinux-context)
11842 (tramp-handle-set-file-selinux-context): New defuns.
11843 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
11844 Handle PRESERVE-SELINUX-CONTEXT.
11846 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11847 Add `file-selinux-context' and `set-file-selinux-context'.
11848 (tramp-gvfs-handle-file-selinux-context)
11849 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
11850 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
11852 * net/ange-ftp.el (ange-ftp-copy-file):
11853 * net/tramp-fish.el (tramp-fish-handle-copy-file):
11854 * net/tramp-imap.el (tramp-imap-handle-copy-file):
11855 * net/tramp-smb.el (tramp-smb-handle-copy-file):
11856 Add PRESERVE-SELINUX-CONTEXT.
11858 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
11860 Synchronize with Tramp repository.
11862 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
11863 (tramp-action-process-alive, tramp-action-out-of-band)
11864 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
11865 (tramp-exists-file-name-handler): Fix docstring.
11866 (with-progress-reporter): New defmacro.
11867 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
11868 (tramp-maybe-open-connection): Use it.
11870 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
11872 Detect ssh 'ControlMaster' argument automatically in some cases.
11874 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
11875 (tramp-default-method): Use it.
11877 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
11879 * net/tramp.el (tramp-handle-copy-file): Add new optional
11880 parameter `preserve-selinux-context'.
11881 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
11883 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
11885 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
11886 Ensure, that non remote files are still checked. Oops.
11888 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
11892 * icomplete.el (icomplete-completions): Use `non-essential'.
11894 * net/tramp.el (tramp-connectable-p): New defun.
11895 (tramp-handle-expand-file-name)
11896 (tramp-completion-handle-file-name-all-completions)
11897 (tramp-completion-handle-file-name-completion): Use it.
11899 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
11901 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
11903 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
11905 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
11907 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
11909 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
11912 * info.el (info-tool-bar-map): Add labels.
11914 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
11916 * cus-edit.el (custom-commands): Add labels for tool bar.
11917 (custom-buffer-create-internal, Custom-mode): Adjust for
11918 labels in custom-commands.
11920 * dynamic-setting.el: Renamed from font-setting.el.
11922 2010-04-21 John Wiegley <jwiegley@gmail.com>
11924 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
11925 toggles the use of virtual buffers.
11926 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
11927 (ido-toggle-virtual-buffers): New function.
11929 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
11931 Use `define-derived-mode'; fix window selection; doc fixes.
11932 * play/tetris.el (tetris, tetris-update-speed-function)
11933 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
11934 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
11935 (tetris-rotate-next, tetris-end-game, tetris-start-game)
11936 (tetris-pause-game): Fix typos in docstrings.
11937 (tetris-mode-map, tetris-null-map):
11938 Move initialization into declaration.
11939 (tetris-mode): Define with `define-derived-mode';
11940 set show-trailing-whitespace to nil.
11941 (tetris): Prefer window already displaying the "*Tetris*" buffer.
11943 2010-04-21 Karel Klíč <kklic@redhat.com>
11945 * files.el (backup-buffer): Handle SELinux context, and return it
11946 if a backup was made by renaming.
11947 (backup-buffer-copy): Set SELinux context to the target file.
11948 (basic-save-buffer): Set SELinux context of the newly written file.
11949 (basic-save-buffer-1): Now it also returns any SELinux context.
11950 (basic-save-buffer-2): Set SELinux context of the newly created file,
11952 * net/tramp.el (tramp-file-name-for-operation):
11953 Add file-selinux-context.
11955 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
11957 Make the log-edit comments use RFC822 format throughout.
11959 * vc.el (vc-checkin, vc-modify-change-comment):
11960 Adjust to new vc-start/finish-logentry.
11961 (vc-find-conflicted-file): New command.
11962 (vc-transfer-file): Adjust to new vc-checkin.
11963 (vc-next-action): Improve scoping.
11965 * vc-hg.el (vc-hg-log-edit-mode): Remove.
11966 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
11968 * vc-git.el (vc-git-log-edit-mode): Remove.
11969 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
11970 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
11972 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
11973 (vc-start-logentry): Remove argument `extra'.
11974 (vc-finish-logentry): Remove extra args.
11976 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
11977 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
11978 (vc-bzr-conflicted-files): New function.
11980 * log-edit.el (log-edit-extra-flags)
11981 (log-edit-before-checkin-process): Remove.
11982 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
11983 (log-edit-headers-alist): New var.
11984 (log-edit-header-contents-regexp): New const.
11985 (log-edit-match-to-eoh): New function.
11986 (log-edit-font-lock-keywords): Use them.
11987 (log-edit): Insert a "Summary:" header as default.
11988 (log-edit-mode): Mark font-lock rules as case-insensitive.
11989 (log-edit-done): Cleanup headers.
11990 (log-view-process-buffer): Remove.
11991 (log-edit-extract-headers): New function to replace it.
11993 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
11995 * subr.el (default-direction-reversed): Remove obsolescence info.
11997 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11999 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
12002 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
12003 I.e. include text after point in the completion region.
12004 Also, return nil when we're not after/in a symbol.
12006 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
12007 default enable-multibyte-characters.
12009 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12011 * international/mule.el: Help the user choose a valid coding-system.
12012 (read-buffer-file-coding-system): New function.
12013 (set-buffer-file-coding-system): Use it. Prompt the user if the
12014 coding-system cannot encode all the chars.
12016 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
12017 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
12018 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
12019 Don't use *vc-bzr-shelve*.
12021 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
12023 Fix the version number for added files.
12024 * vc-hg.el (vc-hg-working-revision): Check if the file is
12025 registered after hg parent fails (Bug#5961).
12027 2010-04-19 Glenn Morris <rgm@gnu.org>
12029 * htmlfontify.el (htmlfontify-buffer)
12030 (htmlfontify-copy-and-link-dir): Autoload entry points.
12032 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
12034 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
12035 name relative to the project root (Bug#5960).
12037 2010-04-19 Glenn Morris <rgm@gnu.org>
12039 * vc-git.el (vc-git-print-log): Doc fix.
12041 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
12043 * ido.el (ido-file-internal): Fix 2009-12-02 change.
12045 2010-04-19 Christoph Scholtes <cschol2112@googlemail.com>
12047 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
12048 default settings (Bug#5928).
12050 2010-04-19 Glenn Morris <rgm@gnu.org>
12052 * progmodes/fortran.el (fortran-match-and-skip-declaration):
12054 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
12056 2010-04-19 Kenichi Handa <handa@m17n.org>
12058 * language/indian.el (malayalam-composable-pattern): Fix previous
12059 change (add U+0D4D "SIGN VIRAMA").
12060 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
12061 (tamil-composable-pattern): Fix typo in the regexp.
12062 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
12063 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
12064 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
12066 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
12068 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
12069 paragraph-separate (Bug#5821).
12071 2010-04-19 Juri Linkov <juri@jurta.org>
12073 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
12075 * info.el (Info-find-node-2): Comment out code that skips
12077 (Info-mouse-follow-link): New command.
12078 (Info-link-keymap): New keymap.
12079 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
12080 Return a string with links instead of inserting breadcrumbs
12081 to the Info buffer.
12082 (Info-fontify-node): Comment out code that inserts breadcrumbs.
12083 Instead of putting the `invisible' text property over the Info
12084 header, make an overlay over the Info header with the `invisible'
12085 property and `after-string' set to the string returned by
12086 `Info-breadcrumbs'.
12088 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
12090 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
12091 Reported by monkey@sandpframing.com.
12093 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12095 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
12096 (tmm-get-keymap): Add key-binding shortcuts now that they're not
12097 available in the "keyseq cache" any more.
12099 * custom.el (defcustom): Add edebug spec.
12101 2010-04-18 Juri Linkov <juri@jurta.org>
12103 Test for special mode-class in view-buffer instead of view-file (bug#5513).
12105 * view.el (view-file, view-buffer): Move test for special mode-class
12106 from view-file to view-buffer.
12108 * tar-mode.el (tar-extract): Turn if's into one cond
12109 like in arc-mode.el.
12111 2010-04-18 Juri Linkov <juri@jurta.org>
12113 Add 7z archive format support (bug#5475).
12115 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
12116 (archive-7z-extract): New defcustom.
12117 (archive-find-type): Add magic string for 7z.
12118 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
12119 If `stderr-file' is non-nil, use `(t stderr-file)' for the
12120 `buffer' arg of `call-process'.
12121 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
12122 call the function `archive-7z-extract' with the variable
12123 `archive-7z-extract' let-bound to `archive-zip-extract'.
12124 (archive-7z-summarize, archive-7z-extract): New functions.
12126 * international/mule.el (auto-coding-alist):
12127 * files.el (auto-mode-alist): Add 7z file extension.
12129 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12131 * loadup.el: Setup hash-cons for pure data.
12133 Fix duplicate entries in cedet's loaddefs.el files.
12134 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
12135 Should make most file-local generated-autoload-file unnecessary.
12136 (print-readably): Silence warnings.
12137 (autoload-find-destination): Take load-name as an arg to make sure
12138 it's the same as the one that will be in the file.
12139 (autoload-generate-file-autoloads): Adjust to above changes.
12140 Try to make the dataflow a bit simpler.
12142 * cvs-status.el (cvs-refontify): Remove unused.
12144 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
12146 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
12148 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
12149 twos-complement mode.
12151 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
12153 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
12154 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
12155 (calc-inverse): Add "Option" to message, as appropriate.
12156 (calc-hyperbolic): Add "Option" to message, as appropriate.
12157 (calc-option, calc-is-option): New functions.
12159 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
12160 (calc-option-prefix-help): New function.
12162 * calc/calc-misc.el (calc-help): Add "Option" entry.
12164 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
12165 (calc-option-flag): New variable.
12166 (calc-do): Set `calc-option-flag to nil.
12167 (calc-set-mode-line): Add "Opt " as appropriate.
12169 2010-04-16 Juri Linkov <juri@jurta.org>
12171 Move scrolling commands from simple.el to window.el
12172 because their primitives are implemented in window.c.
12174 * simple.el (scroll-error-top-bottom)
12175 (scroll-up-command, scroll-down-command, scroll-up-line)
12176 (scroll-down-line, scroll-other-window-down)
12177 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12178 * window.el (scroll-error-top-bottom)
12179 (scroll-up-command, scroll-down-command, scroll-up-line)
12180 (scroll-down-line, scroll-other-window-down)
12181 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12182 Move from simple.el to window.el because their primitives are
12183 implemented in window.c.
12185 2010-04-16 Juri Linkov <juri@jurta.org>
12187 * isearch.el (isearch-lookup-scroll-key): Check both
12188 `isearch-scroll' and `scroll-command' properties.
12189 (scroll-up, scroll-down): Remove `isearch-scroll' property.
12191 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
12193 * simple.el (scroll-up-command, scroll-down-command)
12194 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
12196 2010-04-15 Juri Linkov <juri@jurta.org>
12198 * simple.el (scroll-up-command, scroll-down-command)
12199 (scroll-up-line, scroll-down-line): Put `scroll-command'
12200 property on the these symbols. Remove them from
12201 `scroll-preserve-screen-position-commands'.
12203 * mwheel.el (mwheel-scroll): Put `scroll-command' and
12204 `isearch-scroll' properties on the `mwheel-scroll' symbol.
12205 Remove it from `scroll-preserve-screen-position-commands'.
12207 * isearch.el (isearch-allow-scroll): Doc fix.
12209 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
12211 * net/tramp.el (tramp-error-with-buffer): Don't show the
12212 connection buffer when we are in completion mode.
12213 (tramp-file-name-handler): Catch the error for some operations
12214 when we are in completion mode. This gives the user the chance to
12215 correct the file name in the minibuffer.
12217 2010-04-15 Glenn Morris <rgm@gnu.org>
12219 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
12221 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
12223 Simplify by using `define-derived-mode'.
12224 * info.el (Info-mode):
12225 * calendar/todo-mode.el (todo-mode):
12226 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
12227 (gomoku-mode-map): Move initialization into declaration.
12229 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
12232 * ido.el (ido-file-name-all-completions-1):
12233 * minibuffer.el (minibuffer-completion-help):
12234 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
12236 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12238 * simple.el (non-essential): New var.
12240 Add a new field `location' to bookmarks for non-file bookmarks.
12241 * bookmark.el (bookmark-location): Use the new field, if present.
12242 (bookmark-insert-location): Undo last change, not needed any more.
12243 * man.el (Man-bookmark-make-record):
12244 * woman.el (woman-bookmark-make-record): Add `location' field.
12246 2010-04-14 Juri Linkov <juri@jurta.org>
12248 * simple.el (scroll-error-top-bottom): New defcustom.
12249 (scroll-up-command, scroll-down-command): Use it. Doc fix.
12251 * emulation/pc-select.el (pc-select-override-scroll-error):
12252 Obsolete in favor of `scroll-error-top-bottom'.
12254 2010-04-14 Juri Linkov <juri@jurta.org>
12256 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
12257 `scroll-up-command' and `M-v' to `scroll-down-command'.
12259 * emulation/cua-rect.el (cua--init-rectangles):
12260 * forms.el (forms--change-commands):
12261 * image-mode.el (image-mode-map):
12262 Remap scroll-down-command and scroll-up-command
12263 in addition to scroll-down and scroll-up.
12265 2010-04-14 Juri Linkov <juri@jurta.org>
12267 * mwheel.el (scroll-preserve-screen-position-commands):
12268 Add mwheel-scroll to this list of commands.
12270 * simple.el (scroll-preserve-screen-position-commands):
12271 Add scroll-up-command, scroll-down-command, scroll-up-line,
12272 scroll-down-line to this list of commands.
12274 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12276 * obsolete/complete.el: Move from lisp/complete.el.
12278 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
12280 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
12281 to the minor mode function now turns the mode ON unconditionally.
12283 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12285 * vc-dir.el (vc-dir-kill-line): New command.
12286 (vc-dir-mode-map): Bind it to C-k.
12288 * bookmark.el (bookmark-insert-location): Handle a nil filename.
12290 * woman.el: Add bookmark declarations to silence the compiler.
12291 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
12292 step to compatibility between man and woman bookmarks.
12293 Adjust for Man-default-bookmark-title renaming.
12294 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
12296 * man.el: Add bookmark declarations to silence the compiler.
12297 (Man-name-local-regexp): Make it match NAME as well.
12298 (Man-getpage-in-background): Return the buffer.
12299 (Man-notify-when-ready): Use `case'.
12300 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
12301 Don't hardcode "NAME". Simplify.
12302 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
12303 Rename from Man-bookmark-make-record.
12304 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
12305 we have the actual man-args. Use Man-getpage-in-background rather
12306 than `man' since the arg is already processed. Let bookmark.el do the
12307 window handling. Only wait for the relevant process.
12308 Don't forget to autoload.
12310 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
12312 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12314 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
12316 (woman-mode): Setup bookmark support.
12318 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
12319 (man-bookmark-jump): New functions.
12320 (Man-mode): Setup bookmark support.
12322 2010-04-10 Jari Aalto <jari.aalto@cante.net>
12324 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
12325 recognize ssh-keygen prompt (Bug#2817).
12327 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
12329 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
12331 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
12333 Synchronize with Tramp repository.
12335 * net/tramp.el (tramp-completion-function-alist)
12336 (tramp-file-name-regexp, tramp-chunksize)
12337 (tramp-local-coding-commands, tramp-remote-coding-commands):
12339 (tramp-remote-process-environment): Use `format' instead of `concat'.
12340 (tramp-handle-directory-files-and-attributes)
12341 (tramp-get-remote-path): Use `copy-tree'.
12342 (tramp-handle-file-name-all-completions): Backward/ XEmacs
12343 compatibility: Use `completion-ignore-case' if
12344 `read-file-name-completion-ignore-case' does not exist.
12345 (tramp-do-copy-or-rename-file-directly): Do not use
12346 `tramp-handle-file-remote-p'.
12347 (tramp-do-copy-or-rename-file-out-of-band):
12348 Use `tramp-compat-delete-directory'.
12349 (tramp-do-copy-or-rename-file-out-of-band)
12350 (tramp-compute-multi-hops, tramp-maybe-open-connection):
12351 Use `format-spec-make'.
12352 (tramp-find-foreign-file-name-handler)
12353 (tramp-advice-make-auto-save-file-name)
12354 (tramp-set-auto-save-file-modes): Remove superfluous check for
12355 `stringp'. This is done inside `tramp-tramp-file-p'.
12356 (tramp-debug-outline-regexp): New defconst.
12357 (tramp-get-debug-buffer): Use it.
12358 (tramp-check-for-regexp): Use (forward-line 1).
12359 (tramp-set-auto-save-file-modes): Adapt version check.
12361 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
12362 Wrap call of `featurep' for 2nd argument.
12363 (tramp-compat-make-temp-file): Simplify fallback implementation.
12364 (tramp-compat-copy-tree): Remove function.
12365 (tramp-compat-delete-directory): Provide implementation for older
12368 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
12369 Do not use `tramp-fish-handle-file-attributes.
12371 * net/trampver.el: Update release number.
12373 2010-04-10 Glenn Morris <rgm@gnu.org>
12375 * progmodes/compile.el (compilation-save-buffers-predicate):
12376 Add missing :version tag.
12378 2010-04-09 Sam Steingold <sds@gnu.org>
12380 * progmodes/compile.el (compilation-save-buffers-predicate):
12381 Remove the "autoload" cookie.
12383 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
12384 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
12385 and `bug-reference-prog-mode' can be used in hooks directly.
12387 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
12389 Add --author support to git commit.
12390 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
12391 (vc-git-log-edit-mode): New minor mode.
12392 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
12395 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
12397 * vc-hooks.el, vc-git.el: Improve documentation comments.
12399 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12401 Fix some of the problems in defsubst* (bug#5728).
12402 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
12403 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
12405 2010-04-07 Sam Steingold <sds@gnu.org>
12407 * progmodes/compile.el (compilation-save-buffers-predicate):
12408 New custom variable.
12409 (compile, recompile): Pass it to `save-some-buffers'.
12411 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
12413 * wid-edit.el (widget-choose): Move cursor to the second line of
12414 the buffer (Bug#5695).
12416 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12418 Add new VC methods: vc-log-incoming and vc-log-outgoing.
12419 * vc.el (vc-print-log-setup-buttons): New function split out from
12420 vc-print-log-internal.
12421 (vc-log-internal-common): New function, a parametrized version of
12422 vc-print-log-internal.
12423 (vc-print-log-internal): Just call vc-log-internal-common with the
12425 (vc-incoming-outgoing-internal):
12426 (vc-log-incoming, vc-log-outgoing): New functions.
12427 (vc-log-view-type): New permanent local variable.
12429 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
12431 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
12432 of the dynamic bound vc-short-log.
12433 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
12435 * vc-git.el (vc-git-log-outgoing): New function.
12436 (vc-git-log-view-mode): Use vc-log-view-type instead
12437 of the dynamic bound vc-short-log.
12439 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
12440 of the dynamic bound vc-short-log. Highlight the tag.
12441 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
12442 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
12443 (vc-hg-incoming-mode): Remove.
12444 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
12446 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12448 Fix default-directory for vc-root-diff.
12449 * vc.el (vc-root-diff): Bind default-directory to the root
12450 directory for the diff command.
12452 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
12454 * progmodes/verilog-mode.el (verilog-forward-sexp):
12455 (verilog-calc-1): Support "disable fork" and "fork wait" multi
12456 word keywords, suggested by Steve Pearlmutter.
12457 (verilog-pretty-declarations): Support lineup of declarations in
12459 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
12460 fix bug for /* / comments.
12461 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
12462 Speed up and simplfy as this is never called with a bound.
12463 (verilog-pretty-declarations): Enhance to line up declarations
12464 inside a parameter list, suggested by Alan Morgan.
12465 (verilog-pretty-expr): Tune assignment regular expression match
12466 string for corner cases; also use markers instead of character
12467 number as indent changes the later.
12469 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
12471 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
12472 as missing keyword.
12473 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
12474 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
12475 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
12476 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
12478 (verilog-keywords):
12479 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
12480 1800-2009 keywords, including "global.".
12482 2010-04-06 John Wiegley <jwiegley@gmail.com>
12484 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
12485 appearing in buffer list (if a live buffer name matched a recentf
12486 file basename). Should use uniquify to offer a real solution.
12488 2010-04-06 John Wiegley <jwiegley@gmail.com>
12490 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
12491 comment to code, and add a :version tag.
12492 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
12494 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
12496 Enable recentf-mode if using virtual buffers.
12497 * ido.el (recentf-list): Declare for byte-compiler.
12498 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
12499 (ido-make-buffer-list): Simplify.
12500 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
12502 2010-04-05 Juri Linkov <juri@jurta.org>
12504 Scrolling commands which scroll a line instead of full screen.
12505 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12507 * simple.el (scroll-up-line, scroll-down-line): New commands.
12508 Put property isearch-scroll=t on them.
12510 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
12513 2010-04-05 Juri Linkov <juri@jurta.org>
12515 Scrolling commands which do not signal errors at top/bottom.
12516 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12518 * simple.el (scroll-up-command, scroll-down-command): New commands.
12519 Put property isearch-scroll=t on them.
12521 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
12522 `scroll-down-command' and [next] from `scroll-up' to
12523 `scroll-up-command'.
12525 * emulation/cua-base.el: Put property CUA=move on
12526 `scroll-up-command' and `scroll-down-command'.
12527 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
12528 and `scroll-down-command' to `cua-scroll-down'.
12530 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
12532 * help.el (describe-mode): Return nil.
12534 2010-04-04 John Wiegley <jwiegley@gmail.com>
12536 * ido.el (ido-use-virtual-buffers): New variable to indicate
12537 whether "virtual buffer" support is enabled for IDO.
12538 (ido-virtual): Face used to indicate virtual buffers in the list.
12539 (ido-buffer-internal): If a buffer is chosen, and no such buffer
12540 exists, but a virtual buffer of that name does (which would be why
12541 it was in the list), recreate the buffer by reopening the file.
12542 (ido-make-buffer-list): If virtual buffers are being used, call
12543 `ido-add-virtual-buffers-to-list' before the make list hook.
12544 (ido-virtual-buffers): New variable which contains a copy of the
12545 current contents of the `recentf-list', albeit pared down for the
12546 sake of speed, and with proper faces applied.
12547 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
12548 create a list of "virtual buffers" to present to the user in
12549 addition to the currently open set. Note that this logic could
12550 get rather slow if that list is too large. With the default
12551 `recentf-max-saved-items' of 200, there is little speed penalty.
12553 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12555 * font-lock.el: Require CL when compiling.
12556 (font-lock-turn-on-thing-lock): Use `case'.
12558 2010-04-03 Eli Zaretskii <eliz@gnu.org>
12560 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
12563 2010-04-02 Juri Linkov <juri@jurta.org>
12565 * ehelp.el (electric-help-orig-major-mode):
12566 New buffer-local variable.
12567 (electric-help-mode): Set it to original major-mode. Doc fix.
12568 (with-electric-help): Use `electric-help-orig-major-mode' instead
12569 of (default-value 'major-mode). Doc fix.
12570 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
12572 2010-04-02 Sam Steingold <sds@gnu.org>
12574 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
12575 `vc-hg-command' with a list of flags.
12577 * progmodes/bug-reference.el (bug-reference-bug-regexp):
12578 Also accept "patch" and "RFE".
12579 (bug-reference-fontify): `bug-reference-url-format' can also be a
12580 function to be able to handle the bug kind.
12581 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
12583 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
12585 * tmm.el (tmm-get-keymap): Check with symbolp before passing
12586 value to fboundp, it may not be a symbol.
12588 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12590 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
12592 2010-03-31 Juri Linkov <juri@jurta.org>
12594 * simple.el (next-line, previous-line): Re-throw a signal
12595 with `signal' instead of using `ding'.
12596 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
12598 2010-03-31 Juri Linkov <juri@jurta.org>
12600 * simple.el (keyboard-escape-quit): Raise deselecting the active
12601 region higher than exiting the minibuffer.
12602 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
12604 2010-03-31 Juri Linkov <juri@jurta.org>
12606 * image.el (image-animated-p): Use `image-metadata' instead of
12607 `image-extension-data'. Get GIF extenstion data from metadata
12608 property `extension-data'.
12610 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12612 * simple.el (append-to-buffer): Simplify.
12614 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
12616 * textmodes/artist.el (artist-mode): Fix typo in docstring.
12617 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
12619 2010-03-31 Kenichi Handa <handa@m17n.org>
12621 * language/sinhala.el (composition-function-table): Fix regexp for
12622 the new Unicode specification.
12624 * language/indian.el (devanagari-composable-pattern)
12625 (tamil-composable-pattern, kannada-composable-pattern)
12626 (malayalam-composable-pattern): Adjust for the new Unicode
12628 (bengali-composable-pattern, gurmukhi-composable-pattern)
12629 (gujarati-composable-pattern, oriya-composable-pattern)
12630 (telugu-composable-pattern): New variables to cope with the new
12631 Unicode specification. Use them in composition-function-table.
12633 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12635 Make tmm-menubar work for the Buffers menu again (bug#5726).
12636 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
12637 vectors rather than cons cells, as used in menu-bar-update-buffers.
12639 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12641 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
12642 (js-insert-and-indent): Revert 2009-08-15 change, restoring
12643 electric punctuation for "{}();,:" (Bug#5586).
12645 * mail/sendmail.el (mail-default-directory): Doc fix.
12647 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12649 * mail/sendmail.el (mail-default-directory): Doc fix.
12651 2010-03-31 Eli Zaretskii <eliz@gnu.org>
12653 * subr.el (version-regexp-alist, version-to-list)
12654 (version-list-<, version-list-=, version-list-<=)
12655 (version-list-not-zero, version<, version<=, version=): Doc fix.
12658 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
12660 * vc.el (vc-root-diff): Doc fix.
12662 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12664 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
12666 * simple.el (append-to-buffer): Fix last change.
12668 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12670 * simple.el (append-to-buffer): Ensure that point is preserved if
12671 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
12674 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12676 * files.el (auto-mode-case-fold): Change default to t.
12678 2010-03-30 Juri Linkov <juri@jurta.org>
12680 * dired-x.el (dired-omit-mode): Doc fix.
12682 2010-03-30 Juri Linkov <juri@jurta.org>
12684 * replace.el (occur-accumulate-lines): Move occur-engine related
12685 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
12686 to be located after `occur-engine'.
12688 2010-03-30 Juri Linkov <juri@jurta.org>
12690 Make occur handle multi-line matches cleanly with context.
12691 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
12693 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
12694 (occur-engine): Add local variables `ret', `prev-after-lines',
12695 `prev-lines'. Use more arguments for `occur-context-lines'.
12696 Set first elem of its returned list to `data', and the second elem
12697 to `prev-after-lines'. Don't print the separator line.
12698 In the end, print remaining context after-lines.
12699 (occur-context-lines): Add new arguments `begpt', `endpt',
12700 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
12701 after-lines of the previous match with before-lines of the
12702 current match and not overlap them. Return a list with two
12703 values: the output line and the list of context after-lines.
12705 2010-03-30 Juri Linkov <juri@jurta.org>
12707 * replace.el (occur-accumulate-lines): Fix a bug where the first
12708 context line at the beginning of the buffer was missing.
12710 2010-03-30 Eli Zaretskii <eliz@gnu.org>
12712 * files.el: Make bidi-display-reordering safe variable for boolean
12715 2010-03-29 Phil Hagelberg <phil@evri.com>
12716 Chong Yidong <cyd@stupidchicken.com>
12718 * subr.el: Extend progress reporters to perform "spinning".
12719 (progress-reporter-update, progress-reporter-do-update):
12720 Handle non-numeric value arguments.
12721 (progress-reporter--pulse-characters): New var.
12723 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
12725 * progmodes/compile.el (compilation-start): Fix regexp detection
12726 of initial cd command (Bug#5771).
12728 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
12730 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
12732 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
12734 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
12735 * progmodes/gdb-mi.el: Restore.
12736 * progmodes/gdb-ui.el: Remove.
12737 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
12739 2010-03-25 Glenn Morris <rgm@gnu.org>
12741 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
12742 all dired buffers, even tramp ones. (Bug#5755)
12744 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
12746 Add "union tags" in mpc.el.
12747 * mpc.el: Remove backward compatibility code.
12748 (mpc-browser-tags): Change default.
12749 (mpc--find-memoize-union-tags): New var.
12750 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
12751 (mpc-cmd-find): Handle the case where the playlist does not exist.
12753 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
12754 (mpc-cmd-add): Use mpc-cmd-flush.
12755 (mpc-tagbrowser-tag-name): New fun.
12756 (mpc-tagbrowser-buf): Use it.
12757 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
12759 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12762 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
12763 Use replace-regexp-in-string.
12764 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
12765 (makefile-imake-mode-syntax-table): Move init into defvar.
12766 (makefile-mode): Use define-derived-mode.
12768 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
12769 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
12770 not be present any more.
12772 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
12774 * faces.el (set-face-attribute): Fix typo in docstring.
12775 (face-valid-attribute-values): Reflow docstring.
12777 2010-03-24 Glenn Morris <rgm@gnu.org>
12779 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
12781 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
12783 * indent.el (indent-for-tab-command): Doc fix.
12785 2010-03-24 Alan Mackenzie <acm@muc.de>
12787 * progmodes/cc-engine.el (c-remove-stale-state-cache):
12788 Fix off-by-one error. Fixes bug #5747.
12790 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
12792 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
12793 (image-dired-read-comment): Doc fix.
12795 * json.el (json-object-type, json-array-type, json-key-type)
12796 (json-false, json-null, json-read-number):
12797 * minibuffer.el (completion-in-region-functions):
12798 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
12799 (cal-tex-cursor-week):
12800 * emacs-lisp/trace.el (trace-function):
12801 * eshell/em-basic.el (eshell/printnl):
12802 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
12803 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
12804 * obsolete/levents.el (allocate-event, event-key, event-object)
12805 (event-point, event-process, event-timestamp, event-to-character)
12806 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
12807 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
12808 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
12809 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
12810 (reftex-highlight-selection): Fix typos in docstrings.
12812 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
12814 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
12816 2010-03-24 Glenn Morris <rgm@gnu.org>
12818 * mail/rmail.el (rmail-highlight-face): Restore option deleted
12819 2008-02-13 without comment; mark it obsolete.
12820 (rmail-highlight-headers): Use rmail-highlight-face once more.
12822 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
12824 * woman.el (woman2-process-escapes): Only consume the newline if
12825 the filler character is on a line by itself (Bug#5729).
12827 2010-03-24 Kenichi Handa <handa@m17n.org>
12829 * language/indian.el (devanagari-composable-pattern): Add more
12832 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
12834 * net/trampver.el: Update release number.
12836 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
12838 * net/tramp.el (tramp-find-executable):
12839 Use `tramp-get-connection-buffer'. Make the regexp for checking
12840 output of "wc -l" more robust.
12841 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
12842 (tramp-open-connection-setup-interactive-shell): Remove workaround
12843 for OpenSolaris bug, it is not needed anymore.
12845 2010-03-24 Glenn Morris <rgm@gnu.org>
12847 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
12849 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
12851 * files.el (auto-mode-alist): Accept more verilog file patterns.
12853 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12855 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
12857 2010-03-24 Glenn Morris <rgm@gnu.org>
12859 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
12860 log-edit-before-checkin-process.
12862 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
12864 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
12866 * vc-dispatcher.el (vc-start-logentry): Doc fix.
12867 (log-view-process-buffer, log-edit-extra-flags): Declare.
12869 * log-edit.el (log-edit-before-checkin-process): Doc fix.
12871 2010-03-23 Sam Steingold <sds@gnu.org>
12873 Fix bug#5620: recalculate all markers on compilation buffer
12874 modifications, not on file modifications.
12875 * progmodes/compile.el (compilation-buffer-modtime): New buffer-local
12876 variable: the buffer modification time, for buffers not associated with
12878 (compilation-mode): Create it.
12879 (compilation-filter): Update it.
12880 (compilation-next-error-function): Use it instead of
12881 `visited-file-modtime' for timestamp.
12883 2010-03-23 Juri Linkov <juri@jurta.org>
12885 Implement Occur multi-line matches.
12886 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
12888 * replace.el (occur): Doc fix.
12889 (occur-engine): Set `begpt' to the beginning of the first line.
12890 Set `endpt' to the end of the last match line. At first, count
12891 line numbers between `origpt' and `begpt'. Split out code from
12892 `out-line' variable to new let-bindings `match-prefix' and
12893 `match-str'. In `out-line' add non-numeric prefix to all
12894 non-first lines of multi-line matches. Finally, count lines
12895 between `begpt' and `endpt' and add to `lines'.
12897 2010-03-23 Juri Linkov <juri@jurta.org>
12899 * replace.el (occur-accumulate-lines, occur-engine):
12900 Use `occur-engine-line' instead of duplicate code.
12901 (occur-engine-line): New function created from duplicate code
12902 in `occur-accumulate-lines' and `occur-engine'.
12904 * replace.el (occur-engine-line): Add optional arg `keep-props'.
12905 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
12907 2010-03-23 Juri Linkov <juri@jurta.org>
12909 * finder.el: Remove TODO tasks.
12911 * info.el (Info-finder-find-node): Add node "all"
12912 with all package info. Handle a list of multiple keywords
12913 separated by comma.
12914 (info-finder): In interactive use with a prefix argument,
12915 use `completing-read-multiple' to read a list of keywords
12916 separated by comma.
12918 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
12920 Add a new completion style `substring'.
12921 * minibuffer.el (completion-basic--pattern): New function.
12922 (completion-basic-try-completion, completion-basic-all-completions):
12924 (completion-substring--all-completions)
12925 (completion-substring-try-completion)
12926 (completion-substring-all-completions): New functions.
12927 (completion-styles-alist): New style `substring'.
12929 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
12931 Get rid of .elc files after removal of the corresponding .el.
12932 * Makefile.in (compile-clean): New target.
12933 (compile-main): Use it.
12935 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
12937 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
12938 don't do make there. When compiling with separate object dir, there
12939 is no Makefile there.
12941 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
12943 Get rid of the ELCFILES abomination, again.
12944 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
12945 (all, compile): Don't call compile-last.
12946 (compile-main): Build the "elcfiles" list dynamically.
12947 (compile-targets): New (internal) target.
12949 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
12951 * Makefile.in (top_srcdir): Define.
12952 (abs_top_builddir): Define.
12953 (srcdir): Don't append `/..'.
12954 (EMACS): Use ${abs_top_builddir}.
12955 (all, compile, compile-always, compile-last): Don't set emacswd.
12956 (update-subdirs, update-authors): Use $(top_srcdir) instead of
12958 (lisp): Use $(srcdir) instead of @srcdir@.
12960 2010-03-21 Juri Linkov <juri@jurta.org>
12962 Fix message of multi-line occur regexps and multi-buffer header lines.
12963 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
12965 * replace.el (occur-1): Don't display regexp if it is longer
12966 than window-width. Use `query-replace-descr' to display regexp.
12967 (occur-engine): Don't display regexp in the buffer header for
12968 multi-buffer occur. Display a separate header line with total
12969 match count and regexp for multi-buffer occur.
12970 Use `query-replace-descr' to display regexp.
12972 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
12974 * net/secrets.el: Fix parenthesis.
12975 (secrets-enabled): Fix parenthesis.
12977 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12979 Use more relative file and directory names.
12980 * Makefile.in (EMACS): Arrange for it to work when we chdir.
12981 (setwins, setwins_almost, setwins_for_subdirs):
12982 Don't `cd'; output relative names.
12983 (all, compile, compile-always, compile-last): Set emacswd.
12984 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
12985 Just cd to the lisp source dir so we can use relative file names.
12987 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
12989 2010-03-20 Glenn Morris <rgm@gnu.org>
12991 * textmodes/rst.el: Use faces for font-lock customization, and make the
12992 old -face variables obsolete.
12993 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
12994 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
12995 (rst-block-face, rst-external-face, rst-definition-face)
12996 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
12997 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
12999 (rst-font-lock-keywords-function): Update for above changes.
13001 2010-03-20 Juri Linkov <juri@jurta.org>
13004 * obsolete/s-region.el: Move to obsolete.
13006 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
13008 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
13010 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13012 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
13014 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13016 Add special markup processing for commit logs.
13017 * log-edit.el (log-edit-extra-flags): New variable.
13018 (log-edit): Add new argument MODE. Use that mode when non-nil
13019 instead of the log-view-mode.
13020 (log-view-process-buffer): New function.
13022 * vc.el: Document that the checkin method takes optional
13023 arguments. Document new backend specific method: log-view-mode.
13024 (vc-default-log-edit-mode): New function.
13025 (vc-checkin): Use a backend specific log-view-mode.
13026 Pass extra arguments to the checkin method.
13027 (vc-modify-change-comment): Pass a dummy extra argument.
13029 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
13031 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
13032 (vc-finish-logentry): Process the log buffer before passing it
13033 down. Pass log-edit-extra-flags.
13035 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
13037 (log-edit-extra-flags, log-edit-before-checkin-process):
13040 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
13042 (log-edit-extra-flags, log-edit-before-checkin-process):
13044 (vc-hg-log-edit-mode): New derived mode.
13046 * vc-arch.el (vc-arch-checkin):
13047 * vc-cvs.el (vc-cvs-checkin):
13048 * vc-git.el (vc-git-checkin):
13049 * vc-mtn.el (vc-mtn-checkin):
13050 * vc-rcs.el (vc-rcs-checkin):
13051 * vc-sccs.el (vc-sccs-checkin):
13052 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
13054 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13056 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
13059 2010-03-19 Glenn Morris <rgm@gnu.org>
13061 * password-cache.el (password-cache, password-cache-expiry): Autoload.
13063 2010-03-18 Glenn Morris <rgm@gnu.org>
13065 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
13067 * replace.el (query-replace-history): Give it a doc string.
13068 (map-query-replace-regexp): Use query-replace-from-history-variable
13069 and query-replace-to-history-variable.
13071 * mail/hashcash.el (declare-function): Remove duplicate definition.
13073 * mail/emacsbug.el (report-emacs-bug-pretest-address):
13074 Make it an obsolete alias for report-emacs-bug-address.
13075 (message-strip-special-text-properties): Declare.
13076 (report-emacs-bug): Remove test for a pretest bug address.
13077 Combine message-mode-specific code.
13079 * mail/supercite.el: Don't require sendmail.
13080 (mh-in-header-p): Declare rather than using with-no-warnings.
13081 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
13082 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
13084 * calendar/cal-french.el: Convert to utf-8.
13086 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
13089 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
13091 * net/secrets.el (secrets-enabled): New variable. Use it instead
13094 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
13096 * net/secrets.el (top): Register the D-Bus signals only when the
13097 service "org.freedesktop.secrets" can be pinged.
13098 Provide subfeature `enabled'.
13100 2010-03-14 Juri Linkov <juri@jurta.org>
13102 Add finder unknown keywords.
13104 * finder.el (finder-unknown-keywords): New function.
13106 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
13107 to create a Finder node with unknown keywords.
13109 2010-03-14 Juri Linkov <juri@jurta.org>
13111 * finder.el (finder-compile-keywords): Replace `princ' with
13112 `prin1' on a list of symbols interned from keyword strings.
13114 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
13115 a comma, then split keywords using a comma and optional whitespace.
13116 Otherwise, split by whitespace.
13124 * progmodes/mixal-mode.el: Fix keywords.
13126 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
13128 * Makefile.in (ELCFILES): Add net/secrets.elc.
13130 * net/secrets.el: New file.
13132 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13134 * facemenu.el (list-colors-display, list-colors-print): New arg
13135 callback. Use it to allow selecting colors.
13137 * wid-edit.el (widget-image-insert): Insert image prop even if the
13138 current display is non-graphic.
13139 (widget-field-value-set): New fun.
13140 (editable-field): Use it.
13141 (widget-field-value-get): Clean up unused var.
13142 (widget-color-value-create, widget-color--choose-action):
13143 New funs. Allow using list-colors-display to choose color.
13145 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13147 * cus-edit.el: Resort topmost custom groups.
13148 (custom-buffer-sort-alphabetically): Default to t.
13149 (customize-apropos): Use apropos-parse-pattern.
13150 (custom-search-field): New var.
13151 (custom-buffer-create-internal): Add custom-apropos search field.
13152 (custom-add-parent-links): Don't display parent doc.
13153 (custom-group-value-create): Don't sort top-level custom group.
13154 (custom-magic-value-create): Show visibility button before option name.
13156 (custom-variable-state): New fun, from custom-variable-state-set.
13157 (custom-variable-state-set): Use it.
13158 (custom-group-value-create): Hide options with standard values
13159 using the :hidden-states property. Use progress reporter.
13161 (custom-show): Simplify.
13162 (custom-visibility): Disable images by default.
13163 (custom-variable): New property :hidden-states.
13164 (custom-variable-value-create): Enable images for
13165 custom-visibility widgets. Use :hidden-states property to
13166 determine initial visibility.
13168 * wid-edit.el (widget-image-find): Give images center ascent.
13169 (visibility): Add :on-image and :off-image properties.
13170 (widget-visibility-value-create): Use them.
13172 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13174 * cus-edit.el (processes): Remove from development group.
13175 (oop, hypermedia): Delete group.
13176 (comm): Promote to top-level group.
13178 * net/browse-url.el (browse-url):
13179 * net/xesam.el (xesam):
13180 * net/tramp.el (tramp):
13181 * net/goto-addr.el (goto-address):
13182 * net/ange-ftp.el (ange-ftp): Put in comm group.
13184 * view.el (view): Remove from editing group.
13186 * uniquify.el (uniquify): Put in files group.
13188 * net/browse-url.el (browse-url):
13189 * ps-print.el (postscript): Put in external group.
13191 * cus-edit.el (outlines):
13192 * textmodes/text-mode.el (text-mode-hook):
13193 * textmodes/table.el (table):
13194 * textmodes/picture.el (picture):
13195 * outline.el (outlines): Put in wp group.
13197 * nxml/nxml-mode.el (nxml): Remove from wp group.
13199 * net/tramp-imap.el (tramp-imap): Put in tramp group.
13201 * mail/metamail.el (metamail): Remove from hypermedia group.
13203 * cus-edit.el (abbrev):
13204 * whitespace.el (whitespace):
13205 * vcursor.el (vcursor):
13206 * reveal.el (reveal):
13207 * hl-line.el (hl-line): Put in convenience group.
13209 * epg-config.el (epg): Put in data group.
13211 * emulation/pc-select.el (pc-select): Put in emulations group.
13213 * calculator.el (calculator): Put in applications group.
13215 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13217 Add .dir-locals.el support for file-less buffers.
13218 * files.el (hack-local-variables): Split out code to apply local
13219 variable settings ...
13220 (hack-local-variables-apply): ... here. New function.
13221 (hack-dir-local-variables): Use the default directory for when the
13222 buffer does not have an associated file.
13223 (hack-dir-local-variables-non-file-buffer): New function.
13224 * diff-mode.el (diff-mode):
13225 * vc-annotate.el (vc-annotate-mode):
13226 * vc-dir.el (vc-dir-mode):
13227 * log-edit.el (log-edit-mode):
13228 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
13230 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13232 Add support for shelving snapshots and for showing shelves.
13233 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
13234 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
13236 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
13237 (vc-bzr-extra-menu-map): Map them.
13239 2010-03-11 Glenn Morris <rgm@gnu.org>
13241 * cus-edit.el (customize-changed-options-previous-release):
13244 * image.el (image-animate-max-time): Fix :version tag.
13246 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
13250 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
13252 * vc-git.el (vc-git-revision-table): Include remote branches.
13254 2010-03-10 Kim F. Storm <storm@cua.dk>
13256 Animated image API.
13257 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
13259 * image.el (image-animate-max-time): New defcustom.
13260 (image-animated-types): New defconst.
13261 (create-animated-image, image-animate-timer)
13262 (image-animate-start, image-animate-stop, image-animate-timeout)
13263 (image-animated-p): New functions.
13265 * image-mode.el (image-toggle-display-image):
13266 Replace `create-image' with `create-animated-image'.
13268 2010-03-09 Miles Bader <miles@gnu.org>
13270 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
13271 instead of "format:"; this ensures that the output is
13272 newline-terminated.
13274 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
13276 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
13277 that all errors are caught, and that the return value is always a
13280 2010-03-08 Kenichi Handa <handa@m17n.org>
13282 * language/misc-lang.el (windows-1256): New coding system.
13283 (cp1256): New alias of windows-1256 (bug#5690).
13285 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
13287 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
13288 call to rfc822-bad-address. (Bug#5692)
13290 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
13292 * vc-git.el (vc-git-annotate-extract-revision-at-line):
13293 Use vc-git-root as default directory for revision path (Bug#5657).
13295 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
13297 * calculator.el (calculator): Don't bind split-window-keep-point
13300 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
13302 * vc-git.el: Re-flow to fit into 80 columns.
13303 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
13304 Remove spurious `quote' element in each case alternative.
13305 (vc-git-show-log-entry): Use prog1.
13306 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
13308 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
13310 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
13312 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
13314 * macros.el (insert-kbd-macro): Look up keyboard macro using the
13315 definition, not the name (Bug#5481).
13317 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
13319 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
13320 argument with a local variable. (Bug#5670)
13322 2010-03-02 Juri Linkov <juri@jurta.org>
13324 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
13326 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
13328 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
13329 error when FILENAME and NEWNAME are existing remote directories.
13331 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
13332 parameter DIR-FLAG.
13334 2010-03-02 Glenn Morris <rgm@gnu.org>
13336 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
13337 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
13339 2010-03-01 Kenichi Handa <handa@m17n.org>
13341 * language/burmese.el (burmese-composable-pattern): Rename from
13342 myanmar-composable-pattern.
13344 * international/characters.el (script-list):
13345 * international/fontset.el (script-representative-chars):
13346 Change myanmar to burmese.
13347 (otf-script-alist): Likewise.
13348 (setup-default-fontset): Likewise. Re-fix :otf spec.
13350 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
13352 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
13354 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
13356 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
13358 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
13360 * net/tramp.el (tramp-handle-write-region): START can be a string.
13361 Take care in the checks. Reported by Dan Davison
13362 <davison@stats.ox.ac.uk>.
13364 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
13366 * net/dbus.el (dbus-introspect, dbus-get-property)
13367 (dbus-set-property, dbus-get-all-properties):
13368 Use `dbus-call-method' when noninteractive. (Bug#5645)
13370 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
13372 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
13373 * emacs-lisp/elint.el (elint-add-required-env):
13374 * calendar/icalendar.el (icalendar--add-diary-entry):
13375 * calc/calcalg2.el (math-tracing-integral):
13376 * files.el (recover-session-finish): Use with-current-buffer
13377 instead of save-excursion.
13379 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
13381 Fix in-buffer completion when after-change-functions modify the buffer.
13382 * minibuffer.el (completion--replace): New function.
13383 (completion--do-completion): Use it and use relative movement.
13385 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
13387 * international/fontset.el (setup-default-fontset): Fix :otf spec.
13389 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
13391 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
13392 Allow the characters _<> in the stack entry (Bug#5653).
13394 2010-02-26 Kenichi Handa <handa@m17n.org>
13396 * language/burmese.el: Fix entries in composition-function-table.
13397 (myanmar-composable-pattern): New variable.
13399 * international/fontset.el (setup-default-fontset): Add an entry
13402 * international/characters.el (script-list): Add Myanmar
13405 2010-02-26 Glenn Morris <rgm@gnu.org>
13407 * custom.el (custom-initialize-delay): Doc fix.
13409 * mail/sendmail.el (send-mail-function): Autoload the call
13410 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
13412 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
13414 * files.el (hack-local-variables-filter): For eval forms, also
13415 check safe-local-variable-p (Bug#5636).
13417 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
13419 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
13420 setting the modes by `ignore-errors'. It might fail, for example
13421 if the file is not owned by the user but the group.
13422 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
13424 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
13426 * files.el (directory-listing-before-filename-regexp):
13427 Use stricter matching for iso-style dates, to avoid false matches with
13428 date-like filenames (Bug#5597).
13430 * htmlfontify.el (htmlfontify): Doc fix.
13432 * eshell/eshell.el (eshell): Doc fix.
13434 * startup.el (fancy-about-screen): In mode-line, apply
13435 mode-line-buffer-id face only to the buffer name (Bug#5613).
13437 2010-02-20 Kevin Ryde <user42@zip.com.au>
13439 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13440 In `watcom' anchor regexp to start of line, to avoid slowness
13443 2010-02-20 Eli Zaretskii <eliz@gnu.org>
13445 * subr.el (remove-yank-excluded-properties): Explain in a comment
13446 why `category' property is removed.
13448 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
13450 * isearch.el (isearch-update-post-hook, isearch-update):
13451 Revert 2010-02-17 change.
13453 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
13455 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
13456 (icalendar--convert-weekly-to-ical)
13457 (icalendar--convert-yearly-to-ical)
13458 (icalendar--convert-block-to-ical)
13459 (icalendar--convert-cyclic-to-ical)
13460 (icalendar--convert-anniversary-to-ical): Take care of time
13461 specifications where hour has 1-digit only (Bug#5549).
13463 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
13465 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
13466 of disassemble output in GDB 7.1.
13468 2010-02-19 Glenn Morris <rgm@gnu.org>
13470 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
13471 property. (Bug#5593)
13473 2010-02-18 Sam Steingold <sds@gnu.org>
13475 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
13477 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
13479 Use abbreviated file names in bookmarks (bug#5591).
13480 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
13481 calls to expand-file-name.
13482 (bookmark-relocate): Use abbreviated file names in bookmarks.
13483 (bookmark-load): Use abbreviated file names in messages.
13485 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
13487 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
13488 expand "." and "..". Reported by Thierry Volpiatto
13489 <thierry.volpiatto@gmail.com>.
13491 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
13493 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
13494 permissions of the temporary file to "0600". In case the remote
13495 file has no read permissions for the owner, there might be
13496 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
13498 22010-02-18 Glenn Morris <rgm@gnu.org>
13500 * emacs-lisp/authors.el (authors-renamed-files-alist):
13501 Add entries for INSTALL.CVS.
13503 2010-02-17 Mark A. Hershberger <mah@everybody.org>
13505 * vc-bzr.el: Fix typo in Known Bugs section.
13507 * isearch.el (isearch-update-post-hook): New hook.
13508 (isearch-update): Use the new hook.
13510 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
13512 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
13513 Fix errors in copying directories.
13514 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
13515 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
13516 (tramp-handle-delete-file)
13517 (tramp-handle-dired-recursive-delete-directory)
13518 (tramp-handle-write-region): Flush also the cache for the upper
13521 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
13523 * simple.el (save-interprogram-paste-before-kill): Doc fix.
13525 * cus-edit.el (hardware): Doc fix.
13527 * man.el (man): Add to external custom group.
13529 * delim-col.el (columns): Move to wp custom group.
13531 * doc-view.el (doc-view): Add to data custom group.
13533 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
13535 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
13536 by ispell-parse-output (Bug#5575).
13538 2010-02-16 Kenichi Handa <handa@m17n.org>
13540 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
13541 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
13542 (skkdic-convert): Use `euc-japan' coding system for writing.
13544 2010-02-16 Glenn Morris <rgm@gnu.org>
13546 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
13547 tex-main-file before using it. (Bug#5562)
13549 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
13551 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
13552 warnings, since it is annoying for the user to see them each time he
13555 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
13557 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
13558 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
13559 instead of PROC for caching "first-password-request". Otherwise,
13560 new processes would not profit from passwords already entered.
13562 * net/tramp-cache.el (tramp-dump-connection-properties):
13563 Don't save "first-password-request" property.
13565 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
13567 * outline.el (outline-head-from-level):
13568 * simple.el (with-wrapper-hook):
13569 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
13570 (elint-defun, elint-buffer-env, elint-top-form-logged)
13571 (elint-unbound-variable):
13572 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
13573 Fix typos in docstrings.
13575 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
13577 * files.el (insert-directory): When WILDCARD-REGEXP and
13578 FULL-DIRECTORY-P are nil, insert the file entry instead of the
13579 whole directory. (Bug#5551)
13581 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
13582 dired's alignment sanity. (Bug#5516)
13584 2010-02-14 Juri Linkov <juri@jurta.org>
13586 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
13587 Remove remaining ^H with their preceding chars. (Bug#5566)
13589 2010-02-13 Glenn Morris <rgm@gnu.org>
13591 * simple.el (transpose-subr): Give it a doc-string.
13593 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
13596 2010-02-12 Juri Linkov <juri@jurta.org>
13598 * arc-mode.el (archive-unique-fname): Make directories for nested
13599 archives. (Bug#5540)
13601 2010-02-12 Juri Linkov <juri@jurta.org>
13603 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
13605 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13607 * subr.el (copy-overlay): Handle deleted overlays.
13609 * man.el (Man-completion-table): Don't signal an error if we can't run
13610 manual-program (bug#4056).
13612 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
13614 * textmodes/artist.el (artist-mt): Fix typos in docstring.
13616 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13618 * info.el (Info-bookmark-jump): Simplify.
13620 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
13621 (bookmark-default-handler): Accept new bookmark field `buffer'.
13623 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
13625 * iswitchb.el (iswitchb-completions): Revert last change.
13627 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
13629 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
13630 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
13631 This prevents file names like "~/" being listed literally.
13633 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
13635 * term/xterm.el (xterm-maybe-set-dark-background-mode):
13636 Remove dead code. (Bug#5546)
13638 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
13640 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
13641 correctly (Bug#5548).
13643 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
13645 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
13646 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
13648 2010-02-08 Kenichi Handa <handa@m17n.org>
13650 * international/mule-util.el (with-coding-priority): Add autoload
13651 cookie for putting `lisp-indent-function'.
13653 2010-02-07 Glenn Morris <rgm@gnu.org>
13655 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
13656 Move F2003 named interfaces from keywords-2 to keywords-1, and
13657 use function-name-face rather than constant-face.
13658 Simplify "abstract interface" regexp.
13660 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
13662 * eshell/esh-util.el (eshell-file-attributes): New optional arg
13663 ID-FORMAT. Pass it to `file-attributes'.
13665 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
13667 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
13669 * faces.el (set-face-attribute): Allow calling
13670 internal-set-lisp-face-attribute with 'unspecified family and
13671 foundry argument (Bug#5536).
13673 2010-02-07 Glenn Morris <rgm@gnu.org>
13675 * progmodes/f90.el (f90-font-lock-keywords-2)
13676 (f90-looking-at-type-like, f90-looking-at-program-block-end):
13677 Handle F2003 named interfaces.
13679 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
13681 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
13682 beg and end before calling c-get-state-before-change-functions.
13684 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
13686 * vc-bzr.el (vc-bzr-dir-extra-headers):
13687 Disable the pending merges header.
13689 2010-02-05 Juri Linkov <juri@jurta.org>
13691 * doc-view.el (doc-view-mode):
13692 * image-mode.el (image-mode): Put property mode-class=special.
13695 2010-02-05 Mark A. Hershberger <mah@everybody.org>
13697 * vc-svn.el (vc-svn-revision-table): New function.
13699 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
13701 * net/ange-ftp.el (ange-ftp-insert-directory):
13702 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
13703 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
13704 Handle also directories. (Bug#5478)
13706 2010-02-05 Glenn Morris <rgm@gnu.org>
13708 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
13710 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
13712 * startup.el (command-line-1): Convert options beginning with a
13713 single dash as well (Bug#5519).
13715 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
13717 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
13718 * minibuffer.el (completion-initials-expand): Only check the presence
13719 of delims *within* the boundaries, since otherwise the / delim is
13720 always found for files.
13722 Fix up various corner case problems.
13723 * doc-view.el (doc-view-last-page-number): New function.
13724 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
13725 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
13726 (doc-view-kill-proc): Avoid inf-loop in freak cases.
13727 (doc-view-reconvert-doc): Use the new recursive delete-directory.
13728 (doc-view-convert-current-doc): Don't create the resolution.el file
13730 (doc-view-pdf/ps->png): Do it here instead.
13731 (doc-view-already-converted-p): Check that resolution.el is present.
13732 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
13733 windows that are not yet showing images.
13735 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
13737 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
13738 `dired-uncache' for every elemnt which is an absolute file name.
13740 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
13741 directory, handle its directory component.
13742 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
13743 function is called permanently and creates noise, otherwise.
13745 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
13746 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
13747 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
13749 2010-02-04 David Burger <dburger@google.com> (tiny change)
13751 * macros.el (apply-macro-to-region-lines):
13752 Minor simplification. (Bug#5485)
13754 2010-02-04 Glenn Morris <rgm@gnu.org>
13756 * mail/rmail.el (rmail-show-message-1): Handle malformed
13757 quoted-printable text. (Bug#5441)
13759 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
13761 * simple.el (visual-line-mode): Capitalize lighter.
13763 2010-02-03 John Wiegley <jwiegley@gmail.com>
13765 * iswitchb.el (iswitchb-completions): Add bookmark files to the
13766 list of files considered for "virtual buffer" completions.
13768 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
13770 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
13771 also in case of (and (not full) (not wildcard)). This is needed
13772 when dired is called with a list of files, which are not in
13773 `default-directory'. (Bug#5478)
13775 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
13777 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
13779 2010-02-02 Juri Linkov <juri@jurta.org>
13781 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
13782 from unidiff to allow function-line after @@.
13784 2010-02-02 Juri Linkov <juri@jurta.org>
13786 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
13787 '(RCS SCCS) with inverted condition.
13789 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
13791 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
13794 2010-02-01 Juri Linkov <juri@jurta.org>
13796 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
13797 compare with "pkunzip" and "pkzip" instead of only "pkzip".
13798 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
13799 only when (car archive-zip-extract) is "unzip". (Bug#5475)
13801 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
13803 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
13804 (doc-view-revert-buffer): New command.
13805 (doc-view-mode-map): Use it.
13807 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
13809 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
13810 pending merge is detected.
13812 2010-01-31 Juri Linkov <juri@jurta.org>
13814 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
13815 beginning of interactive spec like all other grep commands do.
13816 Put "all" in front of "gz". (Bug#5260)
13818 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
13820 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
13822 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
13824 * dirtrack.el (dirtrack): Warn instead of signalling error if the
13825 regexp is incorrect (Bug#5476).
13827 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
13829 * net/tramp.el (tramp-handle-insert-directory): Handle also
13830 symlinks, when FILENAME is not in `default-directory'.
13832 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
13834 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
13835 FILE is not in `default-directory'. (Bug#5478)
13837 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
13838 of SWITCHES. Handle the case, FILENAME is not in
13839 `default-directory'. (Bug#5478)
13840 (tramp-register-file-name-handlers): Add safe-magic property.
13842 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
13844 * arc-mode.el (archive-zip-extract): Quote the argument passed to
13847 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
13849 * progmodes/flymake.el (flymake-allowed-file-name-masks)
13850 (flymake-master-make-header-init): Add other C++ filename masks.
13851 (flymake-find-possible-master-files)
13852 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
13854 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
13856 Fix some busybox annoyances.
13858 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
13859 not responding." string.
13860 (tramp-open-connection-setup-interactive-shell): Dump stty
13861 settings. Enable "neveropen" arg for all `tramp-send-command'
13862 calls. Handle "=" in variable values properly.
13863 (tramp-find-inline-encoding): Raise an error, when no encoding is
13865 (tramp-wait-for-output): Check, whether PROC buffer is available.
13866 Remove spurious " ^H" sequences, sent by busybox.
13867 (tramp-get-ls-command): Suppress coloring, if possible.
13869 2010-01-28 Glenn Morris <rgm@gnu.org>
13871 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
13873 * log-edit.el (log-edit-strip-single-file-name): Add missing
13874 :safe, :group, and :version tags.
13876 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
13878 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
13879 buffers. (Bug#5477)
13881 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
13883 * files.el (delete-directory): Handle moving to trash without
13884 first doing recursion (Bug#5436).
13886 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
13888 * vc-hooks.el (vc-path): Mark as obsolete.
13890 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
13892 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
13895 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
13897 (vc-bzr-log-view-mode): Adjust regexp for the above change.
13899 2010-01-25 Mark A. Hershberger <mah@everybody.org>
13901 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
13903 * vc-bzr.el (vc-bzr-revision-table): New function.
13905 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com>
13907 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
13908 diff-index command. This requires at least git-1.5.5. (Bug#1589).
13910 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
13912 Remove support for adding --signoff on commit.
13913 Future support will use an incompatible generic mechanism.
13914 * vc-git.el (vc-git-add-signoff): Remove variable.
13915 (vc-git-toggle-signoff): Remove function.
13916 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
13918 * term/xterm.el (xterm-maybe-set-dark-background-mode):
13919 Rename from xterm-set-background-mode. Return t if the background mode
13921 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
13922 earlier, call it again in case the background mode has changed.
13924 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
13926 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
13929 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
13931 * emacs-lisp/assoc.el (aelement): Doc fix.
13932 (aput, adelete, amake): Use lexical-let (Bug#5450).
13934 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
13936 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
13937 is the same as subprogram call, not declaration. (Bug#5435).
13939 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
13941 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
13942 (tramp-smb-maybe-open-connection): Use it.
13944 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
13946 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
13948 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
13950 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
13951 just because we see "encoding: 8bit".
13952 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
13954 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
13956 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
13958 2010-01-22 Eli Zaretskii <eliz@gnu.org>
13960 * jka-compr.el (jka-compr-load): If load-file is not in
13961 load-history, try its file-truename version. (bug#5447)
13963 2010-01-21 Alan Mackenzie <acm@muc.de>
13965 Fix a situation where deletion of a cpp construct throws an error.
13966 * progmodes/cc-engine.el (c-invalidate-state-cache):
13967 Before invoking c-with-all-but-one-cpps-commented-out, check that the
13968 special cpp construct is still in the buffer.
13969 (c-parse-state): Record the special cpp with markers, not numbers.
13971 2010-01-21 Kenichi Handa <handa@m17n.org>
13973 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
13974 process last-command-event, as it is now decoded first (Bug#5380).
13976 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
13978 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
13980 2010-01-20 Glenn Morris <rgm@gnu.org>
13982 * indent.el (tab-always-indent): Fix custom-type.
13984 2010-01-19 Alan Mackenzie <acm@muc.de>
13986 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
13987 buffer throws "args out of range".
13988 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
13989 playing the role of delimiter.
13991 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
13993 * progmodes/ada-mode.el: Fix bug#5400.
13994 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
13995 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
13996 changed. Delete RECURSIVE parameter; never used. Improve doc string.
13997 Improve comments in "is" portion. Handle null procedure declaration.
13998 (ada-move-to-end): Improve doc string.
14000 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
14002 * ido.el (ido-cur-list): Initialize to nil.
14003 Remove obsolete information from commentary.
14004 (ido-choice-list): Initialize to nil.
14005 (ido-get-bufname): Reject minibuffers.
14006 (ido-make-buffer-list): If "default" is a nonexistent
14007 buffer, ignore it, as per the function's comment.
14008 (ido-kill-buffer-internal): New function.
14009 (ido-kill-buffer-at-head): Use it.
14010 (ido-visit-buffer): Likewise.
14012 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
14014 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
14016 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
14018 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
14019 Fix typos in chart titles.
14021 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
14022 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
14023 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
14024 (describe-class, eieio-describe-generic, describe-generic):
14025 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
14026 (eieio-speedbar-expand):
14027 * emulation/viper-cmd.el (viper-exec-form-in-vi)
14028 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
14029 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
14030 (viper-del-backward-char-in-replace, viper-backward-indent)
14031 (viper-brac-function, viper-register-to-point, viper-submit-report):
14032 * net/tramp.el (tramp-remote-coding-commands):
14033 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
14034 Fix typos in docstrings.
14036 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
14038 * mail/sendmail.el (mail-yank-original): Set the mark if the
14039 specified function for yanking does not do it.
14041 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
14043 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
14045 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
14046 resyncing a directory.
14048 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
14050 * progmodes/ada-mode.el: Fix bug#1920.
14051 (ada-ident-re): Delete ., allow multibyte characters.
14052 (ada-goto-label-re): New; matches goto labels.
14053 (ada-block-label-re): New; matches block labels.
14054 (ada-label-re): New; matches both.
14055 (ada-named-block-re): Delete; callers changed to use
14056 `ada-block-label-re' instead.
14057 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
14058 Use `ada-block-label-re'.
14059 (ada-indent-on-previous-lines): Improve handling of goto labels.
14060 (ada-get-indent-block-start): Special-case block label.
14061 (ada-get-indent-label): Split into `ada-indent-block-label' and
14062 `ada-indent-goto-label'.
14063 (ada-goto-stmt-start, ada-goto-next-non-ws):
14064 Optionally ignore goto labels.
14065 (ada-goto-next-word): Simplify.
14066 (ada-indent-newline-indent-conditional): Insert newline before
14067 trying to fix indentation; doc fix.
14069 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
14071 * calc/calc.el (calc-command-flags): Give it an initial value.
14073 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
14075 * files.el (minibuffer-with-setup-hook):
14076 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
14077 (artist-key-draw-continously, artist-key-do-continously-continously)
14078 (artist-key-set-point-continously, artist-mouse-draw-continously):
14079 Fix typos in docstrings.
14081 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
14083 * nxml/nxml-mode.el (nxml-extend-after-change-region):
14084 Never return t (Bug#3898).
14086 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
14088 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
14089 can parse the output of the external commands (Bug#5279).
14091 2010-01-16 Jari Aalto <jari.aalto@cante.net>
14093 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
14095 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
14097 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
14099 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
14101 * startup.el (command-line): Remove unused --icon-type arg.
14102 Handle --display arg, passing it to command-line-1 (Bug#5392).
14104 2010-01-16 Mario Lang <mlang@delysid.org>
14106 * emacs-lisp/chart.el (chart-translate-namezone):
14107 * textmodes/artist.el (artist-compute-popup-menu-table):
14108 Remove duplicated words in doc-strings.
14110 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
14112 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
14113 to mairix-search to suppress threading (Bug#5342).
14115 2010-01-15 Kenichi Handa <handa@m17n.org>
14117 * international/mule-cmds.el (canonicalize-coding-system-name):
14118 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
14120 2010-01-15 Glenn Morris <rgm@gnu.org>
14122 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
14124 * wid-edit.el (widget-keymap): Doc fix.
14126 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
14127 former seems to be more widely accepted by various svn versions.
14129 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14131 * find-cmd.el (find-constituents):
14132 * vc-arch.el (vc-arch-root):
14133 * window.el (window-body-height, pop-up-frames):
14134 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
14135 * progmodes/ada-stmt.el (ada-if):
14136 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
14137 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
14138 (ispell-encoding8-command, ispell-aspell-supports-utf8)
14139 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
14141 * progmodes/flymake.el (flymake-post-syntax-check):
14142 Fix typo in error message.
14144 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14146 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
14147 which is always a string. (Bug#5313)
14149 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14151 * progmodes/ada-xref.el (ada-default-prj-properties):
14152 Simplify previous change.
14154 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14156 * progmodes/ada-xref.el (ada-default-prj-properties):
14157 Default ada_project_path to $ADA_PROJECT_PATH.
14159 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14161 * progmodes/ada-mode.el (ada-create-keymap):
14162 Override `narrow-to-defun' with `ada-narrow-to-defun'.
14164 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14166 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
14167 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
14168 (ada-get-current-indent, ada-imenu-generic-expression)
14169 (ada-which-function): Check for it.
14171 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14173 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
14174 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
14176 2010-01-14 Glenn Morris <rgm@gnu.org>
14178 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
14180 2010-01-14 Kenichi Handa <handa@m17n.org>
14182 * composite.el (auto-composition-mode): Make it a buffer local
14183 variable (permanent-local).
14184 (auto-composition-function): Set the default value to
14185 auto-compose-chars.
14186 (auto-composition-mode): Make it a simple function, not a minor mode.
14187 (global-auto-composition-mode): Likewise.
14188 (turn-on-auto-composition-if-enabled): Delete it.
14190 2010-01-13 Karl Fogel <kfogel@red-bean.com>
14192 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
14194 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
14196 * files.el (copy-directory): Compute target for recursive
14197 directories with identical names. (Bug#5343)
14199 2010-01-12 Glenn Morris <rgm@gnu.org>
14201 * mail/emacsbug.el (report-emacs-bug-pretest-address):
14202 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
14204 2010-01-11 Sam Steingold <sds@gnu.org>
14206 * imenu.el (imenu-default-create-index-function): Detect infinite
14207 loops caused by imenu-prev-index-position-function.
14209 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
14211 * htmlfontify.el (htmlfontify-load-rgb-file)
14212 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
14213 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
14214 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
14215 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
14216 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
14217 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
14218 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
14219 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
14220 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
14221 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
14222 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
14223 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
14224 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
14225 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
14226 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
14227 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
14228 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
14229 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
14230 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
14231 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
14232 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
14233 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
14234 backslash-quoting from parentheses, etc.
14236 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
14238 * progmodes/js.el: Autoload javascript-mode alias.
14240 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
14242 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
14243 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
14244 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
14245 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
14246 Fix typos in docstrings.
14247 (ffap-url-regexp): Doc fix.
14248 (ffap-at-mouse): Fix typo in message.
14250 2010-01-11 Glenn Morris <rgm@gnu.org>
14252 * version.el (emacs-copyright): Set copyright year to 2010.
14254 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
14256 * format.el (format-annotate-function): Only set
14257 write-region-post-annotation-function after running to-fn so as not to
14258 affect nested write-region calls (bug#5273).
14260 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
14262 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
14265 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
14267 * man.el (Man-goto-section): Signal error if the section is not
14270 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
14272 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
14273 URLs with a leading triple slash in the file: scheme. (Bug#5345)
14275 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
14277 * progmodes/compile.el: Don't treat compile-command as safe if
14278 compilation-read-command might be nil (Bug#4218).
14280 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
14282 * startup.el (command-line-1): Use orig-argi to check for ignored X and
14285 2010-01-08 Kenichi Handa <handa@m17n.org>
14287 * international/fontset.el (build-default-fontset-data):
14288 Exclude characters in scripts kana, hangul, han, or cjk-misc.
14290 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
14292 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
14293 to `create-file-buffer' as it expects, not just a buffer name.
14294 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
14295 to help uniquify. (Bug#3224)
14297 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
14299 * font-setting.el (font-setting-change-default-font): Use user-spec
14302 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
14304 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
14306 2010-01-05 Tom Tromey <tromey@redhat.com>
14308 * progmodes/python.el (python-font-lock-keywords):
14309 Handle qualified decorators (Bug#881).
14311 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14313 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
14314 in a lightweight checkout.
14316 2010-01-05 Kenichi Handa <handa@m17n.org>
14318 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
14320 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14322 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
14324 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
14326 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
14327 checkouts. (Bug#618)
14328 (vc-bzr-log-view-mode): Also highlight the author.
14329 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
14330 (vc-bzr-shelve-menu-map):
14331 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
14332 (vc-bzr-shelve-apply): Make prompt more explicit.
14334 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
14336 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
14337 They are valid characters in URL paths (rfc3986), and at least
14338 Firefox does not understand the encoded version (Bug#3166).
14340 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
14342 * progmodes/octave-mod.el (octave-end-keywords)
14343 (octave-block-begin-or-end-regexp, octave-block-match-alist):
14344 Add "end" keyword (Bug#3061).
14345 (octave-end-as-array-index-p): New function.
14346 (calculate-octave-indent): Use it.
14348 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14350 * bookmark.el: Consistently put the text property on the bookmark name.
14351 (bookmark-bmenu-marks-width): Bump back to 2, to include
14353 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
14354 property on the bookmark name, instead of not putting it at all.
14355 (bookmark-bmenu-list): Fix where we put the text property.
14357 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14359 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
14360 for showing buffer modified state (as added in the previous change).
14362 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14364 * bookmark.el: Show modified state of bookmark buffer more accurately.
14365 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
14366 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
14367 (with-buffer-modified-unmodified): New macro.
14368 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
14369 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
14370 Use new macro to preserve the buffer modified state.
14372 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14374 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
14375 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
14376 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
14377 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
14378 (bookmark-bmenu-rename, bookmark-bmenu-locate)
14379 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
14380 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
14382 2010-01-02 Eli Zaretskii <eliz@gnu.org>
14384 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14385 Make the lines in the generated doc string shorter. (Bug#4668)
14387 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
14389 * net/rcirc.el: Add follow-link binding (Bug#4738).
14391 2010-01-02 Eli Zaretskii <eliz@gnu.org>
14393 * Makefile.in (bzr-update): Rename from cvs-update.
14394 (cvs-update): New target for backward compatibility.
14396 * makefile.w32-in (bzr-update): Rename from cvs-update.
14397 (cvs-update): New target for backward compatibility.
14399 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14401 * bookmark.el: Remove gratuitous gratitude.
14403 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14405 * bookmark.el (bookmark-bmenu-any-marks): New function.
14406 (bookmark-bmenu-save): Clear buffer modification if no marks.
14408 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14410 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
14411 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
14412 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
14413 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
14415 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
14416 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
14417 To: emacs-devel {_AT_} gnu.org
14418 Subject: bookmark.el bug report
14419 Date: Mon, 28 Dec 2009 14:19:16 +0800
14420 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
14422 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14424 * bookmark.el: Improvements suggested by Drew Adams:
14425 (bookmark-bmenu-ensure-position): New name for
14426 `bookmark-bmenu-check-position'. Just ensure the position,
14427 don't return any meaningful value.
14428 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
14431 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
14433 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
14434 (bookmark-yank-point, bookmark-bmenu-check-position):
14435 Fix typos in docstrings.
14436 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
14437 (bookmark-name-from-full-record, bookmark-get-position)
14438 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
14439 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
14440 Remove useless quoting of parenthesis, etc. in docstrings.
14442 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
14443 (ediff-append-custom-diff): Fix typo in error message.
14444 (ediff-meta-mark-equal-files): Fix typos in messages.
14446 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
14448 * net/imap-hash.el (imap-hash-make): Doc fix.
14449 (imap-hash-test): Fix typo in error message; reflow docstring.
14450 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
14451 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
14452 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
14453 Fix typos in docstrings.
14454 (imap-hash-open-connection): Fix typo in error message.
14456 * play/gomoku.el (gomoku): Fix typos in docstring.
14458 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
14459 (gdb-jsonify-buffer): Fix typos in docstring.
14460 (gdb-goto-breakpoint): Fix typo in error message.
14461 ("Display Other Windows"): Fix typo in help message.
14462 (gdb-speedbar-expand-node): Fix typo in question.
14464 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
14465 (idlwave-html-system-help-location, idlwave-html-help-location)
14466 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
14467 (idlwave-help-browser-generic-args, idlwave-help-directory)
14468 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
14469 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
14470 (idlwave-online-help, idlwave-help-html-link)
14471 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
14472 Fix typos in docstrings.
14473 (idlwave-help-with-source, idlwave-help-find-routine-definition):
14475 (idlwave-help-assistant-start): Fix typo in error message.
14477 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
14478 (octave-electric-space): Fix typos in docstrings.
14480 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
14482 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
14484 2010-01-01 Juri Linkov <juri@jurta.org>
14486 * comint.el (comint-input-ring-size): Make it a defcustom and
14487 increase the default to 500 (Bug#5148).
14489 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
14491 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
14492 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
14493 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
14495 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
14497 Show working revision correctly for mercurial.
14498 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
14499 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
14501 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
14503 Declare some functions for the byte-compiler.
14504 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
14505 (speedbar-timer-fn, speedbar-change-expand-button-char)
14506 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
14508 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
14510 This changeset reverts GDB Graphical Interface to use annotations.
14511 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
14513 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
14515 Make vc-dir work on subdirectories of the bzr root.
14516 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
14517 Return file names relative to it.
14518 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
14519 relative directory to vc-bzr-after-dir-status.
14521 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
14523 * font-lock.el (font-lock-refresh-defaults): New function, which
14524 can be used to let font-lock react to external changes in
14525 variables like font-lock-defaults and keywords.
14526 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
14528 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
14530 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
14532 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
14534 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
14536 Supersede color.diff settings in git log (bug#5211).
14538 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
14539 escape chars in its output when the user has color.diff set to `always'.
14540 This fix works on git 1.4.2 and newer (released on 2006-08-13).
14542 2009-12-26 Kevin Ryde <user42@zip.com.au>
14544 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
14545 node. Keep previous "Index" name to work with past coreutils too.
14547 * man.el (man): Revise docstring a bit to show -a and -l as
14548 examples. Add -k description since support for it has otherwise
14549 been a secret. (Further to bug#3717.)
14550 (Man-bgproc-sentinel): When "-k foo" produces no output show error
14551 "no matches" rather than "Can't find manpage", as the latter reads
14552 like -k was interpreted as a page name, which is not so. (Bug#5431)
14554 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
14556 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
14557 switches. Check also for //SUBDIRED// line.
14559 2009-12-25 Kenichi Handa <handa@m17n.org>
14561 * language/indian.el (devanagari-composable-pattern): Fix to
14562 handle ZWNJ and ZWJ. Use it in composition-function-table for
14564 (malayalam-composable-pattern): Fix previous change.
14566 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14568 * ps-print.el (ps-face-attributes): It was not returning the
14569 attribute face for faces specified as string. Reported by harven
14570 <harven@free.fr>. (Bug#5254)
14571 (ps-print-version): New version 7.3.5.
14573 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
14575 * calendar/icalendar.el (icalendar--convert-tz-offset):
14576 Fix timezone names.
14577 (icalendar--convert-tz-offset): Fix the "last-day-problem".
14578 (icalendar--add-diary-entry): Remove the trailing blank that
14579 diary-make-entry inserts.
14581 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
14583 Make `file-expand-wildcards' work for remote files.
14585 * files.el (file-expand-wildcards): In case of remote files, check
14586 only local file name part for wildcards. Provide feature 'files
14587 and subfeature 'remote-wildcards. (Bug#5198)
14589 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
14590 if there is already an established connection.
14591 (tramp-advice-file-expand-wildcards): Remove it.
14593 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
14594 (tramp-advice-file-expand-wildcards): Move from tramp.el.
14595 Activate advice for older GNU Emacs versions. (Bug#5237)
14597 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
14599 Some doc fixes (more needed).
14601 * find-cmd.el (find-constituents): Reflow docstring.
14602 (find-cmd, find-prune, find-command): Fix typos in docstrings.
14603 (find-generic): Doc fix.
14605 2009-12-17 Juri Linkov <juri@jurta.org>
14607 Fix regression from 23.1 to allow multiple modes in Local Variables.
14609 * files.el (hack-local-variables-filter): While ignoring duplicates,
14610 don't take `mode' into account.
14611 (hack-local-variables-filter, hack-dir-local-variables):
14612 Don't remove duplicate `mode' from local-variables-alist (like `eval').
14614 2009-12-17 Juri Linkov <juri@jurta.org>
14616 Make `dired-diff' safer. (Bug#5225)
14618 * dired-aux.el (dired-diff): Signal an error when `file' equals to
14619 `current' or when `file' is a directory of the `current' file.
14621 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
14623 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
14624 unconditionally preloaded files.
14626 2009-12-16 Juri Linkov <juri@jurta.org>
14628 Revert to old 23.1 logic of using the file at the mark as default.
14629 * dired-aux.el (dired-diff): Use the file at the mark as default
14630 if it's not the same as the current file, and the target dir is
14631 the current dir or the mark is active. Add the current file
14632 as the arg of `dired-dwim-target-defaults'. Use the default file
14633 in the prompt. (Bug#5225)
14635 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
14637 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
14638 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
14639 (tramp-check-for-regexp): Check also, when an echoing shell stops
14640 to echo sent commands.
14642 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
14644 * Makefile.in: Revert last change (Bug#5191).
14646 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
14648 * vc-hg.el (vc-hg-print-log): Fix argument order.
14649 (vc-hg-working-revision): Make sure the command is executed in a
14650 known environment so that we can parse the output. (Bug#4417)
14652 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
14654 * progmodes/python.el (python-symbol-completions): Remove text
14655 properties from symbol string before calling python-send-receive.
14657 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
14659 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
14660 when there are values for both file and line. (Bug#5060)
14662 2009-12-14 Juri Linkov <juri@jurta.org>
14664 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
14665 whitespace after the file name of the first line of unified format,
14666 because git-diff doesn't output whitespace and file modification time
14667 after the file name.
14669 2009-12-14 David Kastrup <dak@gnu.org>
14671 * info.el (Info-hide-cookies-node): Before hiding a cookie,
14672 check if it already has the `display' property added by
14673 `Info-display-images-node', and not put the `invisible' property
14676 2009-12-13 Glenn Morris <rgm@gnu.org>
14678 * mail/emacsbug.el (message-sort-headers): Define for compiler.
14679 (report-emacs-bug): In message-mode, sort manually before storing
14680 original report text. (Bug#5178)
14681 Remove superfluous save-excursion.
14683 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
14685 * net/dbus.el (dbus-property-handler): Filter lambda forms out
14686 when responding to "GetAll" properties.
14688 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
14690 * simple.el (compose-mail): Remove mail-setup-with-from from
14691 customization checks.
14693 2009-12-12 Eli Zaretskii <eliz@gnu.org>
14695 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
14696 RAR archives created on Unix systems.
14698 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
14700 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
14701 the varalias that was accidentally removed by the 2009-11-19 change
14704 2009-12-12 Kenichi Handa <handa@m17n.org>
14706 * language/indian.el (indian-compose-regexp): New function.
14707 (malayalam-composable-pattern): Fix the pattern.
14708 (composition-function-table): Set malayalam-composable-pattern for
14709 Malayalam characters.
14711 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
14713 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
14714 rather than down-mouse-1, based on follow-link conventions.
14716 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
14719 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
14721 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
14722 (verilog-vmm-statement-re, verilog-ovm-statement-re)
14723 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
14724 (verilog-leap-to-head, verilog-backward-token):
14725 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
14727 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
14729 * progmodes/verilog-mode.el (verilog-auto-lineup)
14730 (verilog-nameable-item-re): Cleanup user-visible spelling and
14731 documentation errors. One reported by Gary Delp.
14732 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
14733 (verilog-read-decls): Fix AUTOWIRE with types declared in a
14734 package, bug195. Reported by Pierre-David Pfister.
14736 2009-12-11 Glenn Morris <rgm@gnu.org>
14738 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
14740 * mail/emacsbug.el: No longer require sendmail.
14741 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
14742 (report-emacs-bug-orig-text): Doc fix.
14743 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
14744 New local variables, to adapt to different mail-user-agents.
14745 (report-emacs-bug): Fix test for a gnu.org address.
14746 Use overlays for emphasis, since font-lock defeats 'face property.
14747 Pretest bugs also end up at the newsgroup these days.
14748 Stop message-mode stripping text properties.
14749 Set and use the new buffer-local variables.
14750 (report-emacs-bug-hook): Add doc-string.
14751 Remove some unnecessary save-excursions and simplify.
14752 Use the appropriate hook and send-command.
14754 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
14755 capitalization of some menu entries.
14757 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14759 * whitespace.el (whitespace-display-char-on):
14760 Ensure `buffer-display-table' is unique when two or more windows are
14761 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
14764 2009-12-10 Eli Zaretskii <eliz@gnu.org>
14766 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
14767 characters in the Attribute field.
14769 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
14771 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
14773 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
14775 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
14776 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
14777 Disregard autoload-excludes.
14778 (update-directory-autoloads): Obey autoload-excludes here instead.
14779 But don't store its contents in no-autoloads and remove entries that
14780 refer to excludes files.
14782 2009-12-10 Glenn Morris <rgm@gnu.org>
14784 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
14785 (expand-mail-aliases): Define for compiler.
14787 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
14788 Define for compiler.
14790 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
14791 appropriate for the mail-user-agent in use.
14793 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
14795 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
14797 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
14799 Fix short log parsing and fontification.
14800 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
14801 Fix fontification for the [merge] label.
14803 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
14805 Drop some properties to avoid surprises (bug#5002).
14806 * htmlfontify.el (hfy-ignored-properties): New defcustom.
14807 (hfy-fontify-buffer): Use it.
14809 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
14812 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
14813 Adjust all callers.
14814 (ffap-locate-file): Remove unused arg `dir-ok' and make other
14815 args compulsory. Adjust callers.
14816 (ffap-gopher-at-point): Remove unused var `name'.
14818 Get rid of the ELCFILES abomination.
14819 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
14820 (compile-elcfiles): New phony target.
14821 (compile-main): Compute ELCFILES dynamically.
14822 (compile-clean): New target to remove left-over elc files.
14823 (compile, all): Use it.
14825 2009-12-09 Kenichi Handa <handa@etlken>
14827 * international/mule-diag.el: Require help-mode instead of help-fns.
14829 2009-12-09 Kenichi Handa <handa@m17n.org>
14831 * international/mule-cmds.el (ucs-names): Supply sufficiently
14832 fine ranges instead of pre-calculating accurate ranges.
14833 Iterate with bigger gc-cons-threshold.
14835 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
14837 Add support for stashing a snapshot of the current tree.
14838 * vc-git.el (vc-git-stash-snapshot): New function.
14839 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
14841 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
14843 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
14844 instead of `(beginning|end)-of-line'.
14846 2009-12-08 Glenn Morris <rgm@gnu.org>
14848 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
14850 * Makefile.in (ELCFILES): Regenerate.
14852 2009-12-07 Juri Linkov <juri@jurta.org>
14854 Don't lazy-highlight the comint output in history Isearch mode.
14856 * comint.el (comint-history-isearch-search): Instead of
14857 `comint-line-beginning-position', use `comint-after-pmark-p'
14858 to check if point if before the process mark, and go to
14859 `process-mark' in this case.
14861 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
14863 * textmodes/tex-mode.el (latex-complete)
14864 (latex-indent-or-complete): Remove.
14865 (latex-mode): Set completion-at-point-functions instead.
14867 Provide a standard completion command and hook it into TAB.
14868 * minibuffer.el (completion-at-point-functions): New var.
14869 (completion-at-point): New command.
14870 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
14871 * progmodes/python.el (python-mode-map): Use completion-at-point.
14872 (python-completion-at-point): Rename from python-partial-symbol and
14873 adjust for use in completion-at-point-functions.
14874 (python-mode): Setup completion-at-point for Python completion.
14875 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
14876 extracted from lisp-complete-symbol.
14877 (lisp-complete-symbol): Use it.
14878 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
14879 setup completion-at-point for Elisp completion.
14880 (emacs-lisp-mode-map, lisp-interaction-mode-map):
14881 Use completion-at-point.
14882 * ielm.el (ielm-map): Use completion-at-point.
14883 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
14884 * progmodes/sym-comp.el: Move to...
14885 * obsolete/sym-comp.el: Move from progmodes.
14887 2009-12-07 Eli Zaretskii <eliz@gnu.org>
14889 Prevent save-buffer in Rmail buffers from using the coding-system
14890 of the current message, and from clobbering the encoding mnemonics
14891 in the mode line (Bug#4623).
14893 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
14895 (rmail-message-encoding): New variable.
14896 (rmail-write-region-annotate): Record the encoding of the current
14897 message in rmail-message-encoding.
14898 (rmail-after-save-hook): New function, restores the encoding of
14899 the current message after the message collection is saved.
14901 2009-12-07 Juri Linkov <juri@jurta.org>
14903 * progmodes/grep.el (grep-read-files): Use `completing-read'
14904 instead of `read-string'. Set its `collection' arg to
14905 `read-file-name-internal'. (Bug#4301)
14907 2009-12-07 Juri Linkov <juri@jurta.org>
14909 Correctly restore original Isearch point. (Bug#4994)
14911 * isearch.el (isearch-mode): Move `isearch-push-state' after
14912 `(run-hooks 'isearch-mode-hook)'.
14913 (isearch-cancel): When `isearch-push-state-function' is defined,
14914 let-bind `isearch-cmds' to the first state (the last element of
14915 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
14916 function and restores the original point). Otherwise, move point
14917 to `isearch-opoint'.
14919 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
14921 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
14922 chars that don't have names, so the table can be built much faster at
14925 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
14927 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
14928 change. Suggested by David Kastrup.
14930 * simple.el (compose-mail): Check for incompatibilities and warn.
14931 (compose-mail-user-agent-warnings): New option.
14933 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
14935 Support showing a single log entry from vc-annotate.
14936 * vc.el (print-log): Add a new argument: START-REVISION.
14937 (vc-print-log-internal): Add a new optional argument and
14938 pass it to the backend.
14939 (vc-print-log, vc-print-root-log): Adjust callers.
14940 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
14941 buffer already displays the requested log entry, use it.
14942 Otherwise display only the log entry in question.
14943 * vc-svn.el (vc-svn-print-log):
14944 * vc-mtn.el (vc-mtn-print-log):
14945 * vc-hg.el (vc-hg-state):
14946 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
14947 (vc-git-show-log-entry): Return t on success.
14948 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
14949 (vc-bzr-show-log-entry): Return t on success.
14950 * vc-rcs.el (vc-rcs-print-log):
14951 * vc-sccs.el (vc-sccs-print-log):
14952 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
14954 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
14956 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
14957 Add menus to the meta mode. (Bug#5043)
14959 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
14961 * ediff-init.el (ediff-event-key): Use event-to-character instead of
14964 * ediff.el (ediff-buffers-internal): Add unwind-protect.
14966 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
14968 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
14969 Berbain <raphael.berbain@gmail.com>.
14971 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
14973 (tramp-initial-end-of-output): New defconst.
14974 (tramp-methods, tramp-find-shell)
14975 (tramp-open-connection-setup-interactive-shell)
14976 (tramp-maybe-open-connection): Use it.
14977 (tramp-shell-prompt-pattern, tramp-wait-for-output):
14978 Handle existence of `#' and `$'.
14980 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
14981 Use `tramp-initial-end-of-output'.
14983 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
14985 Get the background mode from the terminal for xterm, and set
14987 * term/xterm.el (xterm-set-background-mode): New function.
14988 (terminal-init-xterm): Use it in case xterm supports background
14989 color queries. Recompute faces after getting the background
14992 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
14994 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
14995 number comment back on its own line, for easier parsing.
14997 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
14999 Make it work for non-file buffers (bug#5102).
15000 * doc-view.el (doc-view-current-cache-dir):
15001 Use doc-view-buffer-file-name rather than buffer-file-name.
15002 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
15004 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
15006 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
15007 author field is too short.
15009 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
15011 * vc-git.el (vc-git-print-log): Handle a limit argument.
15012 Display the short log in graph form and with labels.
15013 (vc-git-log-view-mode): Handle labels.
15015 Make vc-revert change VC state from 'added to 'unregistered.
15016 * vc-git.el (vc-git-revert): Call git reset first.
15018 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
15020 * net/newst-backend.el, net/newst-plainview.el:
15021 * net/newst-reader.el, net/newst-ticker.el:
15022 * net/newst-treeview.el, net/newsticker.el:
15023 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
15025 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
15027 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
15029 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
15030 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
15031 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
15032 Update annotation regexp.
15034 * simple.el (beginning-of-visual-line): Constrain to field
15035 boundaries (Bug#5106).
15037 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
15039 * xml.el (xml-substitute-numeric-entities):
15040 Move newsticker--decode-numeric-entities in newst-backend.el to
15041 xml-substitute-numeric-entities in xml.el. (Bug#5008)
15042 * net/newst-backend.el (newsticker--parse-generic-feed)
15043 (newsticker--parse-generic-items)
15044 (newsticker--decode-numeric-entities):
15045 Move newsticker--decode-numeric-entities in newst-backend.el to
15046 xml-substitute-numeric-entities in xml.el. (Bug#5008)
15048 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
15050 * progmodes/js.el (js--js-not): Add null to the list of values.
15052 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
15054 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
15056 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15058 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
15059 delimiter if it is at the end of the current line.
15060 (bibtex-generate-url-list): Fix docstring.
15062 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15064 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
15065 minibuffer's content with itself.
15066 Fold the confirm-after-completion case into the `confirm' case.
15067 (completion-pcm-word-delimiters): Add : and / to the delimiters.
15069 2009-12-06 Kevin Ryde <user42@zip.com.au>
15071 * ffap.el (ffap-rfc-path): Make this a defcustom since
15072 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
15074 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
15075 manuals, similar to existing setup for help-mode. (Bug#3913.)
15077 2009-12-05 Juri Linkov <juri@jurta.org>
15079 Save and restore dired buffer's point positions too. (Bug#4880)
15081 * dired.el (dired-save-positions): Return in the first element
15082 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
15084 (dired-restore-positions): First restore buffer's position.
15085 While restoring window's positions, check if window still displays
15086 the original buffer.
15088 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
15090 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
15093 * shell.el (shell): Require ansi-color (Bug#5113).
15095 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
15097 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
15099 2009-12-05 Alan Mackenzie <acm@muc.de>
15101 * progmodes/cc-mode.el (c-before-hack-hook)
15102 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
15103 `c-file-style' to work again. This reversion restores the current
15104 software to its state in Emacs 23.1. (Bug#4146)
15106 2009-12-05 Kevin Ryde <user42@zip.com.au>
15108 * textmodes/sgml-mode.el (sgml-lexical-context):
15109 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
15111 2009-12-05 Juri Linkov <juri@jurta.org>
15113 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
15114 for virtual nodes. (Bug#4147)
15115 (Info-find-node-2): Set `Info-current-node-virtual' to nil
15116 when moving from a virtual node.
15117 (Info-mode-menu): Add `Info-virtual-index' to the menu.
15118 (Info-mode): Add `Info-virtual-index' to the docstring.
15120 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15122 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
15123 track of the buffer position of the end of a BibTeX entry as this
15124 position may change during reformatting.
15125 (bibtex-format-entry): Remove whitespace before processing
15126 numerical fields so that we recognize the latter properly.
15127 (bibtex-reformat): Do not use push which changes the global value
15128 of bibtex-entry-format.
15129 (bibtex-field-braces-alist, bibtex-field-strings-alist)
15130 (bibtex-field-re-init): Replace only space characters by regexp
15132 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
15133 (bibtex-initialize): Also update bibtex-strings.
15134 (bibtex-kill-field): Preserve white space at end of entry.
15135 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
15136 Update bibtex-reference-keys.
15138 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
15140 * minibuffer.el (completion-pcm--merge-try): Also consider placing
15141 point after a star, if that's the only place where modifications can
15144 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
15146 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
15149 2009-12-04 Juri Linkov <juri@jurta.org>
15151 * proced.el (proced): Call `(proced-update t)' to update process
15152 information instead of only running proced-post-display-hook.
15153 (proced-send-signal): Add a leading space to the buffer name
15154 " *Marked Processes*" to make this buffer ephemeral.
15156 2009-12-04 Juri Linkov <juri@jurta.org>
15158 * dired.el (dired-auto-revert-buffer): New defcustom.
15159 (dired-internal-noselect): Use it.
15161 2009-12-04 Juri Linkov <juri@jurta.org>
15163 Change roles of modes and functions in image-mode.el (Bug#5062).
15165 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
15166 in `auto-mode-alist'.
15167 (image-mode-previous-major-mode): New variable.
15168 (image-minor-mode-map): Rename from `image-mode-text-map'.
15169 (image-mode): Move graceful error-handling code from
15170 `image-minor-mode' to here. On errors call `image-mode-as-text'.
15171 (image-minor-mode): Remove all image-handling code.
15172 Replace `image-mode-text-map' with `image-minor-mode-map'.
15173 Check for `image-type' in mode-line format string.
15174 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
15175 (image-mode-as-text): New function with most code from
15176 `image-mode-maybe'.
15177 (image-toggle-display-text): Move code that removes image
15178 properties from `image-toggle-display' to here.
15179 (image-toggle-display-image): New function with code that adds
15180 image properties copied from `image-toggle-display'.
15181 (image-toggle-display): Remove most code with leaving only code
15182 that toggles between `image-mode-as-text' and `image-mode'.
15184 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
15186 * net/newst-treeview.el
15187 (newsticker--treeview-list-highlight-start): Restored call to
15188 save-excursion: Selected item was stuck.
15189 (newsticker--treeview-list-select): New.
15190 (newsticker--treeview-item-show-text)
15191 (newsticker--treeview-item-show)
15192 (newsticker--treeview-item-update): Use new
15193 newsticker-treeview-item-mode.
15194 (newsticker-treeview-update): Keep current item.
15195 (newsticker-treeview-next-new-or-immortal-item): Doc change.
15196 (newsticker--treeview-first-feed): Doc change.
15197 (newsticker-treeview-list-menu)
15198 (newsticker-treeview-item-menu): Add menu entries.
15199 (newsticker-treeview-item-mode): New.
15201 * net/newst-backend.el (newsticker-customize): Delete other
15204 2009-12-04 Sam Steingold <sds@gnu.org>
15206 * log-view.el (log-view-mode-map): "q" calls quit-window,
15207 like in all the other non-self-insert buffers.
15209 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
15212 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
15213 key decoding rather than do it manually via last-input-event +
15215 (term-exec): Use delete-and-extract-region.
15216 (term-handle-ansi-terminal-messages): Remove unused var `end'.
15217 (term-process-pager): Remove unused var `i'.
15218 (term-dynamic-simple-complete): Make obsolete.
15219 (serial-update-config-menu): Remove unused vars `y' and `str'.
15220 (term-update-mode-line): Remove unused var `temp'.
15222 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15224 Limit the number of log entries displayed by default.
15225 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
15226 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
15227 using a prefix argument.
15229 2009-12-03 Glenn Morris <rgm@gnu.org>
15231 * progmodes/idlwave.el (class): Restore still useful declaration.
15233 2009-12-03 Alan Mackenzie <acm@muc.de>
15235 Enhance `c-parse-state' to run efficiently in "brace deserts".
15237 * progmodes/cc-mode.el (c-basic-common-init):
15238 Call c-state-cache-init.
15239 (c-neutralize-syntax-in-and-mark-CPP): Rename from
15240 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
15241 placing `category' properties value 'c-cpp-delimiter at its boundaries.
15243 * progmodes/cc-langs.el (c-before-font-lock-function):
15244 c-extend-and-neutralize-syntax-in-CPP has been renamed
15245 c-neutralize-syntax-in-and-mark-CPP.
15247 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
15248 with `category' properties now, not `syntax-table' ones.
15250 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
15251 enhanced (but slower) version of c-end-of-macro that won't land
15252 inside a literal or on another awkward character.
15253 (c-state-cache-too-far, c-state-cache-start)
15254 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
15255 (c-state-nonlit-pos-cache-limit, c-state-point-min)
15256 (c-state-point-min-lit-type, c-state-point-min-lit-start)
15257 (c-state-min-scan-pos, c-state-brace-pair-desert)
15258 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
15259 buffer local variables.
15260 (c-state-literal-at, c-state-lit-beg)
15261 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
15262 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
15263 (c-state-cache-top-paren, c-state-cache-after-top-paren)
15264 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
15265 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
15266 (c-renarrow-state-cache)
15267 (c-append-lower-brace-pair-to-state-cache)
15268 (c-state-push-any-brace-pair, c-append-to-state-cache)
15269 (c-remove-stale-state-cache)
15270 (c-remove-stale-state-cache-backwards, c-state-cache-init)
15271 (c-invalidate-state-cache-1, c-parse-state-1)
15272 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
15273 (c-parse-state): Enhance and refactor.
15274 (c-debug-parse-state): Amend to deal with all the new variables.
15276 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
15277 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
15278 modify to use category text properties rather than syntax-table ones.
15279 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
15280 to switch off/on the syntactic paren property of C++ template
15281 delimiters using the category property.
15282 (c-with-<->-as-parens-suppressed): Macro to invoke code with
15283 template delims suppressed.
15284 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
15285 New constant/macros which apply category properties to the start
15286 and end of preprocessor constructs.
15287 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
15288 "comment out" the syntactic value of characters in preprocessor
15290 (c-with-cpps-commented-out)
15291 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
15292 with characters in all or all but one preprocessor constructs
15295 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15297 * proced.el (proced-filter-alist): Use regexp-quote.
15299 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
15302 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
15303 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
15304 arguments. Expand `default-directory'.
15306 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
15307 the benefit of returning an expanded localname.
15308 (tramp-tramp-file-p): Handle the case NAME is not a string.
15310 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15312 Add support for bzr shelve/unshelve.
15313 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
15314 (vc-bzr-extra-menu-map): New variables.
15315 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
15316 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
15317 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
15318 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
15319 (vc-bzr-dir-extra-headers): Display shelves.
15321 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
15323 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15325 * textmodes/bibtex.el (bibtex-complete-internal):
15326 Use completion-in-region.
15327 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
15329 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15331 Support applying stashes. Improve UI.
15332 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
15333 (vc-git-stash-apply, vc-git-stash-pop)
15334 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
15335 (vc-git-stash-menu): New functions.
15336 (vc-git-stash-menu-map): New variable.
15337 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
15339 2009-12-03 Glenn Morris <rgm@gnu.org>
15341 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
15342 (vc-print-log-internal): Fix previous change.
15343 (vc-revert): Correct pluralization.
15345 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15347 * progmodes/make-mode.el (makefile-special-targets-list): No need for
15348 it to be an alist any more.
15349 (makefile-complete): Use completion-in-region.
15351 * progmodes/octave-mod.el (octave-complete-symbol):
15352 Use completion-in-region.
15355 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
15356 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
15357 (idlwave-complete-class): Don't quote lambda.
15358 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
15359 (idlwave-mode-map): Move initialization into declaration.
15360 (idlwave-action-and-binding): Use backquotes.
15361 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
15363 (idlwave-is-pointer-dereference): Remove unused var `pos'.
15364 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
15365 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
15366 `parts', and `all-parts'.
15367 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
15368 (idlwave-convert-xml-system-routine-info): Remove unused string
15370 (idlwave-display-user-catalog-widget): Use dolist.
15371 (idlwave-scanning-lib): Declare dynamically-scoped var.
15372 (idlwave-scan-library-catalogs): Remove unused var `flags'.
15373 (completion-highlight-first-word-only): Declare to silence bytecomp.
15374 (idlwave-popup-select): Tighten scope of `resp'.
15375 (idlwave-find-struct-tag): Remove unused var `beg'.
15376 (idlwave-after-load-rinfo-hook): Declare.
15377 (idlwave-sintern-class-info): Remove unused var `taglist'.
15378 (idlwave-find-class-definition): Remove unused var `list'.
15379 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
15380 (idlwave-what-module-find-class): Remove unused var `classes'.
15382 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
15384 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
15386 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15388 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
15389 buffers visited. Remove redundant current-buffer-saving.
15391 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15393 Use completion-in-buffer and remove uses of dynamic scoping.
15394 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
15395 (pascal-buffer-to-use, pascal-flag): Don't declare.
15396 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
15397 (pascal-get-completion-decl, pascal-keyword-completion):
15398 Add `pascal-str' argument, save-excursion,
15399 return the found completions, and don't filter with pascal-pred.
15400 (pascal-completion-cache): New var.
15401 (pascal-completion): Don't switch buffer any more (it was never
15402 necessary). Don't save-excursion any more (it's done by the called
15403 subroutines). Use a cache to avoid redundant computations.
15404 Use complete-with-action rather than pascal-completion-response and
15405 let it apply the predicate as well.
15406 (pascal-complete-word): Use completion-in-buffer when
15407 pascal-toggle-completions is nil.
15408 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
15410 (pascal-comp-defun): Don't change buffer any more.
15411 Use complete-with-action rather than pascal-completion-response and
15412 let it apply the predicate as well.
15413 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
15416 2009-12-02 Kenichi Handa <handa@m17n.org>
15418 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
15419 shape for all Indic scripts.
15421 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15423 Use completion-in-buffer.
15424 * wid-edit.el (widget-field-text-end): New function.
15425 (widget-field-value-get): Use it.
15426 (widget-string-complete, widget-file-complete)
15427 (widget-color-complete): Use it and completion-in-region.
15428 (widget-complete): Don't narrow the buffer.
15430 2009-12-02 Glenn Morris <rgm@gnu.org>
15432 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
15433 (rmail-select-summary): Use rmail-pop-to-buffer.
15434 * mail/rmailsum.el: Replace all pop-to-buffer calls with
15435 rmail-pop-to-buffer, to prevent horizontal splits.
15437 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
15438 save-excursion with save-current-buffer.
15439 Widen before searching. (Bug#5093)
15440 (diary-list-sexp-entries): Remove superfluous save-excursion.
15442 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
15444 * woman.el (woman-make-bufname): Handle man-pages with "." in the
15447 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
15449 * ido.el (ido-file-internal): Handle filenames at point that do
15450 not have a directory part. (Bug#5049)
15452 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
15454 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
15455 (mpc-songs-jump-to, mpc-resume): Doc fixes.
15457 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
15459 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
15460 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
15463 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15465 * comint.el (comint-insert-input): Ignore clicks to the right of
15466 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
15468 * vc.el (vc-print-log-internal): Don't wait for the process to
15469 terminate before setting up the major mode.
15471 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
15474 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
15477 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
15479 2009-12-01 Glenn Morris <rgm@gnu.org>
15481 * window.el (window--display-buffer-2): Fix previous changes.
15483 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
15485 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
15487 2009-12-01 Glenn Morris <rgm@gnu.org>
15489 * Makefile.in (ELCFILES): Add mpc.elc.
15491 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15493 * mpc.el: New file.
15495 2009-12-01 Glenn Morris <rgm@gnu.org>
15497 * window.el (window-to-use): Define for compiler.
15499 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
15500 consistent with others (no final period).
15502 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
15503 (rmail-mime-show): Downcase the encoding. (Bug#5070)
15505 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
15507 Make vc-print-log buttons work.
15508 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
15510 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
15512 * savehist.el (savehist-autosave-interval): Allow setting to nil
15513 through customize. (Bug#5056)
15515 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
15517 Fix references to jit-lock properties.
15518 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
15519 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
15520 (perl-font-lock-special-syntactic-constructs):
15521 Quote jit-lock-defer-multiline property.
15523 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
15525 * vc-git.el (vc-git-registered): Call vc-git-root only once.
15527 2009-11-30 Juri Linkov <juri@jurta.org>
15529 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
15530 value `buffer' of `multi-isearch-next-buffer-current-function'.
15531 Use `(current-buffer)' when `buffer' is nil.
15532 (multi-isearch-next-buffer-from-list): Don't fallback to
15533 `(current-buffer)' when `buffer' is nil. (Bug#4947)
15535 2009-11-30 Juri Linkov <juri@jurta.org>
15537 * misearch.el (multi-isearch-read-buffers): Move canonicalization
15538 of buffers with `get-buffer' to `multi-isearch-buffers'.
15539 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15540 Canonicalize BUFFERS with `get-buffer'. Doc fix.
15541 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
15542 FILES with `expand-file-name' converting relative file names
15543 to absolute. Doc fix. (Bug#4727)
15545 2009-11-30 Juri Linkov <juri@jurta.org>
15547 * misearch.el (multi-isearch-read-buffers)
15548 (multi-isearch-read-matching-buffers): New functions.
15549 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15550 Use them in the `interactive' spec. Doc fix.
15551 (multi-isearch-read-files, multi-isearch-read-matching-files):
15553 (multi-isearch-files, multi-isearch-files-regexp):
15554 Use them in the `interactive' spec. Doc fix. (Bug#4725)
15556 2009-11-30 Juri Linkov <juri@jurta.org>
15558 * doc-view.el (doc-view-continuous):
15559 Rename from `doc-view-continuous-mode'.
15560 (doc-view-menu): Move "Toggle display" to the top.
15561 Add submenu "Continuous" with radio buttons "Off"/"On"
15562 and "Save as Default".
15563 (doc-view-scroll-up-or-next-page)
15564 (doc-view-scroll-down-or-previous-page)
15565 (doc-view-next-line-or-next-page)
15566 (doc-view-previous-line-or-previous-page):
15567 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
15569 2009-11-30 Juri Linkov <juri@jurta.org>
15571 * comint.el (comint-mode-map): Rebind `M-r' from
15572 `comint-previous-matching-input' to
15573 `comint-history-isearch-backward-regexp'.
15574 Unbind `M-s' to allow global key binding `M-s'.
15575 Add menu items for `comint-history-isearch-backward' and
15576 `comint-history-isearch-backward-regexp'. (Bug#3746)
15578 2009-11-30 Juri Linkov <juri@jurta.org>
15580 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
15581 For def=recenter, replace `recenter' with `recenter-top-bottom'
15582 that is called with `this-command' and `last-command' let-bound
15583 to `recenter-top-bottom'. When the last `def' was not `recenter',
15584 set `recenter-last-op' to nil. (Bug#4981)
15586 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
15588 Minor cleanup and simplification.
15589 * filecache.el (file-cache-add-directory)
15590 (file-cache-add-directory-recursively)
15591 (file-cache-add-from-file-cache-buffer)
15592 (file-cache-delete-file-regexp, file-cache-delete-directory)
15593 (file-cache-files-matching-internal, file-cache-display): Use dolist.
15594 (file-cache-temp-minibuffer-message): Delete function.
15595 (file-cache-minibuffer-complete): Use minibuffer-message instead.
15597 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
15598 Don't signal an error when bumping into EOB in tr, s, or y.
15600 2009-11-29 Juri Linkov <juri@jurta.org>
15602 * startup.el (fancy-about-text): Fix wording of Guided Tour.
15605 * descr-text.el (describe-char-unidata-list): Use lowercase name
15606 for "Unicode name" like in other tags.
15608 2009-11-29 Juri Linkov <juri@jurta.org>
15610 * ediff-util.el (ediff-minibuffer-with-setup-hook):
15611 New compatibility macro.
15612 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
15614 2009-11-29 Juri Linkov <juri@jurta.org>
15616 Add defcustom to define the cycling order of `recenter-top-bottom'.
15619 * window.el (recenter-last-op): Doc fix.
15620 (recenter-positions): New defcustom.
15621 (recenter-top-bottom): Rewrite to use `recenter-positions'.
15622 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
15624 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
15626 Improve integration of Tramp and ange-ftp in eshell.
15628 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
15629 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
15630 (eshell/sudo): Flatten args. Let-bind `default-directory'.
15632 * eshell/esh-util.el (top): Require also Tramp when compiling.
15633 (eshell-directory-files-and-attributes): Check for FTP remote
15635 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
15636 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
15637 (eshell-file-attributes): Handle ".". Return `entry'.
15639 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
15640 (ange-ftp-directory-files-and-attributes)
15641 (ange-ftp-real-directory-files-and-attributes): New defuns.
15643 * net/tramp.el (tramp-maybe-open-connection): Open the remote
15644 shell with "exec" when possible. This prevents trailing prompts
15645 in `start-file-process'.
15647 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15649 Try and remove assumptions about point-min==1.
15650 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
15651 (rng-compute-mode-line-string): Show the validation percentage in
15652 terms of the narrowed text, not the widened text.
15653 (rng-do-some-validation): Don't catch internal errors when debugging.
15654 (rng-first-error): Simplify.
15655 (rng-after-change-function): Remove work around. AFAIK the bug has
15656 been fixed a while ago.
15658 * image-mode.el (image-minor-mode): Exit more gracefully when the image
15659 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
15661 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
15663 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
15664 `cd' doesn't always do it for us (bug#5067).
15666 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
15667 on 2009-10-25 as part of some other change (bug#5067).
15669 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15671 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
15673 (byte-compile-warnings): Use byte-compile-warning-types.
15674 (byte-compile-save-excursion): Warn about use of set-buffer right
15675 after save-excursion.
15677 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
15678 the excursion as well.
15680 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
15682 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
15683 providing a Tramp related implementation of "su" and "sudo".
15684 (eshell-unix-initialize): Add "su" and "sudo".
15686 2009-11-27 Daiki Ueno <ueno@unixuser.org>
15688 * net/socks.el (socks-send-command): Convert binary request to
15689 unibyte before sending. This fixes mishandling of some port
15690 numbers such as 129.
15692 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15694 * help.el (describe-bindings-internal): Remove `interactive'.
15696 * man.el (Man-completion-table): Trim a terminating "(".
15697 Remove the space between name page a section.
15698 Add the command's description on the `help-echo' property.
15699 Remove `process-connection-type' binding since it's unused by
15701 Provide completion for the "<section> <name>" format as well.
15702 (Man-default-man-entry): Remove spurious var shadowing the argument.
15704 2009-11-26 Kevin Ryde <user42@zip.com.au>
15706 * log-view.el: Add "Keywords: tools", since its other keywords
15707 aren't in finder-known-keywords, and following vc.el.
15709 * sha1.el (sha1-string-external): default-directory "/" in case
15710 otherwise non-existent. process-connection-type pipe for touch of
15711 efficiency recommended by elisp manual. (An aside in Bug#3911.)
15713 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
15715 Misc coding convention cleanups.
15716 * htmlfontify.el (hfy-init-kludge-hook): Rename from
15717 hfy-init-kludge-hooks.
15718 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
15719 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
15720 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
15722 (hfy-slant, hfy-weight): Use tables rather than code.
15723 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
15724 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
15725 (hfy-face-attr-for-class): Initialize `face-spec' directly.
15726 (hfy-face-to-css): Remove `nconc' with single arg.
15727 (hfy-p-to-face-lennart): Use `or'.
15728 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
15729 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
15730 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
15731 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
15732 (hfy-force-fontification): Use run-hooks.
15734 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
15736 Various minor fixes.
15737 * htmlfontify.el (hfy-default-header): Add toggle_invis since
15738 Javascript belongs in the header, not the body.
15739 (hfy-javascript): Remove.
15740 (hfy-fontify-buffer): Don't insert it any more.
15741 (hfy-face-at): Handle (face0 face1 face2) style face properties.
15742 Fix bug in invis handling when there were no invis props in a chunk.
15744 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
15746 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
15748 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
15750 * finder.el (finder-mode-map): Add a menu.
15752 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
15754 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
15755 "unsigned" structs.
15757 (verilog-leap-to-head, verilog-backward-token): Handle "disable
15758 fork" statement better.
15760 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
15762 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
15763 (verilog-delete-auto, verilog-delete-empty-auto-pair)
15764 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
15765 Reported by Clay Douglass.
15767 (verilog-auto-inst, verilog-auto-star-safe)
15768 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
15769 Fix removing "// Interfaces" when saving .* expansions.
15770 Reported by Pierre-David Pfister.
15772 2009-11-26 Glenn Morris <rgm@gnu.org>
15774 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
15777 2009-11-25 Johan Bockgård <bojohan@gnu.org>
15779 * vc-annotate.el (vc-annotate-revision-previous-to-line):
15780 Really use previous revision.
15782 2009-11-25 Kevin Ryde <user42@zip.com.au>
15784 * man.el (Man-completion-table): default-directory "/" in case
15785 doesn't otherwise exist. process-environment COLUMNS=999 so as
15786 not to truncate long names. process-connection-type pipe to avoid
15787 any chance of hitting the pseudo-tty TIOCGWINSZ.
15788 (man): completion-ignore-case t for friendliness and since man
15789 itself is case-insensitive on the command line.
15790 Further to Bug#3717.
15792 * arc-mode.el: Add "Keywords: files", so the details in its
15793 commentary can be reached from finder-by-keyword.
15794 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
15795 editing mode, but it's comms related and sgml-mode.el has "comm"
15797 * textmodes/bibtex-style.el: Add "Keywords: tex".
15798 * international/isearch-x.el, international/ja-dic-cnv.el:
15799 * international/ja-dic-utl.el, international/kkc.el:
15800 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
15802 2009-11-25 Juri Linkov <juri@jurta.org>
15804 * man.el (Man-completion-table): Modify regexp to include
15805 section names to completion strings. (Bug#3717)
15807 2009-11-25 Juri Linkov <juri@jurta.org>
15809 Search recursively in gzipped files. (Bug#4982)
15811 * progmodes/grep.el (grep-highlight-matches): Add new options
15812 `always' and `auto'. Doc fix.
15813 (grep-process-setup): Check `grep-highlight-matches' for
15814 `auto-detect' to determine the need to compute grep defaults.
15815 Move Windows/DOS specific --colors settings handling
15816 to `grep-compute-defaults'. Check `grep-highlight-matches'
15817 to get the value of "--color=".
15818 (grep-compute-defaults): Compute `grep-highlight-matches' when it
15819 has the value `auto-detect'. Move Windows/DOS specific settings
15820 from `grep-process-setup'.
15821 (zrgrep): New command with alias `rzgrep'.
15823 2009-11-25 Juri Linkov <juri@jurta.org>
15825 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
15826 to nil instead of switching off view-mode. (Bug#4896)
15828 2009-11-25 Juri Linkov <juri@jurta.org>
15830 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
15832 * mwheel.el (mwheel-scroll-up-function)
15833 (mwheel-scroll-down-function): New defvars.
15834 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
15835 `scroll-up', and `mwheel-scroll-down-function' instead of
15838 * doc-view.el (doc-view-scroll-up-or-next-page)
15839 (doc-view-scroll-down-or-previous-page): Add optional ARG.
15840 Use this ARG in the call to image-scroll-up/image-scroll-down.
15841 Change `interactive' spec to "P". Goto next/previous page only
15842 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
15843 SPC/DEL case). Doc fix.
15844 (doc-view-next-line-or-next-page)
15845 (doc-view-previous-line-or-previous-page): Rename arg to ARG
15847 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
15848 `doc-view-scroll-up-or-next-page', and buffer-local
15849 `mwheel-scroll-down-function' to
15850 `doc-view-scroll-down-or-previous-page'.
15852 2009-11-25 Juri Linkov <juri@jurta.org>
15854 Provide additional default values (directories at other Dired
15855 windows) via M-n in the minibuffer of some Dired commands.
15857 * dired-aux.el (dired-diff, dired-compare-directories)
15858 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
15859 `minibuffer-default' in `minibuffer-with-setup-hook'.
15860 (dired-dwim-target-directory): Find a window that displays Dired
15861 buffer instead of failing when the next window is not Dired.
15862 Use `get-window-with-predicate' to find for the next Dired window.
15863 (dired-dwim-target-defaults): New function.
15865 * ediff-util.el (ediff-read-file-name):
15866 Use `dired-dwim-target-defaults' to set `minibuffer-default'
15867 in `minibuffer-with-setup-hook'.
15869 2009-11-25 Juri Linkov <juri@jurta.org>
15871 Provide additional default values (file name at point or at the
15872 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
15874 * minibuffer.el (read-file-name-defaults): New function.
15875 (read-file-name): Reset `minibuffer-default' to nil when
15876 it duplicates initial input `insdef'.
15877 Bind `minibuffer-default-add-function' to lambda that
15878 calls `read-file-name-defaults' in `minibuffer-selected-window'.
15879 (minibuffer-insert-file-name-at-point): New command.
15881 * files.el (file-name-at-point-functions): New defcustom.
15882 (find-file-default): Remove defvar.
15883 (find-file-read-args): Don't use `find-file-default'.
15884 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
15885 to `read-file-name'.
15886 (find-file-literally): Use `read-file-name' with
15887 `confirm-nonexistent-file-or-buffer'.
15889 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
15891 * dired.el (dired-read-dir-and-switches):
15892 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
15893 to `read-file-name'.
15894 (dired-file-name-at-point): New function.
15895 (dired-mode): Add hook `dired-file-name-at-point' to
15896 `file-name-at-point-functions'.
15898 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
15900 Really make the *Completions* window soft-dedicated (bug#5030).
15901 * window.el (window--display-buffer-2): Add `dedicated' argument.
15902 (display-buffer): Pass it when needed so the dedicated flag is set
15903 after calling set-window-buffer, which would otherwise reset it.
15905 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
15907 * progmodes/meta-mode.el (meta-complete-symbol):
15908 * progmodes/etags.el (complete-tag):
15909 * mail/mailabbrev.el (mail-abbrev-complete-alias):
15910 Use completion-in-region.
15912 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
15913 (dabbrev-completion): Use completion-in-region.
15914 (dabbrev--abbrev-at-point): Simplify regexp.
15916 * abbrev.el (abbrev--before-point): Use word-motion functions
15917 if :regexp is not specified (bug#5031).
15919 * subr.el (string-prefix-p): New function.
15921 * man.el (Man-completion-cache): New var.
15922 (Man-completion-table): Use it.
15924 * vc.el (vc-print-log-internal): Make `limit' optional for better
15925 compatibility (e.g. with vc-annotate.el).
15927 2009-11-24 Kevin Ryde <user42@zip.com.au>
15929 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
15930 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
15932 * emacs-lisp/elint.el (elint-add-required-env): Better error message
15933 when .el source file not found or other error.
15935 2009-11-24 Markus Triska <markus.triska@gmx.at>
15937 * linum.el (linum-update-window): Ignore intangible (bug#4996).
15939 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
15941 Handle the [back] button properly (bug#4979).
15942 * descr-text.el (describe-text-properties): Add a `buffer' argument.
15943 Use help-setup-xref, help-buffer, and with-help-window.
15944 (describe-char): Add `buffer' argument.
15945 Pass proper command to help-setup-xref. Don't meddle with
15946 help-xref-stack-item directly.
15947 (describe-text-category): Use with-help-window and help-buffer.
15949 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
15950 for the displayed buffer (bug#4887).
15952 * man.el (Man-completion-table): New function.
15955 2009-11-24 David Reitter <david.reitter@gmail.com>
15957 * vc-git.el (vc-git-registered): Use checkout directory (where
15958 .git is) rather than the file's directory and a relative path spec
15959 to work around a bug in git.
15961 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
15963 Improve handling of processes on remote hosts.
15965 * eshell/esh-util.el (eshell-path-env): New defvar.
15966 (eshell-parse-colon-path): New defun.
15967 (eshell-file-attributes): Use `eshell-parse-colon-path'.
15969 * eshell/esh-ext.el (eshell-search-path):
15970 Use `eshell-parse-colon-path'.
15971 (eshell-remote-command): Remove argument HANDLER.
15972 (eshell-external-command): Check for FTP remote connection.
15974 * eshell/esh-proc.el (eshell-gather-process-output):
15975 Use `file-truename', in order to start also symlinked files.
15976 Apply `start-file-process' instead of `start-process'.
15977 Shorten `command' to the local file name part.
15979 * eshell/em-cmpl.el (eshell-complete-commands-list):
15980 Use `eshell-parse-colon-path'.
15982 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
15984 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
15985 to `eshell-directory-change-hook'.
15987 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
15989 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
15990 because it could be enabled automatically if view-read-only is non-nil.
15992 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
15994 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
15995 made on 2009-11-22.
15997 2009-11-24 Glenn Morris <rgm@gnu.org>
15999 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
16000 deleted variable bookmark-bmenu-bookmark-column.
16002 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
16004 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
16006 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
16008 * net/browse-url.el (browse-url-filename-alist): On Windows, add
16009 two slashes to the "file:" prefix.
16010 (browse-url-file-url): De-munge Cygwin filenames before passing
16011 them to Windows browser.
16012 (browse-url-default-windows-browser): Use call-process.
16014 2009-11-23 Juri Linkov <juri@jurta.org>
16016 Implement DocView Continuous mode. (Bug#4896)
16017 * doc-view.el (doc-view-continuous-mode): New defcustom.
16018 (doc-view-mode-map): Bind C-n/<down> to
16019 `doc-view-next-line-or-next-page', C-p/<up> to
16020 `doc-view-previous-line-or-previous-page'.
16021 (doc-view-next-line-or-next-page)
16022 (doc-view-previous-line-or-previous-page): New commands.
16024 2009-11-23 Juri Linkov <juri@jurta.org>
16026 Implement Isearch in comint input history. (Bug#3746)
16027 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
16028 `isearch-mode-hook'.
16029 (comint-history-isearch): New defcustom.
16030 (comint-history-isearch-backward)
16031 (comint-history-isearch-backward-regexp): New commands.
16032 (comint-history-isearch-message-overlay): New buffer-local variable.
16033 (comint-history-isearch-setup, comint-history-isearch-end)
16034 (comint-goto-input, comint-history-isearch-search)
16035 (comint-history-isearch-message, comint-history-isearch-wrap)
16036 (comint-history-isearch-push-state)
16037 (comint-history-isearch-pop-state): New functions.
16039 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
16041 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
16043 (tramp-handle-make-symbolic-link)
16044 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
16046 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
16047 (tramp-handle-process-file): Use it.
16049 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
16051 * window.el (move-to-window-line-last-op): Remove.
16052 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
16054 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
16056 Make M-r mirror the new cycling behavior of C-l.
16057 * window.el (move-to-window-line-last-op): New var.
16058 (move-to-window-line-top-bottom): New command.
16059 (global-map): Bind M-r move-to-window-line-top-bottom.
16061 2009-11-23 Sven Joachim <svenjoac@gmx.de>
16063 * dired-x.el (dired-guess-shell-alist-default):
16064 Support xz format. (Bug#4953)
16066 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
16068 * emulation/viper-cmd.el: Use viper-last-command-char instead of
16069 last-command-char/last-command-event.
16070 (viper-prefix-arg-value): Do correct conversion of event-char for
16073 * emulation/viper-util.el, emulation/viper.el:
16074 Use viper-last-command-char instead of
16075 last-command-char/last-command-event.
16077 * ediff-init.el, ediff-mult.el, ediff-util.el:
16078 Replace last-command-char and last-command-event
16079 with (ediff-last-command-char) everywhere.
16081 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
16082 created in fundamental mode.
16084 * ediff.el (ediff-version): Revert the change of interactive-p to
16085 called-interactively-p.
16087 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
16089 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
16090 generation from word-movement command names.
16092 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
16094 * cus-start.el (all): Add native condition for font-use-system-font.
16096 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
16098 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
16099 Correct the patch from 2009-11-18. (Bug#3910)
16101 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
16103 * progmodes/subword.el: Rename from lisp/subword.el.
16105 * subword.el: Rename to progmodes/subword.el.
16107 * Makefile.in (ELCFILES): Adapt to subword.el move.
16109 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16110 Stefan Monnier <monnier@iro.umontreal.ca>
16112 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
16113 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
16114 (bookmark-bmenu-show-filenames): Use push.
16115 (bookmark-bmenu-hide-filenames): Use local var instead of
16116 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
16117 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
16118 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
16119 filenames now that the bookmark names are always available.
16121 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16123 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
16124 (bookmark-search-pattern): Move and leave unbound.
16125 (bookmark-bmenu-mode-map): Change binding.
16126 (bookmark-read-search-input): Simplify.
16127 Don't use text-char-description. Don't error on non-char events.
16128 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
16129 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
16130 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
16131 Use a local var for the timer.
16132 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
16133 (i.e. bookmark-bmenu-search).
16135 2009-11-21 Glenn Morris <rgm@gnu.org>
16137 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
16139 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
16141 * net/browse-url.el (browse-url-default-windows-browser):
16142 Use cygstart for cygwin.
16144 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
16146 * bookmark.el: Formatting and doc fixes only:
16147 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
16148 (bookmark-bmenu-search): Wrap to fit within 80 columns.
16149 Minor grammar and punctuation fixes in doc string.
16150 (bookmark-read-search-input): Adjust to fit within 80 columns.
16152 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16154 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
16155 (c-backward-into-nomenclature): Adapt to subword renaming.
16157 * subword.el (subword-forward, subword-backward, subword-mark)
16158 (subword-kill, subword-backward-kill, subword-transpose)
16159 (subword-downcase, subword-upcase, subword-capitalize)
16160 (subword-forward-internal, subword-backward-internal):
16161 Rename from forward-subword, backward-subword, mark-subword,
16162 kill-subword, backward-kill-subword, transpose-subwords,
16163 downcase-subword, upcase-subword, capitalize-subword,
16164 forward-subword-internal, backward-subword-internal.
16166 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16168 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
16170 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
16172 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
16173 (bookmark-bmenu-filter-alist-by-regexp)
16174 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
16175 (bookmark-bmenu-search): New command.
16176 (bookmark-bmenu-mode-map): Bind it.
16178 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16180 * progmodes/cc-cmds.el: declare-functioned forward-subword and
16181 backward-subword to quit the byte-compiler.
16183 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
16185 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
16187 * progmodes/cc-cmds.el (c-update-modeline)
16188 (c-forward-into-nomenclature, c-backward-into-nomenclature):
16189 Refer to subword.el functions instead of cc-subword.el.
16191 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
16192 subword.el functions instead of cc-subword.el.
16194 * progmodes/cc-subword.el: Rename to subword.el.
16195 * subword.el: Rename from progmodes/cc-subword.el.
16196 (subword-mode-map): Rename from c-subword-mode-map.
16197 (subword-mode): Rename from c-subword-mode.
16198 (global-subword-mode): New global minor mode.
16199 (forward-subword): Rename from c-forward-subword.
16200 (backward-subword): Rename from c-backward-subword.
16201 (mark-subword): Rename from c-mark-subword.
16202 (kill-subword): Rename from c-kill-subword.
16203 (backward-kill-subword): Rename from c-backward-kill-subword.
16204 (transpose-subwords): Rename from c-tranpose-subword.
16205 (downcase-subword): Rename from c-downcase-subword.
16206 (capitalize-subword): Rename from c-capitalize-subword.
16207 (forward-subword-internal): Rename from c-forward-subword-internal.
16208 (backward-subword-internal): Rename from c-backward-subword-internal.
16210 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
16212 * vc.el (vc-deduce-fileset): Allow non-state changing operations
16213 from a dired buffer.
16214 (vc-dired-deduce-fileset): New function.
16215 (vc-root-diff, vc-print-root-log): Use it.
16217 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
16218 nil LIMIT argument to vc-print-log-internal.
16220 2009-11-20 Glenn Morris <rgm@gnu.org>
16222 * Makefile.in (ELCFILES): Regenerate.
16224 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
16226 * calc/calc.el (calc-set-mode-line):
16227 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16228 (math-format-number): Rename `math-format-complement-signed' to
16229 `math-format-twos-complement'.
16231 * calc/calc-bin.el (math-format-twos-complement): Rename from
16232 math-format-complement-signed.
16233 (calc-radix): Rename `calc-complement-signed-mode' to
16234 `calc-twos-complement-mode'.
16235 (calc-octal-radix, calc-hex-radix): Add an argument for
16238 * calc/calc-embed.el (calc-embedded-mode-vars):
16239 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16241 * calc/calc-ext.el (calc-init-extensions):
16242 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16243 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
16245 * calc/calc-units.el (math-build-units-table-buffer):
16246 Let `calc-twos-complement-mode' be nil.
16248 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
16251 * calc/calc-vec.el (calcFunc-vunpack):
16252 * calc/calc-aent.el (calc-do-calc-eval):
16253 * calc/calc-forms.el (math-format-date):
16254 * calc/calc-graph.el (calc-graph-plot):
16255 * calc/calc-math.el (math-use-emacs-fn):
16256 * calc/calccomp.el (math-compose-expr):
16257 Let `calc-twos-complement-mode' be nil.
16259 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16261 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
16262 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
16263 * minibuffer.el (completion-in-region-functions): New hook.
16264 (completion-in-region): New function.
16265 * emacs-lisp/lisp.el (lisp-complete-symbol):
16266 * pcomplete.el (pcomplete-std-complete): Use it.
16268 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16270 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
16271 (latex-complete-alist): New vars.
16272 (latex-string-prefix-p, latex-complete-bibtex-keys)
16273 (latex-complete-envnames, latex-complete-refkeys)
16274 (latex-complete-data): New functions.
16275 (latex-complete, latex-indent-or-complete): New commands.
16277 * window.el (display-buffer-mark-dedicated): New var.
16278 (display-buffer): Obey it.
16279 * minibuffer.el (minibuffer-completion-help): Use it.
16281 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
16283 * filecache.el (file-cache-add-file): Use push and cons.
16284 (file-cache-delete-file-regexp): Use push.
16285 (file-cache-complete): Use completion-in-region.
16287 * simple.el (with-wrapper-hook): Fix thinko.
16289 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
16290 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
16291 Use with-current-buffer and string-to-number.
16292 (hfy-fallback-colour-values): Use assoc-string.
16293 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
16294 (hfy-face-at): Remove unused var `found-face'.
16295 (hfy-compile-stylesheet): Remove unused var `css'.
16296 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
16298 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
16299 Use with-current-buffer.
16300 (hfy-text-p): Use expand-file-name and fewer setq.
16302 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
16304 * htmlfontify.el, hfy-cmap.el: New files.
16306 2009-11-19 Juri Linkov <juri@jurta.org>
16308 * minibuffer.el (completions-format): New defcustom.
16309 (completion--insert-strings): Implement vertical format.
16311 * simple.el (switch-to-completions): Move point to the first
16312 completion when point was at the beginning of the buffer.
16314 2009-11-19 Juri Linkov <juri@jurta.org>
16316 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
16318 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
16320 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
16322 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
16323 (mail-signature): Change default to t.
16324 (mail-from-style): Deprecate `system-default' value.
16325 (mail-insert-from-field): For default value of mail-from-style,
16326 default to `angles' unless `angles' needs quoting and `parens'
16328 (mail-citation-prefix-regexp): Use citation regexp from
16331 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
16333 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
16334 Set variables for computing the prompt for reading password.
16336 2009-11-19 Glenn Morris <rgm@gnu.org>
16338 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
16340 * textmodes/flyspell.el (sgml-lexical-context): Declare.
16342 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
16343 (newsticker-treeview-listwindow-height): Fix custom type.
16345 2009-11-19 Kenichi Handa <handa@m17n.org>
16347 * descr-text.el (describe-char-padded-string): Compose with TAB
16348 only if there's a font for CH.
16349 (describe-char): Fix the condition for detecting a trivial composition.
16351 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
16353 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
16354 more accurate version of the regexp. (Bug#3910)
16356 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
16358 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
16360 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
16362 * font-setting.el (font-use-system-font): Declare for byte-compiler.
16363 (font-setting-change-default-font): Fix typo in docstring.
16365 2009-11-18 Alan Mackenzie <acm@muc.de>
16367 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
16369 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16371 * font-setting.el (font-use-system-font): Move ...
16373 * cus-start.el (all): ... to here.
16375 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
16377 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
16378 Don't set `ad-return-value' if `ad-do-it' doesn't.
16380 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
16383 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16385 * menu-bar.el: Put "Use system font" in Option-menu.
16386 (menu-bar-options-save): Add font-use-system-font.
16388 * loadup.el: If feature system-font-setting or font-render-setting is
16389 there, load font-setting.
16391 * Makefile.in (ELCFILES): Add font-settings.el.
16392 * font-setting.el: New file.
16394 2009-11-17 Glenn Morris <rgm@gnu.org>
16396 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
16398 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
16399 Preserve point in the list buffer. (Bug#4939)
16401 (newsticker--treeview-list-update-highlight)
16402 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
16404 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16406 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
16409 * calc/calc-ext.el (calc-init-extensions): Remove references to
16412 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
16414 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
16415 * calc/calc-help.el (calc-b-prefix-help): Remove references to
16418 2009-11-16 Kevin Ryde <user42@zip.com.au>
16420 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
16421 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
16423 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
16424 (lm-keywords-list): Allow comma-only separator like "foo,bar".
16425 Ignore trailing spaces by omit-nulls to split-string (fixing
16426 regression from Emacs 21 due to the incompatible split-string
16427 change). (Bug #4928.)
16429 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
16431 * vc.el (vc-log-show-limit): Default to 2000.
16432 (vc-print-log-internal): Insert buttons to request more entries
16433 when limiting the output.
16435 * vc-sccs.el (vc-sccs-print-log):
16436 * vc-rcs.el (vc-rcs-print-log):
16437 * vc-cvs.el (vc-cvs-print-log):
16438 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
16441 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
16443 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
16444 error when `tramp-gvfs-dbus-event-vector' is set.
16445 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
16447 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
16449 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
16451 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
16453 * net/dbus.el (dbus-unregister-service): New defun.
16454 (dbus-register-property): Register the handlers of
16455 "org.freedesktop.DBus.Properties" for SERVICE.
16456 (dbus-property-handler): Fix docstring.
16458 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16460 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
16461 Quote doc string reference in defvaralias as it is not in special form.
16462 (byte-compile-output-docform): Doc fix.
16464 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16466 * calc/calc.el (math-2-word-size, math-half-2-word-size)
16467 (calc-complement-signed-mode): New variables.
16468 (calc-set-mode-line): Add indicator for twos-complements.
16469 (math-format-number): Format twos-complement notation.
16471 * calc/calc-bin.el (calc-word-size): Reset the variables
16472 `math-2-word-size' and `math-half-2-word-size'.
16473 (math-format-complement-signed, math-symclip, calcFunc-symclip)
16474 (calc-symclip): New functions.
16476 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
16478 * calc/calc-embed.el (calc-embedded-mode-vars):
16479 Add `calc-complement-signed-mode' to the list of modes.
16481 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
16482 (calc-b-oper-keys): Add `calc-symclip' to list.
16484 * calc/calc-ext.el (math-read-number-fancy): Read complement
16486 (calc-init-extensions): Add binding for `calc-symclip'.
16487 Add autoload for `calcFunc-symclip' and `calc-symclip'.
16489 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
16491 (calc-modes-menu): Add item for twos complement mode.
16493 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
16495 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
16497 * register.el (jump-to-register, insert-register): Handle Semantic
16498 tags. From commented-out advice in semantic/senator.el.
16500 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
16502 * vc.el (vc-log-show-limit): New variable.
16503 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
16504 when using a prefix argument.
16505 (vc-print-log-internal): Add new argument LIMIT.
16507 * vc-svn.el (vc-svn-print-log):
16508 * vc-mtn.el (vc-mtn-print-log):
16509 * vc-hg.el (vc-hg-print-log):
16510 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
16511 pass it to the log command when set. Make the BUFFER argument
16514 * vc-sccs.el (vc-sccs-print-log):
16515 * vc-rcs.el (vc-rcs-print-log):
16516 * vc-git.el (vc-git-print-log):
16517 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
16518 ignore it. Make the BUFFER argument non-optional.
16520 * bindings.el (mode-line-buffer-identification): Do not purecopy.
16522 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
16524 * dired.el (dired-mode-map): Move encryption items to "Operate"
16527 * strokes.el (strokes-update-window-configuration): Make strokes
16528 buffer current before erasing (Bug#4906).
16530 2009-11-15 Juri Linkov <juri@jurta.org>
16532 * simple.el (set-mark-default-inactive): Add :type, :group
16533 and :version. (Bug#4876)
16535 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
16537 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
16538 (archive-unique-fname): ... here. (Bug#4929)
16540 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
16542 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
16545 * novice.el (disabled-command-function): Add useful args.
16546 Setup the help buffer so that [back] works.
16547 Remove redundant call to help-mode.
16548 (disabled-command-function): Use `case'.
16549 (en/disable-command): New function extracted from enable-command.
16550 (enable-command, disable-command): Use it.
16552 2009-11-14 Glenn Morris <rgm@gnu.org>
16554 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
16555 constants. (Bug#4913)
16557 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
16559 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
16561 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
16562 defined in C that have no doc-strings. (Bug#1063)
16564 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
16566 * cus-edit.el (data, files):
16567 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
16569 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
16571 * simple.el (shell-command): Doc fix (Bug#4891).
16573 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
16575 2009-11-14 Glenn Morris <rgm@gnu.org>
16577 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
16578 statements for vc-diff, emerge-quit, and rmail-cease-edit.
16579 If they are already loaded, eval-after-load will do the right thing.
16581 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
16584 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
16586 * simple.el (x-selection-owner-p): Declare.
16587 (read-mail-command): Use custom radio type rather than choice.
16588 (completion-no-auto-exit): Doc fix.
16590 * custom.el (defgroup):
16591 * epg-config.el (epg): Doc fixes.
16593 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
16595 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
16596 * international/ccl.el (define-ccl-program): Do not purecopy the
16597 docstring, defconst does it anyway.
16599 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16601 * add-log.el (add-change-log-entry): Avoid displaying the changelog
16604 * x-dnd.el (x-dnd-maybe-call-test-function):
16605 * window.el (split-window-vertically):
16606 * whitespace.el (whitespace-help-on):
16607 * vc-rcs.el (vc-rcs-consult-headers):
16608 * userlock.el (ask-user-about-lock-help)
16609 (ask-user-about-supersession-help):
16610 * type-break.el (type-break-force-mode-line-update):
16611 * time-stamp.el (time-stamp-conv-warn):
16612 * terminal.el (te-set-output-log, te-more-break, te-filter)
16613 (te-sentinel, terminal-emulator):
16614 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
16615 (term-write-input-ring, term-check-source, term-start-output-log):
16616 (term-display-buffer-line, term-dynamic-list-completions):
16617 (term-ansi-make-term, serial-term):
16618 * subr.el (selective-display):
16619 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16620 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
16621 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
16622 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
16623 (speedbar-remove-localized-speedbar-support)
16624 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
16625 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
16626 (speedbar-buffers-line-directory):
16627 * simple.el (shell-command-on-region, append-to-buffer)
16628 (prepend-to-buffer):
16629 * shadowfile.el (shadow-save-todo-file):
16630 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
16631 (scroll-bar-maybe-set-window-start):
16632 * sb-image.el (speedbar-image-dump):
16633 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
16634 (load-save-place-alist-from-file):
16635 * ps-samp.el (ps-print-message-from-summary):
16636 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
16637 (ps-background-image, ps-begin-job, ps-do-despool):
16638 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
16639 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
16640 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
16641 (pr-call-process, pr-file-list, pr-interface-save):
16642 * novice.el (disabled-command-function)
16643 (enable-command, disable-command):
16644 * mouse.el (mouse-buffer-menu-alist):
16645 * mouse-copy.el (mouse-kill-preserving-secondary):
16646 * macros.el (kbd-macro-query):
16647 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
16648 * informat.el (batch-info-validate):
16649 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
16650 * hippie-exp.el (try-expand-dabbrev-visible):
16651 * help-mode.el (help-make-xrefs):
16652 * help-fns.el (describe-variable):
16653 * generic-x.el (bat-generic-mode-run-as-comint):
16654 * finder.el (finder-mouse-select):
16655 * find-dired.el (find-dired-sentinel):
16656 * filesets.el (filesets-file-close):
16657 * files.el (list-directory):
16658 * faces.el (list-faces-display, describe-face):
16659 * facemenu.el (list-colors-display):
16660 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
16661 * epg.el (epg--process-filter, epg-cancel):
16662 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
16663 (epa--read-signature-type):
16664 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
16665 (emerge-file-names):
16666 * ehelp.el (electric-helpify):
16667 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
16668 * ediff-vers.el (rcs-ediff-view-revision):
16669 * ediff-util.el (ediff-setup):
16670 * ediff-mult.el (ediff-append-custom-diff):
16671 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
16673 * echistory.el (Electric-command-history-redo-expression):
16674 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
16675 * disp-table.el (describe-display-table):
16676 * dired.el (dired-find-buffer-nocreate):
16677 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
16678 * dabbrev.el (dabbrev--same-major-mode-p):
16679 * chistory.el (list-command-history):
16680 * apropos.el (apropos-documentation):
16681 * allout.el (allout-obtain-passphrase):
16682 (allout-copy-exposed-to-buffer):
16683 (allout-verify-passphrase): Use with-current-buffer.
16685 2009-11-13 Glenn Morris <rgm@gnu.org>
16687 * Makefile.in (ELCFILES): Regenerate.
16689 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
16691 * net/dbus.el (dbus-registered-objects-table): Rename from
16692 `dbus-registered-functions-table', because it contains also properties.
16693 (dbus-unregister-object): Unregister also properties.
16694 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
16695 Use a timeout of 500 msec, in order to not block.
16696 (dbus-register-property, dbus-property-handler): New defuns.
16698 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16700 * simple.el (minibuffer-default-add-completions): Drop deprecated
16703 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
16705 * textmodes/artist.el (artist-mouse-choose-operation):
16706 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
16707 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
16708 (artist-compute-up-event-key): New function.
16709 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
16711 2009-11-13 Kenichi Handa <handa@m17n.org>
16713 * language/japan-util.el: Make sure that the value of jisx0208
16714 property is jisx0208 character.
16716 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
16718 * international/mule.el (auto-coding-regexp-alist): Only purecopy
16719 car or each item, not the whole list.
16721 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
16723 * minibuffer.el (minibuffer-completion-help):
16724 Use minibuffer-hide-completions.
16726 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
16728 * dired.el (dired-save-positions, dired-restore-positions): New funs.
16729 (dired-revert): Use them (bug#4880).
16731 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16733 * tooltip.el (tooltip-frame-parameters): Undo previous change.
16735 2009-11-12 Juri Linkov <juri@jurta.org>
16737 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
16739 (find-file-literally-at-point): Alias of `ffap-literally'.
16741 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16743 * textmodes/ispell.el (ispell-skip-region-alist):
16744 * textmodes/css-mode.el (auto-mode-alist):
16745 * progmodes/compile.el (auto-mode-alist):
16746 * international/mule.el (ctext-non-standard-encodings-alist)
16747 (ctext-non-standard-encodings-regexp):
16748 * simple.el (shell-command-switch, text-read-only):
16749 * replace.el (occur-mode-map):
16750 * paths.el (rmail-file-name):
16751 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
16752 * find-file.el (ff-special-constructs):
16753 * files.el (file-name-handler-alist):
16754 * composite.el: Purecopy strings.
16756 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
16758 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
16760 * widget.el (define-widget): Purecopy the docstring.
16761 * international/mule-cmds.el (charset): Do not purecopy the
16762 docstring here, define-widget does it.
16764 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
16765 * textmodes/bibtex-style.el (auto-mode-alist):
16766 * progmodes/inf-lisp.el (inferior-lisp-prompt):
16767 * progmodes/compile.el (compile-command):
16768 * language/korea-util.el (default-korean-keyboard):
16769 * international/mule-conf.el (file-coding-system-alist):
16770 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
16771 * tooltip.el (tooltip-frame-parameters):
16772 * newcomment.el (comment-end, comment-padding):
16773 * dired.el (dired-trivial-filenames):
16774 * comint.el (comint-file-name-prefix): Purecopy initial values.
16776 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
16778 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
16779 (tramp-advice-minibuffer-electric-tilde): Unload advices via
16781 (tramp-advice-make-auto-save-file-name)
16782 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
16783 after removing the advice.
16785 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
16787 * progmodes/grep.el (grep-regexp-alist):
16788 * international/mule-cmds.el (iso-2022-control-alist):
16789 * emacs-lisp/timer.el (timer-duration-words):
16790 * subr.el (version-separator, version-regexp-alist):
16791 * minibuffer.el (completion-styles-alist):
16792 * faces.el (face-attribute-name-alist, list-faces-sample-text):
16793 Change defvars to defconsts.
16795 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
16796 * loadup.el ("international/mule-conf"): Load the byte compiled version.
16797 * international/mule-conf.el: Allow to be byte compiled.
16799 * international/mule.el (define-charset): Purecopy props.
16800 (load-with-code-conversion): Purecopy doc string and file name.
16801 (put-charset-property): Purecopy strings.
16802 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
16804 * international/mule-cmds.el (register-input-method): Purecopy arguments.
16805 (define-char-code-property): Correctly purecopy the table.
16807 * international/ccl.el (define-ccl-program): Purecopy the docstring.
16809 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
16811 * subr.el (add-hook): Purecopy strings.
16812 (eval-after-load): Purecopy load-history-regexp and the form.
16814 * custom.el (custom-declare-group): Purecopy load-file-name.
16816 * subr.el (menu-bar-separator): New defconst.
16817 * net/eudc.el (eudc-tools-menu):
16818 * international/mule-cmds.el (set-coding-system-map)
16819 (mule-menu-keymap):
16820 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
16821 * vc-hooks.el (vc-menu-map):
16822 * replace.el (occur-mode-map):
16823 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
16824 (menu-bar-edit-menu, menu-bar-goto-menu)
16825 (menu-bar-custom-menu, menu-bar-showhide-menu)
16826 (menu-bar-options-menu, menu-bar-tools-menu)
16827 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
16828 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
16829 (menu-bar-help-menu):
16830 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
16831 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
16833 * term/x-win.el (x-gtk-stock-map):
16834 * progmodes/vera-mode.el (auto-mode-alist):
16835 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
16836 (inferior-lisp-program, inferior-lisp-load-command):
16837 * progmodes/hideshow.el (hs-special-modes-alist):
16838 * progmodes/gud.el (same-window-regexps):
16839 * progmodes/grep.el (grep-program, find-program, xargs-program):
16840 * net/telnet.el (same-window-regexps):
16841 * net/rlogin.el (same-window-regexps):
16842 * language/ethiopic.el (font-ccl-encoder-alist):
16843 * vc-sccs.el (vc-sccs-master-templates):
16844 * vc-rcs.el (vc-rcs-master-templates):
16845 * subr.el (cl-assertion-failed):
16846 * simple.el (next-error-overlay-arrow-position):
16847 * lpr.el (lpr-command):
16848 * locate.el (locate-ls-subdir-switches):
16849 * info.el (same-window-regexps, info)
16850 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
16851 * image-mode.el (image-mode, auto-mode-alist):
16852 * hippie-exp.el (hippie-expand-ignore-buffers):
16853 * format.el (format-alist):
16854 * find-dired.el (find-ls-subdir-switches, find-grep-options)
16856 * facemenu.el (facemenu-keybindings):
16857 * dired.el (dired-listing-switches, dired-chown-program):
16858 * diff.el (diff-switches, diff-command):
16859 * cus-edit.el (same-window-regexps):
16860 * bindings.el (mode-line-mule-info)
16861 (mode-line-buffer-identification): Purecopy strings.
16863 2009-11-11 Juri Linkov <juri@jurta.org>
16865 * simple.el (dired-get-filename) <declare-function>:
16866 Tell the byte-compiler about dired-get-filename.
16867 (shell-command): In Dired mode, get filename from the current line
16868 as the default value.
16870 2009-11-10 Glenn Morris <rgm@gnu.org>
16872 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
16873 * calendar/holidays.el, progmodes/cperl-mode.el:
16874 Update x-popup-menu declarations.
16876 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
16877 (list-load-path-shadows): Use dolist.
16878 (list-load-path-shadows): Use with-current-buffer.
16880 2009-11-10 Juri Linkov <juri@jurta.org>
16882 * minibuffer.el (read-file-name): Support a list of default values
16883 in `default-filename'. Use the first file name where only one
16884 element is required. Doc fix.
16886 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
16888 * net/dbus.el (dbus-unregister-object): Release service, if no
16889 other method is registered for it.
16891 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
16893 * bookmark.el (bookmark-completing-read): Sort bookmark names if
16894 bookmark-sort-flag is non-nil (Bug#4653).
16896 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
16898 * emulation/cua-base.el: Add CUA property to some CC mode commands
16901 2009-11-08 Kevin Ryde <user42@zip.com.au>
16903 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
16904 at end of sentence (Bug#4818).
16906 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
16908 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16909 Handle "see declaration of" MSFT statements (Bug#4100).
16911 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
16913 * net/tramp.el (tramp-advice-make-auto-save-file-name)
16914 (tramp-advice-file-expand-wildcards): Unload via
16915 `ad-remove-advice'.
16917 * net/trampver.el: Update release number.
16919 2009-11-08 Kevin Ryde <user42@zip.com.au>
16921 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
16924 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
16926 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
16927 in order to keep context in SELinux.
16929 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
16931 * dired-aux.el (dired-query): Place cursor in echo area and allow
16934 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
16935 menu item if not on a directory (Bug#4701).
16937 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
16939 Sync with Tramp 2.1.17.
16941 * net/tramp.el (tramp-handle-copy-directory): Don't use
16942 `file-remote-p' (due to compatibility).
16944 * net/tramp-compat.el (tramp-compat-copy-directory)
16945 (tramp-compat-delete-directory): New defuns.
16947 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
16948 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
16949 Use `tramp-compat-delete-directory'.
16951 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
16952 (tramp-smb-handle-delete-directory):
16953 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
16955 * net/trampver.el: Update release number.
16957 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
16959 * tar-mode.el (tar-copy): Call write-region on the right buffer
16962 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
16963 by hand, if necessary (Bug#4878).
16965 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
16967 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
16968 align size column (Bug#4839).
16970 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
16973 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
16975 * progmodes/ld-script.el (auto-mode-alist):
16976 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
16978 * cus-face.el (custom-declare-face): Purecopy face spec.
16980 2009-11-06 Kenichi Handa <handa@m17n.org>
16982 * international/uni-bidi.el: Re-generated.
16983 * international/uni-category.el: Re-generated.
16984 * international/uni-combining.el: Re-generated.
16985 * international/uni-mirrored.el: Re-generated.
16987 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
16989 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
16990 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
16991 (tex-start-options, slitex-run-command, latex-run-command)
16992 (tex-run-command, tex-directory):
16993 * textmodes/ispell.el (ispell-html-skip-alists)
16994 (ispell-tex-skip-alists, ispell-tex-skip-alists):
16995 * textmodes/fill.el (adaptive-fill-first-line-regexp):
16996 (adaptive-fill-regexp):
16997 * textmodes/dns-mode.el (auto-mode-alist):
16998 * progmodes/python.el (interpreter-mode-alist):
16999 * progmodes/etags.el (tags-compression-info-list):
17000 * progmodes/etags.el (tags-file-name):
17001 * net/browse-url.el (browse-url-galeon-program)
17002 (browse-url-firefox-program):
17003 * mail/sendmail.el (mail-signature-file)
17004 (mail-citation-prefix-regexp):
17005 * international/mule-conf.el (eight-bit):
17006 * international/latexenc.el (latex-inputenc-coding-alist):
17007 * international/fontset.el (x-pixel-size-width-font-regexp):
17008 * emacs-lisp/warnings.el (warning-type-format):
17009 * emacs-lisp/trace.el (trace-buffer):
17010 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
17011 (emacs-lisp-mode-map):
17012 * calendar/holidays.el (holiday-solar-holidays)
17013 (holiday-bahai-holidays, holiday-islamic-holidays)
17014 (holiday-christian-holidays, holiday-hebrew-holidays)
17015 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
17016 (hebrew-holidays-1, holiday-oriental-holidays)
17017 (holiday-general-holidays):
17018 * x-dnd.el (x-dnd-known-types):
17019 * tool-bar.el (tool-bar):
17020 * startup.el (site-run-file):
17021 * shell.el (shell-dumb-shell-regexp):
17022 * rfn-eshadow.el (file-name-shadow-tty-properties)
17023 (file-name-shadow-properties):
17024 * paths.el (remote-shell-program, news-directory):
17025 * mouse.el ([C-down-mouse-3]):
17026 * menu-bar.el (menu-bar-tools-menu):
17027 * jka-cmpr-hook.el (jka-compr-load-suffixes)
17028 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
17029 (jka-compr-compression-info-list):
17030 * isearch.el (search-whitespace-regexp):
17031 * image-file.el (image-file-name-extensions):
17032 * find-dired.el (find-ls-option):
17033 * files.el (directory-listing-before-filename-regexp)
17034 (directory-free-space-args, insert-directory-program)
17035 (list-directory-brief-switches, magic-fallback-mode-alist)
17036 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
17037 (automount-dir-prefix):
17038 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
17039 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
17040 (face-font-registry-alternatives, face-font-registry-alternatives)
17041 (face-font-family-alternatives):
17042 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
17043 (facemenu-foreground-menu, facemenu-face-menu):
17044 * epa-hook.el (epa-file-name-regexp):
17045 * dnd.el (dnd-protocol-alist):
17046 * textmodes/rst.el (auto-mode-alist):
17047 * button.el (default-button): Purecopy strings.
17049 2009-11-06 Glenn Morris <rgm@gnu.org>
17051 * Makefile.in (ELCFILES): Update.
17053 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
17055 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
17056 * emacs-lisp/levents.el: Move to obsolete/levents.el.
17058 * nxml/xsd-regexp.el (xsdre-gen-categories):
17059 * nxml/xmltok.el (xmltok-parse-entity):
17060 * nxml/rng-parse.el (rng-parse-validate-file):
17061 * nxml/rng-maint.el (rng-format-manual)
17062 (rng-manual-output-force-new-line):
17063 * nxml/rng-loc.el (rng-save-schema-location-1):
17064 * nxml/rng-cmpct.el (rng-c-parse-file):
17065 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
17066 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
17068 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
17070 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
17071 Remove extra save-excursions and make-variable-buffer-local's.
17072 Suggested by Stefan Monnier.
17074 (verilog-getopt-file, verilog-module-inside-filename-p)
17075 (verilog-set-define): Merge GNU 1.35 and repair changes from
17076 switching to using with-current-buffer.
17078 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
17079 being treated as a number and confusing AUTORESET.
17080 Reported by Dan Dever.
17082 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
17083 Add verilog-auto-ignore-concat to fix backward compatibility with
17084 older verilog-modes. Reported by Dan Katz.
17086 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
17087 containing closing anchors "...$".
17089 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
17090 Reported by Wade Smith.
17092 (verilog-batch-execute-func): Comment on function usage.
17094 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
17096 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
17099 (verilog-label-re, verilog-calc-1): Support proper indent of named
17102 (verilog-backward-token, verilog-basic-complete-re)
17103 (verilog-beg-of-statement, verilog-indent-re): Support proper
17104 indent of the assert statement at the beginning of a block of text.
17106 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
17107 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
17110 2009-11-05 Glenn Morris <rgm@gnu.org>
17112 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
17113 Emacs 19. (Bug#1531)
17114 (byte-compile-fix-header): Update for the above change.
17115 Drop test for epoch::version.
17117 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
17118 * cus-dep.el (custom-make-dependencies):
17119 * finder.el (finder-compile-keywords):
17120 Use autoload-rubric's feature argument.
17122 * calendar/diary-lib.el (top-level): Make load behave more like require.
17124 * vc-git.el (vc-git-stash-map): Move definition before use.
17126 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
17128 * custom.el (custom-declare-group): Purecopy standard-value.
17129 (custom-declare-group): Purecopy custom-prefix.
17131 * international/mule.el (load-with-code-conversion):
17132 Call do-after-load-evaluation unconditionally.
17134 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
17136 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
17138 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
17140 2009-11-04 Glenn Morris <rgm@gnu.org>
17142 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
17143 (byte-compile-compatibility): Remove option.
17144 (byte-compile-close-variables, byte-compile-fix-header)
17145 (byte-compile-insert-header, byte-compile-output-docform)
17146 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
17147 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
17148 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
17149 (byte-compile-insert, byte-compile-defun):
17150 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
17151 (byte-defop-compiler19): Remove.
17152 Without byte-compile-compatibility, the 'emacs19-opcode property is not
17153 used by anything. Replace all calls with byte-defop-compiler.
17155 2009-11-04 Juri Linkov <juri@jurta.org>
17157 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
17158 (menu-bar-options-menu): Don't quote the `prop' arg of
17159 `menu-bar-make-mm-toggle'.
17161 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
17163 * calendar/calendar.el (cal-loaddefs):
17164 * calendar/diary-lib.el (diary-loaddefs):
17165 * calendar/holidays.el (hol-loaddefs):
17166 * eshell/esh-module.el (esh-groups): Load rather than require.
17168 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17170 * calendar/todo-mode.el (todo-add-category): Don't hardcode
17172 (todo-top-priorities): Only display-buffer when called interactively.
17173 (todo-item-start): Don't save excursion point.
17174 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
17175 (todo-insert-item-here, todo-file-item, todo-remove-item):
17176 Adjust uses of todo-item-start and todo-item-end.
17178 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
17179 (autoload-rubric): Don't use any more.
17181 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
17182 and only put a prop if it is non-nil.
17184 2009-11-03 Juri Linkov <juri@jurta.org>
17186 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
17187 (menu-bar-options-menu): Fix list quoting (Bug#4429).
17189 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
17190 and "Menu" to make top-level menu item visually one unit (like
17191 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
17192 multi-word menu items). Fix :help string for quit-window.
17194 2009-11-03 Glenn Morris <rgm@gnu.org>
17196 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
17197 (byte-compile-file-form-define-abbrev-table)
17198 (byte-compile-file-form-custom-declare-variable)
17199 (byte-compile-variable-ref, byte-compile-defvar):
17200 Whether or not a warning is enabled should only affect whether we issue
17201 the warning, not whether or not we collect the relevant data.
17202 Eg warnings can be turned on and off throughout the course of a file.
17204 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
17205 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
17207 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17209 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
17210 * play/mpuz.el (mpuz-create-buffer):
17211 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
17212 (lm-print-y,s,noise, lm-print-w0, lm-init):
17213 * play/gomoku.el (gomoku-prompt-for-move):
17214 * play/fortune.el (fortune-in-buffer):
17215 * play/dissociate.el (dissociated-press):
17216 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
17217 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
17218 * mail/supercite.el (sc-eref-show):
17219 * mail/smtpmail.el (smtpmail-send-it):
17220 * mail/rmailsum.el (rmail-summary-next-labeled-message)
17221 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
17222 (rmail-summary-undelete-many, rmail-summary-rmail-update)
17223 (rmail-summary-goto-msg, rmail-summary-expunge)
17224 (rmail-summary-get-new-mail, rmail-summary-search-backward)
17225 (rmail-summary-add-label, rmail-summary-output-menu)
17226 (rmail-summary-output-body):
17227 * mail/rfc822.el (rfc822-addresses):
17228 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
17229 * mail/mailpost.el (post-mail-send-it):
17230 * mail/hashcash.el (hashcash-generate-payment):
17231 * mail/feedmail.el (feedmail-run-the-queue)
17232 (feedmail-queue-send-edit-prompt-help-first)
17233 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
17234 (feedmail-deduce-address-list):
17235 * eshell/esh-ext.el (eshell-remote-command):
17236 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
17237 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
17238 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
17239 (viper-save-string-in-file, viper-valid-marker):
17240 * emulation/viper-keym.el (viper-toggle-key):
17241 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
17242 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
17243 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
17244 * emulation/viper-cmd.el (viper-exec-form-in-vi)
17245 (viper-exec-form-in-emacs, viper-brac-function):
17246 * emulation/viper.el (viper-delocalize-var):
17247 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
17248 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
17249 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
17250 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
17251 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
17252 * emulation/edt.el (edt-electric-helpify):
17253 * emulation/cua-rect.el (cua--rectangle-aux-replace):
17254 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
17255 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
17256 (cua-indent-to-global-mark-column):
17257 * calendar/diary-lib.el (calendar-mark-1):
17258 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
17259 Use with-current-buffer.
17260 * emulation/viper.el (viper-delocalize-var): Use dolist.
17262 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
17264 * comint.el (comint-replace-by-expanded-history-before-point):
17265 Replace !! with the previous input string literally (Bug#1795).
17267 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
17269 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
17270 to be made up of whitespace.
17272 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
17274 * minibuffer.el (read-file-name): Don't use file dialogs for
17275 remote directories (Bug#99).
17277 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
17279 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
17281 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
17283 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
17284 instead of deleting the window or frame.
17286 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
17288 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
17289 Support face colors.
17291 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
17292 New function. Support face colors (Bug#1168).
17293 (tex-common-initialization): Use it.
17295 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
17296 mode allows it (Bug#1168).
17298 2009-10-31 Juri Linkov <juri@jurta.org>
17300 * facemenu.el (list-colors-display): Don't mark buffer as
17301 modified (Bug#3948).
17303 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
17305 * international/mule-diag.el (list-character-sets-1):
17306 Minor message fix (Bug#3526).
17308 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
17309 Fix face property (Bug#4834).
17310 (etags-list-tags, etags-tags-apropos-additional)
17311 (etags-tags-apropos, tags-select-tags-table): Add follow-link
17314 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
17317 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
17319 * textmodes/two-column.el (2C-split):
17320 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
17321 * textmodes/tex-mode.el (tex-set-buffer-directory):
17322 * textmodes/spell.el (spell-region, spell-string):
17323 * textmodes/reftex.el (reftex-erase-buffer):
17324 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
17325 * textmodes/reftex-toc.el (reftex-toc-promote-action):
17326 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
17327 (reftex-select-item):
17328 * textmodes/reftex-ref.el (reftex-label-info-update)
17329 (reftex-offer-label-menu):
17330 * textmodes/reftex-index.el (reftex-index-change-entry)
17331 (reftex-index-phrases-info):
17332 * textmodes/reftex-global.el (reftex-create-tags-file)
17333 (reftex-save-all-document-buffers, reftex-ensure-write-access):
17334 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
17335 (reftex-view-crossref-from-bibtex):
17336 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
17337 (reftex-extract-bib-entries-from-thebibliography)
17338 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
17339 * textmodes/refbib.el (r2b-capitalize-title):
17340 (r2b-convert-buffer, r2b-help):
17341 * textmodes/page-ext.el (pages-directory)
17342 (pages-directory-goto-with-mouse):
17343 * textmodes/bibtex.el (bibtex-validate-globally):
17344 * textmodes/bib-mode.el (bib-capitalize-title):
17345 * textmodes/artist.el (artist-clear-buffer, artist-system):
17346 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
17347 (local-set-scheme-interaction-buffer, xscheme-process-filter)
17348 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
17349 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
17350 (xscheme-send-control-g-interrupt, xscheme-start-process)
17351 (xscheme-process-sentinel, xscheme-cd):
17352 * progmodes/verilog-mode.el (verilog-read-always-signals)
17353 (verilog-set-define, verilog-getopt-file)
17354 (verilog-module-inside-filename-p):
17355 * progmodes/sh-script.el:
17356 * progmodes/python.el (python-pdbtrack-get-source-buffer)
17357 (python-pdbtrack-grub-for-buffer, python-execute-file):
17358 * progmodes/octave-inf.el (inferior-octave):
17359 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
17360 (idlwave-shell-compile-helper-routines, idlwave-set-local)
17361 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
17362 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
17363 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
17364 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
17365 (idlwave-shell-filter, idlwave-shell-examine-highlight)
17366 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
17367 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
17368 (idlwave-shell-examine-display, idlwave-shell-run-region)
17369 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
17370 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
17371 * progmodes/idlw-help.el (idlwave-help-get-special-help)
17372 (idlwave-help-get-help-buffer):
17373 * progmodes/gud.el (gud-basic-call, gud-find-class)
17374 (gud-tooltip-activate-mouse-motions-if-enabled):
17375 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
17376 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
17377 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
17378 (ebrowse-tags-next-file):
17379 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
17380 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
17381 (ebnf-eps-finish-and-write):
17382 * progmodes/cpp.el (cpp-edit-save):
17383 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
17384 * progmodes/cc-defs.el (c-emacs-features):
17385 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
17386 (antlr-directory-dependencies):
17387 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
17388 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
17389 (ada-find-any-references, ada-make-filename-from-adaname)
17390 (ada-make-body-gnatstub):
17391 * obsolete/rnews.el (news-list-news-groups):
17392 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
17393 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
17394 * net/rcirc.el (rcirc-debug):
17395 * net/newst-treeview.el (newsticker--treeview-list-add-item)
17396 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
17397 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
17398 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
17399 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
17400 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
17401 (newsticker--treeview-list-clear-highlight)
17402 (newsticker--treeview-list-update-highlight)
17403 (newsticker--treeview-list-highlight-start)
17404 (newsticker--treeview-tree-update-highlight)
17405 (newsticker--treeview-get-selected-item)
17406 (newsticker-treeview-mark-list-items-old)
17407 (newsticker--treeview-set-current-node):
17408 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
17409 * net/newst-backend.el (newsticker--get-news-by-funcall)
17410 (newsticker--get-news-by-wget, newsticker--image-get)
17411 (newsticker--image-sentinel):
17412 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
17413 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
17414 (eudc-ph-close-session):
17415 * net/eudc.el (eudc-save-options):
17416 * language/thai-word.el (thai-update-word-table):
17417 * language/japan-util.el (japanese-string-conversion):
17418 * international/titdic-cnv.el (tsang-quick-converter)
17419 (ziranma-converter, ctlau-converter):
17420 * international/mule-cmds.el (describe-language-environment):
17421 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
17422 (skkdic-convert-postfix, skkdic-convert-prefix):
17423 (skkdic-convert-okuri-nasi, skkdic-convert):
17424 * emacs-lisp/re-builder.el (reb-update-overlays):
17425 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
17426 * emacs-lisp/gulp.el (gulp-send-requests):
17427 * emacs-lisp/find-gc.el (trace-call-tree):
17428 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
17429 (eieio-describe-generic):
17430 * emacs-lisp/eieio-base.el (eieio-persistent-read):
17431 * emacs-lisp/edebug.el (edebug-outside-excursion):
17432 * emacs-lisp/debug.el (debugger-make-xrefs):
17433 * emacs-lisp/cust-print.el (custom-prin1-to-string):
17434 * emacs-lisp/chart.el (chart-new-buffer):
17435 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
17436 Use with-current-buffer.
17437 * textmodes/artist.el (artist-system): Don't call
17438 copy-sequence on a fresh string.
17439 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
17441 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
17443 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
17444 is no item to edit. (Bug#4820)
17445 (todo-top-priorities): Restore point and restore narrowing in Todo
17448 2009-10-31 Glenn Morris <rgm@gnu.org>
17450 * net/ange-ftp.el (top-level): Don't require dired when compiling.
17451 (comint-last-output-start, comint-last-input-start)
17452 (comint-last-input-end): Don't defvar when compiling.
17453 (ange-ftp-process-file): Use bound-and-true-p.
17455 * pcmpl-rpm.el (top-level): Move provide statement to end.
17456 (pcmpl-rpm): Remove unused custom group.
17458 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
17460 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
17462 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
17463 (byte-compile-warnings): Add `constants' as an option.
17464 (byte-compile-callargs-warn, byte-compile-arglist-warn)
17465 (display-call-tree): Update for byte-compile-fdefinition possibly
17466 returning `(macro lambda ...)'. (Bug#4778)
17467 (byte-compile-variable-ref, byte-compile-setq-default):
17468 Respect `constants' member of byte-compile-warnings.
17470 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17472 * vc-bzr.el (vc-bzr-revision-keywords): New var.
17473 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
17476 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
17478 * textmodes/ispell.el (ispell-skip-region-alist):
17479 * international/mule-conf.el (eight-bit):
17480 * international/fontset.el (font-encoding-alist):
17481 * startup.el (pure-space-overflow-message):
17482 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
17483 * paths.el (gnus-nntp-service, rmail-spool-directory)
17484 (term-file-prefix):
17485 * files.el (save-some-buffers-action-alist):
17486 * cmuscheme.el (same-window-buffer-names):
17487 * ielm.el (same-window-buffer-names):
17488 * shell.el (same-window-buffer-names):
17489 * mail/sendmail.el (same-window-buffer-names):
17490 * progmodes/inf-lisp.el (same-window-buffer-names):
17491 * bindings.el (mode-line-client)
17492 (mode-line-column-line-number-mode-map):
17493 * language/tibetan.el (tibetan-precomposition-rule-regexp)
17494 (tibetan-precomposed-regexp): Purecopy string arguments.
17496 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17498 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
17499 (calcDigit-nondigit):
17500 * calc/calc-yank.el (calc-copy-to-buffer):
17501 * calc/calc-units.el (calc-invalidate-units-table):
17502 * calc/calc-trail.el (calc-trail-yank):
17503 * calc/calc-store.el (calc-insert-variables):
17504 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
17505 * calc/calc-prog.el (calc-read-parse-table):
17506 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
17507 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
17508 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
17509 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
17510 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
17511 (calc-graph-name, calc-graph-find-command, calc-graph-view)
17512 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
17513 * calc/calc-ext.el (calc-realign):
17514 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
17515 (calc-embedded-finish-edit, calc-embedded-make-info)
17516 (calc-embedded-finish-command, calc-embedded-stack-change):
17517 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
17519 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
17520 shell-dynamic-complete-filename in preference to
17521 comint-dynamic-complete-filename.
17523 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
17524 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
17525 Don't consider whether the display supports colors.
17526 (bookmark-import-new-list): Use dolist.
17527 (bookmark-bmenu-mode-map): Move initialization into declaration.
17528 (bookmark-bmenu-list): Use dolist, simplify.
17529 (bookmark-show-all-annotations): Use save-selected-window and dolist.
17530 (menu-bar-final-items): Use push.
17532 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
17534 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
17535 it works on remote files.
17536 (vc-hg-diff): Don't pass any `--cwd' argument.
17538 2009-10-27 Kevin Ryde <user42@zip.com.au>
17540 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
17541 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
17542 (Further to Bug#3921).
17544 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
17546 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
17547 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
17548 calling `tramp-imap-put-file'. Add file size to the call.
17549 (tramp-imap-get-file-entries): Compute also user name, file size,
17551 (tramp-imap-handle-insert-directory): Insert uid and gid.
17552 (tramp-imap-handle-file-attributes): Transform uid and gid
17553 according to `id-format'.
17554 (tramp-imap-put-file): New optional parameter SIZE. Encode file
17555 size in header X-Size.
17557 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
17559 * simple.el (transpose-subr): Give clearer error when the mark
17560 is not set. (Bug#4807)
17562 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
17564 * net/tramp.el (tramp-perl-file-truename): New defconst.
17565 Perl code contributed by yary <not.com@gmail.com> (tiny change).
17566 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
17567 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
17568 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
17570 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
17571 Ignore `dired-call-process'.
17572 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
17574 2009-10-26 Julian Scheid <julians37@gmail.com>
17576 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
17577 (tramp-get-remote-readlink): New defun.
17578 (tramp-handle-file-truename): Use it.
17579 (tramp-handle-file-exists-p): Check file-attributes cache, assume
17580 file exists if cache value present.
17581 (tramp-check-cached-permissions): New defun.
17582 (tramp-handle-file-readable-p): Use it.
17583 (tramp-handle-file-writable-p): Likewise.
17584 (tramp-handle-file-executable-p): Likewise.
17585 (tramp-handle-file-name-all-completions): Try using Perl to get
17586 partial completions. When perl not available, combine `cd' and
17587 `ls' into single remote operation and use shell expansion to get
17588 partial remote directory contents. Set `file-exists-p' cache for
17589 directory and any files returned by ls. Change cache handling to
17590 support partial directory contents. Use error message emitted by
17591 remote `cd' or Perl code for local tramp-error.
17592 (tramp-do-copy-or-rename-file-directly): Avoid separate
17593 tramp-send-command-and-check call.
17594 (tramp-handle-process-file): Merge three remote ops into one.
17595 Do not flush all caches when `process-file-side-effects' is set.
17596 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
17597 file-attributes shows uid/gid to be set already.
17599 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
17601 * textmodes/tex-mode.el (tex-dvi-view-command)
17602 (tex-show-queue-command, tex-open-quote):
17603 * progmodes/ruby-mode.el (auto-mode-alist)
17604 (interpreter-mode-alist): Purecopy strings.
17606 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
17608 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
17609 string for the hook, keymap and abbrev table.
17611 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
17613 * x-dnd.el (x-dnd-xdnd-to-action):
17614 * startup.el (fancy-startup-text, fancy-about-text): Change to
17615 defconst from defvar.
17617 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
17619 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
17620 Purecopy initialization strings.
17622 * mail/sendmail.el (mail-header-separator)
17623 (mail-personal-alias-file):
17624 * mail/rmail.el (rmail-default-dont-reply-to-names)
17625 (rmail-ignored-headers, rmail-retry-ignored-headers)
17626 (rmail-highlighted-headers, rmail-secondary-file-directory)
17627 (rmail-secondary-file-regexp):
17628 * files.el (null-device, file-name-invalid-regexp)
17629 (locate-dominating-stop-dir-regexp)
17630 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
17631 (interpreter-mode-alist): Use mapcar instead of mapc.
17633 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
17635 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
17636 (completion-ignored-extensions):
17637 (debug-ignored-errors): Purecopy strings.
17639 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17641 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
17642 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
17643 (pcomplete--here): Use push.
17645 * subr.el (all-completions): Declare the 4th arg obsolete.
17647 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17649 * pcomplete.el (pcomplete-unquote-argument-function): New var.
17650 (pcomplete-unquote-argument): New function.
17651 (pcomplete--common-suffix): Always pay attention to case.
17652 (pcomplete--table-subvert): Quote and unquote the text.
17653 (pcomplete--common-quoted-suffix): New function.
17654 (pcomplete-std-complete): Use it and pcomplete-begin.
17656 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
17657 we're inside a dedicated or minibuffer window.
17659 2009-10-24 Karl Fogel <kfogel@red-bean.com>
17661 * bookmark.el: Update documentation, especially documentation
17662 of `bookmark-alist' and of the bookmark file format.
17663 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
17665 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
17667 * mail/emacsbug.el (report-emacs-bug): Clarify that the
17668 keybindings apply to the mail buffer (Bug#4003). Shrink help
17671 * whitespace.el (whitespace-mode, whitespace-newline-mode)
17672 (global-whitespace-mode, global-whitespace-newline-mode)
17673 (whitespace-toggle-options, global-whitespace-toggle-options):
17674 Doc fix (Bug#3660).
17676 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
17677 of xmltok-start before the end tag was inserted (Bug#2840).
17679 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
17680 patterns that are preceded by an open-paren (Bug#1320).
17682 2009-10-24 Sven Joachim <svenjoac@gmx.de>
17684 * files.el (delete-directory): Delete symlinks to directories with
17685 delete-file (Bug#4739).
17687 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
17689 * vc.el (vc-backend-for-registration): Rename from
17690 vc-get-backend-for-registration. Update callers.
17692 * international/mule-cmds.el (set-language-info-alist):
17694 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
17695 (charset): Purecopy the name.
17696 (define-char-code-property): Purecopy string arguments.
17698 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
17699 Purecopy string arguments.
17701 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
17702 * ediff-hook.el (menu-bar-ediff-menu):
17703 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
17704 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
17706 2009-10-24 Glenn Morris <rgm@gnu.org>
17708 * comint.el (comint-dynamic-list-completions):
17709 * term.el (term-dynamic-list-completions): Use choose-completion rather
17710 than obsolete alias mouse-choose-completion.
17712 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
17713 file-cache-choose-completion.
17714 (file-cache-choose-completion): Handle an optional event argument.
17715 (file-cache-mouse-choose-completion): Make it an obsolete alias.
17717 * progmodes/octave-mod.el (octave-complete-symbol):
17718 Use choose-completion if mouse-choose-completion is ever removed.
17720 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
17723 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
17726 * vc-hooks.el (vc-responsible-backend): Fix declaration.
17728 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17730 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
17731 Ignore `pred' now that we receive one.
17732 Handle test-completion specially.
17734 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
17736 * vc.el (vc-responsible-backend): Throw an error if not backend is
17737 found. Remove the REGISTER argument. Move the code dealing with
17739 (vc-get-backend-for-registration): ... here. New function.
17740 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
17741 of vc-responsible-backend, pass the file name instead of the
17744 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
17746 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
17748 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
17749 (pcomplete-comint-setup): Don't modify a global var via
17750 accidental side-effects.
17751 (pcomplete-shell-setup): Adjust call accordingly.
17752 (pcomplete-parse-comint-arguments): Use push.
17754 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
17756 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
17757 Allow uncapitalized info node names (Bug#3921).
17759 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
17760 to the DEBUG file (Bug#3781).
17762 2009-10-23 Jari Aalto <jari.aalto@cante.net>
17764 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
17765 dictionary entry (Bug#4579).
17767 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
17769 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
17770 from `rfn-eshadow-update-overlay-hook' when unloading.
17771 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
17772 "rsyncc". Adjust doc string.
17773 (tramp-temp-buffer-file-name): New buffer-local defvar.
17774 (tramp-handle-insert-file-contents, tramp-handle-write-region):
17775 Keep temporary file when indicated by method ("rsync" and
17777 (tramp-handle-write-region): Handle APPEND.
17778 (tramp-delete-temp-file-function): New defun. Added to
17779 `kill-buffer-hook'.
17781 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
17783 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
17785 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
17787 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
17788 (color-name-rgb-alist, tty-standard-colors)
17789 (tty-color-mode-alist): Change to defconst.
17791 * simple.el (mark-inactive): Purecopy message.
17793 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
17794 (global-map, yank-menu):
17795 * textmodes/ispell.el (ispell-menu-map):
17796 * net/eudc.el (eudc-tools-menu):
17797 * international/mule-cmds.el (describe-language-environment-map)
17798 (setup-language-environment-map, set-coding-system-map)
17799 (mule-menu-keymap):
17800 * vc-hooks.el (vc-menu-entry, vc-menu-map):
17801 * replace.el (occur-mode-map):
17802 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
17804 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
17806 * calc/calc.el (math-read-number, math-read-number-simple):
17807 Use `save-match-data'.
17809 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
17811 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
17812 rather than fiddling with global-map bindings, since it should only
17813 affect per-terminal settings.
17814 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
17816 * minibuffer.el (completion-table-with-terminator): Allow to specify
17817 the terminator-regexp.
17819 * simple.el (switch-to-completions): Look for *Completions* in other
17822 * pcomplete.el: Allow the use of completion-tables.
17823 (pcomplete-std-complete): New command.
17824 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
17825 (pcomplete--here): Use a function for `form' rather than an expression,
17826 so it can be byte-compiled.
17827 (pcomplete-here, pcomplete-here*): Adjust accordingly.
17828 Add edebug declaration.
17829 (pcomplete-show-completions): Remove unused var `curbuf'.
17830 (pcomplete-do-complete, pcomplete-stub):
17831 Don't assume `completions' is a list of strings any more.
17833 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
17835 * find-dired.el (find-name-arg): Fix typo in docstring.
17837 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
17839 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
17840 (pcmpl-linux-fs-types): Same, and update to new modules layout.
17842 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
17845 * comint.el (comint-read-input-ring, comint-write-input-ring)
17846 (comint-substitute-in-file-name)
17847 (comint-dynamic-complete-as-filename)
17848 (comint-dynamic-simple-complete)
17849 (comint-dynamic-list-filename-completions)
17850 (comint-dynamic-list-completions)
17851 (comint-redirect-results-list-from-process): Minor simplifications.
17853 2009-10-21 Kevin Ryde <user42@zip.com.au>
17855 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
17856 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
17857 the first form. And insert a blank line after ";;; Code" since
17858 that's usual style. (Bug#4612)
17860 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
17862 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
17864 * minibuffer.el (completion-table-with-terminator): Properly implement
17865 boundaries, in case `terminator' appears in the suffix.
17866 (completion--embedded-envvar-table): Don't return boundaries if
17867 there's no valid completion. Simplify.
17868 (completion-file-name-table): New completion table extracted from
17869 completion--file-name-table.
17870 (completion--file-name-table): Use it.
17871 (read-file-name-predicate): Declare obsolete.
17872 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
17873 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
17874 completion-file-name-table, and use the `pred' argument.
17875 * files.el (locate-file-completion-table): Use the `pred' arg rather
17876 than read-file-name-predicate.
17877 (abbreviate-file-name): Use \` rather than ^ for BOS.
17879 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
17881 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
17882 vc-responsible-backend to register, it causes problems.
17884 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
17886 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
17888 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
17890 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
17891 (tramp-smb-handle-file-attributes): Use it.
17892 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
17893 (tramp-smb-handle-insert-directory): Use `mapc' rather than
17894 `mapcar'. Use `tramp-smb-get-stat-capability'.
17895 Add `dired-filename' text properties.
17896 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
17897 (tramp-smb-maybe-open-connection): Simplify check for smbclient
17900 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
17902 * subr.el (read-key-delay): Reduce to 0.01.
17903 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
17906 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17908 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
17910 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
17911 (Info-menu): Remove unused vars `last' and `completions'.
17912 (Info-index-nodes): Remove unused var `node'.
17914 * info.el (Info-complete-menu-item): Use complete-with-action.
17916 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
17918 Make vc-annotate work through copies and renames.
17919 * vc-annotate.el (vc-annotate-extract-revision-at-line):
17920 Return the file name too.
17921 (vc-annotate-revision-at-line)
17922 (vc-annotate-find-revision-at-line)
17923 (vc-annotate-revision-previous-to-line)
17924 (vc-annotate-show-log-revision-at-line): Update to get the file
17925 name from vc-annotate-extract-revision-at-line.
17926 (vc-annotate-show-diff-revision-at-line-internal): Change the
17927 argument to mean whether to show a file diff or not. Get the file
17928 name from vc-annotate-extract-revision-at-line.
17929 (vc-annotate-show-diff-revision-at-line):
17930 Update vc-annotate-show-diff-revision-at-line call.
17931 (vc-annotate-warp-revision): Add an optional file argument.
17933 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
17934 (vc-git-annotate-extract-revision-at-line): Also return the file
17937 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
17938 command. Remove unused code.
17939 (vc-hg-annotate-re): Update to match --follow output.
17940 (vc-hg-annotate-extract-revision-at-line): Also return the file
17943 * vc.el: Update annotate-extract-revision-at-line documentation.
17945 2009-10-18 Kevin Ryde <user42@zip.com.au>
17947 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
17948 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
17950 * net/browse-url.el (browse-url): Identify alist with "consp and
17951 not functionp" and let all other things go down the `apply' leg,
17952 as suggested by Stefan. (Further to bug#4531.)
17954 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
17956 * minibuffer.el (read-file-name): Check for repeat before putting
17957 a default argument in file-name-history (Bug#4657).
17959 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
17960 read syntax (Bug#4737).
17962 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
17964 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
17966 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
17967 (html-tag-alist, html-tag-help): Add descriptions for undocumented
17968 entries and make note of obsolete tags.
17970 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
17972 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
17974 2009-10-18 Glenn Morris <rgm@gnu.org>
17976 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
17977 grep, so that binary files (eg international/uni-bidi.el) can match.
17978 Remove test for "UnicodeData" files, since it is hopefully unnecessary
17979 now, and in any case the file header format has changed.
17981 2009-10-17 Glenn Morris <rgm@gnu.org>
17983 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
17984 (flyspell-get-word, flyspell-large-region)
17985 (flyspell-auto-correct-previous-word): Doc/error message fixes.
17987 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
17989 * Makefile.in (ELCFILES): Add ede/shell.
17991 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
17993 * term/common-win.el (x-colors): Purecopy it.
17995 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
17997 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
17998 permissive for when the buffer is empty.
17999 (tar-header-block-tokenize): Decode the username and groupname.
18000 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
18002 2009-10-17 Eric Ludlam <zappo@gnu.org>
18004 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
18005 contains multibyte characters, choose first applicable coding
18006 system automatically.
18008 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18010 * international/mule-cmds.el (select-safe-coding-system): If the file
18011 has a coding cookie, use it regardless of any other setting (bug#4712).
18013 2009-10-17 Glenn Morris <rgm@gnu.org>
18015 * foldout.el (foldout-mouse-swallow-events):
18016 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
18018 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
18019 (dired-keep-marker-copy, dired-keep-marker-hardlink)
18020 (dired-keep-marker-symlink, dired-dwim-target)
18021 (dired-copy-preserve-time): Do not autoload these defcustoms.
18023 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
18024 messages from messing up the file coding. (Bug#4623)
18026 2009-10-17 Jari Aalto <jari.aalto@cante.net>
18028 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
18029 if no match is found for the current dictionary. (Bug#4578)
18031 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
18032 optional, since that is how it is documented, and this is often called
18033 with a nil argument. (Bug#4577)
18034 (flyspell-external-point-words, flyspell-auto-correct-word)
18035 (flyspell-correct-word-before-point, flyspell-word-search-forward)
18036 (flyspell-word-search-backward): Remove nil argument in calls to
18037 flyspell-get-word, since it is not needed now.
18039 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
18041 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
18043 2009-10-16 Glenn Morris <rgm@gnu.org>
18045 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
18047 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
18049 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
18050 (ange-ftp-file-size): New function.
18051 (ange-ftp-file-attributes): Use it.
18053 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
18055 * net/tramp-smb.el (tramp-smb-version): New defvar.
18056 (tramp-smb-maybe-open-connection): Use it, in order to avoid
18059 2009-10-16 Glenn Morris <rgm@gnu.org>
18061 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
18062 Maybe copy some custom properties from old to new name. (Bug#4706)
18064 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
18066 * subr.el (error, sit-for, start-process-shell-command)
18067 (start-file-process-shell-command): Set the calling convention
18068 after the function definition.
18070 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
18072 * subr.el (error, sit-for, start-process-shell-command)
18073 (start-file-process-shell-command): Use the new
18074 set-advertised-calling-convention feature.
18076 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
18078 * international/ucs-normalize.el (ucs-normalize-version):
18080 (check-range): Adjust for Unicode 5.2.
18082 2009-10-15 Juri Linkov <juri@jurta.org>
18084 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
18085 to the `menu-item' format.
18087 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
18089 * net/tramp.el (tramp-replace-environment-variables): Do not fail
18090 if the environment variable does not exist.
18092 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18093 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
18095 (tramp-smb-handle-add-name-to-file)
18096 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18097 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18098 (tramp-smb-handle-file-attributes)
18099 (tramp-smb-do-file-attributes-with-stat)
18100 (tramp-smb-handle-file-local-copy)
18101 (tramp-smb-handle-insert-directory)
18102 (tramp-smb-handle-make-directory)
18103 (tramp-smb-handle-make-directory-internal)
18104 (tramp-smb-handle-make-symbolic-link)
18105 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
18106 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
18107 (tramp-smb-maybe-open-connection): Apply the changed parameters.
18108 (tramp-smb-read-file-entry): Read Disk names in compressed format.
18109 Handle long file names.
18110 (tramp-smb-get-cifs-capabilities): Check, whether the connection
18111 process is running.
18112 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
18113 Read share names with "-g" option.
18115 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
18117 * net/rcirc.el (rcirc-view-log-file): New command.
18118 (rcirc-track-minor-mode-map): Remove C-c ` binding.
18119 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
18122 2009-10-15 Glenn Morris <rgm@gnu.org>
18124 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
18125 from the second command-line argument.
18126 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
18127 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
18128 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
18129 w32-batch-update-autoloads.
18130 * emacs-lisp/autoload.el (autoload-make-program): New variable.
18131 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
18133 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
18134 the headers cannot be located. Simplify, subtracting superflous
18137 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
18139 Replace completion-base-size by completion-base-position to fix bugs
18140 such as (bug#4699).
18141 * simple.el (completion-base-position): New var.
18142 (completion-base-size): Mark as obsolete.
18143 (choose-completion): Make it work for mouse events as well.
18144 Pass the new base-position to choose-completion-string.
18145 (choose-completion-guess-base-position): New function, extracted from
18146 choose-completion-delete-max-match.
18147 (choose-completion-delete-max-match): Use it. Make obsolete.
18148 (choose-completion-string): Use the new base-position info.
18149 (completion-root-regexp): Delete.
18150 (completion-setup-function): Preserve completion-base-position.
18151 Eliminate obsolete base-size manipulation.
18152 * minibuffer.el (display-completion-list): Don't mess with base-size.
18153 (minibuffer-completion-help): Set completion-base-position instead.
18154 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
18156 * textmodes/bibtex.el (bibtex-complete):
18157 * emacs-lisp/crm.el (crm--choose-completion-string):
18158 Adjust to new calling convention.
18159 * complete.el (partial-completion-mode): Use minibufferp to avoid
18160 bumping into incompatible change to choose-completion-string-functions.
18161 * ido.el (ido-choose-completion-string): Make its calling convention
18163 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
18164 base-size manipulation.
18165 (comint-dynamic-list-input-ring): Use dotimes and push.
18166 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
18167 fundamental-mode. Use `or'.
18169 2009-10-14 Juri Linkov <juri@jurta.org>
18171 * misearch.el (multi-isearch-next-buffer-from-list)
18172 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
18174 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18176 * Makefile.in (compile-onefile): Load `bytecomp' rather than
18179 * minibuffer.el (completion-pcm--merge-completions): Make sure the
18180 string we return is all made up of text from the completions rather
18181 than part from the completions and part from the input (bug#4219).
18183 * ido.el (ido-everywhere): Use define-minor-mode.
18185 * buff-menu.el (list-buffers, ctl-x-map):
18186 Mark the entry points with ;;;###autoload cookies.
18188 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
18190 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
18191 correctly in the detached head case.
18192 (vc-git-print-log): Remove unused binding.
18194 * vc.el (vc-responsible-backend): When a directory is passed for
18195 for registration create a VC repository if no backend is
18196 responsible for the directory argument.
18197 (vc-deduce-fileset): Tell vc-responsible-backend to register.
18199 * vc.el: Move comments about RCS and SCCS ...
18201 * vc-sccs.el: ... here, respectively.
18203 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18205 * minibuffer.el (completion--file-name-table): Return nil if there's
18206 no file completion, even if substitute-in-file-name changed
18207 the string (bug#4708).
18209 2009-10-13 Juri Linkov <juri@jurta.org>
18211 * files-x.el (read-file-local-variable-value): Don't filter out
18212 minor modes from mode name completion (bug#4664).
18214 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
18216 * international/mule-cmds.el (ucs-names): Remove exclusion of
18217 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
18219 2009-10-13 Kenichi Handa <handa@m17n.org>
18221 * international/uni-name.el: Regenerated.
18223 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
18225 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
18226 should be automatically buffer-local, but isn't.)
18228 2009-10-12 Sam Steingold <sds@gnu.org>
18230 * progmodes/compile.el (compilation-next-error-function): Fix the
18231 timestamps if the buffer has been visited before.
18232 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
18233 non-anchored patterns, like the perl one (bug#3928).
18235 2009-10-12 Glenn Morris <rgm@gnu.org>
18237 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
18240 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
18242 * proced.el (proced-unload-function): New function.
18244 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
18245 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
18248 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
18250 2009-10-11 Juri Linkov <juri@jurta.org>
18252 * files-x.el (read-file-local-variable-value):
18253 Provide default value only for bound variables (bug#4664).
18255 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
18257 * net/tramp.el (tramp-local-host-p): Function shall return nil for
18258 connection methods like smb.
18260 * net/tramp-cache.el (tramp-flush-connection-property): The hash
18263 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18264 (tramp-smb-file-name-handler-alist): Add handlers for
18265 `add-name-to-file', `make-symbolic-link'.
18266 (tramp-smb-handle-add-name-to-file)
18267 (tramp-smb-do-file-attributes-with-stat)
18268 (tramp-smb-handle-make-symbolic-link)
18269 (tramp-smb-get-cifs-capabilities): New defuns.
18270 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18271 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18272 (tramp-smb-handle-file-local-copy)
18273 (tramp-smb-handle-make-directory-internal)
18274 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
18275 The file name syntax depends on cifs capabilities.
18276 (tramp-smb-handle-file-attributes):
18277 Call `tramp-smb-do-file-attributes-with-stat' if possible.
18278 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
18279 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
18281 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
18283 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
18284 (eieio-defclass): Apply deftype handler and setf-method properties
18286 (eieio-add-new-slot): Avoid union function from cl library.
18287 (eieio--typep): New function.
18288 (eieio-perform-slot-validation): Use it.
18290 2009-10-10 Karl Fogel <kfogel@red-bean.com>
18292 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
18293 Update documentation to refer to the variables documented in r1.135.
18296 2009-10-10 Karl Fogel <kfogel@red-bean.com>
18298 * bookmark.el (Info-suffix-list): Remove this unused variable.
18299 (bookmark-current-point): Remove this obsolete variable.
18300 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
18301 Adjust for removal of bookmark-current-point.
18303 (bookmarks-already-loaded, bookmark-current-buffer)
18304 (bookmark-yank-point): Document. (Bug#4188)
18306 2009-10-10 Glenn Morris <rgm@gnu.org>
18308 * frame.el (frame-height): Doc fix.
18310 * calendar/calendar.el (calendar-split-width-threshold): New option.
18311 (calendar-basic-setup): Use calendar-split-width-threshold.
18313 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
18315 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
18316 Ideographic Supplement" range (U+1F200..U+1F2FF).
18318 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18320 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
18321 since the list will have been rebuilt anyway. (Bug#4349)
18323 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18325 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
18326 (bookmark-bmenu-execute-deletions): Don't save here, as
18327 bookmark-delete will now do so if necessary.
18328 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
18331 2009-10-09 Glenn Morris <rgm@gnu.org>
18333 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
18335 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18337 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
18338 (bookmark-jump-other-window): Just invoke bookmark-jump with new
18339 argument now, so the two function's behaviors will match. (Bug#3645)
18341 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
18343 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
18344 (tramp-file-name-real-host, tramp-file-name-port):
18345 Apply `save-match-data'.
18347 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
18348 case both directories are remote.
18349 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
18350 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
18352 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
18354 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
18356 2009-10-07 Glenn Morris <rgm@gnu.org>
18358 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
18361 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
18363 * files-x.el (read-file-local-variable): Include some
18364 non-user-variables in the completion table (bug#4664).
18366 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
18368 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
18371 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18372 (tramp-smb-file-name-handler-alist): Add handler for
18373 `copy-directory', `expand-file-name', `set-file-modes'.
18374 (tramp-smb-handle-copy-directory)
18375 (tramp-smb-handle-expand-file-name)
18376 (tramp-smb-handle-set-file-modes): New defuns.
18377 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
18378 (tramp-smb-handle-file-attributes): Simplify check for retrieving
18380 (tramp-smb-handle-insert-directory): Don't flush the cache.
18381 (tramp-smb-maybe-open-connection): Check for samba client and
18384 2009-10-07 Eli Zaretskii <eliz@gnu.org>
18386 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
18387 to not error out of search for "^lisp=" fails.
18389 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
18391 * makefile.w32-in (WINS_UPDATES): New macro.
18392 (custom-deps, finder-data, autoloads): Use it.
18394 2009-10-07 Glenn Morris <rgm@gnu.org>
18396 * Makefile.in (autoloads): Revert previous change.
18397 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
18398 the list of preloaded files passed on the command-line, get
18399 it from src/Makefile.
18401 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
18402 show the original buffer rather than a random one.
18404 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
18406 * help.el (describe-no-warranty): Place point in a slightly better
18407 position in the GPLv3 text.
18409 2009-10-06 Sam Steingold <sds@gnu.org>
18411 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
18412 the comm attribute is present before calling regexp-quote.
18414 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
18416 * play/animate.el (animate-string): For good effect, make sure
18417 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
18419 * play/animate.el (animate-sequence, animate-birthday-present):
18420 * misc.el (butterfly): Don't set `indent-tabs-mode'.
18422 2009-10-06 Glenn Morris <rgm@gnu.org>
18424 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
18426 * emacs-lisp/autoload.el (autoload-excludes): New variable.
18427 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
18428 (batch-update-autoloads): Process a string value of autoload-excludes,
18429 set during the build process.
18430 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
18432 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
18433 inside with-parsed... macro so that `v' is defined.
18435 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
18436 * progmodes/fortran.el (fortran-end-of-block)
18437 (fortran-beginning-of-block):
18438 Also push mark in the macro case.
18440 * emerge.el (emerge-show-file-name):
18441 * calc/calc.el (calc-quit):
18442 * calc/calc-misc.el (calc-big-or-small):
18443 * calc/calc-graph.el (calc-graph-view):
18444 * calc/calc-ext.el (calc-reset):
18445 * calendar/calendar.el (calendar-basic-setup):
18446 Use window-full-height-p.
18448 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
18449 header we don't understand, don't insert another. (Bug#4624)
18450 If changing mime charset, insert the new one in the right place.
18452 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
18454 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
18455 (cal-tex-cursor-month): Correctly increment the end date for diary and
18456 holiday listing. (Bug#4626)
18458 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18460 * help-fns.el (describe-function-1): Don't burp if the function is not
18463 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
18465 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
18466 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
18467 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
18468 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
18470 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
18471 (eieio-default-superclass): Reflow docstrings.
18472 (this, class-option-assoc, defclass, eieio-class-un-autoload)
18473 (eieio-unbind-method-implementations, defmethod)
18474 (eieio-validate-slot-value, eieio-validate-class-slot-value)
18475 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
18476 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
18477 (eieio-slot-originating-class-p, eieio-slot-name-index)
18478 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
18479 (constructor, initialize-instance, no-next-method, object-print)
18480 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
18481 Fix typos in docstrings.
18482 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
18483 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
18484 (next-method-p): Doc fixes.
18485 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
18486 Fix typos in error messages.
18487 (eieio-defmethod): Fix typo in description of generic method.
18489 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
18490 (eieio-persistent-save-interactive, slot-missing):
18491 Fix typos in docstrings.
18492 (eieio-instance-inheritor-slot-boundp): Doc fix.
18494 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
18495 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
18497 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
18498 (eieio-custom-object-apply-reset):
18499 Fix typos in docstrings and error messages.
18501 * emacs-lisp/eieio-datadebug.el (data-debug-show):
18502 Fix typo in docstring.
18504 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
18505 (eieio-browse-tree): Doc fix.
18506 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
18507 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
18508 Fix typos in docstrings.
18510 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
18511 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
18512 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
18513 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
18516 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
18518 * vc-hg.el (log-view-vc-backend): Declare for compiler.
18519 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
18520 Set log-view-vc-backend so that diff can work.
18522 * log-view.el (log-view-diff): Use vc-diff-internal instead of
18524 (vc-diff-internal): Autoload this instead of vc-version-diff.
18526 2009-10-05 Eli Zaretskii <eliz@gnu.org>
18528 * simple.el (eval-expression): Doc fix.
18530 * progmodes/cwarn.el (cwarn-mode): Doc fix.
18532 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
18534 * files.el (directory-files-no-dot-files-regexp): New defconst.
18535 (delete-directory): Use it.
18536 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
18538 * net/tramp.el (tramp-verbose): Fix docstring.
18539 (tramp-methods): Add recursive option to `tramp-copy-args'.
18540 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
18541 "scp1_old", "scp2_old", "rsync", "rsyncc".
18542 (tramp-default-method): Check also for `auth-source-user-or-password'.
18543 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
18544 Add handler for `copy-directory'.
18545 (tramp-handle-copy-directory): New defun.
18546 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
18547 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
18548 Optimize sent command.
18550 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18552 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
18553 window if necessary.
18555 * calendar/calendar.el (calendar-basic-setup): Don't call
18556 switch-to-buffer in a dedicated window.
18558 2009-10-05 Karl Fogel <kfogel@red-bean.com>
18560 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
18561 don't do anything related to relocating, just return nil.
18562 (bookmark-error-no-filename): New error.
18563 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
18564 bookmark has no file. Don't even attempt to handle things that
18565 are not files; the whole point of custom handlers is to keep that
18566 knowledge elsewhere anyway. Tighten some comments.
18567 (bookmark-file-or-variation-thereof): Remove now-unused function.
18568 (bookmark-location): Doc string fix.
18571 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18573 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
18574 don't use a file dialog, because they usually don't know how to read
18575 a directory target from the user. (Bug#4230)
18576 Also, make sure the prompt can display directories as well as files.
18578 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18580 * bookmark.el (bookmark-set, bookmark-buffer-name):
18581 Improve doc strings. (Bug#1193)
18583 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18585 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
18586 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
18587 (bookmark-get-annotation, bookmark-set-annotation)
18588 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
18589 (bookmark-set-position, bookmark-get-front-context-string)
18590 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
18591 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
18592 (bookmark-jump-other-window, bookmark-handle-bookmark)
18593 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
18594 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
18595 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
18596 Improve doc strings to say whether bookmark can be a string or
18597 a record or both, and make other consistency and clarity fixes.
18598 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
18599 (bookmark-default-annotation-text, bookmark-yank-word)
18600 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
18601 (bookmark-import-new-list, bookmark-maybe-rename)
18602 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
18603 (bookmark-bmenu-bookmark): Give these doc strings.
18604 (bookmark-bmenu-check-position): Give this a doc string, but also
18605 add a FIXME comment about how the function may be pointless.
18606 (bookmark-default-handler): Rework doc string and change a
18607 parameter name, to clarify that this takes a bookmark record
18608 not a bookmark name.
18609 (bookmark-set): Change a parameter name to indicate its meaning,
18610 and improve the doc string a bit.
18613 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18615 * bookmark.el (bookmark-alist): Document the new `handler' element
18616 in the param alist.
18617 (bookmark-make-record-function): Adjust documentation for above.
18620 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18622 * info.el (Info-bookmark-make-record): Document this function.
18623 (Info-bookmark-jump): Document with a doc string, not just a comment.
18626 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
18628 * files.el (copy-directory): New defun.
18630 * dired-aux.el (dired-copy-file-recursive): Use it.
18632 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
18634 * files-x.el (modify-dir-local-variable)
18635 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
18638 * recentf.el (recentf-unload-function): New function.
18640 2009-10-04 Glenn Morris <rgm@gnu.org>
18642 * window.el (window-full-height-p): Add doc string.
18644 2009-10-04 Martin Rudalics <rudalics@gmx.at>
18646 * window.el (window-full-height-p): New function. (Bug#4543)
18648 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
18650 * vc.el: Remove commented out code.
18651 (vc-derived-from-dir-mode): Remove, unused.
18652 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
18654 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
18656 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
18657 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
18658 there could be recursive loading when `default-directory' is a
18659 remote file name. (Bug#4614)
18661 2009-10-03 Glenn Morris <rgm@gnu.org>
18663 * calendar/calendar.el (calendar-basic-setup): Handle the case where
18665 (calendar-generate-window): Test for shrinkability rather than width.
18667 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
18668 reusing existing buffers, in case we happen to visit two files with the
18669 same basename. (Bug#4593)
18671 2009-10-02 Eli Zaretskii <eliz@gnu.org>
18673 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
18674 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
18675 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
18676 subdirs of cedet as well.
18677 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
18679 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
18681 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
18682 Obey advertised-signature-table.
18684 * help-fns.el (help-function-arglist): Don't check
18685 advertised-signature-table.
18686 (describe-function-1): Do it here instead so it also applies to subrs.
18688 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
18690 * simple.el (start-file-process): Say in the doc-string, that file
18691 handlers might not support pty association, if PROGRAM is nil.
18693 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
18694 HOST and USER are strings. They are nil, when there are
18695 incomplete entries in ~/.netrc, for example.
18696 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
18697 root directory ("device busy" error otherwise).
18699 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
18700 Flush file properties of created directory.
18702 2009-10-02 Eli Zaretskii <eliz@gnu.org>
18704 * makefile.w32-in (WINS_BASIC): Remove cedet.
18705 (WINS_CEDET): Add cedet.
18706 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
18708 2009-10-02 Kevin Ryde <user42@zip.com.au>
18710 * net/browse-url.el (browse-url): Pass any symbol in
18711 browse-url-browser-function to `apply', since if you've mistakenly put
18712 an unbound symbol then the error is clearer. (Bug#4531)
18714 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
18716 * allout.el (allout-init, allout-back-to-current-heading)
18717 (allout-beginning-of-current-entry, allout-ascend-to-depth)
18718 (allout-ascend, allout-up-current-level, allout-end-of-level)
18719 (allout-previous-visible-heading, allout-forward-current-level)
18720 (allout-backward-current-level, allout-show-children):
18721 * apropos.el (apropos-describe-plist):
18722 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
18723 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
18724 * completion.el (add-completion, add-permanent-completion):
18725 * descr-text.el (describe-text-category, describe-char):
18726 * desktop.el (desktop-lazy-abort):
18727 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
18728 * dired.el (dired-build-subdir-alist):
18729 * ediff.el (ediff-version):
18730 * elide-head.el (elide-head, elide-head-show):
18731 * emerge.el (emerge-version):
18733 * face-remap.el (variable-pitch-mode):
18734 * faces.el (describe-face):
18735 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
18737 * files.el (find-file-existing, auto-save-mode):
18738 * font-lock.el (font-lock-fontify-buffer):
18739 * help-fns.el (describe-function, describe-variable)
18740 (describe-syntax, describe-categories):
18741 * help.el (view-lossage, describe-bindings, describe-key)
18743 * hexl.el (hexl-current-address):
18744 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
18745 * info.el (Info-goto-emacs-key-command-node):
18746 * log-edit.el (log-edit-insert-cvs-template)
18747 (log-edit-insert-cvs-rcstemplate):
18748 * menu-bar.el (menu-bar-mode):
18749 * mouse.el (mouse-appearance-menu):
18750 * newcomment.el (comment-indent-new-line):
18751 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
18752 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
18753 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
18754 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
18755 * recentf.el (recentf-mode):
18756 * savehist.el (savehist-mode, savehist-save):
18757 * shadowfile.el (shadow-copy-files):
18758 * simple.el (kill-ring-save, next-line, previous-line)
18759 (normal-erase-is-backspace-mode):
18760 * strokes.el (strokes-update-window-configuration)
18761 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
18762 (strokes-xpm-for-stroke):
18763 * time.el (emacs-uptime, emacs-init-time):
18764 * tutorial.el (tutorial--describe-nonstandard-key)
18765 (tutorial--detailed-help):
18766 * type-break.el (type-break-mode)
18767 (type-break-mode-line-message-mode, type-break-query-mode)
18768 (type-break-guesstimate-keystroke-threshold):
18769 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
18770 * version.el (emacs-version):
18771 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
18772 * winner.el (winner-mode):
18773 * calendar/timeclock.el (timeclock-in, timeclock-out)
18774 (timeclock-status-string, timeclock-change)
18775 (timeclock-workday-remaining-string)
18776 (timeclock-workday-elapsed-string)
18777 (timeclock-when-to-leave-string):
18778 * calendar/todo-mode.el (todo-add-category):
18779 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
18780 * emacs-lisp/autoload.el (update-file-autoloads):
18781 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
18782 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
18783 (checkdoc-message-text, checkdoc-defun):
18784 * emacs-lisp/debug.el (debugger-list-functions):
18785 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
18786 * emacs-lisp/eieio-opt.el (eieio-describe-class)
18787 (eieio-describe-generic):
18788 * emacs-lisp/lisp-mnt.el (lm-synopsis):
18789 * emacs-lisp/shadow.el (list-load-path-shadows):
18790 * emulation/cua-base.el (cua-mode):
18791 * emulation/edt.el (edt-set-scroll-margins):
18792 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
18793 (tpu-toggle-regexp, tpu-toggle-search-direction)
18794 (tpu-toggle-rectangle, tpu-toggle-control-keys):
18795 * emulation/tpu-extras.el (tpu-set-scroll-margins):
18796 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
18797 (viper-set-parsing-style-toggling-macro)
18798 (viper-set-emacs-state-searchstyle-macros):
18799 * emulation/viper.el (viper-set-hooks):
18800 * eshell/esh-mode.el (eshell-truncate-buffer):
18801 * international/mule-cmds.el (prefer-coding-system)
18802 (describe-input-method, describe-language-environment):
18803 * international/mule-diag.el (list-character-sets)
18804 (describe-character-set, describe-coding-system)
18805 (describe-fontset, list-fontsets, list-input-methods):
18806 * mail/sendmail.el (mail-signature):
18807 * net/ange-ftp.el (ange-ftp-copy-file):
18808 * net/browse-url.el (browse-url):
18809 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
18810 * net/quickurl.el (quickurl-add-url):
18811 * net/rcirc.el (names, topic):
18812 * net/xesam.el (xesam-mode):
18813 * play/5x5.el (5x5-new-game):
18814 * play/yow.el (apropos-zippy):
18815 * progmodes/ada-mode.el (ada-mode-version):
18816 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
18818 (f90-beginning-of-block):
18819 * progmodes/fortran.el (fortran-end-of-block)
18820 (fortran-beginning-of-block):
18821 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
18822 * progmodes/python.el (python-describe-symbol, python-shell):
18823 * term/ns-win.el (ns-print-buffer):
18824 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
18825 * textmodes/flyspell.el (flyspell-mode-on):
18826 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
18827 (pages-directory-for-addresses):
18828 * textmodes/table.el (table-recognize-cell)
18829 (table-query-dimension, table-generate-source)
18830 (table-insert-sequence, table--warn-incompatibility):
18831 * textmodes/tex-mode.el (tex-validate-buffer):
18832 * textmodes/texinfmt.el (texinfmt-version)
18833 (texinfo-format-buffer):
18834 Use `called-interactively-p' instead of `interactive-p'.
18836 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
18838 * image-mode.el (image-toggle-display):
18839 * emacs-lisp/elp.el (elp-instrument-function):
18840 * emacs-lisp/advice.el (ad-make-advised-definition):
18841 * emacs-lisp/easy-mmode.el (define-minor-mode):
18842 * net/browse-url.el (browse-url-maybe-new-window):
18843 * progmodes/sh-script.el (sh-learn-buffer-indent):
18844 Pass new argument 'any to `called-interactively-p'.
18846 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
18848 * international/uni-bidi.el:
18849 * international/uni-category.el:
18850 * international/uni-combining.el:
18851 * international/uni-comment.el:
18852 * international/uni-decimal.el:
18853 * international/uni-decomposition.el:
18854 * international/uni-digit.el:
18855 * international/uni-lowercase.el:
18856 * international/uni-mirrored.el:
18857 * international/uni-name.el:
18858 * international/uni-numeric.el:
18859 * international/uni-old-name.el:
18860 * international/uni-titlecase.el:
18861 * international/uni-uppercase.el:
18862 Regenerate from Unicode 5.2.0 data.
18864 2009-10-01 Glenn Morris <rgm@gnu.org>
18866 * Makefile.in (ELCFILES): Regenerate.
18868 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
18870 * subr.el (interactive-p): Mark obsolete.
18871 (called-interactively-p): Make the optional-ness of `kind' obsolete.
18872 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
18873 advertised-signature-table for subroutines as well.
18875 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
18876 (set-advertised-calling-convention): New function.
18877 (make-obsolete, define-obsolete-function-alias)
18878 (make-obsolete-variable, define-obsolete-variable-alias):
18879 Make the optional-ness of `when' obsolete.
18880 (define-obsolete-face-alias): Make `when' non-optional.
18881 * help-fns.el (help-function-arglist):
18882 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
18883 Use advertised-signature-table.
18885 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
18887 * files.el (delete-directory): New defun. The original function
18888 in fileio.c has been renamed to `delete-directory-internal'.
18890 * dired.el (dired-delete-file): Call `delete-directory' with
18891 RECURSIVE parameter.
18893 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
18894 parameter RECURSIVE. Implementation is missing.
18896 * net/tramp.el (tramp-handle-make-directory): Flush upper
18897 directory's file properties.
18898 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
18899 (tramp-handle-dired-recursive-delete-directory): Flush directory
18900 properties after the remove command only.
18902 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
18903 Handle optional parameter RECURSIVE.
18905 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
18906 Handle optional parameter RECURSIVE.
18908 * net/tramp-smb.el (tramp-smb-errors): Add error message for
18909 connection timeout.
18910 (tramp-smb-handle-delete-directory): Handle optional parameter
18913 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
18915 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
18916 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
18917 (byte-compile-defmacro): Use backquotes.
18919 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
18921 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
18922 has no associated file.
18923 (vc-resynch-buffer): Use vc-dir-buffers.
18925 2009-10-01 Glenn Morris <rgm@gnu.org>
18927 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
18928 (chart-file-count):
18929 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
18930 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
18931 * emacs-lisp/eieio-opt.el (eieio-describe-class):
18932 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
18933 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
18934 (eieio-copy-parents-into-subclass, make-instance, class-children)
18935 (eieio-generic-form):
18937 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
18938 match-data. (Bug#4555).
18940 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
18941 rather than parsing it as a regexp. This relaxes the layout
18942 requirements and makes errors easier to detect.
18943 (check-declare-verify): Check file is regular.
18944 (check-declare-directory): Doc fix.
18945 * subr.el (declare-function): Doc fix.
18947 * ibuffer.el (ibuffer-format-qualifier):
18948 * isearch.el (hi-lock-regexp-okay):
18949 * calc/calc.el (math-zerop):
18950 * mail/uce.el (rmail-msgbeg, rmail-msgend):
18951 * term/w32-win.el (setup-default-fontset, set-fontset-font):
18952 Remove unused declarations.
18954 2009-09-30 Eric Ludlam <zappo@gnu.org>
18956 * emacs-lisp/eieio.el (boolean-p): Delete.
18958 2009-09-30 Glenn Morris <rgm@gnu.org>
18960 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
18962 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
18963 filename is not a string.
18965 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
18967 * files.el (safe-local-eval-forms): Fix typo.
18969 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
18971 * vc-hooks.el (vc-dir-buffers): New var.
18972 (vc-state-refresh): New function.
18973 (vc-state): Use it.
18974 (vc-after-save): Always ask the backend to recompute the new state.
18975 Always call vc-dir if necessary, using vc-dir-buffers.
18976 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
18977 Use vc-dir-buffers.
18978 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
18979 (vc-dir-prepare-status-buffer, vc-dir-update)
18980 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
18981 Don't call expand-file-name on default-directory.
18983 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
18985 * speedbar.el (speedbar-item-delete):
18986 * calc/calc-prog.el (calc-kbd-if):
18987 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
18989 * epa.el (epa-key-list-mode-map):
18990 * hi-lock.el (hi-lock-menu): Fix typos in menus.
18992 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
18993 (hs-show-hook): Fix typo in docstring.
18995 2009-09-29 Glenn Morris <rgm@gnu.org>
18997 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
18998 file-name-nondirectory call preventing location of cedet files.
18999 (check-declare-verify): Use literal search rather than re-search.
19000 Add basic defmethod and defclass, and define-overloadable-function.
19002 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19003 Use tramp-compat-file-attributes rather than nonexistent
19004 tramp-compat-handle-file-attributes.
19006 * Makefile.in (lisptagsfiles4): New.
19007 (AUTOGENEL): Add cedet loaddefs files.
19008 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
19009 (update-elclist, compile-always, backup-compiled-files)
19010 (bootstrap-clean): Add yet another directory level.
19011 (update-elclist): Use LC_COLLATE rather than COLLATE.
19012 (ELCFILES): Update, via `make update-elclist'.
19014 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
19016 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
19017 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
19018 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
19020 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
19022 * Makefile.in (lisptagsfiles3): Define.
19023 (TAGS, TAGS-LISP): Use it.
19024 (update-elclist): Add third directory level to look for elc files.
19025 (compile-always): Likewise.
19026 (backup-compiled-files): Likewise.
19027 (bootstrap-clean): Likewise.
19028 (ELCFILES): Update.
19030 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
19032 * Makefile.in (ELCFILES): Add CEDET files.
19034 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
19036 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
19038 * net/tramp.el (top): Require tramp-imap.
19040 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19041 Use `tramp-compat-handle-file-attributes'.
19043 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
19045 * net/tramp-imap.el: New package.
19047 2009-09-28 Eric Ludlam <zappo@gnu.org>
19049 * emacs-lisp/chart.el:
19050 * emacs-lisp/eieio-base.el:
19051 * emacs-lisp/eieio-comp.el:
19052 * emacs-lisp/eieio-custom.el:
19053 * emacs-lisp/eieio-datadebug.el:
19054 * emacs-lisp/eieio-opt.el:
19055 * emacs-lisp/eieio-speedbar.el:
19056 * emacs-lisp/eieio.el: New files.
19058 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19060 * whitespace.el (whitespace-trailing-regexp)
19061 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
19064 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
19066 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
19069 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
19070 menu-bar-ediff-menu.
19072 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
19073 define-overloadable-function.
19075 * progmodes/autoconf.el: Provide autoconf as well, so that this
19076 file can be `require'd.
19078 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
19080 * emacs-lisp/autoload.el (generated-autoload-feature)
19081 (generated-autoload-load-name): New vars.
19082 (autoload-rubric, autoload-generate-file-autoloads): Use them.
19083 (make-autoload): Recognize define-overloadable-function and
19084 defclass forms (for EIEIO).
19086 * Makefile.in (update-subdirs): Exclude cedet directory.
19088 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
19090 * term/ns-win.el: Don't set the region face background. (Bug#4381)
19092 * faces.el: Default light-background background for region face to
19093 ns_selection_color under NS.
19095 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
19097 * net/imap-hash.el: New library, see NEWS.
19099 * Makefile.in (ELCFILES): Add imap-hash.el.
19101 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
19103 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
19104 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
19105 * help-macro.el (make-help-screen): Avoid using an ambiguous function
19106 definition where the docstring could be taken for the return value.
19108 2009-09-26 Glenn Morris <rgm@gnu.org>
19110 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
19111 Add option to only show images below a certain size.
19112 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
19113 save-excursion calls.
19115 2009-09-26 Eli Zaretskii <eliz@gnu.org>
19117 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
19118 subdirectories) and eieio.
19120 2009-09-26 Alan Mackenzie <acm@muc.de>
19122 * progmodes/cc-engine.el (c-beginning-of-statement-1):
19123 Correct buggy bracketing. (Bug#4289)
19125 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
19126 character constants (as case labels). (Bug#4289)
19128 2009-09-25 Juri Linkov <juri@jurta.org>
19130 * files.el (safe-local-eval-forms): Allow time-stamp in
19131 before-save-hook (Bug#4554).
19133 2009-09-25 Drew Adams <drew.adams@oracle.com>
19135 * menu-bar.el (list-buffers-directory): Doc fix.
19137 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
19139 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
19140 Try and avoid copying twice the same paragraph.
19141 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
19142 Remove save-excursion.
19143 (log-edit-changelog-entry): Do it here instead.
19145 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
19147 * bs.el (bs--get-file-name): Use `list-buffers-directory'
19148 when available, instead of hardcoding mode names. Doc fix.
19150 * menu-bar.el (list-buffers-directory): Add docstring.
19151 Make automatically buffer-local.
19153 * dired.el (dired-mode):
19154 * files.el (cd-absolute):
19155 * pcvs.el (cvs-temp-buffer):
19156 * pcvs-util.el (cvs-get-buffer-create):
19157 * shell.el (shell-mode):
19158 * vc-dir.el (vc-dir-mode):
19159 Don't make `list-buffers-directory' buffer local.
19161 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
19163 * comint.el (comint-exec, comint-run, make-comint):
19164 Doc fixes (Bug#4542).
19166 2009-09-25 Glenn Morris <rgm@gnu.org>
19168 * mail/rmailmm.el (rmail-mime): New custom group.
19169 Move all defcustoms in this file into this group.
19170 (rmail-mime-media-type-handlers-alist): Revert previous change.
19171 (rmail-mime-show-images): New option.
19172 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
19173 references to it, since it wasn't actually used for anything.
19174 (rmail-mime-insert-image): New function.
19175 (rmail-mime-image): Use rmail-mime-insert-image.
19176 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
19177 obey the value of `rmail-mime-show-images' option. Print the size of
19180 2009-09-25 David Engster <deng@randomsample.de>
19182 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
19184 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19186 * whitespace.el: Does not highlight trailing spaces While point is
19187 at end of line. Does not highligt spaces at beginning of buffer
19188 while point is at beginning of buffer. Does not highlight spaces
19189 at end of buffer while point is at end of buffer. (Bug#4177)
19191 (whitespace-display-mappings): Adjust initialization.
19192 (whitespace-point, whitespace-font-lock-refontify): New vars.
19193 (whitespace-color-on, whitespace-color-off): Adjust code.
19194 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
19195 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
19196 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
19198 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
19200 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
19202 * textmodes/sgml-mode.el: Remove xml-mode alias.
19204 * files.el (auto-mode-alist, conf-mode-maybe)
19205 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
19207 2009-09-24 Alan Mackenzie <acm@muc.de>
19209 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
19210 c-forward-conditionals, but it doesn't move point and doesn't set
19212 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
19213 (c-down-conditional-with-else, c-backward-conditional)
19214 (c-forward-conditional): Refactor to use c-scan-conditionals.
19216 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
19218 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
19219 (help-default-arg-highlight): Remove.
19220 (help-highlight-arg): New function.
19221 (help-do-arg-highlight): Use it.
19222 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
19224 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19226 * term.el (term-set-scroll-region, term-handle-ansi-escape):
19227 Undo last change, which didn't fix the problem and introduced others.
19229 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
19231 * progmodes/gdb-mi.el: Don't require speedbar.
19232 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
19234 2009-09-24 Glenn Morris <rgm@gnu.org>
19236 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
19238 * term/ns-win.el (ns-reg-to-script): Define for compiler.
19240 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
19241 there is no newline after the final mime boundary. (Bug#4539)
19242 Move markers on insertion so that any buttons inserted don't end up in
19243 the next part of a multipart message.
19244 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
19245 (rmail-mime-bulk-handler): Optionally handle images.
19246 (rmail-mime-image): New button action.
19247 (rmail-mime-image-handler): New function.
19248 (rmail-mime-mode): New mode.
19249 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
19251 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19253 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
19254 than just dropping elements from it (bug#4504).
19256 * term.el (term-set-scroll-region): Don't move cursor any more.
19257 (term-handle-ansi-escape): Call term-goto here instead.
19258 Suggested by Ivan Kanis <apple@kanis.eu>.
19260 * term.el: Require CL.
19261 (term-ansi-reset): New function.
19262 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
19263 (term-handle-colors-array): Simplify.
19265 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
19267 * allout.el (allout-overlay-interior-modification-handler)
19268 (allout-obtain-passphrase):
19269 * epa-file.el (epa-file-write-region):
19270 * ps-print.el (ps-begin-job):
19271 * vc-hooks.el (vc-toggle-read-only):
19272 * vc-rcs.el (vc-rcs-rollback):
19273 * vc-sccs.el (vc-sccs-rollback):
19274 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
19275 (vc-version-diff, vc-revert, vc-rollback):
19276 * wdired.el (wdired-check-kill-buffer):
19277 * emacs-lisp/authors.el (authors):
19278 * net/socks.el (socks-open-connection):
19279 * net/zeroconf.el (zeroconf-service-add-hook):
19280 * obsolete/vc-mcvs.el (vc-mcvs-register):
19281 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
19282 (gdb-select-frame):
19283 * progmodes/grep.el (lgrep, rgrep):
19284 * progmodes/idlw-help.el (idlwave-help-check-locations)
19285 (idlwave-help-html-link, idlwave-help-assistant-open-link):
19286 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
19287 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
19288 (reftex-toc-rename-label): Fix typos in error messages.
19290 * dired-aux.el (dired-do-shell-command): Reflow docstring.
19291 (dired-copy-how-to-fn): Doc fix.
19292 (dired-files-attributes, dired-read-shell-command):
19293 Fix typos in docstrings.
19295 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
19296 (dired-x-find-file-other-window): Reflow docstrings.
19297 (dired-omit-marker-char, dired-read-shell-command)
19298 (dired-x-submit-report): Fix typos in docstrings.
19300 * shell.el (shell-mode-hook):
19301 * view.el (View-scroll-line-forward):
19302 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
19303 Fix typos in docstrings.
19305 * net/dig.el (dig-invoke): Fix typo in docstring.
19306 (query-dig): Reflow docstring.
19308 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
19309 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
19310 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
19311 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
19312 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
19313 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
19314 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
19315 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
19316 (idlwave-completion-map, idlwave-current-indent)
19317 (idlwave-custom-ampersand-surround, idlwave-customize)
19318 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
19319 (idlwave-define-abbrev, idlwave-determine-class-special)
19320 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
19321 (idlwave-end-block-reg, idlwave-end-of-statement)
19322 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
19323 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
19324 (idlwave-explicit-class-listed, idlwave-file-header)
19325 (idlwave-fill-paragraph, idlwave-find-class-definition)
19326 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
19327 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
19328 (idlwave-in-quote, idlwave-indent-action-table)
19329 (idlwave-indent-expand-table, idlwave-indent-line)
19330 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
19331 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
19332 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
19333 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
19334 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
19335 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
19336 (idlwave-outlawed-buffers, idlwave-popup-select)
19337 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
19338 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
19339 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
19340 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
19341 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
19342 (idlwave-statement-type, idlwave-struct-skip)
19343 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
19344 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
19345 (idlwave-what-module-find-class): Fix typos in docstrings.
19346 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
19347 (idlwave-calculate-cont-indent, idlwave-expand-equal)
19348 (idlwave-find-module, idlwave-find-structure-definition)
19349 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
19350 (idlwave-list-load-path-shadows, idlwave-next-statement)
19351 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
19352 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
19353 (idlwave-template): Reflow docstrings.
19355 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
19356 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
19357 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
19358 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
19359 (idlwave-shell-display-line, idlwave-shell-display-wframe)
19360 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
19361 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
19362 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
19363 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
19364 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
19365 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
19366 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
19367 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
19368 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
19369 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
19370 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
19371 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
19372 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
19373 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
19374 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
19375 Fix typos in docstrings.
19376 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
19377 (idlwave-shell-hide-output, idlwave-shell-mode)
19378 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
19381 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
19383 2009-09-24 Ivan Kanis <apple@kanis.eu>
19385 * term.el (term-bold-attribute): New var.
19386 (term-handle-colors-array): Use it.
19388 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
19390 * progmodes/gdb-mi.el (gdb-version): New variable.
19391 (gdb-non-stop-handler): Set gdb-version.
19392 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
19393 Condition "--thread" option on gdb-version.
19394 (gdb-invalidate-threads): Remove unused argument.
19396 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
19398 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
19399 to looking-back to avoid ridiculous slow down in large files (bug#4511).
19401 2009-09-23 Glenn Morris <rgm@gnu.org>
19403 * mail/rmail.el (rmail-reply): Don't try to add a References header when
19404 replying to mail without References or Message-Id. (Bug#4525)
19406 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
19408 * term/ns-win.el (ns-reg-to-script): New variable.
19410 2009-09-23 Daiki Ueno <ueno@unixuser.org>
19412 * epg.el (epg-wait-for-status): Preserve existing 'error results.
19414 2009-09-22 Sam Steingold <sds@gnu.org>
19416 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
19417 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
19418 to 1 because hg returns status 1 when nothing is found.
19419 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
19421 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
19423 * textmodes/fill.el: Convert to utf-8 encoding.
19424 (fill-french-nobreak-p): Remove redundant » and « inherited from our
19427 * add-log.el (change-log-fill-forward-paragraph): New function.
19428 (change-log-mode): Use it so fill-region DTRT.
19429 Set fill-indent-according-to-mode here rather than in
19430 change-log-fill-paragraph.
19431 (change-log-fill-paragraph): Remove.
19433 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
19435 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
19436 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
19438 2009-09-22 Glenn Morris <rgm@gnu.org>
19440 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
19441 the scroll-bar scroll the calendar window rather than the buffer.
19443 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
19444 commands that move point (as opposed to scrolling).
19446 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
19448 * emacs-lisp/elint.el (elint): New custom group.
19449 (elint-log-buffer): Make it a defcustom.
19450 (elint-scan-preloaded, elint-ignored-warnings)
19451 (elint-directory-skip-re): New options.
19452 (elint-builtin-variables): Doc fix.
19453 (elint-preloaded-env): New variable.
19454 (elint-unknown-builtin-args): Add an entry for encode-time.
19455 (elint-extra-errors): Make it a variable rather than a constant.
19456 (elint-preloaded-skip-re): New constant.
19457 (elint-directory): Skip files matching elint-directory-skip-re.
19458 (elint-features): New variable, local to linted buffers.
19459 (elint-update-env): Initialize elint-features. Possibly add
19460 elint-preloaded-env to the buffer's environment.
19461 (elint-get-top-forms): Bind elint-current-pos, for log messages.
19463 (elint-init-form): New function, extracted from elint-init-env.
19464 Make non-list forms a warning rather than an error.
19465 Add the mode-map for define-derived-mode. Handle define-minor-mode,
19466 easy-menu-define, put that adds an error-condition, and provide.
19467 When requiring cl, also require cl-macs. Really require cl, to handle
19468 some cl macros. Store required libraries in the list elint-features,
19469 so as not to re-load them. Treat cc-require like require.
19470 (elint-init-env): Call elint-init-form to do the work.
19471 Handle eval-and-compile and such like.
19472 (elint-add-required-env): Do not clear messages.
19473 (elint-special-forms): Add handlers for function, defalias, if, when,
19475 (elint-form): Add optional argument to ignore elint-special-forms,
19476 useful to prevent recursive calls from handlers. Doc fix.
19477 Respect elint-ignored-warnings.
19478 (elint-form): Respect elint-ignored-warnings.
19479 (elint-bound-variable, elint-bound-function): New variables.
19480 (elint-unbound-variable): Respect elint-bound-variable.
19481 (elint-get-args): Respect elint-bound-function.
19482 (elint-check-cond-form): Add some simple handling for (f)boundp and
19484 (elint-check-defalias-form): New handler.
19485 (elint-check-let-form): Make an empty let a warning rather than an
19487 (elint-check-setq-form): Make an empty setq a warning rather than an
19488 error. Respect elint-ignored-warnings.
19489 (elint-check-defvar-form): Accept null doc-strings.
19490 (elint-check-conditional-form): New handler. Does some simple-minded
19491 checking of featurep and (f)boundp tests.
19492 (elint-put-function-args): New function.
19493 (elint-initialize): Use elint-scan-doc-file rather than
19494 elint-find-builtin-variables. Use elint-put-function-args.
19495 Possibly scan preloaded-file-list.
19496 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
19497 extend to handle functions as well.
19499 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
19501 * linum.el (linum-delete-overlays, linum-update-window):
19502 Do not modify the right margin. (Bug#3971)
19504 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
19506 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
19507 Use nxml-mode instead of xml-mode.
19509 2009-09-21 Kevin Ryde <user42@zip.com.au>
19511 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
19513 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19515 * net/dig.el (dig-mode): Use define-derived-mode.
19517 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
19519 * vc-dispatcher.el (vc-do-command): Return the process object in
19520 the asynchronous case. Use when instead of if. Do not run
19521 vc-exec-after to display a message if not enabled. (Bug#4463)
19523 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
19524 properties to the stash strings.
19525 (vc-git-stash-list): Return a list of strings.
19526 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
19527 (vc-git-stash-show-at-point): New functions.
19528 (vc-git-stash-map): New keymap.
19530 * register.el (ctl-x-r-map): Define the keys here instead of
19533 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
19535 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
19536 list, to workaround performance problem (bug#4485).
19538 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
19540 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
19542 2009-09-20 Daiki Ueno <ueno@unixuser.org>
19544 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
19545 Document that this option is not recommended to use.
19547 2009-09-19 Glenn Morris <rgm@gnu.org>
19549 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
19552 * calc/calc-alg.el (var):
19553 * calc/calcalg2.el (var): Define for compiler.
19555 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
19557 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
19558 Doc fix (Bug#3932).
19560 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
19562 * time-stamp.el (time-stamp-month-dd-yyyy)
19563 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
19564 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
19565 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
19566 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
19567 Remove functions that have been obsolete since 1995 (Bug#4436).
19569 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
19570 indent buffer only if called interactively (Bug#4452).
19572 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
19573 Eli Zaretskii <eliz@gnu.org>
19575 This fixes bug#4197 (merged to bug#865, though not identical).
19576 * server.el (server-auth-dir): Add docstring note about FAT32.
19577 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
19578 but warn against using them.
19580 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
19582 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
19583 older GDB where there is no has_more field.
19585 2009-09-19 Glenn Morris <rgm@gnu.org>
19587 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
19589 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
19591 * files.el (auto-mode-alist): Change default for XML files to nXML
19594 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
19596 * server.el (server-ensure-safe-dir): Pass 'integer
19597 to `file-attributes', as suggested.
19599 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
19601 * dired-aux.el (dired-query-alist): Remove spurious backslash.
19602 (dired-query): Use read-key.
19604 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
19606 * cus-start.el (ns-use-qd-smoothing): Remove.
19608 2009-09-18 Glenn Morris <rgm@gnu.org>
19610 * allout.el (top-level): Remove unnecessary progn.
19612 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
19614 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
19615 definition of abbrev table.
19617 * speedbar.el (speedbar-track-mouse):
19618 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
19619 * net/eudc.el (eudc-expand-inline):
19620 * net/newst-backend.el (newsticker--cache-read-feed):
19621 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
19622 condition-case handlers.
19624 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
19626 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
19627 (gdb-var-list): Add an element for has_more field.
19628 (gdb-non-stop-handler): Enable pretty printing for STL containers.
19629 (gdb-var-create-handler, gdb-var-list-children-handler-1)
19630 (gdb-var-update-handler-1): Parse output of dynamic variable
19631 objects (STL containers).
19632 (gdb-var-delete-1): Pass var1 as an explicit second argument.
19633 (gdb-get-field): Delete alias. Use bindat-get-field directly.
19635 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
19637 (gud-speedbar-buttons): Make node expandable if expression "has more"
19640 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
19642 * startup.el (emacs-quick-startup): Remove variable and all uses.
19643 (command-line): Set `inhibit-x-resources' instead.
19644 (command-line-1): Use `inhibit-x-resources' instead.
19646 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
19648 * subr.el: Fix last change to avoid using the `unless' macro,
19649 which breaks bootstrapping.
19651 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19653 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
19654 extended definitions, in case we reload subr.el after having
19656 (eval-next-after-load): Mark as obsolete.
19658 2009-09-17 Juri Linkov <juri@jurta.org>
19660 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
19661 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
19662 (menu-bar-showhide-menu, menu-bar-tools-menu)
19663 (menu-bar-describe-menu, menu-bar-help-menu)
19664 (minibuffer-local-completion-map, minibuffer-local-map):
19667 2009-09-17 Glenn Morris <rgm@gnu.org>
19669 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
19670 arguments, whether or not it has a handler.
19672 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
19674 * simple.el (hard-newline): Give it a doc-string.
19676 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
19677 (lisp-mode-syntax-table): Give them doc-strings.
19679 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
19681 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
19682 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
19683 (menu-bar-options-menu, menu-bar-showhide-menu)
19684 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
19685 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
19686 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
19687 (menu-bar-options-menu, menu-bar-tools-menu)
19688 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
19689 (menu-bar-help-menu):
19690 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
19693 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
19694 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
19695 calls for the menu names and :help.
19697 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19699 * mouse.el (minor-mode-menu-from-indicator): Pay attention
19700 to :minor-mode-function (bug#4455).
19702 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
19704 * startup.el (command-line): Initialize the window-system after
19705 processing the command-line.
19707 * textmodes/page.el (what-page): Make sure we don't inf-loop if
19708 page-delimiter matches the empty string.
19710 2009-09-16 Glenn Morris <rgm@gnu.org>
19712 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
19713 byte-compile-not-obsolete-var. It's a list now.
19714 (byte-compile-not-obsolete-funcs): New variable.
19715 (byte-compile-warn-obsolete): Don't warn about functions if they are in
19716 byte-compile-not-obsolete-funcs.
19717 (byte-compile-variable-ref, byte-compile-defvar): Update for
19718 byte-compile-not-obsolete-vars name-change and list nature.
19719 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
19720 and variables behind (f)boundp tests.
19721 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
19723 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
19725 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
19727 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19729 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
19730 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
19733 2009-09-15 Stephen Eglen <stephen@gnu.org>
19735 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
19736 the virtual-buffers, use the name of the buffer specified by
19737 find-file-noselect, as the match may be a symlink. (This was a
19738 problem if the target and the symlink had different names.)
19740 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19742 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
19744 * desktop.el (desktop-path): Check user-emacs-directory.
19746 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
19748 * loadup.el: Use after-load-functions to GC after loading each file.
19749 Remove the explicit GC calls that used to be sprinkled around.
19751 * subr.el (after-load-functions): New hook.
19752 (do-after-load-evaluation): Run it. Use string-match-p to detect
19753 `obsolete' packages, rather than painfully extracting the relevant
19756 2009-09-15 Glenn Morris <rgm@gnu.org>
19758 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
19759 free variable `doc'.
19761 * dired.el (dired-mode-map): Add menu entry for async shell command.
19763 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
19764 variables, also consider the .elc files, since the .el files are
19765 normally gzipped (subsequent code locates the .el.gz from the .elc).
19767 * calc/calc-prog.el (arglist): Define for compiler.
19769 * calendar/diary-lib.el (diary-display-function): Change the default to
19771 (body): Define for compiler.
19773 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
19774 (byte-compile-file-form, byte-compile-lambda)
19775 (byte-compile-top-level-body, byte-compile-form)
19776 (byte-compile-variable-ref, byte-compile-setq)
19777 (byte-compile-setq-default, byte-compile-body)
19778 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
19779 (batch-byte-compile): Give some more local variables with common names
19780 a "bytecomp-" prefix to avoid masking warnings about free variables.
19782 * startup.el (command-line-1): Give local variables with common names a
19783 distinguishing prefix, so as not to hide free variable warnings during
19786 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
19787 clever and add a suffix to make a unique name, just let the user decide
19788 whether or not to overwrite it. If the input is a directory, write the
19789 default filename to that directory. (Bug#4388)
19790 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
19791 is a filename-as-a-directory.
19793 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19795 * textmodes/page.el (what-page): Don't move to beginning of line.
19796 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
19798 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
19800 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
19802 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
19804 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
19805 * help.el (help-for-help-internal): Add purecopy calls for text.
19807 * vc.el (top): print-log method now takes an optional SHORTLOG
19808 argument. Add a new method: root.
19809 (vc-root-diff, vc-print-root-log): New functions.
19810 (vc-log-short-style): New variable.
19811 (vc-print-log-internal): Add support for showing short logs.
19813 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
19814 vc-print-root-log and vc-print-root-diff.
19816 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
19817 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
19818 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
19821 * vc-cvs.el (vc-cvs-print-log):
19822 * vc-mtn.el (vc-mtn-print-log):
19823 * vc-rcs.el (vc-rcs-print-log):
19824 * vc-sccs.el (vc-sccs-print-log):
19825 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
19826 that is ignored for now.
19828 * vc-mtn.el (vc-mtn-annotate-command):
19829 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
19831 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
19833 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
19834 to function-key-map, and give them ascii-character property.
19835 * term/x-win.el (x-alternatives-map):
19836 * term/ns-win.el (ns-alternatives-map):
19837 * term/internal.el (msdos-key-remapping-map):
19838 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
19840 2009-09-14 Glenn Morris <rgm@gnu.org>
19842 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
19843 temp-buffers (2009-09-12).
19845 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
19847 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
19848 the new read-key function.
19850 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
19852 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
19853 is defined (Bug#4405).
19855 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
19857 * recentf.el (recentf-cleanup): Use a hash table to find
19858 duplicates (Bug#4407).
19860 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
19862 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
19863 kp-0 to ascii equivalents (Bug#4325).
19865 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
19867 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
19869 * eshell/em-hist.el:
19870 * eshell/em-dirs.el (eshell-complete-user-reference):
19871 Declare pcomplete functions and variables to avoid compiler warnings.
19873 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
19875 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
19876 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
19877 * eshell/em-alias.el (eshell-aliases-file):
19878 * eshell/em-hist.el (eshell-history-file-name):
19879 Use expand-file-name instead of concat to make file names (Bug#4308).
19881 2009-09-13 Glenn Morris <rgm@gnu.org>
19883 * ediff-merg.el (ediff-do-merge):
19884 * filesets.el (filesets-run-cmd):
19885 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
19886 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
19887 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
19888 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
19889 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
19890 Replace empty `let's with `progn'.
19892 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
19894 * mail/sendmail.el (send-mail-function):
19895 * tooltip.el (tooltip-mode):
19896 * simple.el (transient-mark-mode):
19897 * rfn-eshadow.el (file-name-shadow-mode):
19898 * frame.el (blink-cursor-mode):
19899 * font-core.el (global-font-lock-mode):
19900 * files.el (temporary-file-directory)
19901 (small-temporary-file-directory, auto-save-file-name-transforms):
19902 * epa-hook.el (auto-encryption-mode):
19903 * composite.el (global-auto-composition-mode):
19904 Use custom-initialize-delay.
19905 * startup.el (command-line): Don't explicitly call
19906 custom-reevaluate-setting for all the above vars.
19907 * custom.el (custom-initialize-safe-set)
19908 (custom-initialize-safe-default): Delete.
19910 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
19912 * term/x-win.el (x-initialize-window-system):
19913 * term/w32-win.el (w32-initialize-window-system):
19914 * term/ns-win.el (ns-initialize-window-system): Don't call
19915 mouse-wheel-mode since it's enabled globally by default already.
19917 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
19918 actually define the variable, but only silences the byte-compiler.
19919 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
19920 before looking it up.
19921 (mouse-wheel-scroll-amount): Also reset the bindings if this value
19924 2009-09-12 Glenn Morris <rgm@gnu.org>
19926 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
19928 (elint-add-required-env): Don't beep on error.
19929 (elint-forms): In case of error, return ENV unchanged.
19930 (elint-init-env): Skip non-list forms.
19931 (elint-log): Handle unknown file positions.
19933 2009-09-12 Daiki Ueno <ueno@unixuser.org>
19935 * epg.el (epg-make-context): Add autoload cookie.
19936 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
19937 (epg-decrypt-string, epg-start-verify, epg-verify-file)
19938 (epg-verify-string, epg-start-sign, epg-sign-file)
19939 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
19940 (epg-encrypt-string, epg-start-export-keys)
19941 (epg-export-keys-to-file, epg-export-keys-to-string)
19942 (epg-start-import-keys, epg-import-keys-from-file)
19943 (epg-import-keys-from-string, epg-start-receive-keys)
19944 (epg-receive-keys, epg-import-keys-from-server)
19945 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
19946 (epg-sign-keys, epg-start-generate-key)
19947 (epg-generate-key-from-file, epg-generate-key-from-string):
19948 Remove autoload cookie.
19950 2009-09-12 Eli Zaretskii <eliz@gnu.org>
19952 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
19953 reevaluation of trash-directory.
19955 * mwheel.el: Fix last change.
19956 (mouse-wheel-mode): New defvar.
19957 (mouse-wheel-mode): Remove autoload cookie.
19959 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
19961 * mwheel.el (mwheel-installed-bindings): New var.
19962 (mouse-wheel-mode): Use it, so as to make sure we really remove all
19963 the bindings we set last time. Use custom-initialize-delay.
19964 * loadup.el: Load mwheel after term/*-win.el.
19965 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
19966 and mouse-wheel-up-event now that their first evaluation is done
19967 sufficiently late to be correct.
19969 * startup.el (tutorial-directory): Make it a defcustom.
19970 Use custom-initialize-delay rather than eval-at-startup to set it.
19971 * image.el (image-load-path): Make it a defcustom.
19972 Use custom-initialize-delay rather than eval-at-startup to set it.
19973 * subr.el (eval-at-startup): Remove.
19974 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
19976 * subr.el (do-after-load-evaluation): Warn the user after loading an
19979 2009-09-12 Glenn Morris <rgm@gnu.org>
19981 * proced.el (proced-mark-alt): Remove alias.
19982 (proced-mode-map): Remove proced-mark-alt.
19984 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
19985 Elint file and directory. Remove initialization entry.
19987 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
19989 (elint-current-buffer): Set mode-line-process.
19990 (elint-init-env): Handle define-derived-mode.
19991 Fix declare-function with unspecified arglist. Guard against odd
19992 defalias statements (eg iso-insert's 8859-1-map).
19993 (elint-add-required-env): Use a temp buffer.
19994 (elint-form): Just print the function/macro name, not the whole form.
19995 Return env unchanged if we fail to parse a macro.
19996 (elint-forms): Guard against parse errors.
19997 (elint-output): New function, to handle batch mode.
19998 (elint-log-message): Add optional argument. Use elint-output.
19999 (elint-set-mode-line): New function.
20001 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
20003 * emacs-lisp/elp.el (elp-not-profilable): Add more
20004 functions (Bug#4233).
20006 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
20008 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
20009 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
20011 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
20013 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
20014 (gdb-var-list-children): Use json parsing.
20016 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
20018 * progmodes/js.el (js--proper-indentation): Handle the case where
20019 char-before is null. Reported by Deniz Dogan.
20021 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
20023 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
20025 2009-09-11 Daiki Ueno <ueno@unixuser.org>
20027 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
20028 (epg-digest-algorithm-alist): Add SHA224.
20029 (epg-context-set-passphrase-callback)
20030 (epg-context-set-progress-callback): Add description about
20033 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20035 * custom.el (custom-delayed-init-variables): New var.
20036 (custom-initialize-delay): New function.
20037 * startup.el (command-line): "Re"evaluate all vars in
20038 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
20039 explicitly any more.
20040 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
20041 to avoid creating a ~/.emacs.d at build-time (bug#4347).
20043 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
20045 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
20047 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
20048 (gdb-var-update-handler): Use json parsing.
20050 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
20052 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
20053 decode annotated text, regardless of language environment. (Bug#2741)
20055 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20057 * Makefile.in (autoloads): Make rmail.el writable as well.
20059 2009-09-11 Glenn Morris <rgm@gnu.org>
20061 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
20063 * dired.el: Regenerate with extracted autoloads.
20064 * Makefile.in (autoloads): Make dired.el writable.
20066 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
20067 * ibuffer.el: Regenerate with extracted autoloads.
20068 * Makefile.in (autoloads): Make ibuffer.el writable.
20070 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
20071 * version.el (emacs-copyright, emacs-major-version)
20072 (emacs-minor-version): Reformat doc-strings for make-docfile.
20074 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
20075 functions and variables, since they must be stuff specific to some other
20077 (apropos-print): Make mouse-click message less specific about button.
20079 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
20080 that records where a macro was defined.
20081 * help-fns.el (describe-function-1): Mention if a function has a
20083 * help-mode.el (help-function-cmacro): New button.
20085 * locate.el (top-level): Always require dired.
20086 (locate-mode-map): Initialize inside the defvar.
20088 * net/ange-ftp.el (dired-compress-file): Declare.
20089 (ange-ftp-dired-compress-file): Add doc string.
20091 * term/ns-win.el (x-display-name, x-setup-function-keys):
20092 Unify doc-strings with X versions.
20094 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20096 * emulation/crisp.el (crisp-mode-map): Move initialization
20098 (crisp-mode): Use define-minor-mode.
20100 * progmodes/xscheme.el (xscheme-evaluation-commands):
20101 Put a :advertised-binding property rather than using
20102 advertised-xscheme-send-previous-expression.
20103 (advertised-xscheme-send-previous-expression): Declare obsolete.
20104 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
20106 (crisp-mode): Add corresponding bindings to
20107 undo's :advertised-binding instead.
20108 * dired.el (dired-mode-map): Put a :advertised-binding property rather
20109 than using dired-advertised-find-file.
20110 (dired-advertised-find-file):
20111 * simple.el (advertised-undo):
20112 * wid-edit.el (advertised-widget-backward): Declare obsolete.
20113 (widget-keymap): Put a :advertised-binding property rather
20114 than using advertised-widget-backward.
20115 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
20116 than using advertised-undo.
20117 * tutorial.el (tutorial--default-keys): Adjust accordingly.
20119 2009-09-10 Simon South <ssouth@slowcomputing.org>
20121 * progmodes/delphi.el (delphi-tab): Indent region when Transient
20122 Mark mode is enabled and region is active; otherwise indent or
20123 insert TAB as usual.
20124 (delphi-mode): Update description of TAB-key binding.
20126 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
20128 * subr.el (define-key-rebound-commands): Mark obsolete.
20129 * startup.el (precompute-menubar-bindings): Remove.
20130 (normal-top-level): Remove obsolete code that tried to precompute
20132 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
20133 define-key-rebound-commands and precompute-menubar-bindings.
20135 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
20137 * net/imap.el (imap-interactive-login): Better messages.
20138 (imap-open): Fix bug with renamed buffer on reconnect.
20139 (imap-authenticate): Add buffer-local imap-last-authenticator variable
20140 for easier debugging and cleaner code. On successful (guessed based on
20141 server capabilities) secondary authentication, set imap-state
20143 (imap-last-authenticator): Define imap-last-authenticator as a variable
20146 2009-09-10 Glenn Morris <rgm@gnu.org>
20148 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
20150 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
20151 (byte-compile-file-form-autoload): Don't warn about unknown functions
20152 where the autoload statement comes after the use.
20153 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
20154 that any handlers inside the body (eg require) are in turn respected.
20156 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
20159 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
20160 and syntax and abbrev tables basic docs, if they don't have any.
20162 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
20164 * international/mule-cmds.el (top-level): Require cl when compiling.
20165 (view-hello-file): Use default-value rather than
20166 default-enable-multibyte-characters.
20168 * progmodes/fortran.el: Move all safe and risky properties into the
20171 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
20172 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
20173 * mail/undigest.el:
20174 Put autoloads in rmail.el rather than loaddefs.el.
20175 * mail/rmail.el: Regenerate with extracted autoloads.
20177 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
20178 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
20180 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
20182 Reported in thread for Bug#4375.
20183 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
20184 "-data-evaluate-expression" instead of print.
20185 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
20186 (gdb-tooltip-print): Parse output from above MI command.
20187 (gdb): Revert 2009-08-11 change. User should detach inferior
20190 Remove the word "separate" from IO functions as inferior
20191 output is now never displayed in the GUD buffer.
20193 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
20195 * startup.el (command-line-normalize-file-name): On Windows and
20196 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
20198 2009-09-10 Juri Linkov <juri@jurta.org>
20200 * isearch.el (isearch-text-char-description): Propertize escape
20201 character sequences with the `escape-glyph' face. (Bug#4344)
20203 * simple.el (shell-command): Set asynchronous process filter to
20204 `comint-output-filter'. (Bug#4343)
20206 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
20207 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
20208 the list. Move "asm" to the bottom.
20209 (grep-find-ignored-directories): Add `choice' with nil value
20210 to empty the list easily.
20211 (grep-find-ignored-files): New option.
20212 (grep-files-history): Set to nil by default instead of '("ch" "el").
20213 (grep-compute-defaults): Add "<X>" to `grep-template'.
20214 (grep-read-files): Bind new local variables `default-alias' and
20215 `default-extension'. Use a list of default values for the file prompt.
20216 (lgrep): Add `--exclude=' command line options composed from
20217 `grep-find-ignored-files'.
20218 (rgrep): Add `-name' command line options composed from
20219 `grep-find-ignored-files'. (Bug#4301)
20221 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
20223 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
20226 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
20228 * calendar/time-date.el (autoload):
20229 Expand define-obsolete-function-alias into defalias and make-obsolete
20230 for old Emacsen that Gnus supports.
20231 (with-no-warnings): Define it for old Emacsen.
20232 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
20234 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
20235 float-time is available; suppress compile warning for time-to-seconds.
20237 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
20239 * net/imap.el (imap-message-map): Docstring fix.
20241 2009-09-09 Glenn Morris <rgm@gnu.org>
20243 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
20244 line numbers too. (Bug#4374)
20246 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
20248 * smerge-mode.el (smerge-remove-props, smerge-refine):
20249 Use with-silent-modifications (bug#4342).
20251 * subr.el (with-silent-modifications): New macro.
20253 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
20255 * files.el (top-level): Require `cl' when compiling.
20257 2009-09-07 Glenn Morris <rgm@gnu.org>
20259 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
20261 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
20262 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
20264 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
20266 * vc-git.el (vc-git-annotate-command): Use separator to parse
20267 arguments correctly.
20269 2009-09-06 Eli Zaretskii <eliz@gnu.org>
20271 * proced.el (proced-mode): Doc fix.
20273 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
20275 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
20277 (tramp-do-file-attributes-with-ls): Check for file existence at
20279 (tramp-do-file-attributes-with-stat): Likewise.
20280 (tramp-convert-file-attributes): Return nil when attr is nil.
20282 2009-09-05 Glenn Morris <rgm@gnu.org>
20284 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
20285 properties to this button.
20286 (diary-fancy-display): Don't extend the button to the final newline.
20287 (diary-fancy-display-mode): Continue to define "q" as a local key.
20289 * calendar/cal-china.el (holiday-chinese): Make it slightly more
20292 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
20294 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
20295 (byte-compile-dest-file-function): New option.
20296 (byte-compile-dest-file): Doc fix.
20297 Obey byte-compile-dest-file-function.
20298 (byte-compile-cl-file-p): New function.
20299 (byte-compile-eval): Only suppress noruntime warnings about cl functions
20300 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
20301 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
20302 than for file being previously loaded.
20303 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
20304 (byte-compile-file-form-require): Handle the case where requiring a file
20305 indirectly causes CL to be loaded.
20307 2009-09-05 Karl Fogel <kfogel@red-bean.com>
20309 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
20310 before killing the old buffer, since by the time `kill-buffer' is
20311 run so many buffer variables have been set to nil that it may not
20312 behave as expected. (Bug#4061)
20314 2009-09-05 Karl Fogel <kfogel@red-bean.com>
20316 * files.el (find-alternate-file): If the old buffer is modified
20317 and visiting a file, behave similarly to `kill-buffer' when
20318 killing it, thus reverting to the pre-1.878 behavior; see
20319 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
20320 for discussion. Also, consult `buffer-file-name' as a variable
20321 not as a function, for consistency with the rest of the code.
20323 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
20325 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
20326 also when adding a new directory.
20328 * net/tramp-compat.el (tramp-compat-line-beginning-position):
20331 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
20333 * files.el (locate-file-completion-table): Make it provide boundary
20334 information, so partial-completion works better.
20336 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
20338 * mail/footnote.el (Footnote-text-under-cursor):
20339 Check footnote-text-marker-alist before using it (bug#4324).
20341 2009-09-04 Glenn Morris <rgm@gnu.org>
20343 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
20344 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
20345 * play/solitaire.el, play/tetris.el:
20346 Remove leading * from defcustom and defface docs.
20348 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
20350 (diary-fancy-overriding-map): New variable.
20351 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
20354 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
20357 2009-09-03 Glenn Morris <rgm@gnu.org>
20359 * arc-mode.el (archive-mode):
20360 * dos-fns.el (set-default-process-coding-system):
20361 * man.el (Man-getpage-in-background):
20362 * menu-bar.el (menu-bar-describe-menu):
20363 * server.el (server-process-filter):
20364 * startup.el (command-line):
20365 * tar-mode.el (tar-header-block-tokenize, tar-extract):
20366 * w32-fns.el (set-default-process-coding-system):
20367 * x-dnd.el (x-dnd-handle-file-name):
20368 * international/mule-cmds.el (mule-menu-keymap)
20369 (set-default-coding-systems, language-info-alist, set-language-info)
20370 (set-language-environment, standard-display-european-internal)
20371 (set-locale-environment):
20372 * international/mule-diag.el (mule-diag):
20373 * mail/emacsbug.el (report-emacs-bug):
20374 * mail/rmail.el (rmail-mode):
20375 * mail/sendmail.el (mail-setup):
20376 Use default-value rather than default-enable-multibyte-characters.
20378 * progmodes/f90.el: Move all safe properties into the defcustoms.
20379 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
20381 * calendar/appt.el (appt-check):
20382 * calendar/diary-lib.el (diary-set-header, diary-live-p)
20383 (diary-check-diary-file, diary-list-entries)
20384 (diary-include-other-diary-files, diary-simple-display)
20385 (diary-fancy-display, diary-print-entries)
20386 (diary-mark-included-diary-files, diary-make-entry):
20387 Don't call substitute-in-file-name on diary-file.
20389 2009-09-03 Eduard Wiebe <usenet@pusto.de>
20390 Stefan Monnier <monnier@iro.umontreal.ca>
20392 * mail/footnote.el (footnote-prefix): Make it a defcustom.
20393 (footnote-mode-map): Move initialization into the declaration.
20394 (footnote-minor-mode-map): Define it rather than changing global-map.
20395 (footnote-mode): Use define-minor-mode.
20397 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
20399 * net/tramp.el (tramp-handle-file-attributes-with-ls)
20400 (tramp-do-file-attributes-with-perl)
20401 (tramp-do-file-attributes-with-stat): Rename from
20402 `tramp-handle-file-attributes-with-*'.
20403 (tramp-handle-file-attributes): Use them.
20404 (tramp-do-directory-files-and-attributes-with-perl)
20405 (tramp-do-directory-files-and-attributes-with-stat): Rename from
20406 `tramp-handle-directory-files-and-attributes-with-*'.
20407 (tramp-handle-directory-files-and-attributes): Use them.
20408 (tramp-method-out-of-band-p): Additional parameter SIZE.
20409 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
20410 (tramp-handle-write-region): Use it.
20411 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
20412 (tramp-handle-vc-registered): Check, whether the first run did
20413 return files to be tested.
20414 (tramp-advice-make-auto-save-file-name): Do not call directly
20415 `tramp-handle-make-auto-save-file-name', because this would bypass
20416 the locking mechanism.
20418 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
20419 (file-remote-p, process-file, start-file-process, set-file-times)
20420 (tramp-compat-file-attributes): Compatibility functions shall not
20421 call directly `tramp-handle-*', because this would bypass the
20423 (tramp-compat-number-sequence): New defun.
20425 2009-09-02 Glenn Morris <rgm@gnu.org>
20427 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
20428 alias for float-time.
20429 (time-to-number-of-days): In Emacs, use float-time.
20430 * net/newst-backend.el (time-add): Suppress warnings from compat
20432 * time.el (emacs-uptime, emacs-init-time):
20433 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
20434 Use float-time rather than time-to-seconds.
20436 * minibuffer.el (completion-initials-expand): Fix typo.
20438 * faces.el (modeline, modeline-inactive, modeline-highlight)
20439 (modeline-buffer-id):
20440 * info.el (info-menu-5): Mark these face aliases as obsolete.
20442 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
20444 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
20446 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
20447 no "--thread" option.
20448 (gdb-stopped): Don't print "Switched to thread" message when it is
20451 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
20453 * minibuffer.el (completion-try-completion)
20454 (completion-all-completions): Remove ill-defined (and
20455 mistakenly installed and luckily never used nor documented)
20456 `completion-styles' property.
20457 (completion-initials-expand, completion-initials-all-completions)
20458 (completion-initials-try-completion): New functions.
20459 (completion-styles-alist): Add doc to each entry.
20460 Add new `initials' entry.
20462 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
20464 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
20465 MI command -var-evaluate-expression.
20466 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
20467 and tweak for case of string child.
20468 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
20470 2009-09-01 Glenn Morris <rgm@gnu.org>
20472 * add-log.el (change-log-date-face, change-log-name-face)
20473 (change-log-email-face, change-log-file-face, change-log-list-face)
20474 (change-log-conditionals-face, change-log-function-face)
20475 (change-log-acknowledgement-face):
20476 * cus-edit.el (custom-invalid-face, custom-rogue-face)
20477 (custom-modified-face, custom-set-face, custom-changed-face)
20478 (custom-saved-face, custom-button-face, custom-button-pressed-face)
20479 (custom-documentation-face, custom-state-face, custom-comment-face)
20480 (custom-comment-tag-face, custom-variable-tag-face)
20481 (custom-variable-button-face, custom-face-tag-face)
20482 (custom-group-tag-face-1, custom-group-tag-face):
20483 * diff-mode.el (diff-header-face, diff-file-header-face)
20484 (diff-index-face, diff-hunk-header-face, diff-removed-face)
20485 (diff-added-face, diff-changed-face, diff-function-face)
20486 (diff-context-face, diff-nonexistent-face):
20487 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
20488 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
20489 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20490 (Info-title-4-face):
20491 * isearch.el (isearch-lazy-highlight-face):
20492 * log-view.el (log-view-file-face, log-view-message-face):
20493 * paren.el (show-paren-match-face, show-paren-mismatch-face):
20494 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20495 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20497 * smerge-mode.el (smerge-mine-face, smerge-other-face)
20498 (smerge-base-face, smerge-markers-face):
20499 * wid-edit.el (widget-documentation-face, widget-button-face)
20500 (widget-field-face, widget-single-line-field-face)
20501 (widget-inactive-face, widget-button-pressed-face):
20502 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
20503 (woman-addition-face):
20504 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
20505 (eshell-ls-executable-face, eshell-ls-readonly-face)
20506 (eshell-ls-unreadable-face, eshell-ls-special-face)
20507 (eshell-ls-missing-face, eshell-ls-archive-face)
20508 (eshell-ls-backup-face, eshell-ls-product-face)
20509 (eshell-ls-clutter-face):
20510 * eshell/em-prompt.el (eshell-prompt-face):
20511 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
20512 * obsolete/old-whitespace.el (whitespace-highlight-face):
20513 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
20514 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
20515 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
20516 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
20517 (antlr-font-lock-literal-face):
20518 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
20519 (ebrowse-root-class-face, ebrowse-file-name-face)
20520 (ebrowse-default-face, ebrowse-member-attribute-face)
20521 (ebrowse-member-class-face, ebrowse-progress-face):
20522 * progmodes/make-mode.el (makefile-space-face):
20523 * progmodes/sh-script.el (sh-heredoc-face):
20524 * textmodes/flyspell.el (flyspell-incorrect-face)
20525 (flyspell-duplicate-face):
20526 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
20527 * textmodes/texinfo.el (texinfo-heading-face):
20528 Mark face aliases with "-face" suffix as obsolete.
20530 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
20533 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
20534 (eudc-bob-sound-menu): Use defvar rather than defconst, since
20535 easy-menu-define wants to modify these.
20537 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
20539 * net/browse-url.el (browse-url-file-url):
20540 * term/internal.el (dos-codepage-setup):
20541 Use default-value rather than default-enable-multibyte-characters.
20543 * progmodes/etags.el (etags-goto-tag-location):
20544 * progmodes/flymake.el (flymake-highlight-line)
20545 (flymake-goto-file-and-line, flymake-goto-line):
20546 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
20547 (gdb-goto-breakpoint):
20548 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
20549 * progmodes/python.el (python-find-function)
20550 (python-pdbtrack-track-stack-file):
20551 * progmodes/verilog-mode.el (verilog-surelint-off):
20552 * term/ns-win.el (ns-open-file-select-line):
20553 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
20554 Use forward-line rather than goto-line.
20556 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
20557 * textmodes/reftex-index.el (reftex-display-index):
20558 * textmodes/reftex-ref.el (reftex-offer-label-menu):
20559 * textmodes/reftex-toc.el (reftex-toc):
20560 Remove unnecessary bindings of default-major-mode (all are followed by
20561 major-mode check and possible mode switch).
20563 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
20565 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
20566 Handle watchpoints (bug#4282).
20567 (def-gdb-thread-buffer-command): Enable thread to be selected by
20568 clicking without selecting threads buffer first.
20569 (gdb-current-context-command): Use selected frame so that "up",
20570 "down" etc work in the GUD buffer.
20571 (gdb-update): Find selected frame before rendering stack buffer.
20572 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
20574 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
20576 * progmodes/sym-comp.el (displayed-completions): Remove.
20577 (symbol-complete): Use minibuffer-complete.
20579 2009-08-31 Glenn Morris <rgm@gnu.org>
20581 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
20583 * apropos.el (apropos-symbols-internal):
20584 Handle (obsolete) face aliases.
20586 * faces.el (describe-face): Adjust the output format to be more like
20587 describe-variable, and to mention (obsolete) face aliases.
20588 Adjust the whitespace so that help-setup-xref works.
20590 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
20591 * calendar/diary-lib.el (diary-button-face):
20592 Mark these face aliases as obsolete.
20594 * calendar/calendar.el (calendar-today): Doc fix.
20596 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
20598 * progmodes/gdb-mi.el (gdb-control-all-threads)
20599 (gdb-control-current-thread): Force tool bar update.
20600 (gdb-non-stop-handler): New function.
20601 (gdb-init-1): Use it to test if non-stop mode is supported.
20602 Remove unused gdbmi buffer type.
20604 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
20606 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
20607 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
20609 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
20611 * comint.el (comint-exec-1): Check command is non-null first.
20612 Part of gdb-mi.el change (2009-08-28).
20614 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20616 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
20618 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
20620 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
20621 instead of `dolist' to avoid a recursive require when bootstrapping.
20623 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20625 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
20627 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
20629 * net/imap.el (imap-send-command): Simplify.
20630 (imap-wait-for-tag): point-max -> buffer-size.
20632 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
20634 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
20635 with constant argument.
20637 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
20639 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
20641 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
20642 Change default, since most of our files don't have a history.
20643 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
20646 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20649 * calc/calc.el: Improve commenting convention.
20650 (calc-digit-map, toplevel): Simplify.
20652 * comint.el (comint-insert-input): Be careful to only set point if we
20653 don't delegate to some other command.
20655 * proced.el (proced-signal-list): Make it an alist.
20656 (proced-grammar-alist): Capitalize names.
20657 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
20658 Disable undo manually and make it read-only.
20659 Use completion-annotate-function.
20661 * minibuffer.el (minibuffer-message): If the current buffer is not
20662 a minibuffer, insert the message in the echo area rather than at the
20664 (completion-annotate-function): New variable.
20665 (minibuffer-completion-help): Use it.
20666 (completion--embedded-envvar-table): Environment vars are
20667 always case-sensitive.
20669 2009-08-30 Glenn Morris <rgm@gnu.org>
20671 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
20672 from fortran-current-defun.
20673 (fortran-beginning-of-subprogram): Be more precise about finding the
20674 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
20675 (fortran-end-of-subprogram): Simplify.
20676 (fortran-current-defun): Use fortran-start-prog-re.
20678 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
20680 * subr.el (do-after-load-evaluation): Simplify.
20682 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20684 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
20686 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
20687 (vc-rcs-print-log): Use it.
20689 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
20691 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20693 * paths.el (abbrev-file-name): Move to abbrev.el.
20694 * abbrev.el (abbrev-file-name): Move from paths.el.
20695 Obey user-emacs-directory.
20696 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
20697 user-emacs-directory.
20698 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
20699 abbrev-file-name and calc-settings-file any more.
20700 * startup.el (command-line): Recompute abbrev-file-name and
20701 abbreviated-home-dir.
20702 (normal-no-mouse-startup-screen): Improve the generic code and get rid
20703 of the special code for when C-h bindings haven't been changed.
20704 (display-startup-echo-area-message): Use with-current-buffer.
20705 (command-line-1): Use a list of strings, rather than a list of lists
20706 of strings for longopts.
20708 * files.el (get-free-disk-space): Use / for default-directory.
20710 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
20711 Use with-current-buffer.
20713 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
20714 Recognize immutable variables like most-positive-fixnum.
20715 (byte-compile-setq-default): Check and warn if trying to assign
20716 to an immutable variable, or a non-variable.
20718 * progmodes/cc-vars.el (c-comment-continuation-stars):
20719 * progmodes/cc-engine.el (c-looking-at-bos):
20720 * progmodes/cc-cmds.el (c-toggle-auto-state)
20721 (c-forward-into-nomenclature, c-backward-into-nomenclature)
20722 (c-comment-line-break-function): Add version of obsolescence.
20724 2009-08-28 Juri Linkov <juri@jurta.org>
20726 * files.el (magic-fallback-mode-alist): Add ZIP magic number
20727 associated with `archive-mode'.
20729 * image.el (image-type-header-regexps): Use only JPEG magic number
20730 to determine JPEG images, and don't use `image-jpeg-p' because
20731 Emacs can display non-JFIF non-Exif JPEG images.
20733 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
20735 * arc-mode.el (archive-mode):
20736 * emacs-lisp/re-builder.el (re-builder-unload-function):
20737 Protect against the default value of `major-mode' being nil.
20739 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
20741 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
20742 Fix typos in docstrings.
20744 * progmodes/js.el (js--macro-decl-re): Doc fix.
20745 (js--plain-method-re, js--split-name): Refloc docstring.
20746 (js--class-styles, js--make-merged-item, js--splice-into-items):
20747 Fix typos in docstrings; reflow docstrings.
20748 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
20749 (js--variable-decl-matcher, js--inside-pitem-p)
20750 (js--parse-state-at-point, js--get-all-known-symbols)
20751 (js--symbol-history, js-find-symbol, js--js-references)
20752 (js--moz-interactor, js--js-encode-value, js--read-tab):
20753 Fix typos in docstrings.
20755 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
20757 * textmodes/reftex.el (reftex-get-file-buffer-force):
20758 * progmodes/verilog-mode.el (verilog-batch-execute-func):
20759 * emulation/viper.el (viper-go-away, viper-set-hooks):
20760 * emacs-lisp/re-builder.el (re-builder-unload-function):
20761 * emacs-lisp/bytecomp.el (byte-compile-file):
20762 * ses.el (ses-unload-function):
20763 * hexl.el (hexl-find-file):
20764 * files.el (normal-mode):
20765 * ehelp.el (with-electric-help):
20766 * autoinsert.el (auto-insert-alist):
20767 * arc-mode.el (archive-mode):
20768 Use (default-value 'major-mode) instead of default-major-mode.
20770 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
20771 * international/mule.el (load-with-code-conversion):
20772 * emacs-lisp/debug.el (debug):
20773 * ediff-vers.el (ediff-rcs-get-output-buffer):
20774 * dired.el (dired-internal-noselect): Don't let-bind
20775 default-major-mode around code that doesn't use it.
20776 E.g. buffer creation via get-buffer-create doesn't use it.
20778 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
20780 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
20781 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
20782 when writing the temp file. Otherwise, epa-file gets confused.
20783 (tramp-register-file-name-handlers): Make it a defun. Move also
20784 `epa-file-handler' to the front of `file-name-handler-alist'.
20786 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
20788 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
20789 start right after a ^M.
20790 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
20791 (tramp-completion-file-name-regexp-separate)
20792 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
20793 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
20794 Don't modify last-coding-system-used by accident.
20795 (tramp-completion-file-name-handler): Apply the checks here,
20796 instead during registration.
20797 (tramp-register-file-name-handlers): Rename from
20798 `tramp-register-file-name-handler'. Register both
20799 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
20800 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
20802 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
20804 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
20805 Remove variable ...
20806 (gdb-init-1, gdb-display-separate-io-buffer)
20807 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
20809 (gdb-inferior-io-mode): Use make-comint-in-buffer.
20810 (gdb-inferior-filter): Use comint-output-filter to stop
20811 echoing and remove ^M characters.
20813 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
20815 * emulation/viper-init.el (viper-restore-cursor-type):
20816 * emulation/cua-base.el (cua--update-indications):
20817 Replace default-cursor-type with (default-value 'cursor-type).
20819 * mail/sendmail.el (mail-recover-1):
20820 * international/mule-diag.el (describe-current-coding-system-briefly)
20821 (describe-current-coding-system):
20822 * international/mule-cmds.el (select-safe-coding-system)
20823 (select-message-coding-system)
20824 (set-language-environment-coding-systems, set-locale-environment):
20825 * hexl.el (hexl-insert-multibyte-char):
20826 * dos-w32.el (find-buffer-file-type-coding-system):
20827 * simple.el (what-cursor-position):
20828 Replace uses of default-buffer-file-coding-system
20829 with (default-value 'buffer-file-coding-system).
20831 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
20832 Replace uses of default-cursor-in-non-selected-windows
20833 with (default-value 'cursor-in-non-selected-windows).
20834 Use with-current-buffer.
20836 * mail/feedmail.el: Use CL macros.
20837 (feedmail-run-the-queue, feedmail-send-it-immediately):
20838 * dos-w32.el (find-buffer-file-type): Replace uses of
20839 default-buffer-file-type with (default-value 'buffer-file-type).
20841 2009-08-28 Glenn Morris <rgm@gnu.org>
20843 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
20844 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
20845 Use default-value of major-mode rather than default-major-mode.
20847 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
20849 * Makefile.in (update-elcfiles): Report left over elc files.
20851 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
20852 expand-file-name and with-current-buffer.
20853 (mail-get-names, mail-directory): Use with-current-buffer.
20855 * vc.el (vc-read-revision): New function.
20856 (vc-version-diff, vc-merge): Use it.
20858 2009-08-27 Sam Steingold <sds@gnu.org>
20860 * simple.el (kill-do-not-save-duplicates): New user option.
20861 (kill-new): When it is non-nil, and the new string is the same as
20862 the latest kill, set replace to t to avoid duplicates in kill-ring.
20864 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
20866 * net/tramp.el (tramp-handle-process-file): Do not flush all
20867 caches when `process-file-side-effects' is set.
20868 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
20869 instead of `tramp-find-file-exists-command'.
20870 Unset `process-file-side-effects'.
20872 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
20874 * net/tramp.el (tramp-methods): New method "rsyncc".
20875 (top): Add completion function for "rsyncc".
20876 (tramp-message-show-message): New defvar.
20877 (tramp-message, tramp-error): Use it.
20878 (tramp-do-copy-or-rename-file-directly): Extend check for direct
20880 (tramp-do-copy-or-rename-file-out-of-band): Handle new
20881 `tramp-methods' entry `copy-env' of "rsyncc".
20882 (tramp-vc-registered-read-file-names): New defconst.
20883 (tramp-vc-registered-file-names): New defvar.
20884 (tramp-handle-vc-registered): Implement optimization strategy.
20885 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
20886 (tramp-vc-file-name-handler): New defun.
20887 (tramp-get-ls-command, tramp-get-test-command)
20888 (tramp-get-file-exists-command, tramp-get-remote-ln)
20889 (tramp-get-remote-perl, tramp-get-remote-stat)
20890 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
20892 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
20893 (tramp-cache-inhibit-cache): Extend doc string. It allows also
20895 (tramp-get-file-property): Check for timestamps in
20896 `tramp-cache-inhibit-cache'.
20897 (tramp-set-file-property): Write timestamp.
20899 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
20901 * language/japan-util.el (japanese-symbol-table): Add entries for
20904 * international/characters.el: Add category `j' to cp932-2-byte.
20906 2009-08-27 Kenichi Handa <handa@m17n.org>
20908 * international/fontset.el (build-default-fontset-data): New macro.
20909 (setup-default-fontset): Use build-default-fontset-data for CJK,
20910 tibetan, ethiopic, and ipa.
20912 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
20914 * cus-start.el (default-major-mode): Customize `major-mode' instead.
20915 (enable-multibyte-characters): Not customizable any more.
20917 * subr.el (default-mode-line-format, default-header-line-format)
20918 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
20919 (default-direction-reversed, default-truncate-lines)
20920 (default-left-margin, default-tab-width, default-case-fold-search)
20921 (default-left-margin-width, default-right-margin-width)
20922 (default-left-fringe-width, default-right-fringe-width)
20923 (default-fringes-outside-margins, default-scroll-bar-width)
20924 (default-vertical-scroll-bar, default-indicate-empty-lines)
20925 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
20926 (default-fringe-cursor-alist, default-scroll-up-aggressively)
20927 (default-scroll-down-aggressively, default-fill-column)
20928 (default-cursor-type, default-buffer-file-type)
20929 (default-cursor-in-non-selected-windows)
20930 (default-buffer-file-coding-system, default-major-mode)
20931 (default-enable-multibyte-characters): Mark as obsolete.
20933 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
20935 * vc-dir.el (vc-dir-update): Remove debug helper.
20937 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
20939 2009-08-26 Sam Steingold <sds@gnu.org>
20941 * simple.el (save-interprogram-paste-before-kill): New user option.
20942 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
20943 save the interprogram-paste into kill-ring before overriding it
20944 with the Emacs kill.
20946 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
20948 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
20949 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
20950 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
20951 and move to vc-rcs.el.
20952 (vc-default-next-revision): Rename to vc-rcs-next-revision and
20954 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
20955 (vc-rcs-update-changelog): Remove.
20956 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
20957 and move to vc-rcs.el.
20959 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
20960 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
20962 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
20963 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
20964 vc.el, renamed to be RCS specific.
20966 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
20968 (vc-cvs-update-changelog): Move here from vc.el.
20970 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
20973 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
20975 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
20977 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
20979 * vc-git.el (vc-git-register): Use "git add" for directories.
20980 (vc-git-stash, vc-git-stash-show): New functions.
20981 (vc-git-extra-menu-map): Bind them.
20983 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
20984 directory correctly in case the item is a directory itself.
20986 * vc.el: Document the desired behavior for reverted files in the
20988 (vc-default-prettify-state-info): Remove function, unused.
20990 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
20992 2009-08-26 Glenn Morris <rgm@gnu.org>
20994 * bindings.el (standard-mode-line-format): Reposition dashes in
20995 which-func entry. (Bug#4217)
20997 * files.el (enable-local-variables, enable-local-eval)
20998 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
21000 (auto-mode-alist, ignored-local-variables)
21001 (save-some-buffers-action-alist): Move risky declarations to the
21003 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
21004 (font-lock-defaults, format-alist, imenu--index-alist)
21005 (imenu-generic-expression, input-method-alist, minor-mode-alist)
21006 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
21007 (mode-line-modified, mode-line-mule-info, mode-line-position)
21008 (mode-line-process, mode-line-remote, outline-level)
21009 (parse-time-rules, rmail-output-file-alist)
21010 (special-display-buffer-names, vc-mode):
21011 Move risky declarations to the relevant files.
21012 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
21013 (mode-line-modified, mode-line-process, mode-line-position)
21014 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
21015 * font-core.el (font-lock-defaults):
21016 * format.el (format-alist):
21017 * vc-hooks.el (vc-mode):
21018 * window.el (special-display-buffer-names):
21019 * international/mule-cmds.el (input-method-alist):
21020 Define riskiness here (dumped file) rather than in files.el.
21021 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
21022 * imenu.el (imenu-generic-expression, imenu--index-alist):
21023 * outline.el (outline-level):
21024 * time.el (display-time-string):
21025 * calendar/parse-time.el (parse-time-rules):
21026 * mail/rmailout.el (rmail-output-file-alist):
21027 Autoload riskiness here, rather than placing in files.el.
21029 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
21031 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
21033 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
21035 * simple.el (process-file-side-effects): New defvar.
21037 * dired-aux.el (dired-show-file-type):
21038 * vc.el (vc-diff-internal):
21039 * vc-arch.el (vc-arch-diff):
21040 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
21041 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
21042 * vc-git.el (vc-git-registered, vc-git-working-revision)
21043 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
21044 (vc-git--empty-db-p):
21045 * vc-hooks.el (vc-user-login-name):
21046 * vc-svn.el (vc-svn-registered, vc-svn-state)
21047 (vc-svn-dir-extra-headers, vc-svn-find-revision):
21048 * progmodes/grep.el (grep-probe): Let-bind
21049 `process-file-side-effects' with nil.
21051 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
21053 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
21054 daemon. Replace ping by checking for running service for bluez
21055 and zeroconf. (Bug#4239)
21057 2009-08-25 Kevin Ryde <user42@zip.com.au>
21059 * net/dig.el (dig): Add autoload cookie.
21061 2009-08-25 Glenn Morris <rgm@gnu.org>
21063 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
21064 load-history for absolute file-names.
21065 (byte-compile-file-form-require): Warn about use of the cl package.
21067 * format.el (format-alist): Doc fix.
21069 * play/bubbles.el (top-level): Don't require cl at run-time.
21071 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
21074 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
21076 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
21078 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
21080 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
21082 * calc/calc-alg.el (math-trig-rewrite)
21083 (math-hyperbolic-trig-rewrite): New functions.
21084 (calc-simplify): Simplify trig functions when asked.
21086 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
21088 * diff-mode.el (diff-find-source-location): Avoid goto-line.
21090 2009-08-24 Kenichi Handa <handa@m17n.org>
21092 * language/ind-util.el (mapthread): Delete it.
21093 (combinatorial): New function.
21094 (indian--puthash-cv): Use combinatorial instead of mapthread.
21096 2009-08-22 Kevin Ryde <user42@zip.com.au>
21098 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
21099 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
21100 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
21101 Clarify docstring that the value is strings not symbols.
21102 (checkdoc-list-of-strings-p): New function.
21104 2009-08-22 Glenn Morris <rgm@gnu.org>
21106 * files.el (auto-mode-alist):
21107 * hippie-exp.el (he-concat-directory-file-name):
21108 * lpr.el (lpr-windows-system, printer-name):
21109 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
21110 * ps-print.el (ps-windows-system):
21111 * startup.el (command-line):
21112 * emulation/viper-ex.el (viper-glob-function):
21113 * international/mule-cmds.el (set-language-environment-coding-systems):
21114 * net/ange-ftp.el (ange-ftp-write-region):
21115 * obsolete/fast-lock.el (fast-lock-cache-name):
21116 Remove code for defunct system-types emx, macos, mswindows, next-mach,
21117 unisoft-unix, vax-vms, win32, w32.
21119 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
21120 given name if the pattern is not more specific.
21122 * calendar/lunar.el (lunar-phase-names): New option.
21123 (lunar-phase): Doc fix.
21124 (lunar-cycles-per-year): New constant.
21125 (lunar-index): New function.
21126 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
21127 (lunar-phase-name): Use lunar-phase-names.
21128 (calendar-lunar-phases): Use format.
21129 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
21131 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
21132 Copy imenu-example--name-and-position function here for own use.
21133 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
21135 * bs.el (bs--redisplay):
21136 * cus-edit.el (custom-redraw):
21137 * ibuffer.el (ibuffer-bury-buffer):
21138 * server.el (server-goto-line-column):
21139 * startup.el (command-line-1):
21140 * strokes.el (strokes-xpm-for-stroke):
21141 * term.el (term-display-buffer-line):
21142 * view.el (View-goto-line):
21143 * calc/calc.el (calc-do, calc-trail-buffer):
21144 * play/gamegrid.el (gamegrid-add-score-insecure):
21145 * progmodes/ada-mode.el (ada-compile-goto-error):
21146 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
21147 (ebrowse-select-1st-to-9nth):
21148 * progmodes/cperl-mode.el (cperl-time-fontification):
21149 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
21150 * progmodes/gud.el (gud-display-line):
21151 (idlwave-shell-display-line):
21152 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
21153 * progmodes/make-mode.el (makefile-browser-toggle):
21154 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
21155 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
21156 * textmodes/picture.el (picture-draw-rectangle):
21157 * textmodes/reftex-index.el (reftex-index-goto-letter):
21158 (reftex-select-jump-to-previous):
21159 * textmodes/reftex-sel.el (reftex-find-start-point)
21160 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
21161 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
21162 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
21163 * textmodes/tex-mode.el (tex-compilation-parse-errors):
21164 * textmodes/two-column.el (2C-associated-buffer):
21165 Use forward-line rather than goto-line.
21167 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
21170 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
21171 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
21172 (quick-check-list-to-regexp): Declare.
21174 * progmodes/make-mode.el (makefile-browser-insert-selection):
21175 Use goto-char rather than goto-line.
21177 * progmodes/prolog.el (compilation-error-regexp-alist)
21178 (compilation-forget-errors): Declare.
21180 2009-08-22 Juri Linkov <juri@jurta.org>
21182 * progmodes/grep.el (lgrep, rgrep): At the beginning
21183 set `dir' to `default-directory' unless `dir' is a non-nil
21184 readable directory. (Bug#4052)
21185 (lgrep, rgrep): Change a weird way to report an error
21186 from using `read-string' to using `error'.
21187 Instead of using interactive arguments in the function body,
21188 add new argument `confirm'.
21190 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
21192 * textmodes/remember.el (remember-buffer):
21193 * progmodes/cperl-mode.el (cperl-vc-header-alist):
21194 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
21195 (icalendar-extract-ical-from-buffer):
21196 * net/newst-treeview.el (newsticker-groups-filename):
21197 * net/newst-backend.el (newsticker-cache-filename):
21198 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
21199 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
21200 (speedbar-add-ignored-path-regexp, speedbar-line-path)
21201 (speedbar-buffers-line-path, speedbar-path-line)
21202 (speedbar-buffers-line-path):
21203 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
21205 * epa.el (epa-display-verify-result):
21206 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
21208 2009-08-21 Glenn Morris <rgm@gnu.org>
21210 * progmodes/js.el (inferior-moz-process): Fix declaration.
21212 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
21214 * obsolete/rnewspost.el (news-mail-reply):
21215 Use goto-char rather than goto-line.
21217 * term/ns-win.el (ns-open-file-select-line):
21218 Use line-beginning-position rather than goto-line.
21220 * apropos.el (apropos-command):
21221 * ehelp.el (electric-helpify):
21222 * printing.el (pr-show-setup):
21223 * strokes.el (strokes-help):
21224 * tutorial.el (tutorial--describe-nonstandard-key)
21225 (tutorial--detailed-help):
21226 * woman.el (woman-mini-help, woman-display-extended-fonts):
21227 * calc/calc-help.el (calc-describe-key):
21228 * emulation/edt.el (edt-electric-helpify):
21229 * international/mule-diag.el (mule-diag):
21230 * play/yow.el (apropos-zippy):
21231 * progmodes/python.el (python-describe-symbol):
21232 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
21233 * textmodes/table.el (*table--cell-describe-mode)
21234 (*table--cell-describe-bindings):
21235 Use help-print-return-message rather than the now obsolete alias.
21237 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
21238 (calendar-cursor-to-visible-date):
21239 * play/5x5.el (5x5-position-cursor):
21240 * play/decipher.el (decipher):
21241 * play/gomoku.el (gomoku-goto-xy):
21242 * play/landmark.el (lm-goto-xy):
21243 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
21244 (mpuz-paint-digit):
21245 Use forward-line, not goto-line.
21247 * mail/rmail.el (rmail-obsolete): Delete custom group.
21248 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
21249 (rmail-remote-password, rmail-remote-password-required):
21250 Remove unneeded :set-after and :set properties.
21252 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
21254 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
21256 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
21258 * loadup.el: Remove leftover macos code.
21260 * vc-git.el (vc-git-annotate-command): Run asynchronously.
21261 Explicitly pass the date format to git blame so that user local
21262 so that the output format can be parsed.
21264 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
21266 * net/dbus.el (top): Don't check for (getenv
21267 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
21269 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
21271 * log-edit.el (log-edit-strip-single-file-name): New var.
21272 (log-edit-insert-changelog): Use it. Bug#3571.
21274 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21276 * subr.el (read-passwd): Use read-key so keypad keys work as well.
21279 * help.el (help-print-return-message): Rename from
21280 print-help-return-message.
21282 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
21283 cvs-mode-map parent hack.
21284 (log-view-mode): Derive from special-mode.
21286 * linum.el (linum-mode): window-size-change-functions is redundant.
21287 Adapt to new window-configuration-change-hook behavior.
21288 (linum-after-size, linum-after-config): Remove.
21290 * imenu.el (imenu-example--name-and-position)
21291 (imenu-example--lisp-extract-index-name)
21292 (imenu-example--create-lisp-index, imenu-example--create-c-index):
21295 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
21296 (inferior-prolog-mode): Use it.
21297 (inferior-prolog-load-file): Reset list of errors.
21299 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
21301 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
21303 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
21305 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
21307 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
21308 is running already.
21310 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21312 * subr.el (listify-key-sequence-1): Use normal syntax since those
21313 integers are nowadays always represented by the same (positive) number
21315 (read-key-empty-map): New const.
21316 (read-key-delay): New var.
21317 (read-key): New function.
21318 (force-mode-line-update): Use with-current-buffer.
21319 (locate-user-emacs-file): Don't forget to abbreviate the file name.
21320 (start-process-shell-command, start-file-process-shell-command):
21321 Discourage the use of command-args.
21323 2009-08-19 Glenn Morris <rgm@gnu.org>
21325 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
21327 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21329 * simple.el (choose-completion-string): Don't rely on
21330 minibuffer-completing-file-name and ad-hoc checks to decide whether
21331 to continue completion or not.
21333 * minibuffer.el (minibuffer-hide-completions): New function.
21334 (completion--do-completion): Use it.
21335 (completions-annotations): New face.
21336 (completion--insert-strings): Use it.
21337 (completion-pcm--delim-wild-regex): Add docstring.
21338 (completion-pcm--string->pattern): Add support for 0-width delimiters
21339 in completion-pcm--delim-wild-regex.
21341 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
21343 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
21344 Remove unused var `buffer-modified-p'.
21346 * minibuffer.el (completion--do-completion): Move point for the #b001
21347 case as well (bug#4176).
21348 (minibuffer-complete, minibuffer-complete-word): Don't move point.
21350 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
21352 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
21353 and :session buses.
21355 2009-08-18 Kenichi Handa <handa@m17n.org>
21357 * international/ucs-normalize.el (ucs-normalize-version):
21359 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
21360 (utf-8-hfs): Make it perform normalization on encoding too.
21362 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
21363 (sentence-end-without-space): Delete duplicated chars.
21364 (sentence-end-base): Likewise.
21366 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
21367 (html-mode): Delete duplicated chars from sentence-end-base.
21369 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
21370 (texinfo-mode): Delete duplicated chars from sentence-end-base.
21372 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
21374 * files.el (hack-one-local-variable): If the mode function is for
21375 a minor mode, pass it an argument (Bug#4148).
21377 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
21379 * net/tramp.el (tramp-register-completion-file-name-handler):
21380 Check also for (member 'partial-completion completion-styles).
21382 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21384 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
21387 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
21389 * progmodes/cperl-mode.el: Merge upstream 6.2.
21390 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
21391 (cperl-forward-re): Check cperl-brace-recursing.
21392 (cperl-highlight-charclass): New function.
21393 (cperl-find-pods-heres): Use it.
21394 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
21395 (cperl-beautify-regexp-piece): Fix column calculation.
21396 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
21397 (cperl-beautify-level): Don't process entire regexp.
21398 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
21400 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
21401 (cperl-init-faces): Build a list in the normal way.
21403 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21405 * calendar/parse-time.el (parse-time-string-chars): Save match
21408 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
21410 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
21411 (sql-product): Use it.
21412 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
21413 (sql-set-product): Add completion.
21414 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
21415 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
21416 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
21417 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
21418 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
21419 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
21420 (sql-highlight-db2-keywords): Remove.
21421 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
21422 (sql-highlight-product): Use derived-mode-p.
21423 (sql-set-sqli-buffer): Use with-current-buffer.
21424 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
21427 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
21429 * term.el: Fix commenting convention, turn comments into docstrings.
21431 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
21433 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
21435 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
21437 * calendar/parse-time.el (parse-time-string-chars): Compute using
21438 character classes, to handle non-ascii characters (Bug#3190).
21440 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21442 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
21443 another heredoc if the user adds another < (Bug#3226).
21445 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
21446 Don't initialize based on window-system (Bug#4124).
21448 * facemenu.el (facemenu-read-color): Use a completion function
21449 that accepts any defined color, such as RGB triplets (Bug#3677).
21451 * files.el (get-free-disk-space): Change fallback default
21452 directory to /. Expand DIR argument before switching to fallback.
21453 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
21455 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
21457 * files.el (load-library): Doc fix.
21459 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
21461 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
21462 (viper-if-string): Redefine C-s in the minibuffer to insert the last
21463 incremental search string.
21465 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
21468 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
21469 (ediff-merge-region-is-non-clash)
21470 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
21471 Also check if the job is really a merge job.
21473 * ediff.el (ediff-current-file): New function.
21475 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
21477 * progmodes/js.el: Edit docstrings throughout to follow Emacs
21479 (js-insert-and-indent): Delete function.
21480 (js-mode-map): Don't bind keys to js-insert-and-indent.
21481 (js-beginning-of-defun): Rename from js--beginning-of-defun.
21482 (js-end-of-defun): Rename from js--end-of-defun.
21483 (js-auto-indent-flag): Delete variable.
21485 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
21487 * progmodes/js.el: Remove proclaim statement.
21488 Defvar which-func-imenu-joiner-function to silence compiler.
21490 * files.el (auto-mode-alist): Use js-mode for .js files.
21492 * progmodes/js2-mode.el: Remove file.
21494 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
21496 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
21498 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
21500 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
21501 Karl Landstrom <karl.landstrom@brgeight.se>
21503 * progmodes/js.el: New file.
21505 2009-08-14 Mark A. Hershberger <mah@everybody.org>
21507 * timezone.el (timezone-parse-date): Add ability to understand ISO
21508 basic format (minimal separators) dates in addition to the
21509 already-supported extended format dates.
21511 2009-08-14 Eli Zaretskii <eliz@gnu.org>
21513 * international/ucs-normalize.el: Add a `coding' file variable.
21515 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
21517 2009-08-14 Sam Steingold <sds@gnu.org>
21519 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
21521 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
21523 * faces.el (help-argument-name): Define it here instead of
21524 help-fns.el, because in daemon mode help-fns.el may be loaded when
21525 faces are still uninitialized (Bug#1078).
21527 * help-fns.el (help-argument-name): Move defface to faces.el.
21529 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
21531 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
21532 create buffer with a pty but no process so that GDB can make the
21533 inferior the controlling process.
21535 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
21537 * international/ucs-normalize.el: New file.
21539 2009-08-13 Richard Stallman <rms@gnu.org>
21541 * mail/rmail.el (rmail-get-attr-names):
21542 Accept an attribute header that is too short.
21544 * mail/rmail.el (rmail-forget-messages):
21545 Ignore nil elt in rmail-message-vector. Use dotimes.
21547 * progmodes/compile.el (compilation-goto-locus):
21548 Use next-error-move-function.
21550 * simple.el (next-error-move-function): New variable.
21552 2009-08-12 Juri Linkov <juri@jurta.org>
21554 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
21555 always non-nil. (Bug#4052)
21557 * replace.el (read-regexp): Return empty string when
21558 `default-value' is nil.
21559 (keep-lines-read-args): Don't use empty string as the
21560 default value for `read-regexp'. (Bug#2495)
21562 2009-08-12 Juri Linkov <juri@jurta.org>
21564 * international/mule-cmds.el (ucs-insert): Change arguments
21565 from `arg' to `character', `count', `inherit' to be the same
21566 as in `insert-char'. Doc fix. (Bug#4039)
21568 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
21570 2009-08-12 Juri Linkov <juri@jurta.org>
21572 * files-x.el: New file.
21574 * files.el: Move code that deals with adding/deleting
21575 file/directory-local variables to files-x.el.
21577 * Makefile.in (ELCFILES): Add files-x.elc.
21579 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
21581 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
21582 to use `goto-line'.
21583 (gdb-place-breakpoints, gdb-get-location): Rewritten without
21585 (gdb-invalidate-disassembly): Do not refresh upon receiving
21586 'update signal. Instead, update all disassembly buffers only after
21588 (gdb): Send -target-detach when buffer is killed (Bug#3794).
21589 (gdb-starting): Move -data-list-register-names...
21590 (gdb-stopped): ...here so it's sent when first thread stops.
21591 (gdb-registers-handler-custom): Do nothing if register names are
21594 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
21595 from `gdb-mi.el' to avoid extra tangling.
21597 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
21598 change which breaks `gud-def' definitions used in `gdb'.
21599 (gdb-update-gud-running): No extra fuss for updating frame number.
21601 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
21603 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
21604 (describe-language-environment-map, setup-language-environment-map)
21605 (set-coding-system-map): Move initialization into declaration.
21606 (set-language-info-alist): Last arg to define-key-after can be skipped.
21608 * international/quail.el (quail-completion-1): Simplify.
21609 (quail-define-rules): Use slightly more compact code.
21610 (quail-insert-decode-map): Propertize keys, compact columns.
21612 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
21615 2009-08-10 Miles Bader <miles@gnu.org>
21617 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
21618 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
21619 (js2-instance-member, js2-private-member, js2-private-function-call)
21620 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
21621 (js2-magic-paren, js2-external-variable):
21622 Remove "-face" suffix from face names.
21623 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
21624 (js2-highlight-undeclared-vars, js2-peek-token)
21625 (js2-parse-function-params, js2-mode-show-errors)
21626 (js2-mode-show-warnings, js2-make-magic-delimiter)
21627 (js2-mode-highlight-magic-parens): Update to use new face names.
21629 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
21631 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
21632 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
21634 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
21636 * subr.el: Provide hashtable-print-readable.
21638 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
21639 hs-c-like-adjust-block-beginning.
21640 (hs-hide-block-at-point): Stop hiding at the beginning of
21641 hs-block-end-regexp (Bug#700).
21643 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
21645 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
21647 (gdb-registers-handler-custom): Do not fail when register names
21650 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21652 * progmodes/gdb-mi.el (gdb-control-all-threads)
21653 (gdb-control-current-thread): Interactive setters for
21654 `gdb-gud-control-all-threads' to use in menu.
21655 (gdb-show-run-p): Show «Go» when process is not active.
21656 (gud-tool-bar-map): Add non-stop/A,T indicator.
21657 Uses gud/thread.xpm and gud/all.xpm.
21659 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
21661 * net/net-utils.el (net-utils-font-lock-keywords): New var.
21662 (nslookup-font-lock-keywords): Make it a variable.
21663 (net-utils-mode): New mode for viewing diagnostic network output.
21664 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
21665 (net-utils-run-simple): New function.
21666 (ifconfig, iwconfig, netstat, arp, route): Use it.
21668 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21670 * progmodes/gdb-mi.el (gdb-read-memory-custom)
21671 (gdb-memory-set-address, def-gdb-set-positive-number)
21672 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
21673 after changing settings.
21674 (gdb-invalidate-disassembly): Update when first shown.
21675 (gdb-edit-locals-value): Fix.
21676 (gdb-registers-handler-custom): Print registers in right order and
21677 allow changing register values (only for current thread yet).
21678 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
21679 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
21680 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
21681 (gdb-locals-handler-custom, gdb-registers-handler-custom):
21682 Thread info in mode name.
21683 (gdb-registers-mode-map): TAB to switch to locals.
21685 2009-08-08 Eli Zaretskii <eliz@gnu.org>
21687 * mail/rmail.el (rmail-add-mbox-headers)
21688 (rmail-set-message-counters-counter): Search for
21689 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
21691 2009-08-08 Glenn Morris <rgm@gnu.org>
21693 * Makefile.in (ELCFILES): Update.
21695 2009-08-07 Eli Zaretskii <eliz@gnu.org>
21697 * mail/sendmail.el (mail-yank-original):
21698 Set buffer-file-coding-system from the one used by the message whose
21701 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
21702 to "windows" when "pgnuplot" is used.
21703 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
21704 Don't call accept-process-output if "pgnuplot" is used.
21705 (calc-graph-init): Don't send -display and -geometry to
21706 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
21707 running "pgnuplot -V" with shell-command-to-string.
21709 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
21712 2009-08-07 Eli Zaretskii <eliz@gnu.org>
21714 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
21717 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
21719 * vc-dispatcher.el (vc-resynch-window): Update comment.
21721 * term.el (term-handle-ansi-escape): Add comments with the
21722 terminfo capabilities implemented.
21724 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
21726 * progmodes/gdb-mi.el (gdb-var-create-regexp): Remove.
21727 (gdb-var-create-handler): Rewritten using JSON parser.
21728 (gdb-propertize-header): Move earlier.
21729 (gdb-set-header): Remove to avoid duplication.
21730 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
21731 Refresh disassembly buffers only after threads list have been
21733 (gdb-threads-header, gdb-registers-header): Per-buffer header line
21736 2009-08-04 Juri Linkov <juri@jurta.org>
21738 * files.el: Commands to add/delete file/directory-local variables.
21739 (read-file-local-variable, read-file-local-variable-value)
21740 (read-file-local-variable-mode, modify-file-local-variable)
21741 (modify-file-local-variable-prop-line)
21742 (modify-dir-local-variable): New functions.
21743 (add-file-local-variable, delete-file-local-variable)
21744 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
21745 (add-dir-local-variable, delete-dir-local-variable)
21746 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
21747 (copy-dir-locals-to-file-locals-prop-line): New commands.
21749 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
21751 * abbrev.el (insert-abbrev-table-description): Prettify output.
21752 Suggested by Karl Chen.
21754 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
21756 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
21757 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
21758 (gdb-overlay-arrow-position, gdb-thread-position)
21759 (gdb-disassembly-position): Declare variables.
21760 (gdb-wait-for-pending): Function now.
21761 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
21762 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
21763 compilation goes smoothly.
21764 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
21765 (gdb-non-stop-setting): New customization setting which replaces
21766 `gdb-non-stop' so changing it doesn't break active GDB session.
21767 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
21768 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
21769 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
21770 (gdb-show-threads-by-default): New customization options.
21771 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
21773 (gdb-get-buffer-create): Send buffers update signal when they are
21775 (gdb-invalidate-locals, gdb-invalidate-registers)
21776 (gdb-invalidate-breakpoints)
21777 (gdb-invalidate-threads, gdb-invalidate-disassembly)
21778 (gdb-invalidate-memory): Accept update signal.
21779 (gdb-current-context-command): Use --frame option.
21780 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
21781 Implement `gdb-frame-number' selection logic.
21782 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
21783 whether to show GUD toolbar buttons.
21784 (gdb-thread-exited): Unselect current thread when it exits.
21785 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
21786 (gdb-mark-line): Routine which sets overlay arrow or inverses
21787 video on fringeless displays.
21788 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
21789 to build aligned columns of data in GDB buffers and set text
21790 properties line-by-line.
21791 (gdb-invalidate-breakpoints)
21792 (gdb-breakpoints-list-handler-custom)
21793 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
21794 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
21795 (gdb-registers-handler-custom): Align data columns.
21796 (gdb-locals-handler-custom): Now prints data like in variable
21798 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
21799 Remove confusing buttons.
21800 (gdb-invalidate-threads): Append --frame.
21801 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
21802 between breakpoints/threads buffers.
21803 (gdb-set-window-buffer): Now can ignore dedicated windows.
21804 (gdb-propertize-header): Use `gdb-set-window-buffer'.
21805 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
21806 (def-gdb-thread-buffer-gud-command): Replaces
21807 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
21808 for fine thread control.
21809 (gdb-preempt-existing-or-display-buffer): New function used to
21810 display bound buffers without breaking window layout.
21811 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
21812 (gdb-select-frame): New version of `gdb-frames-select' which now
21813 sets `gdb-frame-number' so commands may use --frame option instead
21814 of inner debugger state.
21815 (gdb-frame-handler): Do not set `gdb-frame-number'.
21816 (gdb-threads-mode-map): Select threads with mouse.
21818 * progmodes/gud.el (gdb-gud-context-call): Declare function to
21819 avoid compilation warning.
21820 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
21823 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
21824 Argument `key' renamed to `buffer-type'.
21825 (gdb-current-context-buffer-name): Do not add thread info to
21826 buffer name when no thread is selected.
21827 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
21828 command (bug 3794).
21829 (gdb-thread-selected): Handle `=thread-selected' notification.
21830 (gdb-wait-for-pending): New macro to deal with congestion problems.
21831 (gdb-breakpoints-list-handler-custom): Don't fail on pending
21833 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
21834 This fixes problem similar to one described in bug 3947.
21835 (gud-menu-map): More menu items.
21836 (gdb-init-1): Reset `gdb-thread-number' to nil.
21838 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
21841 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
21842 (gdb-current-context-command): Do not append --thread if
21843 `gdb-thread-number' is nil.
21844 (gdb-running-threads-count, gdb-stopped-threads-count):
21846 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
21847 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
21848 New customization options.
21849 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
21851 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
21852 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
21853 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
21854 set `gdb-thread-number' and update `gud-running' properly.
21855 (gdb-running): Update threads list when new threads appear.
21856 (gdb-stopped): Support non-stop operation and new thread switching
21858 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
21859 (gdb-json-partial-output): New set of JSON routines.
21860 (def-gdb-auto-update-trigger): New `signal-list' optional
21862 (gdb-thread-list-handler-custom): Update `gud-running',
21863 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
21864 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
21865 (gdb-continue-thread, gdb-step-thread): New commands for fine
21866 thread execution control.
21867 (gud-menu-map): New menu items to switch non-stop options.
21868 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
21869 (gdb-send): Mimic RET properly (bug 3794).
21871 * progmodes/gdb-mi.el (gdb-rules-name-maker)
21872 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
21874 (def-gdb-auto-update-handler): New nopreserve optional argument.
21875 (gdb-stack-list-frames-custom): Print stack from top to bottom.
21877 * progmodes/gdb-mi.el (gdb-pc-address): Remove unused variable.
21878 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
21879 (gdb-parent-mode): New mode to derive other GDB modes from.
21880 (gdb-display-disassembly-for-thread)
21881 (gdb-frame-disassembly-for-thread): New commands for threads
21884 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
21885 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
21886 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
21887 (gdb-update): We now store all GDB buffers in a list so that they
21888 can be updated by traversing a list instead of calling invalidate
21889 triggers explicitly.
21890 (def-gdb-trigger-and-handler): New macro to define trigger-handler
21891 pair for GDB buffer.
21892 (gdb-stack-buffer-name): Add thread information.
21893 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
21894 handle pending triggers.
21895 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
21896 (def-gdb-thread-buffer-simple-command)
21897 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
21898 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
21899 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
21900 New commands which show buffers bound to thread.
21901 (gdb-stack-list-locals-regexp): Remove unused regexp.
21903 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
21904 (gdb-locals-buffer-name, gdb-registers-buffer-name)
21905 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
21906 to (gud-comint-buffer) in *-buffer-name functions
21907 because (gdb-get-target-string) already does that.
21908 (gdb-locals-handler-custom, gdb-registers-handler-custom)
21909 (gdb-changed-registers-handler): Rewritten without regexps.
21911 * progmodes/gdb-mi.el: Basic thread selection support.
21912 (gdb-thread-number): New variable.
21913 (gdb-current-context-command): New macro which adds --thread
21915 (gdb-threads-mode-map): Select thread with SPC.
21916 (gdb-thread-list-handler-custom): Mark current thread with overlay
21917 arrow. Synchronize GDB thread and Emacs thread.
21918 (gdb-select-thread): New command which selects current thread.
21919 (gdb-invalidate-frames, gdb-invalidate-locals)
21920 (gdb-invalidate-registers): Use --thread option.
21922 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
21924 * net/tramp.el (top): Make check for tramp-gvfs loading more
21926 (tramp-handle-insert-file-contents): `unwind-protect' must be
21927 inside `with-parsed-tramp-file-name'.
21929 * net/tramp-gvfs.el (top): Remove superfluous message when loading
21932 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
21934 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
21935 directory if CLASSPATH is not set.
21937 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
21939 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
21941 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
21943 2009-08-02 Kevin Ryde <user42@zip.com.au>
21945 * net/newst-backend.el (newsticker--raw-url-list-defaults):
21946 Update freshmeat link. Delete newsforge.com as it seems gone.
21948 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
21950 * select.el (x-set-selection): Doc fix (Bug#4021).
21952 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
21954 * help-fns.el (describe-variable): Treat list return values from
21955 dir-locals-find-file properly (Bug#4005).
21957 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
21959 * net/tramp.el (tramp-debug-message): Print also microseconds.
21961 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
21963 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
21965 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
21966 (tramp-get-debug-buffer): Change `outline-regexp' according to new
21969 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
21970 (tramp-get-file-property): Use it.
21972 * autorevert.el (auto-revert-handler):
21973 Allow `auto-revert-tail-mode' for remote files.
21975 2009-08-02 Jason Rumney <jasonr@gnu.org>
21977 * minibuffer.el (read-file-name): Treat confirm options to
21978 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
21980 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
21982 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
21983 (font-lock-variable-name-face, font-lock-constant-face):
21984 Darken the colors for light backgrounds.
21986 2009-08-01 Eli Zaretskii <eliz@gnu.org>
21988 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
21989 month names. (Bug#3987)
21991 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
21993 * simple.el (line-move-finish): Pass whole number to
21994 line-move-to-column.
21995 (line-move-visual): Perform hscroll to the recorded position.
21997 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
21999 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
22001 2009-07-29 Alan Mackenzie <acm@muc.de>
22003 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
22005 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
22007 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
22008 (gdb-place-breakpoints): Use full path when setting breakpoints.
22010 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
22012 * calc/calc.el (calc-mode-map): Add keybinding for
22013 `calc-transpose-lines'.
22015 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
22017 * calc/calc-misc.el (calc-transpose-lines): New function.
22019 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
22021 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
22022 Simplify check for out-of-band methods.
22023 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
22024 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
22026 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
22028 * vc-git.el (vc-git-checkin): Fix typo.
22030 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
22032 * progmodes/js2-mode.el: New file.
22034 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
22036 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
22037 (gud-menu-map): Adjust tooltip accordingly.
22039 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
22041 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
22042 (vc-bzr-log-view-mode): Adjust log-view-file-re.
22044 * add-log.el (change-log-mode-map): Add a menu.
22046 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
22048 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
22049 function returns nil.
22050 (dbus-handle-event): Handle special return value :ignore.
22051 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
22053 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
22055 * view.el (view-mode-enable): Don't define Helper-return-blurb if
22058 2009-07-25 Eli Zaretskii <eliz@gnu.org>
22062 * w32-vars.el (x-select-enable-clipboard): Doc fix.
22064 * term/pc-win.el (x-display-name, x-colors)
22065 (x-select-enable-clipboard, x-select-text): Doc fix.
22067 * term/common-win.el (x-display-name, x-colors): Doc fix.
22069 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
22070 (xw-defined-colors): Doc fix.
22072 * w32-fns.el (x-select-text, x-setup-function-keys)
22073 (x-get-selection, x-set-selection): Doc fix.
22075 * term/x-win.el (x-select-text, x-setup-function-keys)
22076 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
22078 * select.el (x-set-selection): Doc fix.
22080 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
22082 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
22083 instead of "IsNSSSupportAvailable". Avahi ought to work also when
22084 "IsNSSSupportAvailable" method is not available.
22085 Reported by Steve Youngs <steve@sxemacs.org>.
22087 2009-07-24 Kenichi Handa <handa@m17n.org>
22089 * international/characters.el: Fix setting of category ?C, ?|, ?K,
22090 and ?H. Fix setting of case for Latin Extended and Greek Extended.
22091 (build-unicode-category-table): Fix range checks.
22093 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
22095 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
22096 the buffer we try to sync is current when calling
22099 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
22100 not show up to date files.
22102 2009-07-24 Glenn Morris <rgm@gnu.org>
22104 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
22105 Add autoload cookies. If necessary, initialize.
22106 (elint-log): Handle non-file buffers.
22107 (elint-initialize): Add optional argument to reinitialize.
22108 (elint-find-builtin-variables): Save excursion.
22110 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
22112 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
22115 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
22117 * vc.el (vc-print-log-internal): New function, split out from ...
22118 (vc-print-log): ... here.
22119 (vc-dir-move-to-goal-column): Declare.
22121 * vc-git.el (vc-git-add-signoff): New variable.
22122 (vc-git-checkin): Use it.
22123 (vc-git-toggle-signoff): New function.
22124 (vc-git-extra-menu-map): Bind it to menu.
22125 (vc-git--run-command-string): Accept a nil FILE argument.
22126 (vc-git-stash-list): New function.
22127 (vc-git-dir-extra-headers): Use it.
22129 2009-07-23 Glenn Morris <rgm@gnu.org>
22131 * help-fns.el (describe-variable): Describe ignored and risky local
22132 variables in a similar way to that in which we describe safe ones.
22134 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
22135 (byte-compile-output-file-form, byte-compile-output-docform)
22136 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
22137 Give some more local variables with common names a "bytecomp-" prefix,
22138 so as not to shadow things during compilation.
22139 * emacs-lisp/cl-macs.el (load-time-value)
22140 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
22141 `outbuffer' to `bytecomp-outbuffer'.
22143 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
22144 since the next two variables cover them automatically now.
22145 (elint-builtin-variables, elint-autoloaded-variables): New.
22146 (elint-unknown-builtin-args): Remove all members, since they can be
22147 parsed automatically now.
22148 (elint-extra-errors): New.
22149 (elint-env-add-env, elint-env-add-macro): Use cadr.
22150 (elint-current-buffer): Use or. Change final message.
22151 (elint-get-top-forms): Use line-end-position.
22152 (elint-init-env): Use cadr. Handle autoload, declare-function,
22154 (elint-add-required-env): Doc fix. Use or. Standardize error.
22155 (regexp-assoc): Remove unused function.
22156 (elint-top-form): Set elint-current-pos, to record the start of the
22157 top-level form, for compilation-mode.
22158 (elint-form): Trap errors in macro expansion. Use dolist.
22159 (elint-unbound-variable): Use elint-builtin-variables and
22160 elint-autoloaded-variables.
22161 (elint-get-args): Use cadr, or.
22162 (elint-check-cond-form): Use dolist, cadr.
22163 (elint-check-condition-case-form): Doc fix. Use cadr.
22164 Use elint-extra-errors.
22165 (elint-log): New function.
22166 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
22167 Distinguish errors and warnings.
22168 (elint-log-message): Use with-current-buffer. Inhibit read-only.
22169 Use a bytecomp-style format.
22170 (elint-clear-log): Preserve default-directory. Inhibit read-only.
22171 (elint-get-log-buffer): Use compilation mode. Disable undo.
22172 Don't truncate lines.
22173 (elint-initialize): Set builtin and autoloaded variable lists.
22174 Only process elint-unknown-builtin-args if non-nil.
22175 (elint-find-builtin-variables, elint-find-autoloaded-variables):
22177 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
22179 2009-07-22 Kevin Ryde <user42@zip.com.au>
22181 * net/newst-backend.el (newsticker--parse-atom-1.0)
22182 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
22183 (newsticker--parse-rss-1.0):
22184 * progmodes/idlwave.el (idlwave-mode):
22185 * progmodes/idlw-shell.el (idlwave-shell-mode):
22186 * progmodes/vera-mode.el (vera-mode):
22187 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
22188 * progmodes/vhdl-mode.el (vhdl-mode):
22189 * textmodes/table.el (table-generate-source)
22190 (table--warn-incompatibility):
22191 Hyperlink urls in docstrings with URL `...'.
22193 2009-07-22 Glenn Morris <rgm@gnu.org>
22195 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
22196 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
22197 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
22198 Remove leading * from defcustom docs.
22200 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
22202 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
22204 (list-load-path-shadows): Optionally, just return shadows as a string.
22206 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
22208 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
22210 * mail/rmailedit.el (rmail-edit-mode):
22211 Use auto-save-include-big-deletions.
22213 * mail/rmail.el (rmail-variables):
22214 Use auto-save-include-big-deletions.
22216 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
22219 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
22221 * calc/calc.el (calc-undo-length): New variable.
22222 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
22224 2009-07-21 Richard Stallman <rms@gnu.org>
22226 * files.el (auto-save-mode): Handle buffer-save-size = -2
22229 2009-07-21 Glenn Morris <rgm@gnu.org>
22231 * textmodes/ispell.el (ispell-looking-back): Update declaration.
22233 * calendar/todo-mode.el (calendar-current-date): Update declaration.
22235 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
22236 silence compiler. Instead...
22237 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
22238 (ps-print-ensure-fontified): Update for above function name changes.
22240 * printing.el (pr-mh-get-msg-num, pr-mh-show)
22241 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
22242 silence compiler. Instead...
22243 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
22244 (mh-show-buffer): Only define for compiler.
22245 (pr-mh-current-message): Update for above function name changes.
22247 * files.el (abort-if-file-too-large): Explicitly pass `filename'
22249 (find-file-noselect, insert-file-1): Update for above change.
22251 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
22253 * mail/mailclient.el (mailclient-send-it): Fix message.
22255 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
22256 (edebug-eval): Check cl-debug-env is bound.
22257 (print-level, print-circle): Don't redefine built-in variables.
22259 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
22260 (custom-print-vectors): Remove old comments from doc.
22262 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
22263 (emerge-version): Make the variable an obsolete alias for the
22264 emacs-version variable. Make the function obsolete.
22265 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
22266 Emerge options, rather than merging in into the main Options menu.
22267 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
22268 and auto advance modes. Disable edit/fast items when not relevant.
22270 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
22272 * term/vt420.el (terminal-init-vt420): Fix typo.
22274 2009-07-20 Sam Steingold <sds@gnu.org>
22276 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
22277 variable (removed from compile.el on 2004-03-11).
22279 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
22281 * files.el (hack-local-variables-filter): Fix last change.
22283 2009-07-19 Juri Linkov <juri@jurta.org>
22285 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
22286 (dir-local-variables-alist): New buffer-local variable.
22287 (hack-local-variables-filter): If variable is not dir-local,
22288 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
22289 because file-local overrides dir-local.
22290 (c-postprocess-file-styles) <declare-function>:
22291 Remove obsolete declaration.
22292 (hack-dir-local-variables): Add dir-local variable/value pair to
22293 `dir-local-variables-alist' and remove duplicates. Doc fix.
22295 * help-fns.el (describe-variable): Add information about
22296 file-local and dir-local variables.
22298 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
22300 * files.el (hack-local-variables-filter): Rewrite.
22302 2009-07-19 Glenn Morris <rgm@gnu.org>
22304 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
22305 Silence compiler by only defining on XEmacs.
22307 * international/mule.el (auto-coding-regexp-alist): Only match
22308 BABYL... at the start of buffer, not of lines. (Bug#3790)
22310 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
22311 non-calendar buffers (Bug#3862). Restore "not on a date" message.
22312 (cal-menu-context-mouse-menu): Doc fix.
22314 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
22316 * simple.el (mail-user-agent): Doc fix. Set :version tag.
22318 2009-07-18 Juri Linkov <juri@jurta.org>
22320 * info.el: Virtual Info keyword finder.
22321 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
22322 (Info-finder-file): New variable.
22323 (Info-finder-find-file): New function.
22324 (finder-known-keywords, finder-package-info)
22325 (find-library-name, lm-commentary): Use defvar and
22326 declare-function to silence compiler warnings.
22327 (Info-finder-find-node): New function.
22328 (info-finder): New command.
22330 * subr.el (process-kill-buffer-query-function): New function.
22331 (add-hook)<kill-buffer-query-functions>: Add hook
22332 `process-kill-buffer-query-function'.
22334 2009-07-18 Alan Mackenzie <acm@muc.de>
22336 * progmodes/cc-mode.el (c-before-hack-hook)
22337 (c-postprocess-file-styles): Give invocation of `c-set-style'
22338 DONT-OVERRIDE parameter of t. Already set style variables will
22339 thus not be overridden by style settings given by `c-file-syle'.
22341 * files.el (hack-local-variables-filter): Remove entries with
22342 duplicate keys from `file-local-variables-alist'.
22344 2009-07-18 Eli Zaretskii <eliz@gnu.org>
22346 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
22347 x-set-selection if display-selections-p returns nil for the
22350 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
22352 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
22354 2009-07-18 Eli Zaretskii <eliz@gnu.org>
22356 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
22357 Accept nil in addition to a regexp.
22358 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
22359 Accept nil in addition to a regexp.
22360 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
22361 buffers that have an associated file. Handle nil values of
22362 desktop-buffers-not-to-save and desktop-files-not-to-save.
22365 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
22366 (x-disown-selection-internal): New functions.
22368 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
22370 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
22372 (gdb-breakpoints-header): Move forward to avoid compiler warning.
22373 (gdb-make-header-line-mouse-map): Remove duplicate definition.
22375 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
22377 * simple.el (set-mark): Revert last change.
22379 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
22381 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
22382 rendering of pngs is not possible instead of messaging a long
22385 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
22387 * w32-fns.el (x-selection-owner-p): New function.
22389 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
22390 (mouse-yank-at-click, mouse-yank-primary):
22391 If select-active-regions is non-nil, deactivate the mark before
22394 * simple.el (deactivate-mark, set-mark): Only save selection if we
22397 2009-07-17 Kenichi Handa <handa@m17n.org>
22399 * case-table.el (describe-buffer-case-table): Fix for the case
22400 that KEY is a cons.
22402 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
22404 * vc-rcs.el (vc-rcs-find-file-hook):
22405 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
22407 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
22409 * net/tramp.el (tramp-wait-for-output): Handle the case when
22410 commands do not return a newline but a null byte before the shell
22413 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22415 * term/ns-win.el (ns-set-alpha): Don't declare.
22416 (ns-set-background-alpha): Remove function.
22418 2009-07-16 Kevin Ryde <user42@zip.com.au>
22420 * emacs-lisp/copyright.el (copyright-update): Save match-data across
22421 y-or-n-p, for safety.
22423 2009-07-16 Richard Stallman <rms@gnu.org>
22425 * files.el (auto-save-mode): If buffer-saved-size is -2,
22428 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
22429 (rmail-retry-ignored-headers): Add more uninteresting fields.
22431 2009-07-15 Jari Aalto <jari.aalto@cante.net>
22433 * net/rcirc.el (rcirc): Use history variables.
22434 (rcirc-server-name-history, rcirc-nick-name-history)
22435 (rcirc-server-port-history): New variables.
22437 2009-07-15 Kenichi Handa <handa@m17n.org>
22439 * international/mule-cmds.el (set-language-environment-charset):
22440 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
22443 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
22444 Delete unibyte-display.
22446 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
22448 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
22450 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
22452 * simple.el (deactivate-mark): Optional argument FORCE.
22453 (set-mark): Use deactivate-mark.
22455 * info.el (Info-search): No need to check transient-mark-mode
22456 before calling deactivate-mark.
22458 * select.el (x-set-selection): Doc fix.
22459 (x-valid-simple-selection-p): Allow buffer values.
22460 (xselect--selection-bounds): Handle buffer values.
22461 Suggested by David De La Harpe Golden.
22463 * mouse.el (mouse-set-region, mouse-drag-track):
22464 Call copy-region-as-kill before setting the mark, to let
22465 select-active-regions work.
22467 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
22469 * simple.el (deactivate-mark): If select-active-regions is
22470 non-nil, copy the selection data into a string.
22471 (activate-mark): If select-active-regions is non-nil, set the
22472 selection to the current buffer.
22473 (set-mark): Update selection if select-active-regions is non-nil.
22475 * select.el (x-valid-simple-selection-p): Allow buffer values.
22477 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
22479 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
22480 and more featureful message-mode.
22482 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
22484 * select.el (x-set-selection): Doc fix.
22485 (x-valid-simple-selection-p): Disallow selection data consisting
22486 of a list or cons of integers, since that is not used.
22487 (xselect--selection-bounds, xselect--int-to-cons): New functions.
22488 (xselect-convert-to-string, xselect-convert-to-length)
22489 (xselect-convert-to-filename, xselect-convert-to-charpos)
22490 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
22492 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
22494 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
22495 output in -break-info command (Emacs bug #3794).
22497 2009-07-14 Glenn Morris <rgm@gnu.org>
22499 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
22500 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
22501 (edebug-print-length, edebug-print-level, edebug-print-circle)
22502 (edebug-sit-for-seconds, edebug-view-outside)
22503 (edebug-bounce-point, edebug-set-global-break-condition)
22504 (edebug-Go-nonstop-mode, edebug-trace-mode)
22505 (edebug-Trace-fast-mode, edebug-continue-mode)
22506 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
22507 (edebug-visit-eval-list): Doc fixes.
22509 * subr.el (def-edebug-spec): Doc fix.
22511 2009-07-14 Kenichi Handa <handa@m17n.org>
22513 * international/characters.el: Fix setting of category ?C.
22515 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
22517 * term/ns-win.el (x-select-font): defalias x-select-font to
22518 ns-popup-font-panel instead of generate-fontset-menu.
22520 2009-07-12 Eli Zaretskii <eliz@gnu.org>
22522 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
22524 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
22526 * arc-mode.el (archive-find-type): Allow for a PK00 string before
22527 the PK\003\004 header (Bug#3770).
22529 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
22531 * pcomplete.el (pcomplete-comint-setup): Check for
22532 shell-dynamic-complete-filename too.
22534 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
22536 * simple.el (temporary-goal-column): Change the value for
22537 line-move-visual to a cons cell.
22538 (line-move-visual): Record or set the window hscroll, if
22539 necessary (Bug#3494).
22540 (line-move-1): Handle cons value of temporary-goal-column.
22542 2009-07-11 Kenichi Handa <handa@m17n.org>
22544 * international/mule-diag.el (describe-character-set): Don't show
22547 2009-07-10 Sam Steingold <sds@gnu.org>
22549 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22550 Omake sometimes indents the errors it prints, so allow all
22551 regexps to start with spaces.
22553 2009-07-10 Eli Zaretskii <eliz@gnu.org>
22555 * cus-edit.el (customize-changed-options-previous-release):
22556 Bump value to 22.1. (Bug#3804)
22558 2009-07-08 Sam Steingold <sds@gnu.org>
22560 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
22561 to be a cons cell (test . ignored-directory) to selectively ignore
22562 some directories depending on the location of the search.
22564 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
22566 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
22567 remote user is root, on the local host.
22568 (tramp-local-host-p): Either the local user or the remote user
22569 must be root. (Bug#3771)
22571 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
22573 * progmodes/gdb-mi.el (gdb): Remove description of
22574 gdb-use-separate-io-buffer.
22575 (menu): Don't allow toggling of or enable
22576 gdb-use-separate-io-buffer from menubar.
22578 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
22580 * mail/unrmail.el (unrmail): Make sure the message ends with two
22581 newlines (Bug#3769).
22583 2009-07-08 Glenn Morris <rgm@gnu.org>
22585 * calendar/calendar.el (calendar-current-date): Rework previous change.
22587 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
22589 * calendar/calendar.el (calendar-current-date):
22590 Add an optional argument giving an offset from today.
22592 2009-07-08 Glenn Morris <rgm@gnu.org>
22594 * tutorial.el (tutorial--describe-nonstandard-key):
22595 Adjust the message for when a key has been unbound.
22596 (help-with-tutorial): Hide the arch-tag.
22598 2009-07-08 Kenichi Handa <handa@m17n.org>
22600 * international/fontset.el (setup-default-fontset): For each
22601 script, append (not set) font-specs.
22603 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
22606 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
22608 * progmodes/gdb-mi.el (gdb-init-1): Move sending
22609 -data-list-register-names to ...
22610 (gdb-starting): ... here because GDB 7.0 requires execution to
22611 have started when using this MI command.
22612 (gdb-set-header): New function to distinguish select and
22613 unselected tabs in gdb buffers.
22614 (gdb-propertize-header): New macro that uses gdb-set-header.
22615 (gdb-breakpoints-header, gdb-locals-header): Use it.
22616 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
22618 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
22620 * Makefile.in (ELCFILES): Remove fadr.elc.
22622 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
22624 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
22625 may contain frame information, so `string-match' should be used.
22626 (gdb-update): Disassembly is invalidated through
22627 `gdb-get-selected-frame'.
22628 (gdb-pad-string): New function to pad string with spaces.
22629 (gdb-invalidate-disassembly): Invalidate only if the buffer
22631 (gdb-disassembly-handler-custom): Column alignment.
22632 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
22634 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
22636 (gdb-frame-handler): Match convention to for disassembly buffer
22638 (gdb-stack-list-frames-handler): Rewritten without regexps.
22639 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
22640 not highlight breakpoints without line information.
22641 (gdb-input): Add trailing newline to command.
22643 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
22645 (gdb-breakpoints-list-handler-custom): Replacement for
22646 `gdb-break-list-handler'. Using real parser instead of regexps
22648 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
22649 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
22650 to place breakpoints.
22651 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
22653 (gdb-disassembly-handler-custom): Show overlay arrow.
22654 (gdb-disassembly-place-breakpoints): Show breakpoints in
22655 disassembly buffer.
22656 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
22657 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
22658 instead of parsing breakpoints buffer. Fixed old menu references
22663 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
22664 (gdb-memory-address): New variable which holds top address of
22665 memory page shown in memory buffer.
22666 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
22667 New customization variables.
22669 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
22670 display the memory buffer.
22671 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
22672 buffer display parameters.
22673 (def-gdb-memory-format, gdb-memory-format-binary)
22674 (gdb-memory-format-octal, gdb-memory-format-unsigned)
22675 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
22676 Functions for setting memory buffer format.
22677 (gdb-memory-unit-word, gdb-memory-unit-halfword)
22678 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
22679 unit size used in memory buffer.
22680 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
22681 Switch to next/previous page of memory buffer.
22682 Now using (bindat-get-field) instead of fadr functions.
22684 2009-07-07 Sam Steingold <sds@gnu.org>
22686 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
22687 non-top-level files.
22689 2009-07-07 Kenichi Handa <handa@m17n.org>
22691 * international/mule-cmds.el (reset-language-environment):
22692 Put the highset priority to the charset iso-8859-1.
22694 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
22696 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
22697 to the end of the line when locating the block (Bug#700).
22699 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
22701 * net/tramp.el (tramp-handle-write-region): Flush file properties
22702 in case of short track.
22704 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
22706 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
22707 Coded custom representation of verilog error regular expressions
22708 to work with Emacs-22's new format.
22709 (verilog-error-regexp-xemacs-alist): Coded custom representation
22710 of verilog error regular expressions to work with XEmacs format.
22711 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
22712 error recognition into XEmacs.
22713 (verilog-error-regexp-add-emacs): Hook routine to install verilog
22714 error recognition into Emacs-22.
22716 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
22718 * woman.el: Remove stand-alone closing parentheses.
22719 (woman-file-name, woman2-format-paragraphs)
22720 (woman-leave-blank-lines): Code cleanup.
22721 (woman-use-own-frame): Change default to nil.
22722 (woman-italic, woman-bold, woman-unknown, woman-addition):
22723 Change defaults to inherit from default faces.
22724 (woman2-process-escapes): Consume the newline after a stand-alone
22725 filler character (Bug#3651).
22727 2009-07-06 Glenn Morris <rgm@gnu.org>
22729 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
22730 (top-level): Move provide to the end.
22731 (ffap): Remove defunct URL from custom group.
22733 * subr.el (eval-after-load): Doc fix.
22735 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
22737 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
22738 `calc-embedded-word' is called twice.
22740 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
22742 * files.el (find-alternate-file-other-window, find-alternate-file):
22743 Obey confirm-nonexistent-file-or-buffer.
22745 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
22747 * dired-aux.el (dired-show-file-type): Handle remote files.
22749 2009-07-05 Jari Aalto <jari.aalto@cante.net>
22751 * desktop.el (desktop-globals-to-save):
22752 Add file-name-history (Bug#2750).
22754 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
22756 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
22758 2009-07-04 Johan Bockgård <bojohan@gnu.org>
22760 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
22761 property on entire argument since this is what eshell-lisp-command
22764 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
22766 * net/tramp-gvfs.el (tramp-gvfs-methods)
22767 (tramp-gvfs-zeroconf-domain)
22768 (tramp-bluez-discover-devices-timeout): Add version flag.
22769 (tramp-gvfs-handler-mounted-unmounted)
22770 (tramp-gvfs-connection-mounted-p): Polish handling of
22771 incompatibilities between GVFS 0.2 and 1.0.
22773 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
22775 * cus-start.el (all): Add make-pointer-invisible.
22777 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
22779 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
22780 formatted correctly.
22782 2009-07-02 Juri Linkov <juri@jurta.org>
22784 * info.el: Virtual Info files and nodes.
22785 (Info-virtual-files, Info-virtual-nodes): New variables.
22786 (Info-current-node-virtual): New variable.
22787 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
22789 (Info-file-supports-index-cookies): Use Info-virtual-file-p
22790 to check for a virtual file instead of checking a fixed list
22792 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
22793 instead of ad-hoc processing of "dir" and (apropos history toc).
22794 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
22795 instead of ad-hoc processing of "dir" and (apropos history toc).
22796 Reread a file when moving from a virtual node.
22797 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
22798 (Info-directory-toc-nodes, Info-directory-find-file)
22799 (Info-directory-find-node): New functions.
22800 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
22801 (Info-history): Move part of code to
22802 `Info-history-find-node'.
22803 (Info-history-toc-nodes, Info-history-find-file)
22804 (Info-history-find-node): New functions.
22805 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
22806 (Info-toc): Move part of code to `Info-toc-find-node'.
22807 (Info-toc-find-node): New function.
22808 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
22809 the current Info file name to references because now the node
22810 "*TOC*" belongs to the same Info manual.
22811 (Info-toc-build): Rename from `Info-build-toc'.
22812 (Info-toc-nodes): Rename input argument `file' to `filename'.
22813 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
22814 instead of ad-hoc processing of ("dir" apropos history toc).
22815 (Info-index-nodes): Use Info-virtual-file-p
22816 to check for a virtual file instead of checking a fixed list
22818 (Info-index-node): Add check for `Info-current-node-virtual'.
22819 Raise `save-match-data' higher up the tree to contain
22820 `search-forward' too (bug fix).
22821 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
22822 (Info-virtual-index-nodes): New variable.
22823 (Info-virtual-index-find-node, Info-virtual-index): New functions.
22824 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
22825 (Info-apropos-file, Info-apropos-nodes): New variables.
22826 (Info-apropos-toc-nodes, Info-apropos-find-file)
22827 (Info-apropos-find-node, Info-apropos-matches): New functions.
22828 (info-apropos): Move part of code to `Info-apropos-find-node' and
22829 `Info-apropos-matches'.
22830 (Info-mode-map): Bind "I" to `Info-virtual-index'.
22831 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
22832 for a virtual file instead of checking a fixed list of node names.
22834 * simple.el (async-shell-command): New command.
22836 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
22838 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
22839 instead of `mount-info'.
22841 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
22843 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
22844 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
22846 2009-07-02 Kenichi Handa <handa@m17n.org>
22848 * international/mule.el (set-keyboard-coding-system): Force *-unix
22849 coding-system to avoid eol conversion.
22851 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
22853 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
22854 Add handler for `process-file', `shell-command' and
22855 `start-file-process'.
22856 (tramp-gvfs-handle-shell-command)
22857 (tramp-gvfs-handle-start-file-process)
22858 (tramp-gvfs-handle-process-file): New defuns.
22859 (tramp-synce-list-devices): Simplify check for existence of property.
22861 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
22863 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
22865 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
22867 * language/korean.el (set-language-info-alist): Add korean-cp949,
22870 2009-07-01 Kenichi Handa <handa@m17n.org>
22872 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
22874 * international/encoded-kb.el: Deleted.
22876 * international/mule.el (set-keyboard-coding-system): Perform the
22877 necessary setup here instead of calling encoded-kbd-setup-display.
22879 2009-07-01 Glenn Morris <rgm@gnu.org>
22881 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
22883 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
22885 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
22887 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
22889 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
22890 Handle also the 'rename case, when setting file modes. (Bug#3712)
22891 (tramp-default-file-modes): Remove execute permissions.
22893 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
22894 (top): Add a default for "synce" in `tramp-default-user-alist'.
22895 Add completion function for "synce" method.
22896 (tramp-hal-service, tramp-hal-path-manager)
22897 (tramp-hal-interface-manager, tramp-hal-interface-device):
22899 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
22900 (tramp-synce-list-devices, tramp-synce-parse-device-names):
22903 * net/trampver.el: Update release number.
22905 2009-06-30 Kenichi Handa <handa@m17n.org>
22907 * international/fontset.el (setup-default-fontset): Add CJK fonts
22908 for symbols and the other miscellaneous characters.
22910 * language/korea-util.el (setup-korean-environment-internal):
22911 Make char-width-table suitable for Korean environments.
22912 (exit-korean-environment): Cancel above.
22914 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
22915 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
22916 setup-function to make char-width-table suitable for respective
22917 environments, and an exit-function to cancel that.
22919 * language/japan-util.el (setup-japanese-environment-internal):
22920 Call use-cjk-char-width-table with arg `ja_JP'.
22922 * international/characters.el (cjk-char-width-table): Delete it.
22923 (cjk-char-width-table-list): New variable.
22924 (use-cjk-char-width-table): New arg local-name.
22925 (use-default-char-width-table): Fix for the case that Emacs is
22926 already using the default char-width-table.
22928 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
22930 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
22931 modes mandatory. (Bug#3712)
22933 2009-06-29 Alan Mackenzie <acm@muc.de>
22935 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
22936 correction between the visible width of TABs and their number of bytes.
22938 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
22940 * server.el (server-buffer-done): Prevent kill-buffer from
22941 prompting by clearing the buffer modification flag (Bug#3696).
22943 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
22945 * progmodes/verilog-mode.el (verilog-beg-of-statement)
22946 (verilog-endcomment-reason-re): Support unique case and priority case.
22947 (verilog-basic-complete-re): Support localparam lineup.
22948 (verilog-beg-of-statement-1): Fix for robustness, unique case.
22949 (verilog-set-auto-endcomments): Fix for unique case, always_comb
22951 (verilog-leap-to-case-head): Now support *nested* unique &
22952 priority case statements.
22953 (verilog-auto-lineup): Make just declarations the default (as it
22955 (verilog-leap-to-case-head): Support priority/unique case statements.
22956 (verilog-auto-lineup): Rework to give users radio buttons to
22957 select the various styles of automatic lineup.
22958 (verilog-error-regexp-alist): Rework to support the XEmacs style
22959 of error regular expressions from compilers, lint tools &
22960 simulators. Note that GNU Emacs has made it impossible for a mode
22961 to load such things.
22962 (electric-verilog-terminate-line, verilog-indent-declaration)
22963 (verilog-auto-wiure): Rework for radio button selection of
22964 auto-lineup selection of specification of auto lineup.
22965 (verilog-beg-of-statement-1): Redesign to support proper operation
22966 in additional code, based on testing with auto-lineup.
22967 (verilog-calculate-indent, assignments & declarations)
22968 (verilog-backward-token): Enhance to support auto-lineup of
22969 assignments & declarations.
22970 (verilog-in-directive-p, verilog-at-struct-p): New function for
22971 easy test of whether we are.
22972 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
22973 to support safe execution at almost anyline.
22974 (verilog-calc-1): Properly support indenting deep inside generate
22976 (verilog-init-font): Remove definition & use of verilog-init-font,
22977 as it is redundant with font-lock-defaults.
22978 (verilog-mode): Alter the definition of verilog-font-lock-defaults
22979 to avoid circular calls if syntax-ppss is a function (as is the
22980 case now in 22.x GNU Emacs) as that function would sometimes call
22981 itself, leading to (nearly) infinite recursion.
22982 (verilog-ovm-begin-re, verilog-ovm-end-re)
22983 (verilog-ovm-statement-re, verilog-leap-to-head)
22984 (verilog-backward-token): Add support for OVM macros. Some are
22985 complete statements, and others open and close scopes like begin
22987 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
22988 (verilog-defun-level-generate-only-re): Really fix the defun-list
22990 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
22991 coverpoint, constraint and cross statements.
22992 (verilog-defun-level-list, verilog-generate-defun-level-list)
22993 (verilog-all-defun-level-list): Redo these specifications - it is
22994 too hard to support eval-when compile aggregation of lists also
22995 built at when-compile time.
22996 (verilog-defun-level-list): Place defconsts of variables used in
22997 building regular expressions which are built in eval-when-compile
22998 bodies in the same eval-when-compile body to facilitate compile
23000 (verilog-beg-block-re-ordered): Support indenting
23001 virtual/protected tasks and functions.
23002 (verilog-defun-level-list, verilog-in-generate-region-p)
23003 (verilog-backward-ws&directives, verilog-calc-1): Speed up
23004 indentation of some module items (generate items).
23005 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
23006 across virtual/protected tasks and functions.
23008 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
23010 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
23011 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
23012 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
23013 in concatenations. Reported by Yishay Belkind.
23014 (verilog-auto-ascii-enum): Support one-hot state machines in
23015 AUTOASCIIENUM. Suggested by Lloyd Gomez.
23016 (verilog-auto-inst, verilog-auto-inst-port): Include interface
23017 modport in AUTOINST and add vl-modport for users.
23018 Reported by David Rogoff.
23019 (verilog-auto-inout-module, verilog-auto-inst)
23020 (verilog-decls-get-interfaces, verilog-insert-definition)
23021 (verilog-insert-one-definition, verilog-read-decls)
23022 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
23023 (verilog-sig-modport, verilog-signals-combine-bus)
23024 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
23025 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
23026 Suggested by David Rogoff.
23027 (verilog-repair-open-comma): Fix non-insertion of comma when
23028 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
23029 (verilog-make-width-expression): Simplify [A-1:0] expression
23030 widths to just {A{1'b0}}.
23031 (verilog-mode): Cleanup checkdoc warnings.
23032 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
23033 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
23034 inputs/outputs or data type. Suggested by Vasu Kandadi.
23035 (next-error-last-buffer): Fix byte-compiler warning.
23036 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
23037 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
23038 or shell command text during AUTO expansion. Suggested by Tad Truex.
23039 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
23040 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
23041 Fix dotted nets {a.b,c.d} and escaped identifiers being mis-included
23042 in AUTOINOUT. Reported by Matthew Lovell.
23043 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
23044 causing use of <= assignments. Reported by Alex Reed.
23045 (verilog-read-decls): Fix triand, trior, wand, wor to be
23046 recognized by AUTOWIRE. Reported by Spencer Isaacson.
23047 (verilog-extended-complete-re): Support import "DPI-C" functions.
23048 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
23049 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
23050 (verilog-insert-date, verilog-insert-year)
23051 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
23052 Windows systems. Reported by Michael Potts.
23053 (verilog-read-module-name): Fix AUTOINST when the child module
23054 declaration's name is a tick define. Reported by Elliot Mednick.
23055 (verilog-read-decls): Fix V2K parameter bit subscripts getting
23056 passed to next parameter's definition. Reported by Bruce T.
23057 (verilog-read-decls): Fix detecting "parameter int" when using
23058 AUTOINSTPARAM. Reported by Bruce T.
23059 (verilog-goto-defun): Fix goto not finding modules unless first
23060 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
23061 (verilog-mode): Expand -f flag arguments on entry to mode so
23062 verilog-goto-defun will work. Reported by Lawrence Butcher.
23063 (verilog-getopt): Expand environment variables in -f file
23064 arguments. Suggested by Lawrence Butcher.
23065 (verilog-set-define): Fix "Symbol's value as variable is void"
23066 when reading enumerations.
23067 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
23068 Suggested by Stephen Peltan.
23069 (verilog-read-defines): Fix reading of enumerations in include
23070 files. Reported by Steve Peltan.
23072 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
23074 * files.el (trash-directory): Fix defcustom type.
23076 2009-06-28 Juri Linkov <juri@jurta.org>
23078 * help-fns.el (describe-function-1): Correctly locate adviced
23079 functions in hyperlink (Bug#2438).
23081 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
23083 * files.el (trash-directory): Change default to nil.
23084 (move-file-to-trash): If trash-directory is nil and
23085 system-move-file-to-trash is unbound, perform freedesktop-style
23088 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
23090 * files.el (move-file-to-trash): Add freedesktop trash
23093 2009-06-28 Glenn Morris <rgm@gnu.org>
23095 * autorevert.el (global-auto-revert-non-file-buffers)
23096 (global-auto-revert-mode): Doc fixes.
23098 2009-06-27 Johan Bockgård <bojohan@gnu.org>
23100 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
23102 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
23104 * faces.el (x-handle-named-frame-geometry): Ensure that we have
23105 opened an X connection before calling x-get-resource (Bug#3194).
23107 * play/doctor.el: Remove reference to obsolete website.
23108 (make-doctor-variables): Correct grammar mistake (Bug#2633).
23110 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
23112 Remove find-file-not-found-hook VC method. (Bug#2757)
23113 * vc-hooks.el (vc-file-not-found-hook)
23114 (vc-default-find-file-not-found-hook): Remove functions.
23115 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
23116 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
23119 * vc-git.el: Do not mention find-file-not-found-hook VC method.
23121 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
23123 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
23124 compatibility function for `looking-back'.
23126 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
23127 Use `ispell-looking-back'.
23129 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
23131 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
23132 rather than `filename'.
23134 2009-06-23 Miles Bader <miles@gnu.org>
23136 * face-remap.el (text-scale-set): New function.
23138 2009-06-23 Glenn Morris <rgm@gnu.org>
23140 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
23142 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
23144 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
23146 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
23148 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
23149 Simplify Persian conditionals.
23151 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
23152 variable `filename'.
23154 * comint.el (comint-insert-input): Doc fix.
23156 * Makefile.in (ELCFILES): Fix typo in previous change.
23158 2009-06-23 Miles Bader <miles@gnu.org>
23160 * cus-start.el: Add entry for `recenter-redisplay'.
23162 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23164 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
23165 Add an optional argument for the backend, use it instead of
23166 calling vc-backend.
23167 (vc-mode-line): Add an optional argument for the backend.
23168 Pass the backend to vc-state and vc-working-revision. Move code for
23169 special handling for vc-state being a buffer to ...
23171 * vc-rcs.el (vc-rcs-find-file-hook):
23172 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
23174 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
23175 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
23176 vc-stay-local-p and vc-mode-line calls.
23178 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
23179 (vc-cvs-diff, vc-cvs-annotate-command)
23180 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
23181 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
23182 vc-mode-line calls.
23184 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
23186 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
23187 backend when calling vc-mode-line.
23188 (vc-register): Do not create a closure for calling the vc register
23189 function, call it directly.
23191 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23193 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
23194 to make it obvious item can be clicked.
23196 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
23198 2009-06-23 Kenichi Handa <handa@m17n.org>
23200 * language/korea-util.el (korean-key-bindings): Change the binding
23201 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
23204 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
23206 Sync with Tramp 2.1.16.
23208 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
23210 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
23211 when a loading of a package fails. Completion function for rsync
23212 is `tramp-completion-function-alist-ssh'.
23213 (all): Replace all calls of `split-string' and
23214 `tramp-split-string' by `tramp-compat-split-string'.
23215 (tramp-default-method): Use `tramp-compat-process-running-p'.
23216 (tramp-default-proxies-alist): Allow also Lisp forms.
23217 (tramp-remote-path): Add choice "Private Directories".
23218 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
23219 (tramp-domain-regexp): Allow also "-", "_" and ".".
23220 (tramp-end-of-output): Remove newlines, and add "$" at the end.
23221 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
23222 (tramp-debug-message): Insert header line in debug buffer.
23223 (tramp-handle-directory-files-and-attributes-with-stat):
23224 Care about filenames with spaces, or starting with "-".
23225 (tramp-handle-dired-uncache): New defun.
23226 (tramp-handle-insert-directory): Don't flush the directory from
23227 cache, this is handled by `dired-uncache' now.
23228 (tramp-handle-insert-file-contents): Improve error handling.
23229 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
23230 Quote `tramp-end-of-output'.
23231 (tramp-action-password): Improve trace message.
23232 (tramp-check-for-regexp): Both echoes must be present, before removing.
23233 (tramp-open-connection-setup-interactive-shell): Trace coding system.
23234 (tramp-compute-multi-hops): Eval cons cells of
23235 `tramp-default-proxies-alist'.
23236 (tramp-maybe-open-connection): Use the same command pattern for
23237 first hop and further hops.
23238 (tramp-wait-for-output): Remove handling of newlines.
23239 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
23240 (tramp-split-string): Remove function. It is handled in
23243 * net/tramp-cmds.el (tramp-bug):
23244 Recommend `tramp-cleanup-all-connections' in the bug mail.
23246 * net/tramp-compat.el (tramp-compat-split-string)
23247 (tramp-compat-process-running-p): New defuns.
23249 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
23250 for `dired-uncache'.
23252 * net/tramp-gvfs.el: New package.
23254 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
23255 Add handler for `dired-uncache'.
23256 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
23258 * net/trampver.el: Update release number. Make version check fit
23261 2009-06-22 Jim Meyering <meyering@redhat.com>
23263 Automatically handle .xz suffix (XZ-compressed files), too.
23264 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
23265 XZ is the successor to LZMA: <http://tukaani.org/xz/>
23267 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
23268 Nick Roberts <nickrob@snap.net.nz>
23270 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
23271 repository (http://sphinx.net.ru/hg/gdb-mi/).
23273 2009-06-22 Glenn Morris <rgm@gnu.org>
23275 * files.el (dir-locals-collect-mode-variables): Allow for any number of
23276 `mode' and `eval' entries. (Bug#3430)
23278 * Makefile.in (ELCFILES): Add fadr.elc.
23280 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
23281 differing behavior of \n and ^ in strings. (Bug#3385)
23283 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
23285 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
23287 (lisp-indent-function): Make it a defcustom.
23289 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
23291 * progmodes/gdb-ui.el: Replace with ...
23292 * progmodes/gdb-mi.el: ... this file.
23293 * progmodes/gud.el: Modify for gdb-mi.el.
23295 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
23297 * fadr.el: New file.
23299 See ChangeLog.14 for earlier changes.
23301 ;; Local Variables:
23305 Copyright (C) 2009-2011 Free Software Foundation, Inc.
23307 This file is part of GNU Emacs.
23309 GNU Emacs is free software: you can redistribute it and/or modify
23310 it under the terms of the GNU General Public License as published by
23311 the Free Software Foundation, either version 3 of the License, or
23312 (at your option) any later version.
23314 GNU Emacs is distributed in the hope that it will be useful,
23315 but WITHOUT ANY WARRANTY; without even the implied warranty of
23316 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23317 GNU General Public License for more details.
23319 You should have received a copy of the GNU General Public License
23320 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.