(completion-in-region): Pop down *Completions* automatically.
[bpt/emacs.git] / lisp / ChangeLog
1 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
4 (completion-in-region-mode): New minor mode.
5 (completion-in-region): Use it.
6 (completion-in-region--data, completion-in-region-mode-map): New vars.
7 (completion-in-region--postch): New function.
8 (completion--capf-misbehave-funs, completion--capf-safe-funs):
9 New vars.
10 (completion--capf-wrapper): New function.
11 (completion-at-point): Use it to track well-behavedness of
12 hook functions.
13 (completion-help-at-point): New command.
14
15 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
16
17 * vc/add-log.el (add-change-log-entry): Don't use whitespace
18 syntax class to search for whitespace on a single line
19 (Message-ID: <4D938140.4030905@redhat.com>).
20
21 2011-03-30 Leo Liu <sdl.web@gmail.com>
22
23 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
24 New commands.
25 (edit-abbrevs-map): Bind them here.
26 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
27
28 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
29
30 * allout.el (allout-hide-by-annotation, allout-flag-region):
31 Reduce possibility of overlay leakage by making them volatile.
32
33 * allout-widgets.el (allout-widgets-tally): Define as nil so the
34 hash is not shared between buffers. Mode initialization is
35 responsible for giving it a useful starting value.
36 (allout-item-span): Reduce possibility of overlay leakage by
37 making them volatile.
38 (allout-widgets-count-buttons-in-region): Add diagnostic function
39 for tracking down button overlay leaks.
40
41 2011-03-29 Leo Liu <sdl.web@gmail.com>
42
43 * ido.el (ido-read-internal): Use the default history var
44 minibuffer-history if no HISTORY is specified.
45
46 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
47
48 * net/imap.el (imap-shell-open, imap-process-connection-type): Use
49 imap-process-connection-type for 'shell' streams as well as
50 Kerberos, SSL, other subprocesses.
51
52 2011-03-28 Leo Liu <sdl.web@gmail.com>
53
54 * abbrev.el (abbrev-table-empty-p): New function.
55 (prepare-abbrev-list-buffer): Place empty abbrev tables after
56 nonempty ones. (Bug#5937)
57
58 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
59
60 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
61
62 2011-03-27 Leo Liu <sdl.web@gmail.com>
63
64 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
65 for foreground and background colors.
66 (ansi-color-make-color-map): Adapt.
67
68 2011-03-25 Leo Liu <sdl.web@gmail.com>
69
70 * midnight.el (midnight-time-float): Remove. Note it calculates
71 the microsecond component incorrectly and seconds-to-time does the
72 same job.
73 Remove redundant (require 'timer).
74
75 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
76 (ido-completions): Remove unused arguments. (Bug#8329)
77
78 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
79
80 * minibuffer.el (completion--flush-all-sorted-completions):
81 Remove itself from hook.
82 (completion-at-point): Let the functions perform the completion
83 immediately and return nil or t.
84 * comint.el (comint-dynamic-complete-functions): Now identical to
85 completion-at-point-functions.
86 (comint-dynamic-list-input-ring): Remove unused var `index'.
87 (comint--match-partial-filename, comint--unquote&expand-filename):
88 New funs, split from comint-match-partial-filename.
89 (comint-dynamic-complete): Use completion-at-point.
90 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
91
92 2011-03-24 Drew Adams <drew.adams@oracle.com>
93
94 * thingatpt.el: Support `defun'.
95
96 2011-03-23 Leo Liu <sdl.web@gmail.com>
97
98 * abbrevlist.el: Move to obsolete/abbrevlist.el.
99
100 * help-mode.el (help-mode-finish): Tweak regexp.
101
102 2011-03-23 Glenn Morris <rgm@gnu.org>
103
104 * eshell/esh-opt.el (eshell-eval-using-options):
105 Do not bind unused local variable `eshell-option-stub'.
106
107 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
108
109 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
110
111 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
112 keymap variable in `with-no-warnings' to avoid a warning when the
113 keymap has been already `defconst'ed.
114
115 2011-03-22 Leo Liu <sdl.web@gmail.com>
116
117 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
118 encode all chars in abbrevs; otherwise use emacs-mule or
119 utf-8-emacs. (Bug#8308)
120
121 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
122
123 * simple.el (backward-delete-char-untabify):
124 Avoid warning about using `delete-backward-char'.
125
126 * image.el (image-type-file-name-regexps): Make it variable.
127 `imagemagick-register-types' modifies it, and the user may want
128 to add new extensions for known image types.
129 (imagemagick-register-types): Throw error if not using ImageMagick.
130
131 2011-03-22 Leo Liu <sdl.web@gmail.com>
132
133 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
134 located before rcirc-prompt-end-marker.
135 (rcirc-complete): Error if point is not after rcirc prompt.
136 Handle the case when table is nil.
137 (rcirc-user-authenticated): Define to fix compiler warning.
138
139 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
140
141 * custom.el (custom--inhibit-theme-enable): Make it affect only
142 custom-theme-set-variables and custom-theme-set-faces.
143 (provide-theme): Ignore custom--inhibit-theme-enable.
144 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
145 (custom-enabling-themes): Delete variable.
146 (enable-theme): Accept only loaded themes as arguments.
147 Ignore the special custom-enabled-themes variable.
148 (custom-enabled-themes): Forbid themes from setting this.
149 Eliminate use of custom-enabling-themes.
150 (custom-push-theme): Quote "changed" custom var entry.
151
152 2011-03-21 Leo Liu <sdl.web@gmail.com>
153
154 * ido.el (ido-read-internal): Add ido-selected to history instead
155 of user input.
156
157 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
158
159 * subr.el (deferred-action-list, deferred-action-function):
160 Mark obsolete.
161
162 2011-03-21 Leo Liu <sdl.web@gmail.com>
163
164 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
165 change on 2011-02-13 (bug#8309).
166
167 * minibuffer.el (read-file-name-function): Change default value.
168 (read-file-name--defaults): Rename from read-file-name-defaults.
169 (read-file-name-default): Rename from read-file-name.
170 (read-file-name): Call read-file-name-function.
171
172 2011-03-21 Glenn Morris <rgm@gnu.org>
173
174 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
175 Doc fixes.
176
177 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
178
179 * cus-theme.el: Add missing provide statement.
180 (customize-create-theme): Extract theme value correctly.
181 (custom-theme-visit-theme): Autoload.
182 (customize-create-theme): Prompt before inserting default faces.
183
184 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
185
186 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
187 units and musical notes.
188
189 2011-03-20 Leo <sdl.web@gmail.com>
190
191 * ido.el (ido-read-internal): Use completing-read-default.
192 (ido-completing-read): Fix compatibility with completing-read.
193
194 2011-03-20 Christian Ohler <ohler@gnu.org>
195
196 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
197 (ert-delete-all-tests): Use `called-interactively-p' rather than
198 `interactive-p'.
199 (ert--make-xrefs-region): Respect END.
200
201 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
202
203 * dired-aux.el (dired-create-directory): Signal an error if the
204 directory already exists (Bug#8246).
205
206 * facemenu.el (list-colors-display): Call list-faces-display
207 inside with-help-window.
208 (list-colors-print): Use display property to align the final
209 column, instead of checking window-width.
210
211 2011-03-19 Eli Zaretskii <eliz@gnu.org>
212
213 * emerge.el (emerge-metachars): Separate value for ms-dos and
214 windows-nt systems.
215 (emerge-protect-metachars): Quote correctly for ms-dos and
216 windows-nt systems.
217
218 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
219
220 * info.el (info-initialize): Replace all uses of `:' with
221 path-separator for compatibility with non-Unix systems.
222 Cache quoting of path-separator. (Bug#8258)
223
224 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
225
226 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
227 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
228 (mouse-avoidance-mode): Fix typos in docstrings.
229
230 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
231
232 * startup.el (package-subdirectory-regexp): Move from package.el.
233 Omit \\` and \\', and let callers add them.
234
235 * emacs-lisp/package.el (package-strip-version)
236 (package-load-all-descriptors): Add \\` and \\' to
237 package-subdirectory-regexp before using it.
238 (package-untar-buffer): New arg DIR; ensure that file untars only
239 into this expected directory. Remove superfluous delete-region.
240 (package-unpack): Caller changed.
241 (package-tar-file-info): Use package-subdirectory-regexp.
242
243 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
244
245 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
246 diff-mode-shared-map (bug#8284).
247 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
248
249 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
250
251 * calendar/time-date.el (format-seconds): Use assoc instead of
252 assoc-string, since assoc-string doesn't exist in XEmacs.
253
254 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
255
256 * custom.el (custom-known-themes): Reflow docstring.
257 (custom-theme-load-path): Fix typo in docstring.
258 (load-theme): Fix typo in error message.
259 (custom-available-themes, custom-variable-theme-value):
260 Use `let', not `let*'.
261
262 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
263
264 * calc/README: Mention inclusion of musical notes.
265
266 * calc/calc-units.el (calc-lu-quant): Rename from
267 `calc-logunits-quantity'.
268 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
269 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
270 (calc-db): Rename from `calc-dblevel'.
271 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
272 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
273 (calc-np): Rename from `calc-nplevel'.
274 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
275 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
276 (calc-lu-plus): Rename from `calc-logunits-add'.
277 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
278 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
279 (calc-lu-minus): Rename from `calc-logunits-sub'.
280 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
281 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
282 (calc-lu-times): Rename from `calc-logunits-mul'.
283 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
284 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
285 (calc-lu-divide): Rename from `calc-logunits-div'.
286 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
287 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
288
289 * calc/calc-ext.el (calc-init-extensions): Update the names of the
290 functions being autoloaded.
291
292 * calc/calc.el (calc-lu-power-reference): Rename from
293 `calc-logunits-power-reference'.
294 (calc-lu-field-reference): Rename from
295 `calc-logunits-field-reference'.
296
297 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
298
299 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
300
301 * minibuffer.el (completion-all-sorted-completions):
302 Use :completion-cycle-penalty text property if present.
303
304 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
305
306 * allout.el (allout-yank-processing): Adjust for new rebulleting
307 regime so bullet being yanked is used without prompting the user
308 for a choice.
309
310 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
311
312 * startup.el (command-line): Warn the user that _emacs is deprecated.
313
314 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
315
316 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
317 (delphi-verbose, delphi-comment-face, delphi-string-face)
318 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
319 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
320 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
321 (delphi-new-comment-line, delphi-font-lock-defaults)
322 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
323 Fix typos in docstrings.
324
325 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
326
327 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
328 Invert the roles of character and string values for INSTEAD, so a
329 string is used for the more common case of a defaulting prompt.
330
331 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
332
333 * progmodes/ruby-mode.el (ruby-backward-sexp):
334 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
335 * play/gamegrid.el (gamegrid-make-face):
336 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
337 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
338 * notifications.el (notifications-notify):
339 * net/xesam.el (xesam-search-engines):
340 * net/quickurl.el (quickurl-list-insert):
341 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
342
343 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
344
345 * startup.el (command-line): Update package subdirectory regexp.
346
347 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
348
349 * allout.el (allout-abbreviate-flattened-numbering)
350 (allout-mode-deactivate-hook): Fix up obsolescence "date".
351
352 * subr.el (read-char-choice): Only show the cursor after the prompt,
353 not after the answer.
354
355 2011-03-15 Kevin Ryde <user42@zip.com.au>
356
357 * help-fns.el (variable-at-point): Skip leading quotes, if any
358 (bug#8253).
359
360 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
361
362 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
363 warning message.
364
365 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
366
367 * shell.el (shell): When called interactively, offer to change the
368 shell file name on remote hosts.
369
370 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
371
372 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
373 integration for LDAP parameters. The host, base, user or binddn,
374 and secret tokens can be specified in a netrc file, for instance.
375 This is optional because an `auth-source' parameter must be
376 specified in the search attributes.
377
378 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
379
380 * help.el (describe-mode): Link to the mode's definition (bug#8185).
381
382 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
383
384 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
385 into declaration. Remove redundant and harmful binding.
386
387 2011-03-12 Eli Zaretskii <eliz@gnu.org>
388
389 * files.el (file-ownership-preserved-p): Pass `integer' as an
390 explicit 2nd argument to `file-attributes'. If the file's owner
391 is the Administrators group on Windows, and the current user is
392 Administrator, consider that a match.
393
394 * server.el (server-ensure-safe-dir): Consider server directory
395 safe on MS-Windows if its owner is the Administrators group while
396 the current Emacs user is Administrator. Use `=' to compare
397 numerical UIDs, since they could be integers or floats.
398
399 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
400
401 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
402
403 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
404
405 Sync with Tramp 2.2.1.
406
407 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
408
409 * net/trampver.el: Update release number.
410
411 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
412
413 * progmodes/compile.el (compilation--previous-directory): Fix up
414 various nil/dead-marker mismatches (bug#8014).
415 (compilation-directory-properties, compilation-error-properties):
416 Don't call it at a position past the one we're about to change.
417
418 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
419 Disable obsolescence warnings in the file that declares it.
420
421 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
422
423 * allout-widgets.el (allout-widgets-tally): Initialize
424 allout-widgets-tally as a hash table rather than nil to prevent
425 mode-line redisplay warnings.
426 Also, clarify the module description and fix a comment typo.
427
428 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
429
430 * help-fns.el (describe-variable): Don't complete keywords.
431 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
432
433 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
434
435 * emacs-lisp/package.el (package-version-join): Impose a standard
436 string representation for pre/alpha/beta version lists.
437 (package-unpack-single): Standardize the directory name by passing
438 it through package-version-join.
439 (package-strip-rcs-id): Accept any version string that does not
440 signal an error in version-to-list.
441
442 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
443
444 * simple.el (delete-trailing-whitespace): Return nil for the
445 benefit of `write-file-functions'.
446
447 2011-03-10 Glenn Morris <rgm@gnu.org>
448
449 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
450
451 * vc/vc-git.el (vc-git-program): New option.
452 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
453 (vc-git--call): Use it.
454
455 * eshell/esh-util.el (eshell-condition-case): Doc fix.
456
457 * cus-edit.el (Custom-newline): If no button at point, look
458 for a subgroup button at start-of-line. (Bug#2298)
459
460 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
461
462 2011-03-10 Julien Danjou <julien@danjou.info>
463
464 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
465 `cursor-type' is nil.
466
467 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
468
469 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
470
471 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
472
473 * allout.el Summary: Change so yank of distinctive-bullet items
474 preserves the existing header prefix, rebulleting it if necessary,
475 rather than replacing it. This is necessary for proper operation
476 of cooperative addons like allout-widgets.
477 (allout-make-topic-prefix, allout-rebullet-heading): Change
478 SOLICIT arg to INSTEAD, and interpret additionally a string value
479 as alternate bullet to be used, instead of prompting the user for
480 a bullet character.
481
482 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
483
484 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
485 Do not use `tramp-file-name-port', because this returns also
486 `tramp-default-port'.
487
488 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
489
490 * net/rcirc.el (rcirc-handler-001): Remove useless
491 with-rcirc-process-buffer.
492 (rcirc-check-auth-status): Swap arguments to string-match.
493
494 2011-03-09 Glenn Morris <rgm@gnu.org>
495
496 * shell.el (shell-mode):
497 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
498
499 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
500 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
501
502 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
503
504 * emacs-lisp/package.el (package-refresh-contents)
505 (package-menu-execute): Use condition-case-no-debug.
506
507 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
508
509 * simple.el (shell-command-to-string): Use `process-file'.
510
511 * emacs-lisp/package.el (package-tar-file-info): Handle also
512 remote files.
513
514 * emacs-lisp/package-x.el (package-upload-buffer-internal):
515 Use `equal' for upload base check.
516
517 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
518
519 * textmodes/texinfo.el (texinfo-environments):
520 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
521
522 2011-03-08 Glenn Morris <rgm@gnu.org>
523
524 * cus-start.el (cursor-in-non-selected-windows):
525 Fix :set quoting oddness. (Bug#8192)
526
527 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
528 in some setf expressions. (Bug#2159)
529
530 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
531
532 * custom.el (custom-available-themes): Return themes in
533 alphabetical order.
534
535 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
536
537 * progmodes/cc-cmds.el (c-beginning-of-statement): Fix incorrect
538 application of patch from Alan Mackenzie (Bug#7595).
539
540 2011-03-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
541
542 * net/rcirc.el (rcirc-connect): Fix PASS bug.
543
544 2011-03-07 Glenn Morris <rgm@gnu.org>
545
546 * vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt.
547 Give an explicit error if failed to make writable. (Bug#6146)
548
549 2011-03-07 Ed Reingold <reingold@emr.cs.iit.edu>
550
551 * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
552 Add optional `after-sunset' argument. (Bug#8190)
553
554 2011-03-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
555
556 * play/morse.el (nato-alphabet, nato-region, denato-region):
557 New variable and functions. (Bug#2288)
558 (morse-region, unmorse-region): Barf if read-only.
559
560 2011-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
561
562 * progmodes/gud.el (gdb-script-syntax-propertize-function):
563 Don't change the syntax of a \n that closes a comment (bug#8169).
564
565 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
566
567 * emacs-lisp/package-x.el (package-archive-upload-base): Make it a
568 defcustom.
569 (package--update-file): Doc fix. Accept relative file names.
570 (package--archive-contents-from-file): Remove the argument, since
571 it's necessarily always "archive-contents".
572 (package-maint-add-news-item): Pass relative file name args to
573 package--update-file.
574 (package-upload-buffer-internal): Prompt for a destination if
575 package-archive-upload-base is invalid. Create the directory if
576 it does not exist.
577 (package-upload-buffer, package-upload-file): Doc fix.
578
579 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
580
581 * isearch.el (isearch-mode-map): Bind C-y to isearch-yank-kill,
582 and move isearch-yank-line to M-s C-e (Bug#8183).
583
584 2011-03-06 Alan Mackenzie <acm@muc.de>
585
586 * progmodes/cc-engine.el (c-guess-basic-syntax): Reindent.
587 (c-guess-basic-syntax): Move CASE 19 to a different place,
588 correctly to process template-args-cont lines.
589
590 2011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
591
592 * calc/calc-ext.el (calc-init-extensions):
593 Rename calc-logunits-dblevel and calc-logunits-nplevel to calc-dblevel
594 and calc-nplevel, respectively. Add keybindings for calc-spn,
595 calc-midi and calc-freq. Add autoloads for calcFunc-spn,
596 calcFunc-midi, calcFunc-freq, calc-spn, calc-midi and calc-freq.
597
598 * calc/calc-units.el (calc-dblevel): Rename from
599 calc-logunits-dblevel.
600 (calc-nplevel): Rename from calc-logunits-nplevel.
601 (math-midi-round, math-freqp, math-midip, math-spnp)
602 (math-spn-to-midi, math-midi-to-spn, math-freq-to-spn)
603 (math-midi-to-freq, math-spn-to-freq, calcFunc-spn, calcFunc-midi)
604 (calcFunc-freq, calc-freq, calc-midi, calc-spn): New functions.
605 (math-notes): New variable.
606
607 * calc/calc.el (calc-note-threshold): New variable.
608
609 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
610
611 * emacs-lisp/package.el (package-archives): Accept either ordinary
612 directory names, in addition to HTTP URLs.
613 (package--with-work-buffer): New macro. Handle normal directories.
614 (package-handle-response): Don't display the failing buffer.
615 (package-download-single, package-download-tar)
616 (package--download-one-archive): Use package--with-work-buffer.
617 (package-archive-base): Rename from package-archive-url.
618
619 2011-03-06 Glenn Morris <rgm@gnu.org>
620
621 * generic-x.el (generic-unix-modes): Add xmodmap-generic-mode.
622 (xmodmap-generic-mode): Respect generic-extras-enable-list.
623
624 2011-03-06 Daniel Clemente <dcl441-bugs@yahoo.com> (tiny change)
625
626 * generic-x.el (xmodmap-generic-mode): New. (Bug#2065)
627
628 2011-03-06 Juanma Barranquero <lekktu@gmail.com>
629
630 * allout.el (allout-init, allout-prefixed-keybindings)
631 (allout-unprefixed-keybindings):
632 * progmodes/prolog.el (prolog-find-term):
633 Fix typos in docstrings.
634
635 2011-03-06 Nikolaj Schumacher <me@nschum.de> (tiny change)
636
637 * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
638
639 2011-03-06 Kevin Ryde <user42@zip.com.au>
640
641 * textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc. (Bug#5326)
642
643 2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
644
645 * window.el (one-window-p, walk-windows, display-buffer):
646 Doc fixes. (Bug#5567)
647
648 2011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
649
650 * cus-edit.el (custom-prompt-variable): Use the `custom-get' property
651 of the variable if it exists.
652
653 2011-03-06 Juanma Barranquero <lekktu@gmail.com>
654
655 * bookmark.el:
656 * desktop.el:
657 * emacs-lock.el:
658 * ps-print.el:
659 * saveplace.el:
660 * net/tramp-cache.el:
661 * obsolete/fast-lock.el:
662 * textmodes/reftex.el:
663 Don't set `kill-emacs-hook' on noninteractive sessions (bug#8137).
664
665 2011-03-05 Antoine Levitt <antoine.levitt@gmail.com>
666
667 * files.el (delete-directory, copy-directory, list-directory):
668 Use read-directory-name.
669
670 * find-file.el (ff-find-the-other-file):
671 * net/ange-ftp.el (ange-ftp-make-directory):
672 * printing.el (pr-interactive-dir):
673 * progmodes/ada-prj.el (ada-prj-load-directory):
674 * progmodes/ebnf2ps.el (ebnf-print-directory)
675 (ebnf-spool-directory, ebnf-eps-directory)
676 (ebnf-syntax-directory):
677 * shell.el (shell):
678 * speedbar.el (speedbar-create-directory):
679 * vc/emerge.el (emerge-merge-directories):
680 * vc/vc-dir.el (vc-dir):
681 * vc/vc.el (vc-create-tag, vc-retrieve-tag): Likewise.
682
683 2011-03-05 Chong Yidong <cyd@stupidchicken.com>
684
685 * help-mode.el (help-buffer): If we are to return the current
686 buffer, signal an error if it's not in Help mode (Bug#8147).
687
688 2011-03-05 Reuben Thomas <rrt@sc3d.org>
689
690 * files.el (file-name-version-regexp): Handle backup files of the
691 form `foo.js.~HEAD~1~' (Bug#8159).
692
693 2011-03-05 Glenn Morris <rgm@gnu.org>
694
695 * eshell/esh-var.el: Don't require esh-test when compiling.
696 * eshell/em-banner.el, eshell/esh-cmd.el, eshell/esh-mode.el:
697 * eshell/esh-var.el, eshell/eshell.el: Move tests to esh-test.
698 * eshell/esh-test.el: Move to ../../test/eshell.el.
699
700 2011-03-05 David Engster <deng@randomsample.de>
701
702 * files.el (save-some-buffers): Report the names of buffers saved
703 automatically due to buffer-save-without-query (Bug#8134).
704
705 2011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
706
707 * net/rcirc.el: Add QuakeNet authentication support.
708 (rcirc-authinfo, rcirc-check-auth-status)
709 (rcirc-authenticate): Support QuakeNet.
710
711 2011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
712
713 * net/rcirc.el: Add functionality to authenticate before
714 autojoining channels.
715 (rcirc-authenticate-before-join): New option.
716 (rcirc-authenticated-hook): New variable.
717 (rcirc-connect): Make local variable rcirc-user-authenticated.
718 (rcirc-handler-001): Respect rcirc-authenticate-before-join.
719 (rcirc-check-auth-status, rcirc-join-channels-post-auth):
720 New functions.
721 (rcirc-handler-PRIVMSG, rcirc-handler-NOTICE):
722 Call rcirc-check-auth-status.
723
724 2011-03-05 Alex Harsanyi <AlexHarsanyi@gmail.com>
725
726 * net/soap-client.el (soap-namespace-put-link): Check if the target
727 name is fully qualified -- use only the name part.
728 (soap-parse-complex-type, soap-parse-sequence): Recognize xsd:all
729 types, treated the same as xsd:sequence. (Bug#8166)
730
731 2011-03-05 Eli Zaretskii <eliz@gnu.org>
732
733 * files.el (find-file-noselect): Don't ask about re-visiting
734 non-literally if the file is already visited in image-mode.
735 (Bug#8177)
736
737 2011-03-05 Glenn Morris <rgm@gnu.org>
738
739 * eshell/esh-mode.el (eshell-kill-buffer-function): New function.
740 (eshell-mode): Use eshell-kill-buffer-function.
741 Run the -initialize functions independently of the -load-hooks.
742 * eshell/esh-proc.el (eshell-kill-process-function): New function.
743 (eshell-gather-process-output, eshell-sentinel)
744 (eshell-interrupt-process, eshell-kill-process, eshell-quit-process):
745 Use eshell-kill-process-function.
746 * eshell/em-alias.el (eshell-alias-load-hook):
747 * eshell/em-banner.el (eshell-banner-load-hook):
748 * eshell/em-cmpl.el (eshell-cmpl-load-hook):
749 * eshell/em-dirs.el (eshell-dirs-load-hook):
750 * eshell/em-glob.el (eshell-glob-load-hook):
751 * eshell/em-hist.el (eshell-hist-load-hook):
752 * eshell/em-pred.el (eshell-pred-load-hook):
753 * eshell/em-prompt.el (eshell-prompt-load-hook):
754 * eshell/em-rebind.el (eshell-rebind-load-hook):
755 * eshell/em-script.el (eshell-script-load-hook):
756 * eshell/em-smart.el (eshell-smart-load-hook):
757 * eshell/em-term.el (eshell-term-load-hook):
758 * eshell/em-unix.el (eshell-unix-load-hook):
759 * eshell/esh-arg.el (eshell-arg-load-hook):
760 * eshell/esh-cmd.el (eshell-cmd-load-hook):
761 * eshell/esh-ext.el (eshell-ext-load-hook):
762 * eshell/esh-io.el (eshell-io-load-hook):
763 * eshell/esh-mode.el (eshell-exit-hook):
764 * eshell/esh-proc.el (eshell-proc-load-hook, eshell-kill-hook):
765 * eshell/esh-var.el (eshell-var-load-hook):
766 Set default hook values to nil. (Bug#5375)
767
768 * eshell/esh-module.el (eshell-module-unload-hook)
769 (eshell-modules-list): Remove leading * from defcustom docs.
770
771 * eshell/esh-util.el (eshell-for): Make it obsolete.
772 * eshell/em-alias.el (eshell/alias, eshell-alias-completions):
773 * eshell/em-dirs.el (eshell-save-some-last-dir):
774 * eshell/em-hist.el (eshell-save-some-history)
775 (eshell-hist-parse-modifier):
776 * eshell/em-ls.el (eshell-ls-dir, eshell-ls-files)
777 (eshell-ls-entries):
778 * eshell/em-unix.el (eshell/cat, eshell/du, eshell/su):
779 * eshell/esh-cmd.el (eshell-invoke-directly, eshell-do-eval)
780 (eshell/which):
781 * eshell/esh-ext.el (eshell-find-interpreter):
782 * eshell/esh-mode.el (eshell-mode):
783 * eshell/esh-module.el (eshell-unload-extension-modules):
784 * eshell/esh-proc.el (eshell-process-interact):
785 * eshell/esh-test.el (eshell-test):
786 * eshell/esh-util.el (eshell-flatten-list, eshell-winnow-list):
787 * eshell/esh-var.el (eshell/env, eshell-environment-variables)
788 (eshell-variables-list):
789 * eshell/eshell.el (eshell-unload-all-modules):
790 Replace eshell-for with dolist.
791
792 2011-03-04 Glenn Morris <rgm@gnu.org>
793
794 * vc/vc-bzr.el (vc-bzr-after-dir-status): Handle bzr 2.3.0. (Bug#8170)
795
796 2011-03-04 Tom Tromey <tromey@redhat.com>
797
798 * progmodes/gud.el (gdb-script-mode): Derive from prog-mode.
799
800 2011-03-04 Glenn Morris <rgm@gnu.org>
801
802 * outline.el (outline-regexp): No longer allow nil.
803 (outline-heading-end-regexp): Add safety predicate. (Bug#7619)
804
805 * net/browse-url.el (browse-url):
806 Handle deleted default-directory. (Bug#6077)
807
808 * recentf.el (recentf-include-p): In case of a buggy predicate,
809 err on the side of including, not excluding. (Bug#5843)
810
811 2011-03-04 Jay Belanger <jay.p.belanger@gmail.com>
812
813 * calc/calc-units.el (math-to-standard-rec): Don't treat subscripted
814 variables as units.
815
816 2011-03-04 Bob Rogers <rogers@rgrjr.dyndns.org>
817
818 * emacs-lisp/ewoc.el (ewoc-goto-next): Give a more explicit error
819 if there is no node. (Bug#3261)
820
821 2011-03-04 Leo <sdl.web@gmail.com>
822
823 * vc/diff-mode.el (diff-mode): Fix whitespace-style. (Bug#8139)
824
825 * time.el (display-time-world-list): Fix typo. (Bug#7571)
826
827 2011-03-04 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
828
829 * cus-edit.el (custom-buffer-create-internal):
830 Split search string before passing it to `customize-apropos' (bug#8136).
831
832 2011-03-04 Drew Adams <drew.adams@oracle.com>
833
834 * image-dired.el (image-dired-cmd-read-exif-data-options):
835 Fix typo in docstring (bug#8156).
836
837 2011-03-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
838
839 * net/rcirc.el (rcirc-cmd-join): Accept comma-separated input.
840
841 2011-03-03 Christian Ohler <ohler@gnu.org>
842
843 * emacs-lisp/ert.el (ert--explain-equal): New function.
844 (ert--explain-equal-rec): Rename from `ert--explain-not-equal'.
845 All callers changed.
846 (ert--explain-equal-including-properties): Rename from
847 `ert--explain-not-equal-including-properties'. All callers
848 changed.
849
850 2011-03-03 Christian Ohler <ohler@gnu.org>
851
852 * emacs-lisp/ert.el (ert--stats-set-test-and-result)
853 (ert-char-for-test-result, ert-string-for-test-result)
854 (ert-run-tests-batch, ert--print-test-for-ewoc):
855 Handle `ert-test-quit'.
856
857 2011-03-03 David Abrahams <dave@boostpro.com> (tiny change)
858
859 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
860 Move ediff-defvar-local calls after defcustoms. (Bug#1821)
861
862 2011-03-03 Glenn Morris <rgm@gnu.org>
863
864 * files.el (file-truename): Doc fix. (Bug#2341)
865
866 2011-03-03 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
867
868 * vc/vc-dir.el (vc-dir-mode-map): Bind vc-dir-find-file to e (Bug#7349).
869
870 2011-03-03 Vagn Johansen <gonz808@hotmail.com> (tiny change)
871
872 * vc/vc-svn.el (vc-svn-after-dir-status): Some MS Windows svn client
873 programs output backslashes. (Bug#7663)
874
875 2011-03-03 Glenn Morris <rgm@gnu.org>
876
877 * mail/sendmail.el (mail-mode-map): Remove mail-sent-via.
878 (mail-mode): Remove mail-sent-via from the doc.
879 (mail-sent-via): Make it obsolete. (Bug#1776)
880
881 * progmodes/grep.el (grep-highlight-matches): Doc fix.
882 (grep-process-setup): No highlighting without font-lock. (Bug#8084)
883
884 * vc/vc-bzr.el (vc-bzr-state-heuristic): Handle dirstate entries
885 with no parents. (Bug#8025)
886
887 2011-03-02 Teodor Zlatanov <tzz@lifelogs.com>
888
889 * password-cache.el (password-in-cache-p): Add autoload.
890
891 2011-03-02 Glenn Morris <rgm@gnu.org>
892
893 * man.el (Man-support-local-filenames): Also handle Red Hat's man.
894 * dired-x.el (Man-support-local-filenames): Autoload it.
895 (dired-guess-shell-alist-default): Also handle Red Hat's man.
896
897 * dired-x.el (dired-default-directory-alist, dired-default-directory):
898 Mark as obsolete.
899 (dired-smart-shell-command): Just call dired-current-directory.
900
901 * dired-x.el (dired-jump-other-window): Add autoload.
902 (dired-default-directory-alist, dired-default-directory): Doc fixes.
903 (dired-default-directory-alist): Mark as risky.
904
905 * dired-x.el (dired-omit-here-always): Make it obsolete.
906
907 2011-03-02 Chong Yidong <cyd@stupidchicken.com>
908
909 * textmodes/artist.el (artist-curr-go): Default to pen-line.
910 (artist-select-op-pen-line): New function.
911 (artist-menu-map): New variable.
912 (artist-mode-map): Add a menu to the menu-bar.
913
914 2011-03-02 Jay Belanger <jay.p.belanger@gmail.com>
915
916 * calc/calc-math.el (calcFunc-log10): Check for symbolic mode
917 when evaluating.
918
919 * calc/calc-units.el (math-conditional-apply, math-conditional-pow):
920 New function.
921 (math-logunits-add, math-logunits-mul, math-logunits-divide):
922 (math-logunits-quant, math-logunits-level):
923 Use `math-conditional-apply' and `math-conditional-pow' to evaluate
924 functions.
925 (math-logunits-level): Extract units from ratio.
926
927 2011-03-01 Juanma Barranquero <lekktu@gmail.com>
928
929 * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
930
931 2011-03-01 Glenn Morris <rgm@gnu.org>
932
933 * calendar/cal-hebrew.el (calendar-hebrew-birthday)
934 (diary-hebrew-birthday): Rename and rework functions added
935 in previous change.
936
937 2011-03-01 Ed Reingold <reingold@emr.cs.iit.edu>
938
939 * calendar/cal-hebrew.el (hebrew-calendar-birthday)
940 (diary-hebrew-birthday): New functions.
941
942 2011-03-01 Glenn Morris <rgm@gnu.org>
943
944 * dired.el (dired-safe-switches-p): Beef it up.
945 (dired-actual-switches): Use it for the safe-local prop. (Bug#3230)
946
947 2011-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
948
949 * dired.el (dired-safe-switches-p): New function.
950
951 2011-03-01 Glenn Morris <rgm@gnu.org>
952
953 * files.el (dir-locals-collect-variables):
954 Add the ability to exclude subdirectories. (Bug#8100)
955
956 * dired-x.el (dired-omit-here-always): Add `(subdirs . nil)' to locals.
957
958 2011-02-28 Christoph Scholtes <cschol2112@googlemail.com>
959
960 * ido.el (ido-everywhere): Doc fix.
961 (ido-mode): Doc fix.
962
963 2011-02-28 Glenn Morris <rgm@gnu.org>
964
965 * dired-x.el (dired-guess-shell-alist-default): Use \\', not $.
966
967 2011-02-28 Michael Albinus <michael.albinus@gmx.de>
968
969 * net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path
970 shadows.
971
972 2011-02-28 Antoine Levitt <antoine.levitt@gmail.com>
973
974 * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
975
976 2011-02-28 Juanma Barranquero <lekktu@gmail.com>
977
978 * emacs-lisp/pcase.el (pcase, pcase--u1, pcase--q1):
979 Fix typos in docstrings.
980
981 2011-02-28 Stephen Berman <stephen.berman@gmx.net>
982
983 * dired-aux.el (dired-update-file-line):
984 Fix 2010-11-09 change. (Bug#8131)
985
986 2011-02-28 Eli Zaretskii <eliz@gnu.org>
987
988 * international/mule-cmds.el (set-default-coding-systems): Use the
989 -unix variant of encoding in default-keyboard-coding-system.
990 (Bug#8122)
991
992 2011-02-27 Chong Yidong <cyd@stupidchicken.com>
993
994 * facemenu.el (list-colors-display): Use with-help-window (Bug#8048).
995
996 2011-02-27 Prestoo Ten <prestooten@gmail.com> (tiny change)
997
998 * term/screen.el: New file (Bug#2650).
999
1000 2011-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
1001
1002 * emacs-lisp/pcase.el (pcase--if): Try to invert test to reduce depth.
1003 (pcase-mutually-exclusive-predicates): New var.
1004 (pcase--split-consp, pcase--split-pred): Use it.
1005 (pcase--split-equal, pcase--split-member): When splitting against
1006 a pure predicate, run it to know the outcome.
1007 (pcase--u1): Mark vars that are actually used.
1008 (pcase--q1): Avoid introducing unused vars.
1009
1010 2011-02-27 Jay Belanger <jay.p.belanger@gmail.com>
1011
1012 * calc/calc-ext.el (calc-init-extensions):
1013 Autoload `calc-l-prefix-help' instead of `calc-ul-prefix-help'.
1014
1015 * calc/calc-math.el (calcFunc-log10): Don't signal an error in
1016 symbolic mode.
1017
1018 * calc/calc-vec.el (calcFunc-subscr): Return nil if the first
1019 argument is a variable.
1020
1021 2011-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
1022
1023 * emacs-lisp/assoc.el: Remove misleading `sort' (bug#8126).
1024 (aput, adelete, amake): Replace `eval' -> `symbol-value'.
1025 Suggested by Michael Heerdegen <michael_heerdegen@web.de>.
1026
1027 2011-02-25 Teodor Zlatanov <tzz@lifelogs.com>
1028
1029 * password-cache.el (password-in-cache-p): Convenience function to
1030 check if a key is in the cache, even if the value is nil.
1031
1032 2011-02-25 Jambunathan K <kjambunathan@gmail.com>
1033
1034 * emacs-lisp/package-x.el (package--archive-contents-from-url)
1035 (package--archive-contents-from-file): New functions.
1036 (package-update-news-on-upload): New var.
1037 (package-upload-buffer-internal): Extract archive-contents from
1038 package-archive-upload-base if it is not found at archive-url.
1039 Obey package-update-news-on-upload.
1040 (package-upload-buffer, package-upload-file): Doc fix.
1041
1042 2011-02-24 Glenn Morris <rgm@gnu.org>
1043
1044 * files-x.el (modify-dir-local-variable): Handle dir-locals from
1045 the cache, and from non-file sources.
1046
1047 * help-fns.el (describe-variable): Return consistent results when a
1048 dir-local from a file came from the cache or did not. (Bug#8095)
1049 If a dir-local has no associated file, say it came from a "directory".
1050
1051 * files.el (hack-dir-local-variables): Fix setting of `dir-name'.
1052 (hack-local-variables-confirm, hack-local-variables-filter): Doc fix.
1053
1054 * files.el (dir-locals-find-file): Doc fix.
1055 Fix the check for cache elements that have no associated file,
1056 and the mtime check for those that do. (Bug#8095)
1057
1058 * dired-x.el (dired-hack-local-variables):
1059 Handle interrupts during hacking local variables. (Bug#5216)
1060
1061 * emacs-lisp/autoload.el (autoload-save-buffers)
1062 (autoload-find-destination, update-directory-autoloads):
1063 Avoid prompts when updating autoloads.
1064
1065 2011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
1066
1067 * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
1068
1069 2011-02-23 Kenichi Handa <handa@m17n.org>
1070
1071 * mail/rmailmm.el (rmail-mime-process-multipart): Do not signal an
1072 error when a multipart boundary in the nested multipart is found.
1073
1074 * mail/rmail.el (rmail-start-mail): Decode "encoded-words" of
1075 header components.
1076
1077 2011-02-23 Glenn Morris <rgm@gnu.org>
1078
1079 * dired.el (dired-mode): Call hack-dir-local-variables-non-file-buffer.
1080 * dired-x.el (dired-omit-mode): Safe if boolean.
1081 (dired-enable-local-variables): Fix doc and custom type.
1082 (dired-enable-local-variables, dired-local-variables-file)
1083 (dired-hack-local-variables): Make obsolete.
1084 (dired-omit-here-always): Use dir-locals.el instead.
1085
1086 * files.el (safe-local-eval-forms): Add the write-file-hooks version.
1087
1088 2011-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
1089
1090 * help-fns.el (describe-function-1): Don't signal an error just because
1091 the DOC file disappeared.
1092
1093 2011-02-22 Seppo Sade <sepposade1@gmail.com> (tiny change)
1094
1095 * eshell/esh-ext.el (eshell-external-command): Do not restrict
1096 remote check to "ftp". (Bug#8089)
1097
1098 2011-02-21 Alan Mackenzie <acm@muc.de>
1099
1100 Fix bug #7930.
1101 * progmodes/cc-engine.el (c-state-literal-at): Prevent positions
1102 in macros finding their way into c-state-nonlit-pos-cache.
1103 Strengthen the comments.
1104 (c-state-dump): New commented out diagnostic routine.
1105
1106 2011-02-21 Michael Albinus <michael.albinus@gmx.de>
1107
1108 * net/tramp.el (tramp-rfn-eshadow-setup-minibuffer): Do not use
1109 `field' property of `rfn-eshadow-overlay'.
1110
1111 2011-02-21 Lars Ingebrigtsen <larsi@gnus.org>
1112
1113 * net/netrc.el (netrc-parse): Comment fix.
1114
1115 2011-02-21 Chong Yidong <cyd@stupidchicken.com>
1116
1117 * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
1118 Autoload. Add optional arg FRAME, and pass it to color-values.
1119 (color-complement): Caller changed. Doc fix.
1120 (color-gradient): Rewrite for better clarity and efficiency.
1121
1122 * faces.el (color-values): Use cond for clarity. Doc fix.
1123
1124 * facemenu.el (color-rgb-to-hsv): Delete; use the version in
1125 color.el instead.
1126 (list-colors-sort-key, list-colors-print):
1127 Use color-normalized-values.
1128
1129 2011-02-20 Drew Adams <drew.adams@oracle.com>
1130
1131 * color.el: First part of merge from hexrgb.el.
1132 (color-rgb-to-hex): Rename from color-rgb->hex.
1133 (color-rgb-to-hsv): Rename from color-rgb->hsv. Force hue and
1134 saturation to zero if the value is too small.
1135 (color-rgb-to-hsl): Rename from color-rgb->hsl.
1136 (color-srgb-to-xyz): Rename from color-srgb->xyz. Doc fix.
1137 (color-xyz-to-srgb): Rename from color-xyz->srgb. Doc fix.
1138 (color-xyz-to-lab): Rename from color-xyz->lab. Doc fix.
1139 (color-lab-to-xyz): Rename from color-lab->xyz. Doc fix.
1140 (color-lab-to-srgb): Rename from color-lab->srgb. Doc fix.
1141 (color-cie-de2000): Doc fix.
1142
1143 2011-02-20 Alan Mackenzie <acm@muc.de>
1144
1145 * progmodes/cc-cmds.el (c-beginning-of-statement): Avoid loop in
1146 locating the beginning of a macro. (Bug#7595)
1147
1148 2011-02-20 Glenn Morris <rgm@gnu.org>
1149
1150 * edmacro.el (edmacro-eight-bits): Make it a defcustom.
1151 Don't autoload it.
1152
1153 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1154 (global-auto-revert-ignore-buffer): Remove leading "*" from docs.
1155
1156 2011-02-19 Dmitry Bolshakov <dmitry.bolshakov@bridge-quest.com>
1157 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
1158
1159 * progmodes/hideshow.el (hs-find-block-beginning)
1160 (hs-hide-level-recursive): Ignore comments when parsing braces
1161 (Bug#8036).
1162
1163 2011-02-19 Chong Yidong <cyd@stupidchicken.com>
1164
1165 * vc/vc-bzr.el (vc-bzr-bound-branch-p): New function.
1166 (vc-bzr-pull): Use it.
1167
1168 2011-02-19 Chong Yidong <cyd@stupidchicken.com>
1169
1170 * vc/vc-bzr.el (vc-bzr--branch-conf): Function deleted.
1171 (vc-bzr-branch-conf): New function, similar to vc-bzr--branch-conf
1172 but returning an alist. Ignore comments in bzr conffile.
1173 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-bzr-branch-conf.
1174 (vc-bzr-error-regex-alist): New var.
1175 (vc-bzr-merge-branch): Use it to highlight the pull/merge buffer.
1176
1177 * vc/vc-dispatcher.el (vc-do-async-command):
1178 Bind inhibit-read-only to t.
1179
1180 * progmodes/compile.el (compilation--flush-directory-cache):
1181 Handle the case where cdr of compilation--flush-directory-cache
1182 points to no buffer, which can occur if we previously switched to
1183 compilation-mode in a pregenerated buffer.
1184
1185 2011-02-19 Kenichi Handa <handa@m17n.org>
1186
1187 * mail/rmailmm.el (rmail-mime-find-header-encoding): Be sure to
1188 get the header copy into the temporary buffer.
1189 (rmail-mime-insert-decoded-text): Ignore us-ascii.
1190 (rmail-show-mime): When rmail-mime-coding-system is nil, set
1191 buffer-file-coding-system to undecided.
1192
1193 2011-02-19 Eli Zaretskii <eliz@gnu.org>
1194
1195 * international/mule-cmds.el (read-char-by-name, ucs-insert):
1196 Document completion with asterisk and a substring.
1197
1198 2011-02-19 Glenn Morris <rgm@gnu.org>
1199
1200 * files.el (find-file-literally): Doc fix.
1201
1202 * simple.el (rfc822-goto-eoh): Give it a doc-string.
1203
1204 * log-edit.el (log-edit-insert-changelog):
1205 Fix `log-edit-strip-single-file-name' functionality. (Bug#8057)
1206
1207 2011-02-19 Glenn Morris <rgm@gnu.org>
1208
1209 * dired-x.el: Don't require dired-aux.
1210 (dired-do-create-files, dired-mark-read-regexp)
1211 (dired-do-create-files-regexp): Autoload from dired-aux.
1212
1213 * dired-x.el (dired-find-buffer-nocreate): Merge into dired.el.
1214 * dired.el (dired-find-buffer-nocreate): Merge dired-x version.
1215
1216 * dired-x.el (dired-read-shell-command): Merge into dired-aux's version.
1217 * dired-aux.el (dired-read-shell-command): Merge dired-x's version.
1218
1219 * dired-x.el (dired-clean-up-after-deletion): Merge into dired.el.
1220 * dired.el (dired-clean-up-after-deletion): Merge dired-x's version.
1221 (dired-clean-up-buffers-too): Declare.
1222
1223 * dired-x.el (dired-initial-position): Merge into dired.el's version.
1224 * dired.el (dired-initial-position): Merge dired-x's version here.
1225 (dired-find-subdir): Declare.
1226
1227 * dired-x.el (dired-omit-new-add-entry): Merge into dired-add-entry.
1228 * dired-aux.el (dired-add-entry): Give it a doc-string.
1229 Merge dired-x's dired-omit handling here.
1230 (dired-omit-mode, dired-omit-regexp, dired-omit-localp): Declare.
1231
1232 * international/mule-diag.el (list-input-methods-1):
1233 Indent all lines of multi-line doc-strings. (Bug#8066)
1234
1235 2011-02-18 Chong Yidong <cyd@stupidchicken.com>
1236
1237 Fix 2011-02-02 changes.
1238
1239 * apropos.el (apropos-print): Call apropos-mode before setting up
1240 buffer variables. Use inhibit-read-only.
1241
1242 * emacs-lisp/package.el (package--list-packages):
1243 Call package-menu-mode before setting up buffer variables.
1244
1245 * play/solitaire.el (solitaire): Call solitaire-mode before
1246 setting up buffer variables. Use inhibit-read-only.
1247
1248 2011-02-18 Lawrence Mitchell <wence@gmx.li>
1249
1250 * progmodes/sh-script.el (sh-syntax-propertize-here-doc): (bug#8053)
1251 Bind case-fold-search to nil when looking for end of here-doc.
1252
1253 2011-02-18 Eli Zaretskii <eliz@gnu.org>
1254
1255 * image-mode.el (image-toggle-display-image):
1256 Set find-file-literally non-nil in buffers visiting binary image
1257 files. (Bug#8047)
1258
1259 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1260
1261 * files.el (cd): Make completion obey cd-path (bug#7924).
1262
1263 2011-02-18 Glenn Morris <rgm@gnu.org>
1264
1265 * progmodes/prolog.el: Don't require compile when compiling.
1266 (compilation-shell-minor-mode, compilation-error-regexp-alist)
1267 (compilation-forget-errors, compilation-fake-loc)
1268 (compilation-parse-errors-function, compilation-error-list): Declare.
1269 (prolog-inferior-mode): Require 'compile.
1270
1271 * emulation/cua-base.el (pc-selection-mode): Declare.
1272
1273 * emacs-lisp/eieio-custom.el: Set generated-autoload-file.
1274 (customize-object): Add autoload cookie.
1275 * emacs-lisp/eieio-opt.el: Set generated-autoload-file.
1276 (eieio-browse, describe-class, eieio-describe-class)
1277 (eieio-describe-constructor, describe-generic, eieio-describe-generic)
1278 (eieio-help-mode-augmentation-maybee): Add autoload cookies.
1279 * emacs-lisp/eieio.el: Regenerate with automatic autoloads.
1280 * Makefile.in (autoloads): Make eieio.el writable.
1281
1282 * dired-x.el (dired-clean-up-after-deletion, dired-do-relsymlink)
1283 (dired-do-relsymlink-regexp, dired-find-buffer-nocreate): Use #'.
1284 (dired-hack-local-variables): Use inhibit-read-only.
1285 (dired-guess-default): Simplify.
1286 (dired-make-relative-symlink): Use dotimes.
1287 (dired-simultaneous-find-file): Use dolist.
1288 (dired-mark-sexp): Remove unneeded `if'. Use line-end-position.
1289 (dired-x-hands-off-my-keys): Doc fix.
1290 (dired-x-bind-find-file): Doc fix. Use remapping.
1291 (after-init-hook): No need to add dired-x-bind-find-file.
1292 (dired-x-find-file, dired-x-find-file-other-window): Doc fixes.
1293 No need to call expand-file-name.
1294 (dired-filename-at-point): Remove unused locals `end', `filename'.
1295
1296 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1297
1298 * emacs-lisp/pcase.el (pcase--u1): Understand non-linear patterns.
1299
1300 2011-02-18 Christian Ohler <ohler@gnu.org>
1301
1302 * emacs-lisp/ert.el (ert--setup-results-buffer)
1303 (ert-results-pop-to-backtrace-for-test-at-point)
1304 (ert-results-pop-to-messages-for-test-at-point)
1305 (ert-results-pop-to-should-forms-for-test-at-point)
1306 (ert-results-pop-to-timings): Revert parts of change 2011-02-02T17:59:44Z!sds@gnu.org that
1307 were incorrect and unnecessary. This should make `make check'
1308 pass again.
1309
1310 2011-02-17 Ken Manheimer <ken.manheimer@gmail.com>
1311
1312 * lisp/allout-widgets.el (allout-widgets-icons-light-subdir)
1313 (allout-widgets-icons-dark-subdir): Track relocations of icons.
1314 * lisp/allout.el: Remove commentary about remove encryption
1315 passphrase mnemonic support and verification.
1316 (allout-encrypt-string): Recognize epg failure to decrypt gpg2
1317 armored text using gpg1, and indicate that the gpg version *might*
1318 be the problem in the error message.
1319
1320 2011-02-17 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1321
1322 * net/rcirc.el (rcirc-float-time): New function.
1323 (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE)
1324 (rcirc-ctcp-sender-PING): Use it.
1325
1326 2011-02-17 Glenn Morris <rgm@gnu.org>
1327
1328 * speedbar.el (speedbar-ignored-modes, speedbar-file-unshown-regexp)
1329 (speedbar-update-flag, speedbar-fetch-etags-command)
1330 (speedbar-fetch-etags-arguments):
1331 * term.el (term-buffer-maximum-size, term-input-chunk-size)
1332 (term-completion-autolist, term-completion-addsuffix)
1333 (term-completion-recexact, term-completion-fignore):
1334 * term/sup-mouse.el (sup-mouse-fast-select-window):
1335 * term/x-win.el (x-select-request-type):
1336 Convert some defvars with "*" to defcustoms.
1337
1338 * shell.el (shell-delimiter-argument-list): Set it to nil. (Bug#8027)
1339
1340 * vc/vc.el (vc-default-previous-version):
1341 Remove alias that points nowhere. (Bug#4496)
1342
1343 * dired-x.el (dired-clean-up-after-deletion):
1344 kill-buffer does not need save-excursion.
1345 (dired-do-run-mail): Doc fix.
1346 (dired-filename-at-point): Doc fix.
1347 Use looking-at, and skip-chars rather than re search.
1348
1349 * dired-x.el (dired-filename-at-point): Fix 8-year old typo.
1350
1351 2011-02-16 Ken Manheimer <ken.manheimer@gmail.com>
1352
1353 * allout-widgets.el: New allout extension that shows allout
1354 outline structure with graphical widgets. 'allout-widgets'
1355 customize group is an 'allout' subgroup, for easy discovery.
1356
1357 * allout.el: Include PGP and GnuPG in Keywords, and other
1358 commentary refinements.
1359 (allout-abbreviate-flattened-numbering): Rename to
1360 allout-flattened-numbering-abbreviation, and
1361 define-obsolete-variable-alias the old name.
1362 (allout-flattened-numbering-abbreviation): Rename from
1363 allout-abbreviate-flattened-numbering.
1364 (allout-mode-p): Include among autoloads, for use by other modes
1365 with impunity.
1366 (allout-listify-exposed):
1367 Use allout-flattened-numbering-abbreviation.
1368 (allout-encrypt-string): Use set-buffer-multibyte directly.
1369 (allout-set-buffer-multibyte): Remove.
1370
1371 2011-02-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1372
1373 * simple.el (just-one-space): Remove useless `or' call.
1374
1375 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1376
1377 * net/soap-client.el (soap-well-known-xmlns, soap-local-xmlns)
1378 (soap-default-xmlns, soap-target-xmlns, soap-multi-refs)
1379 (soap-decoded-multi-refs, soap-current-wsdl)
1380 (soap-encoded-namespaces): Rename CL-style *...* variables.
1381
1382 2011-02-16 Michael Albinus <michael.albinus@gmx.de>
1383
1384 * net/soap-client.el: Add "comm" and "hypermedia" to the
1385 keywords. Reflow too long lines.
1386
1387 * net/soap-inspect.el: Ditto. Require 'cl.
1388
1389 2011-02-16 Bastien Guerry <bzg@altern.org>
1390
1391 * play/doctor.el (doctor-mode): Bugfix: escape the "," character
1392 in a `doctor-type' argument.
1393
1394 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1395
1396 * net/soap-client.el:
1397 * net/soap-inspect.el: New files.
1398
1399 2011-02-16 Leo <sdl.web@gmail.com>
1400
1401 * dired-x.el (dired-mode-map, dired-extra-startup):
1402 Remove dired-copy-filename-as-kill since it's already in dired.el.
1403
1404 2011-02-16 Glenn Morris <rgm@gnu.org>
1405
1406 * dired-x.el (dired-bind-jump, dired-bind-man, dired-bind-info):
1407 Doc fixes. Add :set property, replacing top-level calls.
1408 (dired-vm-read-only-folders, dired-vm): Doc fix (drop v. old VM 4).
1409 (dired-guess-shell-gnutar): Test tar version rather than system-type.
1410 (dired-extra-startup, dired-man, dired-info): Doc fixes.
1411 (dired-clean-up-after-deletion): Use when and dolist.
1412 (dired-jump): Use unless and when.
1413 (dired-virtual): Use line-end-position.
1414 (dired-default-directory-alist): Rename from default-directory-alist.
1415 (dired-default-directory): Update for above name change.
1416 (dired-vm): Drop VM < 5 and simplify.
1417 (dired-buffer-more-recently-used-p): Rewrite.
1418 (dired-filename-at-point): Use when and or.
1419 (dired-x-read-filename-at-point): Rename from read-filename-at-point.
1420 Update callers.
1421
1422 2011-02-15 Glenn Morris <rgm@gnu.org>
1423
1424 * dired-x.el: Use easymenu for menu items. Fix item capitalization.
1425
1426 2011-02-14 Chong Yidong <cyd@stupidchicken.com>
1427
1428 * vc/vc-git.el (vc-git-root-log-format): New option for
1429 customizing log format.
1430 (vc-git-print-log, vc-git-log-outgoing, vc-git-log-incoming)
1431 (vc-git-log-view-mode): Use it.
1432 (vc-git-expanded-log-entry): New function.
1433 (vc-git-log-view-mode): Use it. Truncate lines in root log.
1434
1435 * vc/vc-hg.el (vc-hg-root-log-template): New option for
1436 customizing log format.
1437 (vc-hg-print-log): Use it.
1438 (vc-hg-expanded-log-entry): New function.
1439 (vc-hg-log-view-mode): Use vc-hg-root-log-template and
1440 vc-hg-expanded-log-entry. Truncate lines in root log.
1441
1442 * vc/vc-bzr.el (vc-bzr-log-view-mode): Truncate lines in root log.
1443
1444 * vc/log-view.el (log-view-mode-menu):
1445 Add log-view-toggle-entry-display.
1446
1447 2011-02-14 Glenn Morris <rgm@gnu.org>
1448
1449 * dired-x.el: Don't require man when compiling.
1450 (dired-omit-extensions, dired-local-variables-file)
1451 (dired-x-hands-off-my-keys): Make them defcustoms.
1452 (Man-support-local-filenames, Man-getpage-in-background): Declare.
1453 (vm-visit-folder): Declare rather than defining.
1454 (dired-x-help-address, dired-x-variable-list): Remove.
1455 (dired-x-submit-report): Make it an obsolete alias.
1456
1457 2011-02-14 Juanma Barranquero <lekktu@gmail.com>
1458
1459 * makefile.w32-in (TRAMP_SRC): Remove tramp-imap.el.
1460
1461 2011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1462
1463 * net/imap.el: Bring it back.
1464
1465 2011-02-13 Alan Mackenzie <acm@muc.de>
1466
1467 * progmodes/cc-fonts.el (c-font-lock-declarations): Remove a
1468 narrow-to-region call that cuts context off the end (Bug#7722).
1469
1470 * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
1471 Refactor nested if-forms with a simple cond.
1472 (c-forward-<>-arglist): Revert 2011-01-31 change.
1473
1474 2011-02-13 Chong Yidong <cyd@stupidchicken.com>
1475
1476 * vc/log-view.el: New command log-view-toggle-entry-display for
1477 toggling log entries between concise and detailed forms.
1478 (log-view-toggle-entry-display): New command.
1479 (log-view-mode-map): Bind RET to it.
1480 (log-view-expanded-log-entry-function): New variable.
1481 (log-view-current-entry, log-view-inside-comment-p)
1482 (log-view-current-tag): New functions.
1483 (log-view-toggle-mark-entry): Use log-view-current-entry and
1484 log-view-end-of-defun instead of searching directly with
1485 log-view-message-re.
1486 (log-view-end-of-defun): Likewise. Add optional ARG for
1487 compatibility with end-of-defun.
1488 (log-view-end-of-defun): Ignore comments and VC buttons.
1489
1490 * vc/vc-bzr.el (vc-bzr-expanded-log-entry): New function.
1491 (vc-bzr-log-view-mode): Use log-view-expanded-log-entry-function.
1492
1493 2011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1494
1495 * net/imap.el: Remove file. All the functionality is in nnimap.el.
1496
1497 * net/imap-hash.el: Remove file.
1498
1499 2011-02-13 Michael Albinus <michael.albinus@gmx.de>
1500
1501 * Makefile.in (TRAMP_SRC): Remove tramp-imap.el.
1502
1503 * net/tramp.el (tramp-read-passwd): Simplify `auth-source-search'
1504 call.
1505
1506 * net/tramp-imap.el: Remove file.
1507
1508 2011-02-13 Chong Yidong <cyd@stupidchicken.com>
1509
1510 * vc/vc.el (vc-print-log-setup-buttons): Instead of using the
1511 widget library for buttons, just use button.el.
1512
1513 * vc/log-view.el (log-view-mode-map): Don't inherit from
1514 widget-keymap.
1515
1516 2011-02-12 Glenn Morris <rgm@gnu.org>
1517
1518 * emacs-lisp/cl-seq.el (union, nunion, intersection)
1519 (nintersection, set-difference, nset-difference)
1520 (set-exclusive-or, nset-exclusive-or): Doc fix.
1521
1522 * ediff-ptch.el (ediff-fixup-patch-map): Doc fix.
1523
1524 * faces.el (face-attr-match-p): Handle the obsolete :bold and
1525 :italic props, so that frame-set-background-mode works. (Bug#7966)
1526
1527 * simple.el (next-error): Doc fix.
1528
1529 2011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1530
1531 * dired-aux.el (dired-create-files): Adapt destination name to
1532 match the new behavior of copy-directory.
1533
1534 2011-02-12 Chong Yidong <cyd@stupidchicken.com>
1535
1536 * mail/mail-utils.el (mail-dont-reply-to-names): New variable,
1537 from rmail-dont-reply-to-names. Callers changed.
1538 (mail-dont-reply-to): Rename from mail-dont-reply-to.
1539 (rmail-dont-reply-to): Make it an obsolete alias.
1540
1541 * mail/rmail.el (rmail-default-dont-reply-to-names): Default to
1542 nil, and make obsolete (Bug#7888).
1543 (rmail-dont-reply-to-names): Alias to mail-dont-reply-to-names.
1544
1545 * mail/rmailsum.el (rmail-summary-sort-by-correspondent): Doc fix.
1546
1547 * mail/rmailsort.el (rmail-sort-by-correspondent)
1548 (rmail-select-correspondent): Doc fix. Use mail-dont-reply-to.
1549
1550 * mail/rmail.el (rmail-reply): Use mail-dont-reply-to.
1551
1552 2011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1553
1554 * files.el (copy-directory): New argument COPY-CONTENTS for
1555 copying directory contents into another existing directory.
1556
1557 2011-02-12 Tassilo Horn <tassilo@member.fsf.org>
1558
1559 * minibuffer.el (completion-table-case-fold): New function for
1560 creating a case-insensitive completion table.
1561
1562 2011-02-12 Teodor Zlatanov <tzz@lifelogs.com>
1563
1564 * net/tramp.el (tramp-default-method): Also check if
1565 `auth-source-search' is bound.
1566 (tramp-read-passwd): Use `auth-source-search' instead of
1567 `auto-source-user-or-password'.
1568
1569 * net/tramp-imap.el: Autoload `auto-source-search' instead of
1570 `auto-source-user-or-password.
1571 (tramp-imap-passphrase-callback-function): Use it.
1572
1573 * net/imap-hash.el: Autoload `auto-source-search' instead of
1574 `auto-source-user-or-password.
1575 (imap-hash-open-connection): Use it.
1576
1577 * mail/smtpmail.el: Autoload `auto-source-search' instead of
1578 `auto-source-user-or-password.
1579 (smtpmail-try-auth-methods): Use it.
1580
1581 2011-02-12 Phil Hagelberg <phil@hagelb.org>
1582
1583 * emacs-lisp/package.el: Allow packages to be reinstalled.
1584 (package--write-file-no-coding): Remove EXCL arg.
1585 (package-unpack-single): Don't use it.
1586
1587 2011-02-12 Karl Pflästerer <k@rl.pflaesterer.de> (tiny change)
1588
1589 * vc/vc-svn.el: Adapt to Subversion change, with no .svn directory
1590 in each sub directory.
1591 (vc-svn-registered): Use vc-svn-root.
1592 (vc-svn-root): New function. Make vc-svn-responsible-p an alias.
1593 (vc-svn-repository-hostname): Use "svn info".
1594
1595 2011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1596
1597 * simple.el (delete-trailing-whitespace): New optional buffer
1598 bound parameters.
1599
1600 2011-02-11 Bastien Guerry <bzg@altern.org>
1601
1602 * files.el (basic-save-buffer): save unmodified buffers when
1603 the file pointed by buffer-file-name doesn't exist.
1604
1605 2011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1606
1607 * net/rcirc.el (rcirc-cmd-join): Accept multiple channels.
1608
1609 2011-02-11 Glenn Morris <rgm@gnu.org>
1610
1611 * emacs-lisp/cl-specs.el (multiple-value-bind): Fix debug spec.
1612
1613 2011-02-11 Juanma Barranquero <lekktu@gmail.com>
1614
1615 * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
1616
1617 2011-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
1618
1619 * server.el (server-process-filter): Use pcase.
1620
1621 * emacs-lisp/smie.el (smie-blink-matching-open): Don't use `pos' in two
1622 conflicting ways.
1623 (smie-indent--parent): Extend to "parent of arg".
1624 (smie-indent-inside-string): New function.
1625 (smie-indent-functions): Use it.
1626
1627 * vc/vc-dir.el (vc-dir-refresh): Reorder operations to try and avoid
1628 bzr locking race condition.
1629
1630 * emacs-lisp/edebug.el (edebug-instrument-function): Check a marker is
1631 still valid before using it.
1632
1633 * progmodes/grep.el (grep-mode-font-lock-keywords): Adjust to
1634 `message' -> `compilation-message' rename (bug#8004).
1635
1636 Move keymap initialization into declaration.
1637 * textmodes/enriched.el (enriched-mode-map):
1638 * textmodes/bib-mode.el (bib-mode-map):
1639 * term/lk201.el (lk201-function-map):
1640 * tar-mode.el (tar-mode-map):
1641 * replace.el (occur-mode-map):
1642 * progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
1643 * progmodes/idlw-help.el (idlwave-help-mode-map):
1644 * progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
1645 * play/solitaire.el (solitaire-mode-map):
1646 * play/snake.el (snake-mode-map, snake-null-map):
1647 * play/pong.el (pong-mode-map):
1648 * play/handwrite.el (menu-bar-handwrite-map):
1649 * play/gametree.el (gametree-mode-map):
1650 * net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map)
1651 (rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
1652 * net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
1653 (newsticker--url-keymap):
1654 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
1655 * menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
1656 (menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
1657 (menu-bar-edit-menu, menu-bar-custom-menu)
1658 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
1659 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
1660 (menu-bar-line-wrapping-menu, menu-bar-options-menu)
1661 (menu-bar-games-menu, menu-bar-encryption-decryption-menu)
1662 (menu-bar-tools-menu, menu-bar-describe-menu)
1663 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
1664 (menu-bar-help-menu):
1665 * mail/rmailsum.el (rmail-summary-mode-map):
1666 * kmacro.el (kmacro-step-edit-map):
1667 * ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
1668 (ibuffer-mode-operate-map):
1669 * hi-lock.el (hi-lock-menu, hi-lock-map):
1670 * emulation/vip.el (vip-mode-map):
1671 * emacs-lisp/re-builder.el (reb-lisp-mode-map):
1672 * bookmark.el (bookmark-bmenu-mode-map):
1673 * help-mode.el (help-mode-map): Move initialization into declaration.
1674
1675 2011-02-10 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1676
1677 * net/rcirc.el: Add PRIVMSG and CTCP functions.
1678 (rcirc-send-privmsg, rcirc-send-ctcp): New functions.
1679 (rcirc-keepalive, rcirc-cmd-ctcp, rcirc-ctcp-sender-PING)
1680 (rcirc-cmd-me, rcirc-authenticate): Use them.
1681
1682 2011-02-10 Ken Manheimer <ken.manheimer@gmail.com>
1683
1684 * allout.el: Synopsis: Change allout user configuration so
1685 auto-activation is controlled solely by customization
1686 `allout-auto-activation'.
1687
1688 (allout-auto-activation-helper, allout-setup): New autoloads
1689 implement new custom set procedure for allout-auto-activation.
1690 Also, explicitly invoke (allout-setup) after allout-auto-activation
1691 is custom-defined, to affect the settings in emacs sessions besides
1692 the few where allout-auto-activation customization is done.
1693 (allout-auto-activation): Use allout-auto-activation-helper to
1694 :set. Revise the docstring.
1695 (allout-init): Reduce functionality to just customizing
1696 allout-auto-activation, and mark obsolete.
1697 (allout-mode): Respect string values for allout-auto-activation.
1698 Run allout-after-copy-or-kill-hook without any args.
1699 (allout-mode, allout-layout, allout-default-layout)
1700 (outlineify-sticky): Adjust docstring for new scheme.
1701 (allout-after-copy-or-kill-hook): No arguments - hook implementers
1702 should concentrate on the kill ring.
1703
1704 2011-02-09 Teodor Zlatanov <tzz@lifelogs.com>
1705
1706 * password-cache.el (password-cache-remove): Accept secrets that are
1707 not strings.
1708
1709 2011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
1710
1711 * progmodes/sh-script.el (sh-font-lock-open-heredoc): Fix case
1712 of here-doc that immediately follows a comment.
1713
1714 2011-02-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1715
1716 * net/rcirc.el (rcirc-ctcp-sender-PING): Simplifying.
1717
1718 * net/rcirc.el (rcirc-cmd-ctcp): Use dedicated function when
1719 available.
1720 (rcirc-ctcp-sender-PING): New function.
1721
1722 2011-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1723
1724 * obsolete/pc-select.el: Rename from emulation/pc-select.el (bug#7940).
1725 Remove the mark/nomark handling, and activate shift-select-mode instead.
1726
1727 * obsolete/pc-mode.el: Rename from emulation/pc-mode.el.
1728
1729 2011-02-07 Jay Belanger <jay.p.belanger@gmail.com>
1730
1731 * calc/calc-units.el (math-logunits-quant): Add support for
1732 non-logarithmic units.
1733
1734 2011-02-07 Ken Manheimer <ken.manheimer@gmail.com>
1735
1736 * allout.el (allout-after-copy-or-kill-hook): New hook for
1737 extension-specific processing of killed text.
1738 (allout-mode): Include new allout-after-copy-or-kill-hook among
1739 mentioned hooks.
1740 (allout-kill-line, allout-kill-topic): Ensure that processing
1741 after kill happens even if barf-if-buffer-read-only is raised.
1742 Include new allout-after-copy-or-kill-hook among that subsequent
1743 processing.
1744 (allout-deannotate-hidden): Actually remove the annotation text
1745 properties.
1746
1747 * allout.el (allout-listify-exposed): Copy text sans text properties.
1748
1749 2011-02-07 Michael Albinus <michael.albinus@gmx.de>
1750
1751 * net/dbus.el (dbus-list-activatable-names): Add optional argument BUS.
1752
1753 2011-02-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1754
1755 * net/rcirc.el (rcirc-handler-317): New function (Bug#6507).
1756
1757 2011-02-06 Jay Belanger <jay.p.belanger@gmail.com>
1758
1759 * calc/calc.el (calc-logunits-field-reference): Rename from
1760 `calc-default-field-reference-level'.
1761 (calc-logunits-power-reference): Rename from
1762 `calc-default-power-reference-level'.
1763
1764 * calc/calc-units.el (math-logunits-quant): Rename from
1765 `math-logunits-level'
1766 (math-logunits-plus): Rename from math-logcombine.
1767 (calcFunc-luplus, calcFunc-luminus calc-luplus, calc-luminus): Remove.
1768 (calcFunc-lufieldadd, calcFunc-lupoweradd, calcFunc-lufieldsub)
1769 (calcFunc-lufieldsub, calc-logunits-add, calc-logunits-sub):
1770 New functions.
1771 (calcFunc-fieldquant): Rename from `calcFunc-fieldlevel'.
1772 (calcFunc-powerquant): Rename from `calcFunc-powerlevel'.
1773 (calc-logunits-quantity): Rename from `calc-level'.
1774 (calcFunc-dbfieldlevel, calcFunc-dbpowerlevel, calcFunc-npfieldlevel)
1775 (calcFunc-nppowerlevel, calc-logunits-dblevel, calc-logunits-nplevel)
1776 (math-logunits-mul, calcFunc-lufieldmul, calcFunc-lupowermul)
1777 (calc-logunits-mul, math-logunits-divide, calcFunc-lufielddiv)
1778 (calcFunc-lupowerdiv, calc-logunits-divide, math-logunits-level):
1779 New functions.
1780
1781 * calc/calc-help.el (calc-u-prefix-help): Remove "L" reference.
1782 (calc-ul-prefix-help): Remove.
1783 (calc-l-prefix-help): New function.
1784 (calc-full-help): Add reference to `calc-l-prefix-help'.
1785
1786 * calc/calc-ext.el (calc-init-extensions): Update autoloads.
1787
1788 * calc/README: Mention logarithmic units.
1789
1790 2011-02-06 Chong Yidong <cyd@stupidchicken.com>
1791
1792 * mail/emacsbug.el (report-emacs-bug-hook): Remove the check for
1793 non-ASCII characters (Bug#7925).
1794
1795 2011-02-05 Glenn Morris <rgm@gnu.org>
1796
1797 * emacs-lisp/cl-macs.el (return-from): Fix doc typo.
1798
1799 * calendar/diary-lib.el (diary-font-lock-keywords):
1800 Tweak diary-time-regexp match. (Bug#7891)
1801
1802 * progmodes/f90.el (f90-find-tag-default): New function. (Bug#7919)
1803 (f90-mode): Use it for mode's `find-tag-default-function' property.
1804
1805 * ibuf-ext.el (ibuffer-filter-disable): Make it work. (Bug#7969)
1806
1807 * faces.el (set-face-attribute): Doc fix. (Bug#2659)
1808
1809 2011-02-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1810
1811 * net/rcirc.el (rcirc-handler-JOIN): Reset mode-line-process
1812 (Bug#6386).
1813
1814 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1815
1816 * progmodes/sh-script.el (sh-here-doc-open-re): Don't rely on the
1817 font-lock-syntax-table remappings.
1818 (sh-here-doc-markers, sh-here-doc-re): Remove.
1819 (sh-font-lock-close-heredoc): Remove.
1820 (sh-syntax-propertize-here-doc): New function.
1821 (sh-font-lock-open-heredoc): Set the sh-here-doc-marker property
1822 instead of the sh-here-doc-re.
1823 (sh-font-lock-paren): Don't do anything in comments or strings.
1824 Handle line continuations. Accept a few more chars.
1825 Don't rely on the font-lock-syntax-table remappings.
1826 `esac' is not a valid pattern.
1827 (sh-syntax-propertize-function): Handle here-docs differently, so we
1828 don't bother syntax-propertizing the insides.
1829
1830 * progmodes/sh-script.el (sh-font-lock-paren, sh-kw, sh-prev-thing):
1831 Handle new bashisms ";&" and ";;&" (bug#7947).
1832
1833 2011-02-05 Michael Albinus <michael.albinus@gmx.de>
1834
1835 * net/tramp-smb.el (tramp-smb-errors): Use `regexp-opt'.
1836 Add "NT_STATUS_IO_TIMEOUT" and "NT_STATUS_NO_SUCH_USER".
1837
1838 2011-02-05 Era Eriksson <era+tramp@iki.fi> (tiny change)
1839
1840 * net/tramp.el (tramp-postfix-method-format)
1841 (tramp-postfix-method-regexp, tramp-prefix-domain-format)
1842 (tramp-prefix-domain-regexp, tramp-postfix-user-format)
1843 (tramp-postfix-user-regexp, tramp-prefix-port-format)
1844 (tramp-prefix-port-regexp, tramp-postfix-host-format)
1845 (tramp-postfix-host-regexp, tramp-handle-substitute-in-file-name):
1846 Doc fix.
1847
1848 2011-02-04 Sam Steingold <sds@gnu.org>
1849
1850 * mouse.el (mouse-buffer-menu-mode-groups): Add a "GDB" group.
1851
1852 2011-02-04 Andreas Schwab <schwab@linux-m68k.org>
1853
1854 * international/mule-util.el (with-coding-priority): Doc fix.
1855
1856 2011-02-04 Eli Zaretskii <eliz@gnu.org>
1857
1858 * arc-mode.el (archive-mode-map): Fix a typo in last change.
1859
1860 2011-02-03 Sam Steingold <sds@gnu.org>
1861
1862 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
1863 Do not error out when `func' is nil.
1864
1865 2011-02-03 Michael Albinus <michael.albinus@gmx.de>
1866
1867 * net/tramp-sh.el (tramp-remote-path): Add default settings for
1868 `tramp-default-remote-path' to the docstring.
1869 (tramp-get-remote-path): Suppress error message when `getconf
1870 PATH' fails.
1871
1872 * net/tramp-smb.el (tramp-smb-errors): Add "NT_STATUS_UNSUCCESSFUL".
1873
1874 2011-02-03 Glenn Morris <rgm@gnu.org>
1875
1876 * vc/vc-hg.el (vc-hg-command): Doc fix.
1877
1878 * term/w32-win.el (libpng-version): Declare for compiler.
1879
1880 * msb.el: No need to load dired while compiling.
1881
1882 * emacs-lisp/elint.el (elint-standard-variables):
1883 Remove a couple of built-ins that now have doc-strings.
1884
1885 * hi-lock.el, ps-bdf.el, ps-mule.el, ps-print.el, ps-samp.el:
1886 `require' is automatically `eval-and-compile'd.
1887
1888 * net/rcirc.el (rcirc-nick-completion-format): Add :version tag.
1889 (rcirc-log-directory, rcirc-log-flag): Move definitions before use.
1890
1891 * strokes.el (strokes-fill-current-buffer-with-whitespace):
1892 Move definition before use.
1893 (strokes-report-bug): Make it obsolete.
1894
1895 2011-02-02 Sam Steingold <sds@gnu.org>
1896
1897 * apropos.el (apropos-print): Now that `apropos-mode' inherits
1898 from `special-mode', entering it makes the buffer read-only, so
1899 call it only when everything has been already inserted.
1900 * emacs-lisp/ert.el (ert--setup-results-buffer)
1901 (ert-results-pop-to-backtrace-for-test-at-point)
1902 (ert-results-pop-to-messages-for-test-at-point)
1903 (ert-results-pop-to-timings): Ditto.
1904 * emacs-lisp/package.el (package--list-packages): Ditto.
1905 * play/solitaire.el (solitaire): Ditto.
1906
1907 2011-02-02 Chong Yidong <cyd@stupidchicken.com>
1908
1909 * progmodes/compile.el: Make all faces inherit.
1910 (compilation-warning): Inherit from font-lock-variable-name-face.
1911 (compilation-info): Inherit from font-lock-type-face.
1912 (compilation-line-number): Reassign to font-lock-keyword-face.
1913 (compilation-column-number): Reassign to font-lock-doc-face.
1914 (compilation-leave-directory-face): Reassign to
1915 font-lock-builtin-face.
1916
1917 2011-02-02 Eli Zaretskii <eliz@gnu.org>
1918
1919 * dired.el (dired-insert-directory): Don't invoke `ls' when
1920 ls-lisp.el is used to emulate it.
1921
1922 2011-02-01 Julien Danjou <julien@danjou.info>
1923
1924 * color.el (color-gradient): Add a color-gradient function.
1925
1926 2011-02-01 Sam Steingold <sds@gnu.org>
1927
1928 * simple.el (special-mode-map): Bind "h" to `describe-mode';
1929 bind "z" to `kill-this-buffer'.
1930 (completion-list-mode-map): Bind "z" to `kill-this-buffer'.
1931 * apropos.el (apropos-mode-map): Inherit from `special-mode-map'.
1932 (apropos-mode): Inherit from `special-mode'.
1933 * arc-mode.el (archive-mode-map): Inherit from `special-mode-map'.
1934 * bookmark.el (bookmark-bmenu-mode): Define using
1935 `define-derived-mode' inheriting from `special-mode'.
1936 * dired.el (dired-mode-map): Inherit from `special-mode-map'.
1937 * image-mode.el (image-mode-map): Ditto.
1938 * replace.el (occur-mode): Define using
1939 `define-derived-mode' inheriting from `special-mode'.
1940 * tar-mode.el (tar-mode): Inherit from `special-mode'.
1941 * calendar/diary-lib.el (diary-fancy-display-mode):
1942 Inherit from `special-mode-map'.
1943 * emacs-lisp/ert.el (ert-simple-view-mode, ert-results-mode):
1944 Inherit from `special-mode'.
1945 * emacs-lisp/package.el (package-menu-mode-map): Copy from
1946 `special-mode-map'.
1947 (package-menu-mode): Define using `define-derived-mode'
1948 inheriting from `special-mode'.
1949 * erc/erc-list.el (erc-list-menu-mode): Inherit from `special-mode'.
1950 * net/xesam.el (xesam-mode): Inherit from `special-mode'.
1951 (xesam-mode-map): Define separately.
1952 * play/solitaire.el (solitaire-mode): Inherit from `special-mode'.
1953 * progmodes/compile.el (compilation-minor-mode-map)
1954 (compilation-mode-map): Inherit from `special-mode-map'.
1955 * vc/diff-mode.el (diff-mode-shared-map):
1956 Inherit from `special-mode-map'.
1957 * vc/log-view.el (log-view-mode-map): Add a comment.
1958
1959 2011-02-01 Chong Yidong <cyd@stupidchicken.com>
1960
1961 * custom.el (load-theme): Define return value. Drop use of
1962 unsafep; call custom-theme-load-confirm for non-known-safe themes.
1963 (custom-theme-load-confirm): Scroll in the correct window.
1964 (custom-enabled-themes): Add custom-safe-themes to :set-after.
1965
1966 * cus-theme.el (custom-theme-checkbox-toggle): Don't activate the
1967 checkbox if load-theme fails.
1968
1969 2011-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
1970
1971 * progmodes/compile.el (compilation-next-error): Check there's
1972 a message before using it (bug#7941).
1973
1974 2011-02-01 Jay Belanger <jay.p.belanger@gmail.com>
1975
1976 * calc/calc-mtx.el (math-lud-pivot-check): New function.
1977 (math-do-matrix-lud): Use `math-lud-pivot-check' to check the size
1978 of potential pivots.
1979
1980 2011-01-31 Alan Mackenzie <acm@muc.de>
1981
1982 * progmodes/cc-cmds.el (c-forward-over-illiterals):
1983 Continue parsing if we encounter a naked # (Bug#7595).
1984 (c-beginning-of-statement): Avoid loop in locating the beginning
1985 of a macro. (Not actually committed until 2011-02-20, see above).
1986
1987 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1988
1989 * files.el (copy-directory): Fix arguments to recursive call.
1990
1991 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1992
1993 * files.el (copy-directory): If destination is an existing
1994 directory, copy into a subdirectory there.
1995
1996 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
1997
1998 * emacs-lisp/shadow.el (load-path-shadows-find): Ignore leim-list
1999 files.
2000
2001 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2002
2003 * image-dired.el (image-dired-mouse-display-image): No-op if no
2004 file is found (Bug#7817).
2005
2006 * mouse.el (mouse-menu-non-singleton): Doc fix (Bug#7801).
2007
2008 2011-01-31 Kenichi Handa <handa@m17n.org>
2009
2010 * international/quail.el (quail-keyboard-layout-alist):
2011 Remove superfluous SPC for "pc105-uk" (bug#7927).
2012
2013 2011-01-31 Glenn Morris <rgm@gnu.org>
2014
2015 * msb.el (msb-menu-bar-update-buffers): Update for changed
2016 argument handling of menu-bar-select-frame. (Bug#7902)
2017
2018 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2019
2020 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Set a limit
2021 to the recursion depth (Bug#7722).
2022
2023 2011-01-31 Roy Liu <carsomyr@gmail.com> (tiny change)
2024
2025 * term/ns-win.el (ns-find-file): Expand ns-input-file with
2026 command-line-default-directory (Bug#7872).
2027
2028 2011-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
2029
2030 * progmodes/compile.el (compilation--flush-directory-cache):
2031 New function, extracted from compilation--remove-properties.
2032 (compilation--remove-properties, compilation--parse-region): Use it.
2033 (compilation--previous-directory): Handle one more case.
2034 (compilation-enable-debug-messages): Remove.
2035 (compilation-parse-errors, compilation--flush-parse): Just remove the
2036 left over debug messages.
2037
2038 2011-01-31 Sam Steingold <sds@gnu.org>
2039
2040 * progmodes/compile.el (compilation-enable-debug-messages):
2041 Add a variable to make the parsing messages introduced in
2042 2011-01-28T22:12:05Z!monnier@iro.umontreal.ca optional.
2043 (compilation-parse-errors, compilation--flush-parse): Use it.
2044
2045 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2046
2047 * net/rcirc.el: New customizable nick completion format. (Bug#6314)
2048 (rcirc-nick-completion-format): New defcustom.
2049 (rcirc-complete): Use it.
2050
2051 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2052
2053 * net/rcirc.el: Clean log filenames (Bug#7933).
2054 (rcirc-log-write): Use convert-standard-filename.
2055 (rcirc-log-filename-function): Documentation updates.
2056
2057 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
2058
2059 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer):
2060 Check report-emacs-bug-can-use-osx-open and use that if t.
2061 (report-emacs-bug-can-use-osx-open): New function.
2062 (report-emacs-bug): Rename can-xdg-email to can-insert-mail.
2063 Check report-emacs-bug-can-use-osx-open also for can-insert-mail.
2064
2065 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
2066
2067 * vc/vc-dispatcher.el (vc-set-async-update): New function for
2068 updating Dired or VC-dir buffers after async command completes.
2069
2070 * vc/vc-bzr.el (vc-bzr-async-command): Return the process buffer.
2071 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-set-async-update.
2072
2073 * vc/vc-git.el (vc-git-merge-branch): Add FETCH_HEAD to branch
2074 completions if it exists. Use vc-set-async-update.
2075 (vc-git-pull): Use vc-set-async-update.
2076
2077 * vc/vc-hg.el (vc-hg-pull): Fix default-contents arg to
2078 read-shell-command. Use vc-set-async-update.
2079 (vc-hg-merge-branch): Use vc-set-async-update.
2080
2081 2011-01-29 Daiki Ueno <ueno@unixuser.org>
2082
2083 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED):
2084 Don't presume KEYEXPIRED and KEYREVOKED to be a fatal error status
2085 (Bug#7931).
2086
2087 2011-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
2088
2089 * progmodes/compile.el: Avoid an N² behavior in grep.
2090 (compilation--previous-directory): New fun.
2091 (compilation--previous-directory-cache): New var.
2092 (compilation--remove-properties): Flush it.
2093 (compilation-directory-properties, compilation-error-properties):
2094 Use the new fun to speed up looking for the current directory.
2095
2096 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
2097
2098 * vc/vc-hg.el (vc-hg-history): New var.
2099 (vc-hg-pull): Perform default pull if called via Lisp by vc-pull.
2100 (vc-hg-merge-branch): New function.
2101
2102 * vc/vc.el (vc-pull): Make vc-update an alias for this, instead of
2103 the other way around.
2104
2105 * vc/vc-git.el (vc-git-branches, vc-git-pull)
2106 (vc-git-merge-branch): New functions.
2107 (vc-git-history): New var.
2108
2109 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2110
2111 * vc/vc-dispatcher.el (vc-do-async-command): New function.
2112
2113 * vc/vc-bzr.el (vc-bzr-async-command): Convert into a wrapper for
2114 vc-do-async-command.
2115
2116 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch):
2117 Callers changed.
2118
2119 2011-01-28 Leo <sdl.web@gmail.com>
2120
2121 * emacs-lisp/advice.el (ad-make-advised-docstring): Don't apply
2122 highlighting to the "this function is advised" message.
2123
2124 * help-mode.el (help-mode-finish): Apply highlighting here, to
2125 avoid clobbering by substitute-command-keys (Bug#6304).
2126
2127 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2128
2129 * woman.el (woman0-roff-buffer): Process roff escape sequences
2130 occurring prior to the first request (Bug#7843).
2131
2132 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2133
2134 * progmodes/compile.el: Don't use font-lock any more.
2135 (compilation-error-regexp-alist-alist): Change handling of makepp
2136 so it preserves the warning/error distinction on subsequent files.
2137 Simplify various rules.
2138 (compilation-directory-properties): Use font-lock-face.
2139 Add a compilation-message property.
2140 (compilation-internal-error-properties): Use font-lock-face.
2141 Don't set the compilation-debug property here.
2142 (compilation--put-prop, compilation--remove-properties)
2143 (compilation--parse-region, compilation--ensure-parse)
2144 (compilation--ensure-parse): New functions.
2145 (compilation-parse-errors): New function, largely inspired of
2146 compilation-mode-font-lock-keywords. Set compilation-debug here.
2147 (compilation--parsed): New var.
2148 (compilation--flush-parse): Use compilation--ensure-parse.
2149 (compilation-start): Don't call font-lock.
2150 (compilation-turn-on-font-lock): Remove.
2151 (compilation-setup): Don't set font-lock-extra-managed-props not change
2152 other font-lock settings, other than keywords.
2153 Don't activate font-lock-mode.
2154 Set change-major-mode-hook and before-change-functions.
2155 (compilation--unsetup): Remove properties and hooks.
2156 (compilation-next-single-property-change): New function.
2157 (compilation-next-error): Use it to parse when needed.
2158 (compile-goto-error): Parse buffer as needed.
2159 (compilation--compat-error-properties): Don't need a dummy `face'
2160 property any more.
2161
2162 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2163
2164 * progmodes/compile.el: Use accessors for clarity and fix omake hack.
2165 (compilation-process-setup-function): Fix docstring's false promises.
2166 (compilation-error-regexp-alist-alist): Catch omake's continuous
2167 recompilation message and avoid reuse of old markers.
2168 (compilation-parse-errors-function): Declare obsolete.
2169 (compilation-buffer-modtime): Remove.
2170 (compilation--make-cdrloc, compilation--loc->col)
2171 (compilation--loc->line, compilation--loc->file-struct)
2172 (compilation--loc->marker, compilation--loc->visited)
2173 (compilation--make-file-struct, compilation--file-struct->file-spec)
2174 (compilation--file-struct->formats)
2175 (compilation--file-struct->loc-tree): New macros. Use them.
2176 (compilation--message): New defstruct. Use them.
2177 (compilation-next-error-function): Don't mess with timestamps to try
2178 and guess when to reparse.
2179
2180 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2181
2182 * textmodes/tex-mode.el: Get rid of compilation-parse-errors-function
2183 (tex-old-error-file-name): New function,
2184 extracted from tex-compilation-parse-errors.
2185 (tex-compilation-parse-errors): Remove.
2186 (tex-error-regexp-alist): New var.
2187 (tex-shell): Use it to avoid compilation-parse-errors-function.
2188
2189 * progmodes/grep.el (grep-regexp-alist): Tighten regexp.
2190 (grep-mode-font-lock-keywords): Remove regexp that seems like
2191 a left-over from before we used compile.el.
2192 (grep-mode-font-lock-keywords): Call syntax-ppss-flush-cache when
2193 modifying the buffer within with-silent-modifications.
2194
2195 * progmodes/compile.el: Cleanup text-properties namespace by using
2196 `compilation-message' instead of `message', `compilation-directory'
2197 instead of `directory', and `compilation-debug' instead of `debug'.
2198 (compilation-last-buffer, compilation-parsing-end)
2199 (compilation-error-list, compilation-old-error-list): Move to the
2200 compatibility part of the code.
2201 (compilation-error-properties): If `file' is a function, let it return
2202 a file name.
2203 (compilation-mode-font-lock-keywords): Be more conservative with the
2204 omake "^ *" pattern prefix, to try and minimize the risk of
2205 pathologically slow regexp matching.
2206 (compilation-start): Use inhibit-read-only.
2207 (compilation--unsetup): New function.
2208 (compilation-shell-minor-mode, compilation-minor-mode): Use it.
2209 (compilation-filter): Minor tweaks.
2210 (compilation-next-error-function): Try and avoid abusing variables.
2211 (compilation--flush-file-structure): New fun.
2212 (compilation-fake-loc): Use it to improve behavior when file is reused.
2213 (debug-ignored-errors): Add "Moved past last ...".
2214 (compilation--compat-error-properties)
2215 (compilation--compat-parse-errors): Rename by doubling the "-".
2216
2217 Port features from the previous prolog.el to the new one.
2218 * progmodes/prolog.el (prolog-system): Add GNU and ECLiPSe options.
2219 (prolog-program-name, prolog-program-switches, prolog-consult-string)
2220 (prolog-compile-string, prolog-prompt-regexp): Get rid of the <foo>-i
2221 variable and use a function to compute the value dynamically.
2222 (prolog-prompt-regexp): Add regexp for GNU Prolog.
2223 (prolog-continued-prompt-regexp): Remove, unused.
2224 (prolog-find-value-by-system): Try and use the value of prolog-system
2225 in the *prolog* buffer if it helps.
2226 (prolog-mode-keybindings-common): Bind C-c C-z unconditionally...
2227 (prolog-zip-on): ..and check prolog-system and version here instead.
2228 (prolog-inferior-self-insert-command): New command.
2229 (prolog-inferior-mode-map): Use it.
2230 (prolog-inferior-error-regexp-alist): New var.
2231 (prolog-inferior-mode): Use it, with compilation-shell-minor-mode.
2232 (prolog-input-filter): Use derived-mode-p.
2233 (prolog-inferior-guess-flavor): New function.
2234 (prolog-ensure-process): Use it. Use make-comint-in-buffer rather than
2235 make-comint to avoid running comint-mode twice.
2236 (prolog-inferior-buffer): New fun.
2237 (prolog-old-process-region, prolog-old-process-file):
2238 Don't call prolog-bsts here...
2239 (prolog-build-prolog-command): ...do it here instead.
2240 (prolog-old-process-region, prolog-old-process-file):
2241 Use compilation-fake-loc and compilation-forget-errors.
2242 (prolog-consult-compile-region): Use bolp.
2243
2244 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2245
2246 * image-mode.el (image-display-size): Doc fix (Bug#7820).
2247
2248 2011-01-27 Sam Steingold <sds@gnu.org>
2249
2250 * midnight.el (clean-buffer-list-kill-never-buffer-names):
2251 Remove "*server*" which is never created by emacs server.
2252
2253 2011-01-27 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2254
2255 * vc/vc-bzr.el (vc-bzr-diff): Don't pass --diff-options unless
2256 there are some diff switches.
2257
2258 2011-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2259
2260 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2261 Copy change made to ruby-font-lock-syntactic-keywords.
2262
2263 * htmlfontify.el: Make it obey the font-lock-face text property.
2264 Miscellaneous cleanup such as:
2265 - Don't hide expressions after a closing paren.
2266 - Move initial setq into let.
2267 - Hoist common parts out of ifs.
2268 (hfy-p-to-face, hfy-p-to-face-lennart): Remove.
2269 (hfy-face-at): Use get-text-property instead.
2270 (hfy-prop-invisible-p): Use invisible-p if available.
2271 (htmlfontify-manual): Use \\[...].
2272 (hfy-html-quote-regex): Use [...].
2273 (hfy-combined-face-spec): Simplify.
2274 (hfy-compile-face-map): Don't presume point-min==1.
2275 (hfy-css-name, hfy-buffer, htmlfontify-buffer): Use \' rather than $ to
2276 match end of string.
2277 (hfy-text-p): η-reduce.
2278 (hfy-tags-for-file): Receive cache-hash directly.
2279 (hfy-mark-tag-names): Adjust call.
2280
2281 2011-01-27 Glenn Morris <rgm@gnu.org>
2282
2283 * msb.el (msb-after-load-hooks): Make it an obsolete alias.
2284 (msb-after-load-hook): Remove eval-after-load wackiness.
2285
2286 2011-01-25 Sam Steingold <sds@gnu.org>
2287
2288 * vc/vc-svn.el (vc-svn-diff): Use `diff-command' instead of the
2289 literal "diff" (important for windows-nt).
2290
2291 2011-01-25 Glenn Morris <rgm@gnu.org>
2292
2293 * emacs-lisp/copyright.el (copyright-at-end-flag)
2294 (copyright-names-regexp): Add safety properties.
2295 (copyright-year-ranges): New option.
2296 (copyright-find-end): New function, split from copyright-update-year.
2297 (copyright-update-year): Use copyright-find-end.
2298 (copyright-fix-years): Optionally, convert years to ranges.
2299 Handle years continued over comment lines.
2300 Do not mess with the fill-prefix.
2301 Do not call copyright-update.
2302 (copyright-update-directory): Optionally, fix years rather than update.
2303 Skip directories. Find files with only safe local vars.
2304
2305 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
2306
2307 * files.el (file-name-non-special): Only change buffer-file-name after
2308 insert-file-contents if it's `visit'ing the file (bug#7854).
2309
2310 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
2311
2312 * dired.el (dired-revert): Doc fix (Bug#7758).
2313
2314 * simple.el (line-move-visual): Doc fix (Bug#7594).
2315
2316 2011-01-25 Nobuyoshi Nakada <nobu@ruby-lang.org>
2317
2318 * progmodes/ruby-mode.el (ruby-here-doc-beg-match): Fix for
2319 here-doc which ends with an underscore.
2320 (ruby-mode-set-encoding): Skip shebang line always.
2321 (ruby-mode-map): Bind C-c C-c to comment-region.
2322 (ruby-font-lock-keywords): Highlight literal hash key labels as symbols.
2323 (ruby-forward-sexp): Stop after literal hash key labels.
2324 (ruby-font-lock-syntactic-keywords): Highlight regexp after open
2325 bracket.
2326
2327 2011-01-25 Keitaro Miyazaki <keitaro.miyazaki@gmail.com> (tiny change)
2328
2329 * emacs-lisp/re-builder.el (reb-mode-map): Set case-fold-search in
2330 the correct buffer (Bug#7650).
2331
2332 2011-01-25 Glenn Morris <rgm@gnu.org>
2333
2334 * comint.el (comint-mode): Doc fix. (Bug#7897)
2335
2336 * simple.el (do-auto-fill): Give it a doc string.
2337
2338 * button.el (make-text-button): Doc fix. (See bug#7881)
2339
2340 2011-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2341
2342 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
2343 Don't move backward, so as not to fall in an inf-loop (bug#7736).
2344
2345 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): (bug#7735)
2346 Handle ?" and friends differently (e.g. don't use backrefs).
2347
2348 2011-01-24 Jay Belanger <jay.p.belanger@gmail.com>
2349
2350 * calc/calc.el (calc-default-power-reference-level)
2351 (calc-default-field-reference-level): New variables.
2352 * calc/calc-units.el (math-standard-units): Add dB and Np.
2353 (math-logunits): New variable.
2354 (math-extract-logunits, math-logcombine, calcFunc-luplus)
2355 (calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
2356 (calcFunc-fieldlevel, calcFunc-powerlevel, calc-level):
2357 New functions.
2358 (math-find-base-units-rec): Add entry for ln(10).
2359 * calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
2360 (calc-ul-prefix-help): New function.
2361 * calc/calc-ext.el (calc-init-extensions): Autoload new units
2362 functions. Add keybindings for new units functions.
2363
2364 2011-01-22 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2365
2366 * net/rcirc.el (rcirc-kill-buffer-hook): Flush logs when killing
2367 rcirc buffers. (Bug#4940)
2368
2369 2011-01-22 Glenn Morris <rgm@gnu.org>
2370
2371 * emacs-lisp/copyright.el (copyright-find-copyright): New function,
2372 split out from copyright-update-year.
2373 (copyright-update): Don't mess with the GPL version if we don't own the
2374 copyright. Update license regexp, and remove no longer needed
2375 Esperanto stuff.
2376 (copyright-fix-years): Use copyright-find-copyright.
2377
2378 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2379
2380 * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
2381
2382 2011-01-22 Jari Aalto <jari.aalto@cante.net>
2383
2384 * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
2385 (lm): Rename to landmark.
2386 (lm-test-run): Rename to landmark-test-run.
2387
2388 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2389
2390 * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in
2391 "Case sensitive" menu item.
2392
2393 2011-01-22 Roland McGrath <roland@frob.com>
2394
2395 * comint.el (comint-replace-by-expanded-history-before-point): Fix
2396 expansion of !$ and !!:N syntax to pick the indicated word (bug#7883).
2397
2398 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2399
2400 * progmodes/js.el (js--regexp-literal): Count backslashes (bug#7882).
2401
2402 2011-01-22 Jari Aalto <jari.aalto@cante.net>
2403
2404 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2405 Assume foo(bar) is a manpage reference rather than some unquoted
2406 symbol (bug#7705).
2407
2408 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2409
2410 * subr.el (shell-quote-argument): Properly quote \n (bug#7687).
2411 Suggested by Flo <sensorflo@gmail.com>.
2412
2413 2011-01-22 Glenn Morris <rgm@gnu.org>
2414
2415 * progmodes/compile.el (compilation-error-regexp-alist):
2416 Fix custom type. (Bug#7812)
2417
2418 2011-01-22 Ken Manheimer <ken.manheimer@gmail.com>
2419
2420 * allout.el (allout-prefixed-keybindings): Bind (prefixed) '#' to
2421 allout-number-siblings, in keeping with what obtained due to
2422 (now-defunct) allout-keybindings-list. Ditch repeat binding to
2423 (prefixed) ?i.
2424 (allout-before-change-handler): Better expose spots affected by
2425 undo.
2426
2427 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2428
2429 * man.el (Man-highlight-references0): Use make-button (Bug#7881).
2430
2431 2011-01-22 Phil Hagelberg <phil@evri.com>
2432
2433 * pcmpl-unix.el (pcmpl-ssh-config-file): New option.
2434 (pcmpl-ssh-known-hosts): Rename from pcmpl-ssh-hosts.
2435 (pcmpl-ssh-config-hosts): New function.
2436 (pcmpl-ssh-hosts): Use pcmpl-ssh-config-hosts in addition to
2437 pcmpl-ssh-known-hosts.
2438
2439 2011-01-21 Jay Belanger <jay.p.belanger@gmail.com>
2440
2441 * calc/calc-undo.el (calc-undo): Autoload it.
2442 * calc/calc-ext.el (calc-init-extensions): Remove keybindings
2443 and autoload for `calc-undo'.
2444 * calc/calc.el (calc-mode-map): Add keybindings for `calc-undo'.
2445 * calc/calc-prog.el:
2446 * calc/calc-graph.el:
2447 * calc/calc-map.el: Change `arglist' to `math-arglist' throughout.
2448
2449 2011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
2450
2451 * calc/calc-ext.el (calc-init-extensions): Map all `undo'
2452 keybindings to `calc-undo'.
2453
2454 2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2455
2456 Don't mess with *temp*.
2457 * obsolete/spell.el: Move from textmodes/spell.el.
2458 (spell-string):
2459 * term.el (term-read-input-ring):
2460 * startup.el (display-startup-echo-area-message):
2461 * progmodes/antlr-mode.el (antlr-directory-dependencies):
2462 * comint.el (comint-read-input-ring): Use with-temp-buffer.
2463 * international/mule.el (ctext-pre-write-conversion): Don't hardcode
2464 point-min==1.
2465
2466 2011-01-20 Ken Manheimer <ken.manheimer@gmail.com>
2467
2468 * allout.el (allout-institute-keymap): Use fset instead of
2469 reapplying defalias.
2470
2471 (allout-hotspot-key-handler): Check for non-control-modified
2472 bindings for hotspot characters if there are no control-modified
2473 versions.
2474
2475 * allout.el: Summary - migrate to defining allout mode using
2476 define-minor-mode instead of defun. Significantly clean-up
2477 internal keymap provisions, refactoring and, in the process,
2478 removing a lot of accumulated cruft.
2479
2480 allout-mode-map is now a keymap by virtue of being a defalias to
2481 allout-mode-map-value, which contains the actual keymap structure.
2482
2483 (allout-mode): Use define-minor-mode rather than defun.
2484 Remove now-unnecessary minor-mode setup activities from the body.
2485 Specify :keymap as allout-mode-map so the minor-mode-map-alist
2486 entry will be '(allout-mode . allout-mode-map) - see
2487 allout-mode-map-value, below. Adjust docstring to track changes.
2488 (allout-minor-mode): Remove this defalias, now that we're using
2489 define-minor-mode.
2490 (allout-mode-map): Set value to be 'allout-mode-map. The actual
2491 keymap is allout-mode-map-value, via defalias.
2492 (allout-mode-map-value): The variable holding the actual mode
2493 keymap structure, by virtue of defalias from allout-mode-map.
2494 (allout-compose-and-institute-keymap): Rename from
2495 allout-bind-keys, and including the binding-composition
2496 functionality of the former produce-allout-mode-map and
2497 allout-setup-mode-map.
2498 (allout-institute-keymap): Take over the "setup" part of the former
2499 allout-setup-mode-map. Reassign allout-mode-map-value value and
2500 update the defalias.
2501 (allout-command-prefix, allout-prefixed-keybindings)
2502 (allout-unprefixed-keybindings):
2503 Use allout-compose-and-institute-keymap to process the bindings.
2504 (allout-unprefixed-keybindings): Remove extraneous '?' question marks.
2505 (allout-prefixed-keybindings): Elide binding to (prefixed) \C-h -
2506 user can customize if they want to use that binding.
2507 Bind allout-copy-topic-as-kill to (prefixed) \M-k.
2508 Bind allout-up-current-level to (prefixed) \C-u. (I think i mistakenly
2509 elided that, previously, instead of the one for \C-h.)
2510 (allout-hotspot-key-handler): Remove attempt to resolve the key
2511 through the literal key-string lookup on allout-keybindings-list.
2512 That probably hasn't worked for a Long Time, and removal of
2513 allout-keybindings-list further simplifies the keybindings situation.
2514 (allout-pre-command-business): Use allout-mode-map-value instead
2515 of allout-mode-map.
2516 (allout-preempt-trailing-ctrl-h): Remove. The user can customize
2517 the bindings if they want to use a keybinding having a trailing
2518 \C-h. No deprecation needed since this feature was never in a release.
2519 (allout-keybindings-list): Remove. It's not been useful for a
2520 while. (See allout-hotspot-key-handler changes, above.)
2521 (produce-allout-mode-map): Remove. Consolidate into
2522 allout-compose-and-institute-keymap.
2523 (allout-mode-map-adjustments): Remove. No longer necessary with
2524 removal of allout-preempt-trailing-ctrl-h.
2525 (allout-setup-mode-map): Remove. Consolidate into
2526 allout-compose-and-institute-keymap and allout-institute-keymap.
2527
2528 2011-01-20 Glenn Morris <rgm@gnu.org>
2529
2530 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
2531
2532 * simple.el (read-expression-history): Remove, it's in minibuf.c.
2533
2534 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
2535
2536 * subr.el (y-or-n-p): Revert 2011-01-07 change, removing ARGS.
2537
2538 * files.el (find-alternate-file, basic-save-buffer)
2539 (basic-save-buffer-2, revert-buffer, recover-file)
2540 (kill-buffer-ask, abort-if-file-too-large)
2541 (set-visited-file-name, write-file, backup-buffer)
2542 (basic-save-buffer, save-some-buffers):
2543 * dired-aux.el (dired-compress-file): Callers changed.
2544
2545 2011-01-19 Glenn Morris <rgm@gnu.org>
2546
2547 * vc/vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
2548 Also check the property status. (Bug#7861)
2549
2550 2011-01-18 Michael Albinus <michael.albinus@gmx.de>
2551
2552 * net/tramp.el (tramp-debug-message): Extend function exclude
2553 list. Use `regexp-opt'.
2554
2555 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2556
2557 * textmodes/tex-mode.el (tex-font-lock-verb): Make sure \verb
2558 highlighting doesn't spill over subsequent lines.
2559
2560 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't re-evaluate the
2561 keymap expression. Improve docstring.
2562
2563 * electric.el (electric-indent-post-self-insert-function):
2564 Don't auto-indent for indent-to-left-margin, it's too often
2565 counter-productive.
2566
2567 2011-01-16 Tassilo Horn <tassilo@member.fsf.org>
2568
2569 * strokes.el (strokes-read-stroke): Re-fill strokes buffer with
2570 spaces if the frame was resized, so that the full visible buffer
2571 serves as canvas for strokes.
2572
2573 2011-01-16 Glenn Morris <rgm@gnu.org>
2574
2575 * info-xref.el (info-xref-docstrings): Replace cl function.
2576 Also skip directories.
2577
2578 2011-01-16 Kevin Ryde <user42@zip.com.au>
2579
2580 * info-xref.el: Version 3.
2581 (info-xref-check, info-xref-check-all): Move commentary details
2582 into docstrings for better visibility.
2583 Use compilation-mode for the results buffer.
2584 (info-xref-output, info-xref-output-error, info-xref-with-output)
2585 (info-xref-filename, info-xref-in-progress):
2586 New internals for this.
2587 (info-xref-check-list, info-xref-check-buffer)
2588 (info-xref-check-all-custom): Use those.
2589 (info-xref-output-buffer): Rename from info-xref-results-buffer.
2590 (info-xref-output-heading): Rename from info-xref-filename-heading.
2591 (info-xref-good, info-xref-bad, info-xref-xfile-alist)
2592 (info-xref-filename-heading): Move to output managing section.
2593 (info-xref-docstrings): New command checking "Info node `(foo)Bar'"
2594 (info-xref-lock-file-p, info-xref-with-file): New helpers for it.
2595 (info-xref-subfile-p): Move to generic section with those two.
2596 (info-xref-check-node): New function split from
2597 info-xref-check-buffer, shared by info-xref-docstrings.
2598 (info-xref-goto-node-p): Move to a checking section with that func.
2599 (info-xref-unavail): New counter.
2600 (info-xref-check-node): Use it.
2601 (info-xref-with-output): Show count of unavailables at end of output.
2602 (info-xref-all-info-files): Exclude ".*" dotfiles. Ignore broken
2603 symlinks. Exclude .texi files. Exclude Emacs backup files.
2604 (info-xref-check-all-custom): Fix quietening viper-mode and
2605 gnus-registry-install -- use setq not let so as not to unbind
2606 after load.
2607
2608 2011-01-16 Juri Linkov <juri@jurta.org>
2609
2610 * isearch.el (isearch-abort): Don't quit if search has
2611 an incomplete regexp (isearch-error is non-nil). (Bug#7534)
2612
2613 2011-01-15 Mark Diekhans <markd@soe.ucsc.edu>
2614
2615 * files.el (backup-buffer): Make last-resort backup file in
2616 .emacs.d (Bug#6953).
2617
2618 * subr.el (locate-user-emacs-file): If .emacs.d does not exist,
2619 make it with permission 700.
2620
2621 2011-01-15 Kenichi Handa <handa@m17n.org>
2622
2623 * mail/rmailmm.el (rmail-mime-insert-header):
2624 Set rmail-mime-coding-system to a cons whose car is the last coding
2625 system used to decode the header.
2626 (rmail-mime-find-header-encoding): New function.
2627 (rmail-mime-insert-decoded-text):
2628 Override rmail-mime-coding-system if it is a cons.
2629 (rmail-show-mime): If only a header part was decoded, find the
2630 coding system while ignoring mm-charset-override-alist.
2631
2632 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
2633
2634 * subr.el (event-start, event-end): Doc fix (Bug#7826).
2635
2636 2011-01-15 Kenichi Handa <handa@m17n.org>
2637
2638 * mail/rmailmm.el (rmail-mime-next-item)
2639 (rmail-mime-previous-item): Delete them.
2640 (rmail-mime-shown-mode): Recursively call for children.
2641 (rmail-mime-hidden-mode): Delete the 2nd arg TOP.
2642 Callers changed.
2643 (rmail-mime-raw-mode): Recursively call for children.
2644 (rmail-mode-map): Change mapping of tab and backtab to
2645 forward-button and backward-button respectively.
2646 (rmail-mime-insert-tagline): Always insert "Hide" or "Show"
2647 button.
2648 (rmail-mime-update-tagline): New function.
2649 (rmail-mime-insert-text): Call rmail-mime-update-tagline if the
2650 body display is changed.
2651 (rmail-mime-toggle-button): Rename from rmail-mime-image.
2652 (rmail-mime-image): Delete this button type.
2653 (rmail-mime-toggle): New button type.
2654 (rmail-mime-insert-bulk): Call rmail-mime-update-tagline if the
2655 body display is changed. Change the save button label to "Save".
2656 Don't process show/hide button here.
2657 (rmail-mime-insert-multipart): Call rmail-mime-update-tagline if
2658 the body display is changed. Unconditionally call
2659 rmail-mime-insert for children.
2660 (rmail-mime-handle): Update `display' vector of the just inserted
2661 entity.
2662 (rmail-mime-process): If mail-header-parse-content-type returns
2663 nil, use "text/plain" as the fallback type.
2664 (rmail-mime-insert): For raw-mode, recursively call
2665 rmail-mim-insert for children.
2666 (rmail-mime): Handle the case that the current buffer is not rmail
2667 buffer (e.g. in summary buffer).
2668
2669 2011-01-15 Kenichi Handa <handa@m17n.org>
2670
2671 * mail/rmailmm.el (rmail-mime-next-item)
2672 (rmail-mime-previous-item): Skip the body of a non-multipart
2673 entity if a tagline is shown.
2674
2675 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2676
2677 * tmm.el (tmm-get-keymap): Skip bindings without labels (bug#7721).
2678 (tmm-prompt): Simplify.
2679 (tmm-add-prompt): Remove unused var `win'.
2680
2681 * whitespace.el (global-whitespace-newline-mode): Fix call (bug#7810)
2682 to minor mode which used nil accidentally to mean "turn off".
2683
2684 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
2685
2686 * net/tramp-sh.el (tramp-find-inline-compress)
2687 (tramp-get-inline-coding): Quote command after pipe symbol for
2688 local calls under W32. (Bug#6784)
2689
2690 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
2691
2692 * net/tramp.el (tramp-default-method): Initialize with pscp/plink
2693 only when running under W32.
2694
2695 2011-01-15 Eli Zaretskii <eliz@gnu.org>
2696
2697 * progmodes/grep.el (grep-compute-defaults): Quote the program
2698 file name after the pipe symbol in Grep templates. (Bug#6784)
2699 * jka-compr.el (jka-compr-partial-uncompress): Likewise.
2700
2701 2011-01-15 Lennart Borgman <lennart.borgman@gmail.com>
2702
2703 * buff-menu.el (Buffer-menu-buffer-list): New var.
2704 (Buffer-menu-revert-function, list-buffers-noselect): Use it, so a
2705 restricted buffer list is not lost on revert (Bug#7749).
2706
2707 2011-01-15 Eric Hanchrow <eric.hanchrow@gmail.com>
2708
2709 * net/ldap.el (ldap-search-internal): Discard stderr output.
2710
2711 2011-01-15 Eli Zaretskii <eliz@gnu.org>
2712
2713 * files.el (directory-abbrev-alist): Doc fix. (Bug#7777)
2714
2715 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2716
2717 * vc-bzr.el (vc-bzr-annotate-time): Tweak previous change.
2718
2719 2011-01-15 Kenichi Handa <handa@m17n.org>
2720
2721 * mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
2722 part as a plain text.
2723 (rmail-mime-process-multipart): Set the default content-type to
2724 nil for unknown multipart subtypes (bug#7651).
2725
2726 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2727
2728 * hexl.el (hexl-mode-old-*): Remove.
2729 (hexl-mode--old-var-vals): New var to replace them.
2730 (hexl-mode--minor-mode-p, hexl-mode--setq-local): New funs.
2731 (hexl-mode, hexl-follow-line, hexl-activate-ruler):
2732 Use them to set local vars (bug#7846).
2733 (hexl-mode-exit): Use hexl-mode--old-var-vals to restore state.
2734 (hexl-backward-short, hexl-backward-word, hexl-scroll-down)
2735 (hexl-scroll-up, hexl-end-of-1k-page, hexl-end-of-512b-page): Simplify.
2736
2737 * vc/smerge-mode.el: Resolve comment conflicts more aggressively.
2738 (smerge-resolve--normalize-re): New var.
2739 (smerge-resolve--extract-comment, smerge-resolve--normalize): New funs.
2740 (smerge-resolve): Use them.
2741 * newcomment.el (comment-only-p): New function.
2742 (comment-or-uncomment-region): Use it.
2743
2744 2011-01-14 Brent Goodrick <bgoodr@gmail.com> (tiny change)
2745
2746 * abbrev.el (prepare-abbrev-list-buffer): If listing local abbrev
2747 table, get the value before switching to the output buffer. (Bug#7733)
2748
2749 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2750
2751 * progmodes/python.el (python-mode): Don't impose font-lock (bug#3628).
2752
2753 2011-01-14 Kim F. Storm <storm@cua.dk>
2754
2755 * emulation/cua-base.el (cua--init-keymaps):
2756 Remap exchange-point-and-mark in cua-global-keymap.
2757
2758 2011-01-14 Tassilo Horn <tassilo@member.fsf.org>
2759
2760 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach
2761 loop keyword.
2762
2763 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2764
2765 * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label.
2766 Require CL.
2767 (easy-menu-create-menu, easy-menu-convert-item-1):
2768 Use :label rather than nil for labels. Use `case'.
2769 Add :enable as alias for :active.
2770 (easy-menu-binding): Obey :label.
2771
2772 2011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2773
2774 Use run-mode-hooks for major mode hooks (bug#513).
2775 * textmodes/reftex-toc.el (reftex-toc-mode-map):
2776 Rename from reftex-toc-map.
2777 (reftex-toc-mode): Use define-derived-mode.
2778 * textmodes/reftex-sel.el (reftex-select-shared-map): New map.
2779 (reftex-select-label-mode-map, reftex-select-bib-mode-map):
2780 Rename from reftex-select-(label|bib)-map. Move init into declaration.
2781 (reftex-select-label-mode, reftex-select-bib-mode):
2782 Use define-derived-mode.
2783 * textmodes/reftex-index.el (reftex-index-phrases-mode-map)
2784 (reftex-index-mode-map): Rename from reftex-index(-phrases)-map.
2785 Move init into delcaration.
2786 (reftex-index-mode, reftex-index-phrases-mode):
2787 Use define-derived-mode.
2788 * speedbar.el (speedbar-mode-syntax-table): Renaqme from
2789 speedbar-syntax-table. Move init into declaration.
2790 (speedbar-mode-map): Rename from speedbar-key-map.
2791 Move init into declaration.
2792 (speedbar-file-key-map): Move init into declaration.
2793 (speedbar-mode): Use define-derived-mode.
2794 * recentf.el (recentf-mode): Don't run hook (or message) redundantly.
2795 * net/rcirc.el (rcirc-mode): Use run-mode-hooks.
2796 * emacs-lisp/chart.el (chart-mode-map): Rename from chart-map.
2797 (chart-face-list): Move initialization into declaration.
2798 (chart-mode): Use define-derived-mode.
2799 * calculator.el (calculator-mode-map): Move init into declaration.
2800 (calculator-mode): Use define-derived-mode.
2801
2802 * mail/mail-utils.el (mail-strip-quoted-names): Make the regexp code
2803 work for nested comments.
2804
2805 * progmodes/prolog.el: Use syntax-propertize. Further code cleanup.
2806 (prolog-use-prolog-tokenizer-flag): Change default when
2807 syntax-propertize can be used.
2808 (prolog-syntax-propertize-function): New var.
2809 (prolog-mode-variables): Move make-local-variable into `set'.
2810 Don't make comment-column local since we don't set it.
2811 Set comment-add (as it was in previous prolog.el). Use dolist.
2812 Set syntax-propertize-function.
2813 (prolog-mode, prolog-inferior-mode):
2814 Call prolog(-inferior)-menu directly, not through the mode-hook.
2815 (prolog-buffer-module, prolog-indent-level)
2816 (prolog-paren-is-the-first-on-line-p, prolog-paren-balance)
2817 (prolog-comment-limits, prolog-goto-comment-column):
2818 Use line-(end|beginning)-position.
2819 (prolog-build-prolog-command): Tighten up regexp.
2820 (prolog-consult-compile): Move make-local-variable into `set'.
2821 (prolog-consult-compile-filter, prolog-goto-next-paren)
2822 (prolog-help-on-predicate, prolog-clause-info)
2823 (prolog-mark-predicate): Don't let+setq.
2824 (prolog-indent-line): Use indent-line-to.
2825 Only call prolog-goto-comment-column if necessary.
2826 (prolog-indent-level): Use bobp.
2827 (prolog-first-pos-on-line): Remove, not used any more.
2828 (prolog-in-string-or-comment): Use syntax-ppss if available.
2829 (prolog-help-on-predicate): Use read-string.
2830 (prolog-goto-predicate-info): Simplify.
2831 (prolog-read-predicate): Use `default' rather than `initial'.
2832 (prolog-temporary-file): Use make-temp-file to close a security hole.
2833 (prolog-toggle-sicstus-sd): New command.
2834 (prolog-electric-underscore, prolog-variables-to-anonymous):
2835 Use dynamic-scoping as it was meant.
2836 (prolog-menu): Move menu definitions to top-level.
2837 Use a toggle-button for Sicstus's source debugger.
2838 Change "Code" to the more usual "Prolog", and hence change "Prolog"
2839 to "System".
2840 (prolog-inferior-menu): Reuse prolog-menu's help menu.
2841 Move other menu definition to top-level.
2842
2843 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
2844
2845 * doc-view.el (doc-view-open-text): Use meaningful text buffer
2846 name. Keep original document's directory as default-directory
2847 (bug#6446).
2848 (doc-view-initiate-display): Fall back to normal mode when
2849 doc-view-mode cannot be enabled, also when extracting the document
2850 text into a separate buffer (bug#6446).
2851
2852 * simple.el (shell-command): Don't error out if shell command
2853 buffer contains text with non-nil read-only property when erasing
2854 the buffer.
2855
2856 2011-01-13 Kim F. Storm <storm@cua.dk>
2857
2858 * ido.el (ido-may-cache-directory): Move "too-big" check later.
2859 (ido-next-match, ido-prev-match): Fix stray reordering of matching
2860 items when cycling through the matches.
2861
2862 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
2863
2864 * dired-x.el (dired-omit-verbose): New defcustom that allows
2865 disabling the omit messages.
2866 (dired-omit-expunge): Use it.
2867
2868 2011-01-13 Christian Ohler <ohler@gnu.org>
2869
2870 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: New files.
2871
2872 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
2873
2874 * font-lock.el (font-lock-verbose): Default to nil.
2875
2876 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
2877
2878 * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
2879 (compose-mail): New arg RETURN-ACTION.
2880 (compose-mail-other-window, compose-mail-other-frame): Likewise.
2881
2882 * mail/sendmail.el (mail-return-action): New var.
2883 (mail-mode): Make it buffer-local.
2884 (mail-bury): Obey it. Move special Rmail window handling to
2885 rmail-mail-return.
2886 (mail, mail-setup): New arg RETURN-ACTION.
2887 (sendmail-user-agent-compose): Move from simple.el.
2888
2889 * mail/rmail.el (rmail-mail-return): New function.
2890 (rmail-start-mail): Pass it to compose-mail.
2891
2892 2011-01-12 Chong Yidong <cyd@stupidchicken.com>
2893
2894 * menu-bar.el (menu-bar-custom-menu): Tweak Mule and Customize
2895 menus. Add menu item for customize-themes.
2896
2897 * cus-theme.el (customize-themes):
2898 * emacs-lisp/package.el (package--list-packages):
2899 Use switch-to-buffer.
2900
2901 2011-01-11 Johan Bockgård <bojohan@gnu.org>
2902
2903 * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
2904
2905 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
2906
2907 * progmodes/prolog.el: Fix up coding convention and such.
2908 (prolog-indent-width): Use the same default as in
2909 previous prolog.el rather than tab-width which depends on which buffer
2910 is current when the file is loaded.
2911 (prolog-electric-newline-flag): Only enable if electric-indent-mode
2912 is not available.
2913 (prolog-emacs): Remove. Use (featurep 'xemacs) instead.
2914 (prolog-known-systems): Remove.
2915 (prolog-mode-syntax-table, prolog-inferior-mode-map):
2916 Move initialization into declaration.
2917 (prolog-mode-map): Move initialization into declaration.
2918 Remove system-specific mode-map vars, since they referred to the same
2919 keymap anyway.
2920 (prolog-mode-variables): Obey the user's preference w.r.t
2921 adaptive-fill-mode. Prefer symbol-value to `eval'.
2922 (prolog-mode-keybindings-edit): Add compatibility bindings.
2923 (prolog-mode): Use define-derived-mode. Don't handle mercury here.
2924 (mercury-mode-map): New var.
2925 (mercury-mode, prolog-inferior-mode): Use define-derived-mode.
2926 (prolog-ensure-process, prolog-process-insert-string)
2927 (prolog-consult-compile): Use with-current-buffer.
2928 (prolog-guess-fill-prefix): Simplify data flow.
2929 (prolog-replace-in-string): New function to use instead of
2930 replace-in-string.
2931 (prolog-enable-sicstus-sd): Don't abuse `eval'.
2932 (prolog-uncomment-region): Use `uncomment-region' when available.
2933 (prolog-electric-colon, prolog-electric-dash): Use `eolp'.
2934 (prolog-int-to-char, prolog-char-to-int): New functions to use instead
2935 of int-to-char and char-to-int.
2936 (prolog-mode-hook, prolog-inferior-mode-hook): Don't force font-lock.
2937
2938 2011-01-11 Stefan Bruda <stefan@bruda.ca>
2939
2940 * progmodes/prolog.el: Replace by a whole new file.
2941
2942 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
2943
2944 * subr.el (eval-after-load): Fix timing for features (bug#7769).
2945 (declare-function, undefined, insert-for-yank)
2946 (replace-regexp-in-string): Follow checkdoc's recommendations.
2947
2948 2011-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2949
2950 * calendar/diary-lib.el (diary-mode): Refresh *Calendar* after
2951 refreshing the diary buffer.
2952
2953 2011-01-10 Ken Manheimer <ken.manheimer@gmail.com>
2954
2955 * allout.el: Add 2011 to the file copyright.
2956 (allout-encrypt-string): Prevent encryption from adding an extra
2957 newline at the end of the topic body.
2958 (allout-version): Increment to 2.3.
2959
2960 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
2961
2962 * net/dbus.el (dbus-unregister-service): Complete doc.
2963 Fix call of dbus-error signal.
2964 (dbus-register-property): Use `dont-register' keyword.
2965
2966 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
2967
2968 * net/dbus.el (dbus-unregister-service): Translate returned
2969 integer into a symbol.
2970 (dbus-register-property): Use `dbus-register-service' to do the
2971 name registration.
2972
2973 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2974
2975 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
2976 Suggested by Joakim Verona.
2977
2978 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
2979
2980 * wid-edit.el (visibility): Replace :on-image and :off-image
2981 widget properties with :on-glyph and :off-glyph, for consistency
2982 with the `visibility' widget.
2983 (widget-toggle-value-create, widget-visibility-value-create):
2984 Merge into a single function `widget-toggle-value-create'.
2985
2986 * cus-edit.el (custom-variable-value-create, custom-visibility)
2987 (custom-face-edit-value-create, custom-face-value-create):
2988 Replace :on-image and :off-image widget properties with :on-glyph and
2989 :off-glyph, for consistency with the `visibility' widget.
2990
2991 2011-01-09 Andreas Schwab <schwab@linux-m68k.org>
2992
2993 * net/ldap.el (ldap-search-internal): Don't use eval.
2994
2995 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2996
2997 * subr.el (read-char-choice): Use read-key.
2998
2999 * custom.el (custom-safe-themes): Rename from
3000 custom-safe-theme-files. Add :risky tag.
3001 (load-theme, custom-theme-load-confirm): Save sha1 hashes to
3002 custom-safe-themes, not filenames. Suggested by Stefan Monnier.
3003
3004 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
3005
3006 * tool-bar.el (tool-bar-setup): Remove Help button. Remove label
3007 from Search and add a label to Undo.
3008
3009 * vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
3010 inappropriate buttons and adding :vert-only tags.
3011
3012 * progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
3013 removal of Help tool-bar button. Remove Undo button for space.
3014
3015 * info.el (info-tool-bar-map): Add :vert-only tags.
3016
3017 2011-01-08 Tassilo Horn <tassilo@member.fsf.org>
3018
3019 * doc-view.el (doc-view-mode-p): Check for png or imagemagick
3020 image backend support. Either of them is fine.
3021
3022 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
3023
3024 * subr.el (y-or-n-p): Doc fix.
3025
3026 * custom.el (custom-safe-theme-files): New defcustom.
3027 (custom-theme-load-confirm): New function.
3028 (load-theme): Load theme using `load', confirming with
3029 custom-theme-load-confirm if necessary.
3030
3031 * subr.el (read-char-choice): New function, factored out from
3032 dired-query and hack-local-variables-confirm.
3033
3034 * dired-aux.el (dired-query):
3035 * files.el (hack-local-variables-confirm): Use it.
3036
3037 * dired-aux.el (dired-compress-file):
3038 * files.el (abort-if-file-too-large, find-alternate-file)
3039 (set-visited-file-name, write-file, backup-buffer)
3040 (basic-save-buffer, basic-save-buffer-2, save-some-buffers)
3041 (delete-directory, revert-buffer, recover-file, kill-buffer-ask):
3042 Use new format string args for y-or-n-p and yes-or-no-p.
3043
3044 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
3045
3046 * progmodes/compile.el (compilation-error-regexp-alist-alist)
3047 [gcc-include]: Tighten file name match, add match for column
3048 number. (Bug#7806)
3049 [gnu]: Remove unused group.
3050
3051 2011-01-08 Glenn Morris <rgm@gnu.org>
3052
3053 * makefile.w32-in (EMACSOPT): Add --no-site-lisp.
3054
3055 * makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
3056
3057 2011-01-07 Sam Steingold <sds@gnu.org>
3058
3059 * w32-fns.el (w32-shell-name): Use `shell-file-name' instead of
3060 the `explicit-shell-file-name' because that is the
3061 non-interactive shell.
3062
3063 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
3064
3065 * subr.el (y-or-n-p): Accept format string args.
3066
3067 2011-01-07 Glenn Morris <rgm@gnu.org>
3068
3069 * Makefile.in (EMACSOPT): Add --no-site-lisp.
3070
3071 2011-01-06 Ken Manheimer <ken.manheimer@gmail.com>
3072
3073 * allout.el (allout-back-to-current-heading): Ensure return to
3074 the visible containing topic, rather than a collapsed one.
3075 (allout-view-change-hook): Remove hook that was deprecated long ago.
3076 (allout-exposure-change-hook): Remove documentation remarks
3077 concerning removed allout-view-change-hook.
3078 (allout-flag-region): Remove invocation of and documentation
3079 remarks concerning allout-view-change-hook.
3080
3081 2011-01-06 Glenn Morris <rgm@gnu.org>
3082
3083 * vc/vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time)
3084 (vc-bzr-annotate-extract-revision-at-line):
3085 Handle authors with embedded spaces. (Bug#7792)
3086
3087 2011-01-05 Tassilo Horn <tassilo@member.fsf.org>
3088
3089 * doc-view.el (doc-view-image-width): New variable.
3090 (doc-view-enlarge, doc-view-insert-image): Prefer imagemagick
3091 backend for PNG images, and do dynamic rescaling instead of
3092 reconverting the whole doc.
3093
3094 2011-01-05 Glenn Morris <rgm@gnu.org>
3095
3096 * emacs-lisp/rx.el (rx-repeat): Replace CL function.
3097
3098 2011-01-04 Ken Manheimer <ken.manheimer@gmail.com>
3099
3100 * allout.el: Reconcile with changes in line movement behavior for
3101 long text lines that cross more than a single physical window
3102 line, ie when truncate-lines is nil.
3103 (allout-next-visible-heading): Provide for change in line-move
3104 behavior on long lines when truncate-lines is nil. In that case,
3105 line-move can wind up on the same textual line when it moves to
3106 the next window line, and moving to the bullet position after the
3107 move yields zero advancement. Add logic to detect and compensate
3108 for the lack of progress.
3109 (allout-current-topic-collapsed-p): move-end-of-line respect for
3110 field boundaries is different when operating with body lines
3111 shorter than window width versus ones greater than window width,
3112 which can yield false negatives in this function. Avoid
3113 difference by applying move-end-of-line while field-text-motion is
3114 inhibited.
3115
3116 2011-01-04 Glenn Morris <rgm@gnu.org>
3117
3118 * textmodes/rst.el (rst-compile-toolsets):
3119 Add pdf and s5 to option alist.
3120
3121 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
3122
3123 * net/dbus.el (dbus-register-property): Add optional parameter
3124 dont-register-service. Updated docstring accordingly.
3125
3126 2011-01-04 Andreas Schwab <schwab@linux-m68k.org>
3127
3128 * textmodes/rst.el (rst-compile-pdf-preview)
3129 (rst-compile-slides-preview): Remove extra line.
3130
3131 2011-01-04 Glenn Morris <rgm@gnu.org>
3132
3133 * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
3134 Add `pdf' and `s5' entries. Use `prog.py' if found, otherwise
3135 default to `prog' without a .py extension.
3136 (rst-compile-pdf-preview, rst-compile-slides-preview):
3137 Use program names from rst-compile-toolsets, rather than hard-coding.
3138 (rst-portable-mark-active-p): Fix presumed typo.
3139
3140 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3141
3142 * term/w32-win.el (dynamic-library-alist): Set up correctly for
3143 libpng versions both before and after 1.4.0. (Bug#7716)
3144
3145 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3146
3147 * time.el (display-time-mode): Mention display-time-interval in
3148 the doc string. (Bug#7713)
3149
3150 2011-01-02 Kenichi Handa <handa@m17n.org>
3151
3152 * mail/rmailmm.el (rmail-mime-parse): Perform parsing in
3153 condition-case and return an error message string if something
3154 goes wrong.
3155 (rmail-show-mime): Adjust for the above change. Insert the
3156 header by rmail-mime-insert-header.
3157
3158 2011-01-02 Kenichi Handa <handa@m17n.org>
3159
3160 * mail/rmailmm.el: New key bindings for rmail-mime-next-item,
3161 rmail-mime-previous-item, and rmail-mime-toggle-hidden.
3162 (rmail-mime-mbox-buffer)
3163 (rmail-mime-view-buffer, rmail-mime-coding-system): New variables.
3164 (rmail-mime-entity): Argument changed. All codes handling an
3165 entity object are changed.
3166 (rmail-mime-entity-header, rmail-mime-entity-body): Adjust for
3167 the above change.
3168 (rmail-mime-entity-children, rmail-mime-entity-handler)
3169 (rmail-mime-entity-tagline): New functions.
3170 (rmail-mime-message-p): New function.
3171 (rmail-mime-save): Bind rmail-mime-mbox-buffer.
3172 (rmail-mime-entity-segment, rmail-mime-next-item)
3173 (rmail-mime-previous-item, rmail-mime-shown-mode)
3174 (rmail-mime-hidden-mode, rmail-mime-raw-mode)
3175 (rmail-mime-toggle-raw, rmail-mime-toggle-hidden)
3176 (rmail-mime-insert-tagline, rmail-mime-insert-header):
3177 New functions.
3178 (rmail-mime-text-handler): Call rmail-mime-insert-text.
3179 (rmail-mime-insert-decoded-text): New function.
3180 (rmail-mime-insert-text): Call rmail-mime-insert-decoded-text.
3181 (rmail-mime-insert-image): Argument changed. Caller changed.
3182 (rmail-mime-image): Call rmail-mime-toggle-hidden.
3183 (rmail-mime-set-bulk-data): New function.
3184 (rmail-mime-insert-bulk): Argument changed.
3185 (rmail-mime-multipart-handler): Return t.
3186 (rmail-mime-process-multipart): Argument changed.
3187 Handle "multipart/alternative" here.
3188 (rmail-mime-process): Argument changed.
3189 (rmail-mime-parse): Bind rmail-mime-mbox-buffer.
3190 (rmail-mime-insert): Argument changed. Handle raw display mode.
3191 (rmail-mime): Argument changed. Handle toggling of raw display
3192 mode.
3193 (rmail-show-mime): Bind rmail-mime-mbox-buffer and
3194 rmail-mime-view-buffer.
3195 (rmail-insert-mime-forwarded-message): Likewise.
3196 (rmail-search-mime-message): Likewise. Don't bind rmail-buffer.
3197
3198 * mail/rmail.el (rmail-show-message-1): If rmail-enable-mime is
3199 non-nil, handle the header in rmail-show-mime-function.
3200
3201 2011-01-02 Leo <sdl.web@gmail.com>
3202
3203 * help-fns.el (describe-variable): Fix previous change.
3204
3205 2011-01-02 Juri Linkov <juri@jurta.org>
3206
3207 * isearch.el (isearch-lazy-highlight-error): New variable.
3208 (isearch-lazy-highlight-new-loop): Compare `isearch-error' and
3209 `isearch-lazy-highlight-error'. Set `isearch-lazy-highlight-error'
3210 to the current value of `isearch-error' (Bug#7468).
3211
3212 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
3213
3214 * help-fns.el (describe-variable): Don't emit trailing whitespace
3215 (Bug#7511).
3216
3217 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
3218
3219 * textmodes/rst.el (rst-compile-pdf-preview)
3220 (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
3221
3222 2011-01-02 Kevin Gallagher <Kevin.Gallagher@boeing.com>
3223
3224 * emulation/edt-mapper.el: Override mapping of function keys so
3225 that the later call to read-key-sequence works.
3226
3227 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3228
3229 * mail/smtpmail.el (smtpmail-send-it): Write queued mail body with
3230 Unix EOLs. (Bug#7589)
3231
3232 2011-01-02 Leo <sdl.web@gmail.com>
3233
3234 * eshell/em-hist.el (eshell-previous-matching-input): Signal error
3235 if point is not behind eshell-last-output-end (Bug#7585).
3236
3237 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
3238
3239 * files.el (file-local-variables-alist):
3240 Make permanent-local (bug#7767).
3241
3242 2011-01-02 Glenn Morris <rgm@gnu.org>
3243
3244 * version.el (emacs-copyright): Set short copyright year to 2011.
3245
3246 2011-01-02 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
3247
3248 * mail/mail-utils.el (mail-strip-quoted-names): Avoid clobbering
3249 an existing temp buffer. (Bug#7746)
3250
3251 2011-01-02 Glenn Morris <rgm@gnu.org>
3252
3253 * mail/mail-utils.el (mail-mbox-from): Handle From: headers with
3254 multiple addresses. (Bug#7760)
3255
3256 2011-01-01 Ken Manheimer <ken.manheimer@gmail.com>
3257
3258 * allout.el (allout-auto-fill): Do not infinitely recurse - use
3259 do-auto-fill if everything points back to allout-auto-fill.
3260 (allout-mode-deactivate-hook): Declare obsolete, in favor of
3261 standard-formed minor-mode deactivate hook, allout-mode-off-hook.
3262
3263 2010-12-31 Michael Albinus <michael.albinus@gmx.de>
3264
3265 * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
3266 and "scpx".
3267
3268 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3269
3270 * doc-view.el (doc-view-set-doc-type): New function refactored
3271 from doc-view-mode.
3272 (doc-view-fallback-mode): New function.
3273 (doc-view-mode): Use it.
3274 (doc-view-mode-maybe): New function that checks if doc-view-mode
3275 can be used and falls back to the next best mode otherwise.
3276
3277 * files.el (auto-mode-alist): Use doc-view-mode-maybe for PDF,
3278 DVI, OpenDocument, and MS Office files.
3279
3280 2010-12-30 Andreas Schwab <schwab@linux-m68k.org>
3281
3282 * emacs-lisp/rx.el (rx-syntax): Fix typo.
3283
3284 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3285
3286 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
3287 on a copy of auto-mode-alist, because that deletes with side
3288 effects.
3289
3290 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3291
3292 * doc-view.el (doc-view-mode, doc-view-toggle-display):
3293 Use normal-mode without doc-view-mode bindings in auto-mode-alist as
3294 fallback instead of hard coding fundamental mode.
3295
3296 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3297
3298 * doc-view.el (doc-view-doc->txt): Handle OpenDocument (or MS
3299 Office) files also for searching.
3300
3301 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3302
3303 * doc-view.el: Implement viewing of OpenDocument (and Microsoft
3304 Office) files. Not yet enabled via auto-mode-list.
3305 (doc-view-unoconv-program): New custom variable.
3306 (doc-view-mode-p): Handle new odf document type.
3307 (doc-view-odf->pdf): New conversion function.
3308 (doc-view-convert-current-doc): Call it for odf files.
3309 (doc-view-mode): Recognize newly supported file extensions.
3310
3311 2010-12-30 Michael Albinus <michael.albinus@gmx.de>
3312
3313 * net/tramp.el (tramp-default-method-alist)
3314 (tramp-default-user-alist)
3315 (tramp-local-host-regexp, tramp-prefix-domain-format)
3316 (tramp-prefix-domain-regexp): Set tramp-autoload cookie.
3317
3318 * net/tramp-ftp.el:
3319 * net/tramp-gvfs.el:
3320 * net/tramp-gw.el:
3321 * net/tramp-imap.el:
3322 * net/tramp-sh.el:
3323 * net/tramp-smb.el: Add tramp-autoload cookie for initialisation
3324 code of `tramp-default-method-alist' and `tramp-default-user-alist'.
3325
3326 2010-12-29 Karl Fogel <kfogel@red-bean.com>
3327
3328 * saveplace.el (save-place-alist-to-file): Save list sorted and
3329 pretty-printed, so that it is mergeable by line-based text merging,
3330 as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
3331
3332 2010-12-28 Ken Manheimer <ken.manheimer@gmail.com>
3333
3334 * allout.el (allout-v18/19-file-var-hack): Obsolete, remove.
3335 (allout-mode): Argument "toggle" => "force".
3336 Refine the docstring.
3337 Remove special provisions for reactivation, besides the 'force'
3338 argument.
3339 Consolidate layout provisions coce directly into the activation
3340 condition branch, now that we've removed those provisions.
3341 (allout-unload-function): Explicitly activate the mode before
3342 deactivating, if it's initially deactivated.
3343 (allout-set-buffer-multibyte): Properly prevent byte-compiler
3344 warnings for version of function used only where
3345 set-buffer-multibyte is unavailable.
3346
3347 2010-12-28 Chong Yidong <cyd@stupidchicken.com>
3348
3349 * tool-bar.el (tool-bar-setup): Remove :enable conditions, which
3350 are handled by the menu-bar entries. As before, don't use
3351 :visibile to avoid changing the tool-bar.
3352
3353 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
3354
3355 * net/secrets.el (secrets-delete-alias): New defun.
3356
3357 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
3358
3359 * net/tramp.el (tramp-default-user-alist): Do not add "ssh" based
3360 methods, otherwise ~/.ssh/config would be ignored.
3361
3362 2010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
3363
3364 * emacs-lisp/rx.el: Make it a superset of sregex.
3365 (rx-constituents): Add `any => "."', mark `repeat' as taking any number
3366 of args, add `regex' alias.
3367 (rx-info): Add arg to distinguish head and standalone forms.
3368 (rx-check, rx-form): Pass the corresponding arg.
3369 (rx-**): Simplify.
3370 (rx-repeat): Make it work for any number of args.
3371 (rx-syntax): Make it accept syntax chars as is.
3372 * obsolete/sregex.el: Move from emacs-lisp/.
3373 * emacs-lisp/re-builder.el: Remove sregex support.
3374 * emacs-lisp/edebug.el (sregexq, rx): Remove redundant defs.
3375
3376 2010-12-25 Eli Zaretskii <eliz@gnu.org>
3377
3378 * mouse.el (mouse-yank-primary): On MS-Windows, try the (emulated)
3379 PRIMARY first, then the clipboard. (Bug#7699)
3380
3381 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
3382
3383 * emacs-lisp/bytecomp.el (byte-compile-output-docform): Fix up use of
3384 print-number-table.
3385
3386 2010-12-21 Chong Yidong <cyd@stupidchicken.com>
3387
3388 * help-fns.el (find-lisp-object-file-name): Locate .emacs from
3389 .emacs.elc (Bug#7530).
3390
3391 * wid-edit.el (widget-image-find): Remove bogus :ascent spec from
3392 image spec (Bug#7480).
3393
3394 2010-12-21 Daiki Ueno <ueno@unixuser.org>
3395
3396 * obsolete/pgg-parse.el, obsolete/pgg-pgp5.el, obsolete/pgg-pgp.el,
3397 * obsolete/pgg-gpg.el, obsolete/pgg-def.el, obsolete/pgg.el:
3398 Move from lisp/.
3399
3400 2010-12-20 Leo <sdl.web@gmail.com>
3401
3402 * dnd.el (dnd-get-local-file-name): Unhex of file name shall
3403 always be performed (Bug#7680).
3404
3405 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
3406
3407 * menu-bar.el (menu-bar-kill-ring-save): Make obsolete.
3408 (menu-bar-edit-menu): Bind "Copy" to kill-ring-save. Don't use
3409 mouse-region-match.
3410
3411 * color.el: Move from gnus/.
3412
3413 * vc/diff.el (diff-better-file-name): Function deleted.
3414 abbreviating file names causes problems with shell-quote-argument.
3415 (diff-no-select): Just use expand-file-name.
3416
3417 * tool-bar.el (tool-bar--image-expression): New function.
3418 (tool-bar-local-item, tool-bar--image-exp): Use it.
3419 (tool-bar-setup): Initialize tool-bar-separator-image-expression.
3420 Use :enable instead of :visible to avoid changing the tool-bar
3421 configuration unnecessarily.
3422
3423 * info.el (info-tool-bar-map): Add separators.
3424
3425 2010-12-17 Ken Brown <kbrown@cornell.edu>
3426
3427 * loadup.el: Use version numbers in Cygwin build.
3428
3429 2010-12-17 Ryan Twitchell <metatheorem@gmail.com> (tiny change)
3430
3431 * ido.el (ido-file-internal): Ask for confirmation before
3432 overwriting an existing file (Bug#1238).
3433
3434 2010-12-16 Chong Yidong <cyd@stupidchicken.com>
3435
3436 * tool-bar.el (tool-bar-setup): Add separators.
3437
3438 * menu-bar.el (featurep): Use menu-bar-separator.
3439
3440 2010-12-16 Ken Manheimer <ken.manheimer@gmail.com>
3441
3442 Migrate allout encryption provisions from pgg to epg.
3443
3444 * allout.el (allout-toggle-current-subtree-encryption)
3445 (allout-toggle-subtree-encryption): Adjust docstrings to reflect
3446 defaulting policy and other changes. Change fetch-pass to keymode-cue,
3447 for simpler universal argument interpretation.
3448 (allout-toggle-subtree-encryption): Adjust docstring to describe
3449 changed encryption provisions. Change fetch-pass to keymode-cue, for
3450 simpler universal argument interpretation. Remove provisions for
3451 handling key type and identity - they'll all be within
3452 allout-encrypt-string or epg/epg or even contained all the way in gpg.
3453 (allout-encrypt-string): Include keymode-cue, for optionally prompting
3454 for keypair recipients (universal argument > 1) and, in addition,
3455 associating the specified recipients with the outline (universal
3456 argument > 4) using a file local variable setting for
3457 'epa-file-encrypt-to'.
3458 Require epa, for recipients handling.
3459 Change how regexp filtering elements are named.
3460 Describe the problem with caching of incorrect symmetric-decryption
3461 keys.
3462 Use the epa-passphrase-callback-function, in case the user is using
3463 GnuPG v1.
3464 Support saving of the selected keypair recipients when invoked with a
3465 keymode-cue > 4.
3466 Remove obsolete arguments 'fetch-pass', 'target-cache-id', 'retried'.
3467 Require 'epa.
3468 Establish epg-context with armoring and default epg-protocol.
3469 Remove all passphrase cache, verification, and hinting code.
3470 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling):
3471 No longer used, delete.
3472 (allout-mode): Adjust docstring to describe changed encryption
3473 provisions. Describe the problem with caching of incorrect
3474 symmetric-decryption keys.
3475 (allout-obtain-passphrase, allout-epg-passphrase-callback-function)
3476 (allout-make-passphrase-state, allout-passphrase-state-passphrase)
3477 (allout-encrypted-key-info, allout-update-passphrase-mnemonic-aids)
3478 (allout-get-encryption-passphrase-verifier, allout-verify-passphrase):
3479 Obsolete, remove.
3480
3481 2010-12-16 Daiki Ueno <ueno@unixuser.org>
3482
3483 * epa-file.el (epa-file-select-keys): Accept 'silent to inhibit
3484 key selection prompt; make 'silent as default (Bug#7487).
3485
3486 2010-12-16 Leo <sdl.web@gmail.com>
3487
3488 * eshell/eshell.el (eshell-directory-name):
3489 Use locate-user-emacs-file (Bug#7578).
3490
3491 2010-12-15 Glenn Morris <rgm@gnu.org>
3492
3493 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
3494
3495 2010-12-15 Jari Aalto <jari.aalto@cante.net>
3496 Scott Evans <gse@antisleep.com>
3497
3498 * rect.el (rectange--default-line-number-format)
3499 (rectangle-number-line-callback): New functions.
3500 (rectangle-number-lines): New command, bound to C-x r N (Bug#4382).
3501
3502 2010-12-15 Chong Yidong <cyd@stupidchicken.com>
3503
3504 * rect.el (operate-on-rectangle-lines, string-rectangle-string):
3505 Delete unused variables.
3506 (move-to-column-force): Remove function obsolete since 21.2.
3507
3508 2010-12-14 Michael Albinus <michael.albinus@gmx.de>
3509
3510 * net/tramp.el (tramp-temp-buffer-file-name): Make it permanent-local.
3511 (tramp-handle-insert-file-contents): Do not set permanent-local
3512 property.
3513
3514 * net/tramp-cache.el (tramp-persistency-file-name):
3515 Use `locate-user-emacs-file' if fboundp.
3516
3517 * net/tramp-sh.el (tramp-methods): Add "ksu".
3518 (tramp-default-user-alist): Add "ksu". Use `regexp-opt' for
3519 method list.
3520
3521 2010-12-14 Glenn Morris <rgm@gnu.org>
3522
3523 * progmodes/js.el: Doc't require font-lock, etags, or easymenu.
3524 (find-tag-marker-ring): Declare.
3525 (js-find-symbol): Require etags.
3526
3527 * mail/sendmail.el: Don't require rmail or mailalias when compiling.
3528 Require mail-utils.
3529 (mail-alias-file): Don't autoload. Doc fix.
3530 (mail-bury-selects-summary, mail-send-nonascii): Don't autoload.
3531 (mail-mailer-swallows-blank-line): Default to nil. Doc fix.
3532 Mark as obsolete, and risky.
3533 (mail-setup): Simplify.
3534
3535 * mail/mailalias.el (build-mail-aliases): Make it interactive.
3536 * mail/sendmail.el (build-mail-aliases): Update autoload.
3537
3538 * dired.el (dired-trivial-filenames, dired-chown-program)
3539 (dired-auto-revert-buffer): Remove autoload cookies.
3540 * mail/sendmail.el (mail-recover-1): Require 'dired.
3541
3542 * dired.el (dired-subdir-switches, dired-chown-program)
3543 (dired-use-ls-dired, dired-chmod-program, dired-touch-program):
3544 Make into defcustoms.
3545 (dired-chown-program): Simplify initialization.
3546
3547 * mail/mail-utils.el: No need to require lisp-mode, it's in loadup.
3548
3549 2010-12-13 Romain Francoise <romain@orebokech.com>
3550
3551 * net/gnutls.el (gnutls-negotiate): Fix setting of default trustfiles.
3552
3553 2010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3554
3555 * net/netrc.el (netrc-point-at-eol): Remove the unused
3556 netrc-point-at-old and netrc-bound-and-true-p bindings.
3557 (netrc-parse): Cache the netrc contents.
3558
3559 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3560
3561 * subr.el (posn-col-row): Evaluate header-line-format in the
3562 context of the POSITION window's buffer.
3563
3564 2010-12-13 Glenn Morris <rgm@gnu.org>
3565
3566 * subr.el (member-ignore-case, run-mode-hooks, insert-for-yank-1)
3567 (with-silent-modifications): Doc fixes.
3568
3569 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
3570
3571 * net/tramp.el (tramp-action-password, tramp-process-actions):
3572 Revert previous from. Use `save-restriction'.
3573
3574 2010-12-13 Stephen Berman <stephen.berman@gmx.net>
3575
3576 * calendar/diary-lib.el (diary-list-sexp-entries):
3577 Handle case of no newline at end of file. (Bug#7536)
3578
3579 2010-12-13 Glenn Morris <rgm@gnu.org>
3580
3581 * mail/smtpmail.el (smtpmail-send-it): Revert previous change.
3582
3583 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
3584
3585 * net/tramp.el (tramp-action-password): Delete region, do not narrow.
3586 (tramp-process-actions): Do not widen.
3587
3588 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3589 Protect buffer-modified value. (Bug#7557)
3590
3591 2010-12-13 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
3592
3593 * log-edit.el (log-edit-changelog-entries):
3594 Regexp quote filename. (Bug#7505)
3595
3596 2010-12-13 Tom Breton <tehom@panix.com>
3597
3598 * cus-edit.el (custom-save-all):
3599 Bind print-length and print-level to nil. (Bug#7581)
3600
3601 2010-12-13 Glenn Morris <rgm@gnu.org>
3602
3603 * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
3604 Run hooks to update menu contents. (Bug#7586)
3605
3606 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
3607 file names, for the sake of MS Windows. (Bug#7588)
3608
3609 2010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3610
3611 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
3612 empty lines without a leading space.
3613
3614 2010-12-13 Leo <sdl.web@gmail.com>
3615
3616 * dired-aux.el (dired-do-redisplay): Postpone dired-after-readin-hook
3617 while mapping over marks (Bug#6810).
3618
3619 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3620
3621 * image-dired.el (image-dired-db-file)
3622 (image-dired-temp-image-file, image-dired-gallery-dir)
3623 (image-dired-temp-rotate-image-file): Set default values relative
3624 to image-dired-dir (Bug#7518).
3625
3626 2010-12-13 Lawrence Mitchell <wence@gmx.li>
3627
3628 * format.el (format-decode-run-method): Pass args FROM and TO, not
3629 point-min and point-max, to shell-command-on-region (Bug#7488).
3630
3631 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3632
3633 * frame.el (blink-cursor-mode): Make default t for ns.
3634
3635 2010-12-13 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
3636
3637 * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
3638
3639 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3640
3641 * comint.el (comint-dynamic-list-input-ring)
3642 (comint-dynamic-complete-filename)
3643 (comint-replace-by-expanded-filename)
3644 (comint-dynamic-simple-complete)
3645 (comint-dynamic-list-filename-completions)
3646 (comint-dynamic-list-completions): Doc fix (Bug#7499).
3647
3648 * subr.el (posn-x-y, posn-object-x-y, posn-object-width-height):
3649 Doc fix (Bug#7471).
3650
3651 2010-12-13 Martin Rudalics <rudalics@gmx.at>
3652
3653 * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil
3654 (Bug#7533).
3655
3656 2010-12-13 W. Martin Borgert <debacle@debian.org> (tiny change)
3657
3658 * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode.
3659 (Bug#7491).
3660
3661 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3662
3663 * files.el (file-relative-name): Handle UNC file names on
3664 DOS/Windows. (Bug#4674)
3665
3666 2010-12-13 Daiki Ueno <ueno@unixuser.org>
3667
3668 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
3669 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
3670 (epg-context-set-passphrase-callback): Mention that the callback
3671 is not called when used with GnuPG 2.x.
3672
3673 2010-12-13 Glenn Morris <rgm@gnu.org>
3674
3675 * ps-print.el (ps-line-lengths-internal, ps-nb-pages):
3676 Ensure ps-footer-font-size-internal is initialized.
3677 Call ps-get-page-dimensions before trying to use ps-font-for-text.
3678
3679 2010-12-13 Kenichi Handa <handa@m17n.org>
3680
3681 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
3682 within condition-case.
3683 (rmail-show-mime): Don't use condition-case.
3684 (rmail-search-mime-message): New function.
3685 (rmail-search-mime-message-function): Set to
3686 rmail-search-mime-message.
3687
3688 2010-12-13 Leo <sdl.web@gmail.com>
3689
3690 * ido.el (ido-common-initialization): New function. (bug#3274)
3691 (ido-mode): Use it.
3692 (ido-completing-read): Call it.
3693
3694 2010-12-12 Karl Fogel <kfogel@red-bean.com>
3695
3696 * bookmark.el (bookmark-name-from-full-record): Rename back to
3697 this original name from `bookmark-name-from-record' reverting part
3698 of 2010-12-08T08:09:27Z!kfogel@red-bean.com / kfogel@red-bean.com-20101208080927-5j9jqnb2xvcw4ogm.
3699 As Drew Adams pointed out, there was no reason to cause churn for
3700 third-party callers. (Bug#7609)
3701
3702 2010-12-12 Alan Mackenzie <acm@muc.de>
3703
3704 * progmodes/cc-engine.el (c-forward-type): Before scanning a
3705 template arglist, check that the current language supports this.
3706
3707 2010-12-11 Glenn Morris <rgm@gnu.org>
3708
3709 * vc/vc-bzr.el (vc-bzr-state-heuristic): Also check that the executable
3710 state of the file matches. (Bug#7544)
3711 (vc-bzr-register, vc-bzr-checkin)
3712 (vc-bzr-annotate-extract-revision-at-line): Doc fixes.
3713 (vc-directory-exclusion-list): Remove unnecessary eval-after-load.
3714
3715 * textmodes/sgml-mode.el (sgml-xml-guess): Add .xhtml extension.
3716
3717 2010-12-11 Karel Klíč <kklic@redhat.com>
3718
3719 * files.el (auto-mode-alist): Use html-mode for *.xhtml. (Bug#7606)
3720
3721 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3722
3723 Derive from prog-mode, use derived-mode-p, and fix up various
3724 minor style issues in lisp/progmodes.
3725
3726 * progmodes/vhdl-mode.el (vhdl-mode):
3727 * progmodes/verilog-mode.el (verilog-mode):
3728 * progmodes/vera-mode.el (vera-mode):
3729 * progmodes/sql.el (sql-mode):
3730 * progmodes/scheme.el (scheme-mode):
3731 * progmodes/perl-mode.el (perl-mode):
3732 * progmodes/octave-inf.el (inferior-octave-mode):
3733 * progmodes/autoconf.el (autoconf-mode):
3734 * progmodes/m4-mode.el (m4-mode):
3735 * progmodes/inf-lisp.el (inferior-lisp-mode):
3736 * progmodes/idlwave.el (idlwave-mode):
3737 * progmodes/icon.el (icon-mode):
3738 * progmodes/idlw-help.el (idlwave-help-mode):
3739 * progmodes/dcl-mode.el (dcl-mode):
3740 * progmodes/idlw-shell.el (idlwave-shell-mode):
3741 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
3742 (ebrowse-member-mode, ebrowse-electric-position-mode):
3743 Use define-derived-mode.
3744
3745 * progmodes/xscheme.el (exit-scheme-interaction-mode)
3746 (xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
3747 (xscheme-debugger-mode-p, xscheme-send-string-1):
3748 * progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
3749 (tcl-load-file, tcl-restart-with-file):
3750 * progmodes/ps-mode.el (ps-run-running):
3751 * progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
3752 * progmodes/js.el (js--get-all-known-symbols):
3753 * progmodes/inf-lisp.el (inferior-lisp-proc):
3754 * progmodes/idlwave.el (idlwave-beginning-of-statement)
3755 (idlwave-template, idlwave-update-buffer-routine-info)
3756 (idlwave-update-current-buffer-info)
3757 (idlwave-get-routine-info-from-buffers, idlwave-choose)
3758 (idlwave-scan-class-info, idlwave-fix-keywords)
3759 (idlwave-list-buffer-load-path-shadows):
3760 * progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
3761 (idlwave-toolbar-remove):
3762 * progmodes/idlw-shell.el (idlwave-shell-save-and-action)
3763 (idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
3764 (idlwave-shell-menu-def):
3765 * progmodes/idlw-complete-structtag.el
3766 (idlwave-prepare-structure-tag-completion):
3767 * progmodes/gud.el (gud-set-buffer):
3768 * progmodes/f90.el (f90-backslash-not-special):
3769 * progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
3770
3771 * progmodes/xscheme.el (xscheme-start)
3772 (local-set-scheme-interaction-buffer, scheme-interaction-mode):
3773 * progmodes/which-func.el (which-function):
3774 * progmodes/vhdl-mode.el (vhdl-set-style):
3775 * progmodes/verilog-mode.el (verilog-set-compile-command)
3776 (verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
3777 (verilog-set-define, verilog-auto-reeval-locals):
3778 * progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
3779 * progmodes/simula.el (simula-mode):
3780 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
3781 * progmodes/python.el (python-check, python-mode):
3782 * progmodes/prolog.el (prolog-mode-variables):
3783 * progmodes/gud.el (gud-tooltip-activate-mouse-motions):
3784 * progmodes/ebrowse.el (ebrowse-view-file-other-frame):
3785 * progmodes/delphi.el (delphi-mode):
3786 * progmodes/cc-styles.el (c-setup-paragraph-variables):
3787 * progmodes/cc-mode.el (c-basic-common-init, c-common-init)
3788 (c-font-lock-init): Move make-local-variable to their setq.
3789
3790 * progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
3791 (vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
3792 make-local-hook.
3793 * progmodes/sh-script.el (sh-require-final-newline): Remove.
3794 (sh-set-shell): Don't set require-final-newline since it's already done
3795 by prog-mode.
3796 * progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
3797 since we never set it.
3798 * progmodes/ebrowse.el (ebrowse-set-tree-indentation):
3799 Use read-string and standard prompt.
3800 * progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
3801 * progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
3802 (meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
3803 (meta-common-mode-map): Rename from meta-mode-map.
3804 Remove C-m binding, which is a user preference, not mode specific.
3805 (meta-common-mode): New major mode; replace meta-common-initialization.
3806 * progmodes/js.el (js-mode): Call syntax-propertize rather than messing
3807 around with font-lock.
3808 * progmodes/etags.el (select-tags-table-mode):
3809 Derive from special-mode.
3810 * progmodes/octave-mod.el (octave-mode):
3811 * progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
3812 (gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
3813 (gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
3814 Let define-derived-mode do its job.
3815 * progmodes/cpp.el (cpp-edit-mode-map):
3816 Move initialization into declaration.
3817 (cpp-edit-mode): Use define-derived-mode.
3818 (cpp-edit-load): Use derived-mode-p.
3819 * progmodes/mixal-mode.el (mixal-mode):
3820 * progmodes/f90.el (f90-mode):
3821 * progmodes/cfengine.el (cfengine-mode): Don't bother setting
3822 require-final-newline since prog-mode does it already.
3823 * progmodes/cc-cmds.el (c-update-modeline): Use match-string.
3824 * progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
3825 * progmodes/antlr-mode.el: Require cc-mode upfront.
3826 (antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
3827 the declaration.
3828 (antlr-directory-dependencies, antlr-show-makefile-rules):
3829 Use derived-mode-p.
3830 (antlr-language-option): Don't assume point-min==1.
3831 (antlr-mode): Use define-derived-mode.
3832 * progmodes/ada-mode.el: Use derived-mode-p.
3833 (ada-mode): Use define-derived-mode.
3834 Use hack-local-variables-hook.
3835
3836 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3837
3838 * textmodes/texinfo.el (texinfo-mode-map): Bind texinfo-insert-@end.
3839 (texinfo-mode): Don't disable adaptive-fill-mode.
3840 (texinfo-insert-block): Adjust cursor placement for blocks with arg.
3841 (texinfo-insert-@end, texinfo-insert-braces, texinfo-insert-@code)
3842 (texinfo-insert-@dfn, texinfo-insert-@email, texinfo-insert-@emph)
3843 (texinfo-insert-@example, texinfo-insert-@file, texinfo-insert-@item)
3844 (texinfo-insert-@kbd, texinfo-insert-@node, texinfo-insert-@noindent)
3845 (texinfo-insert-@quotation, texinfo-insert-@samp)
3846 (texinfo-insert-@strong, texinfo-insert-@table, texinfo-insert-@var)
3847 (texinfo-insert-@uref): Use define-skeleton.
3848 (texinfo-insert-@-with-arg): Delete.
3849
3850 2010-12-10 Eli Zaretskii <eliz@gnu.org>
3851
3852 * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
3853 nil, do quote archive member names. (Bug#6144)
3854
3855 2010-12-10 Glenn Morris <rgm@gnu.org>
3856
3857 * files.el (diff-no-select): Declare.
3858
3859 * mail/emacsbug.el (report-emacs-bug): Use mail-user-agent properties.
3860 (report-emacs-bug-create-existing-bugs-buffer): Avoid free variables.
3861
3862 * comint.el (comint-input-ring-file-name): Doc fix.
3863
3864 2010-12-09 Eli Zaretskii <eliz@gnu.org>
3865
3866 * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
3867 New functions.
3868 (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>:
3869 Use them instead of `nil' and `>', respectively.
3870 (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
3871 instead of `nil'.
3872 (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
3873 and menu-bar-positive-p instead of `nil' and `>', respectively.
3874 (Bug#1077)
3875
3876 2010-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3877
3878 * whitespace.el (whitespace-newline-mode): Code fix.
3879
3880 2010-12-09 Glenn Morris <rgm@gnu.org>
3881
3882 * play/landmark.el (lm-print-y,s,noise-int, lm-print-y,s,noise):
3883 Rename functions without commas, update callers.
3884
3885 2010-12-08 Jeff Dairiki <dairiki@dairiki.org> (tiny change)
3886
3887 * whitespace.el (whitespace-cleanup-region):
3888 Clean up spaces before tabs. (Bug#7582)
3889
3890 2010-12-08 Karl Fogel <kfogel@red-bean.com>
3891
3892 * bookmark.el: Adjust parameter names and doc strings to resolve
3893 confusion over whether "bookmark" meant a bookmark name or a
3894 bookmark record. Along the way, shorten one function's name for
3895 similar reasons. (Issue #7548)
3896 (bookmark-name-from-record): New name for
3897 `bookmark-name-from-full-record'. All callers changed.
3898 (bookmark-get-bookmark, bookmark-get-bookmark-record)
3899 (bookmark-default-annotation-text, bookmark-prop-get, bookmark-prop-set)
3900 (bookmark-get-annotation, bookmark-set-annotation)
3901 (bookmark-get-filename, bookmark-set-filename)
3902 (bookmark-get-position, bookmark-set-position)
3903 (bookmark-get-front-context-string, bookmark-set-front-context-string)
3904 (bookmark-get-rear-context-string, bookmark-set-rear-context-string)
3905 (bookmark-get-handler, bookmark-edit-annotation, bookmark--jump-via)
3906 (bookmark-handle-bookmark, bookmark-location, bookmark-show-annotation):
3907 Rename `bookmark' parameter to `bookmark-name-or-record', to
3908 clearly show its role, and shorten or adjust doc strings accordingly.
3909 (bookmark-set-name): Same, and pass the parameter directly to
3910 `bookmark-get-bookmark' instead of redundantly doing the callee's work.
3911 (bookmark-default-annotation-text, bookmark-send-edited-annotation)
3912 (bookmark-relocate, bookmark-insert-location, bookmark-insert)
3913 (bookmark-delete): Rename `bookmark' parameter to `bookmark-name',
3914 and in some cases shorten doc string accordingly.
3915 (bookmark-rename): Change `old' and `new' parameters to `old-name'
3916 and `new-name', and adjust an internal variable to avoid confusion.
3917 (bookmark-jump, bookmark-jump-noselect): Clarify `bookmark'
3918 parameter in doc string.
3919
3920 2010-12-08 Glenn Morris <rgm@gnu.org>
3921
3922 * progmodes/gdb-mi.el (gdb): Try to initialize comint input history
3923 from gdb's history file. (Bug#7575)
3924
3925 * mail/emacsbug.el (report-emacs-bug):
3926 Try to handle some other mail clients.
3927
3928 2010-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3929
3930 * files.el (dir-locals-collect-variables): Don't let errors stop us.
3931 Use string-prefix-p.
3932 (file-name-version-regexp): New var.
3933 (file-name-sans-versions):
3934 * jka-cmpr-hook.el (jka-compr-build-file-regexp): Use it,
3935 (jka-compr-get-compression-info): Use dolist.
3936 (jka-compr-compression-info-list): Don't bother specifying
3937 version/backup regexps.
3938
3939 2010-12-07 Tassilo Horn <tassilo@member.fsf.org>
3940
3941 * simple.el (just-one-space): Make argument n default to 1 if
3942 omitted.
3943
3944 2010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3945
3946 * electric.el (electric-indent-post-self-insert-function):
3947 Delete trailing newlines even if we don't reindent.
3948
3949 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3950
3951 * minibuffer.el (completion-at-point): Remove the `arg'.
3952 * bindings.el (complete-symbol): Move back from minibuffer.el.
3953
3954 2010-12-06 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3955
3956 * simple.el (just-one-space): Delete newlines for negative arg.
3957
3958 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3959
3960 * ansi-color.el (ansi-color-unfontify-region): Replace by trivial def.
3961 (ansi-color-filter-apply): Simplify.
3962 (ansi-color-apply): Use `font-lock-face' rather than `face'.
3963
3964 2010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
3965
3966 * vc/vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
3967
3968 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
3969
3970 * dired.el (dired-use-ls-dired): Set default to a special
3971 "unspecified" value.
3972 (dired-insert-directory): When called the first time, check
3973 whether "ls --dired" succeeds and set dired-use-ls-dired (Bug#7546).
3974
3975 2010-12-04 Tak Ota <Takaaki.Ota@am.sony.com>
3976
3977 * replace.el: Add "collect" feature to occur.
3978 (occur-collect-regexp-history): New var.
3979 (occur-read-primary-args): Return a replace string for nlines,
3980 if needed.
3981 (occur): Extend the meaning of nlines.
3982
3983 2010-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3984
3985 * progmodes/which-func.el (which-func-ff-hook): Log the error message.
3986 (which-func-update-1): Distinguish symbols from strings.
3987 (which-function): Stay within 80 columns.
3988
3989 2010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3990
3991 * subr.el (with-demoted-errors): Distinguish symbols from strings.
3992
3993 * newcomment.el (comment-styles): Add docs to each style (bug#7509).
3994 Improve docstring.
3995 (comment-style): Use comment-styles's docs to describe values.
3996
3997 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
3998
3999 * term/common-win.el (x-setup-function-keys): Restore ns-new-frame
4000 and ns-show-prefs (Bug#7535).
4001
4002 * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
4003 bindings (Bug#7535).
4004
4005 2010-12-03 Glenn Morris <rgm@gnu.org>
4006
4007 * nxml/nxml-mode.el: Require rng-nxml.
4008 (rng-nxml-mode-init, nxml-enable-unicode-char-name-sets):
4009 Remove declarations.
4010
4011 * nxml/nxml-mode.el, nxml/nxml-outln.el, nxml/rng-loc.el:
4012 * nxml/rng-nxml.el, nxml/rng-valid.el:
4013 Remove leading `*' from defcustom docs.
4014
4015 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
4016 (normal-top-level-add-to-load-path, tty-handle-args):
4017 Convert comments to basic doc-strings.
4018
4019 * net/browse-url.el (browse-url-url-at-point)
4020 (browse-url-default-browser): Remove autoload cookies.
4021
4022 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4023 Remove more undefined cl functions.
4024
4025 * vc/diff.el (diff-sentinel): Make new arguments optional.
4026 * ibuf-ext.el (diff-sentinel): Update declaration.
4027
4028 2010-12-03 Daiki Ueno <ueno@unixuser.org>
4029
4030 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
4031 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
4032 (epg-context-set-passphrase-callback): Mention that the callback
4033 is not called when used with GnuPG 2.x.
4034
4035 2010-12-02 Michael Albinus <michael.albinus@gmx.de>
4036
4037 * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
4038 (tramp-file-name-port): Check also for `tramp-default-port'.
4039 (tramp-get-connection-name): New defun.
4040 (tramp-get-connection-process): Use it.
4041 (tramp-debug-message): Extend function exclude list.
4042 (tramp-drop-volume-letter): Fix doc string.
4043
4044 * net/tramp-cmds.el: Remove solved todo item.
4045
4046 * net/tramp-ftp.el:
4047 * net/tramp-gvfs.el:
4048 * net/tramp-gw.el:
4049 * net/tramp-imap.el:
4050 * net/tramp-smb.el: Fix regexps added to `tramp-default-method-alist'
4051 and `tramp-default-user-alist', respectively.
4052
4053 * net/tramp-gw.el (tramp-gw-open-connection):
4054 Use `tramp-get-connection-name' and `tramp-get-connection-buffer'.
4055
4056 * net/tramp-imap.el (tramp-imap-make-iht): Use just
4057 `tramp-file-name-port'.
4058
4059 * net/tramp-sh.el (tramp-methods): Add recursive options to "pscp"
4060 and "psftp". Exchange "%k" marker with options.
4061 (tramp-do-copy-or-rename-file, tramp-sh-handle-file-local-copy):
4062 Compute size of link target.
4063 (tramp-do-copy-or-rename-file-out-of-band): Move setting of
4064 `tramp-current-*' up due to gateway methods. Optimize computing of
4065 copy arguments. Use `tramp-get-connection-name' and
4066 `tramp-get-connection-buffer'. Improve debug messages.
4067 (tramp-compute-multi-hops): Remove port determination.
4068 (tramp-maybe-open-connection): Use `tramp-get-connection-name'.
4069
4070 * net/trampver.el: Update release number.
4071
4072 2010-12-02 Glenn Morris <rgm@gnu.org>
4073
4074 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
4075 Avoid infinite loop over windows. (Bug#7492)
4076
4077 * progmodes/flymake.el (flymake-check-file-limit):
4078 Allow nil to mean "no limit".
4079 (flymake-check-patch-master-file-buffer): Update for above change.
4080 Allow a .tex file-name extension to be optional.
4081 (flymake-master-tex-init): Also match \include statements.
4082
4083 2010-11-30 Sam Steingold <sds@gnu.org>
4084
4085 * nxml/nxml-mode.el (nxml-parent-document): Add a variable.
4086 (nxml-parent-document-set): A function to set `nxml-parent-document'.
4087 (nxml-mode): Define using `define-derived-mode' instead of `defun'.
4088 (nxml-mode-hook): Remove `defcustom' (auto-defined by
4089 define-derived-mode').
4090 * nxml/rng-valid.el (rng-dtd-trivial-p): Add a helper function for
4091 users who want to call `nxml-parent-document-set'.
4092
4093 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4094
4095 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
4096 stand-alone lines, since that is handled by log-edit-match-to-eoh
4097 (Bug#6465).
4098
4099 2010-11-27 Eduard Wiebe <usenet@pusto.de>
4100
4101 * dired.el (dired-get-filename): Replace backslashes with slashes
4102 in file names on MS-Windows, needed by `locate'. (Bug#7308)
4103 * locate.el (locate-default-make-command-line): Don't consider
4104 drive letter and root directory part of
4105 `directory-listing-before-filename-regexp'. (Bug#7308)
4106 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
4107
4108 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4109
4110 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
4111 of :smie-open/close-alist.
4112 (smie-next-sexp): Make it accept a "start token" as argument.
4113 (smie-indent-keyword): Be careful not to misidentify tokens that span
4114 more than one line, as empty lines. Add argument `token'.
4115
4116 2010-11-27 Kenichi Handa <handa@m17n.org>
4117
4118 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
4119 multipart subtypes, insert all as usual.
4120
4121 * mail/rmail.el: Require rfc2047.
4122
4123 2010-11-27 Kenichi Handa <handa@m17n.org>
4124
4125 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
4126 (rmail-mime-entity-disposition)
4127 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
4128 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
4129 (rmail-mime-save): Handle the case that the button's `data' is a
4130 MIME entity.
4131 (rmail-mime-insert-text): New function.
4132 (rmail-mime-insert-image): Handle the case that DATA is a MIME entity.
4133 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
4134 (rmail-mime-insert-bulk): New function mostly copied from the old
4135 rmail-mime-bulk-handler.
4136 (rmail-mime-multipart-handler): Just call rmail-mime-process-multipart.
4137 (rmail-mime-process-multipart): New function mostly copied from
4138 the old rmail-mime-multipart-handler.
4139 (rmail-mime-show): Just call rmail-mime-process.
4140 (rmail-mime-process): New function mostly copied from the old
4141 rmail-mime-show.
4142 (rmail-mime-insert-multipart, rmail-mime-parse)
4143 (rmail-mime-insert, rmail-show-mime)
4144 (rmail-insert-mime-forwarded-message)
4145 (rmail-insert-mime-resent-message): New functions.
4146 (rmail-insert-mime-forwarded-message-function): Set to
4147 rmail-insert-mime-forwarded-message.
4148 (rmail-insert-mime-resent-message-function): Set to
4149 rmail-insert-mime-resent-message.
4150
4151 * mail/rmailsum.el: Require rfc2047.
4152 (rmail-header-summary): Handle multiline Subject: field.
4153 (rmail-summary-line-decoder): Change the default to
4154 rfc2047-decode-string.
4155
4156 * mail/rmail.el (rmail-enable-mime): Change the default to t.
4157 (rmail-mime-feature): Change the default to `rmailmm'.
4158 (rmail-quit): Delete the specifal code for rmail-enable-mime.
4159 (rmail-display-labels): Likewise.
4160 (rmail-show-message-1): Check rmail-enable-mime, and use
4161 rmail-show-mime-function for a MIME message. Decode the headers
4162 according to RFC2047.
4163
4164 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4165
4166 * progmodes/which-func.el (which-func-imenu-joiner-function):
4167 Return a string, as expected.
4168 (which-function-mode): Make sure we stop any previous timer before
4169 starting a new one.
4170
4171 2010-11-27 Michael Albinus <michael.albinus@gmx.de>
4172
4173 * net/tramp.el (tramp-default-method-alist)
4174 (tramp-default-user-alist, tramp-default-proxies-alist):
4175 Adapt custom options type. (Bug#7445)
4176
4177 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4178
4179 * progmodes/python.el: Add Ipython support (Bug#5390).
4180 (python-shell-prompt-alist)
4181 (python-shell-continuation-prompt-alist): New options.
4182 (python--set-prompt-regexp): New function.
4183 (inferior-python-mode, run-python, python-shell):
4184 Require ansi-color. Use python--set-prompt-regexp to set the comint
4185 prompt based on the Python interpreter.
4186 (python--prompt-regexp): New var.
4187 (python-check-comint-prompt)
4188 (python-comint-output-filter-function): Use it.
4189 (run-python): Use a pipe (Bug#5694).
4190
4191 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4192
4193 * progmodes/python.el (run-python): Doc fix.
4194 (python-keep-current-directory-in-path): New var (Bug#7454).
4195
4196 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4197
4198 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4199 Prompt user before actually printing.
4200
4201 2010-11-27 Glenn Morris <rgm@gnu.org>
4202
4203 * startup.el (package-enable-at-startup, package-initialize):
4204 Remove unnecessary declarations.
4205
4206 2010-11-27 Eli Zaretskii <eliz@gnu.org>
4207
4208 * international/characters.el (glyphless-char-display-control):
4209 Exclude newline and TAB from the c0-control group.
4210
4211 2010-11-27 Glenn Morris <rgm@gnu.org>
4212
4213 * mail/sendmail.el (build-mail-aliases): Doc fix for autoload.
4214 (expand-mail-aliases): Remove unnecessary autoload.
4215
4216 * allout.el (allout-command-prefix, allout-mode-map): Declare.
4217
4218 * shell.el (shell-dir-cookie-re): Move definition before use.
4219
4220 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4221 Replace undefined CL functions.
4222
4223 2010-11-26 Eli Zaretskii <eliz@gnu.org>
4224
4225 * simple.el (prog-mode): Set bidi-paragraph-direction to
4226 left-to-right.
4227
4228 * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
4229
4230 2010-11-26 Glenn Morris <rgm@gnu.org>
4231
4232 * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
4233 diary-outlook-formats can be sensitive to calendar-date-style.
4234 (diary-outlook-formats): Simplify the default setting.
4235 (diary-from-outlook-internal): Pass subject and body as arguments.
4236 Use dolist rather than dotimes. Don't save the diary buffer.
4237 (diary-from-outlook-gnus, diary-from-outlook-rmail):
4238 Pass subject and body as explicit arguments to the -internal function.
4239
4240 2010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4241
4242 * mail/rfc2368.el (rfc2368-parse-mailto-url): Unfold URLs before
4243 parsing them. This makes mailto:...?subject=foo\nbar work.
4244
4245 2010-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4246
4247 * vc/diff.el (diff): Fix last change.
4248
4249 2010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4250
4251 * emacs-lisp/pcase.el: Improve pcase-let. Use "pcase--" prefix.
4252 (pcase--dontcare-upats): New var.
4253 (pcase-let, pcase-let*): Generate better code.
4254 Accept the same bodies as `let'.
4255 (pcase-dolist): New macro.
4256 (pcase--trivial-upat-p): New helper function.
4257 (pcase--expand): Strip leading "(let nil" if any.
4258
4259 2010-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4260
4261 * mail/mailclient.el (browse-url): Require.
4262 (mailclient-send-it): Bind `browse-url-mailto-function' to nil to
4263 use the external browser function to send the mail (bug#7469).
4264
4265 * net/browse-url.el (browse-url-browser-function): Revert the
4266 default back to the previous value, since the new value broke
4267 mailclient.el.
4268 (browse-url-mailto-function): New variable for mailto: URLs.
4269 (browse-url): Use the new variable for mailto: URLs.
4270
4271 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4272
4273 * eshell/esh-cmd.el (eshell-parse-command):
4274 * eshell/esh-arg.el (eshell-parse-arguments):
4275 * eshell/em-script.el (eshell-source-file):
4276 Use with-silent-modifications.
4277
4278 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
4279
4280 * vc/vc.el (vc-merge): Remove optional arg PROMPT. Always prompt
4281 for a merge location.
4282
4283 * vc/vc-bzr.el (vc-bzr-pull): Remove unused var.
4284 (vc-bzr-merge-branch): Always prompt.
4285 (vc-bzr-async-command): Use the full branch filename.
4286
4287 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4288
4289 * shell.el (shell): Use current-buffer by default if it's already
4290 a shell mode buffer and its process is dead.
4291 Suggested by Jose E. Marchesi <jemarch@gnu.org>.
4292
4293 2010-11-23 Tassilo Horn <tassilo@member.fsf.org>
4294
4295 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4296 Mention that the keywords should be comma separated.
4297
4298 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
4299
4300 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
4301 Accept optional prefix arg meaning to prompt for a command.
4302 (vc-update): Use vc-BACKEND-pull if available. Accept optional
4303 prefix arg meaning to prompt for a command.
4304 (vc-pull): Alias for vc-update.
4305
4306 * vc/vc-bzr.el (vc-bzr-admin-branchconf, vc-bzr-history): New vars.
4307 (vc-bzr--branch-conf, vc-bzr-async-command, vc-bzr-pull)
4308 (vc-bzr-merge-branch): New functions, implementing merge-branch
4309 and pull operations.
4310
4311 2010-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
4312
4313 * Makefile.in: Fix up last merge.
4314
4315 * vc/diff.el (diff-old-temp-file, diff-new-temp-file): Remove.
4316 (diff-sentinel): Get them as arguments instead.
4317 (diff-old-file, diff-new-file, diff-extra-args): Remove.
4318 (diff-file-local-copy, diff-better-file-name): New funs.
4319 (diff-no-select): Rename from diff-into-buffer.
4320 Support buffers additionally to files. Move `buf' arg. Don't display buf.
4321 Prefer closures to buffer-local variables.
4322 (diff): Adjust accordingly.
4323 (diff-buffer-with-file): Move from files.el.
4324 * files.el (diff-buffer-with-file): Move to vc/diff.el.
4325 (diff-buffer-internal): Remove.
4326 (diff-buffer-buffer): Remove.
4327 (save-some-buffers-action-alist): Use diff-no-select so as not to guess
4328 the buffer name used, and so as not to mess up windows and frames.
4329
4330 2010-11-22 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
4331
4332 * files.el: Make revert work with diff-buffer-with-file (bug#7277).
4333 (diff-buffer-internal): New function extracted from diff-buffer-with-file
4334 (diff-buffer-with-file): Use it.
4335 * vc/diff.el (diff-into-buffer): New fun, extracted from diff.
4336 (diff): Use it.
4337
4338 2010-11-22 Tassilo Horn <tassilo@member.fsf.org>
4339
4340 * textmodes/reftex-ref.el (reftex-goto-label): Use the current
4341 \ref's or \pageref's value as default instead of initial input.
4342
4343 2010-11-21 Michael Albinus <michael.albinus@gmx.de>
4344
4345 * files.el (backup-by-copying-when-mismatch): The default value is
4346 now t.
4347
4348 * startup.el (normal-top-level):
4349 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
4350 `backup-by-copying-when-mismatch'.
4351
4352 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4353
4354 * tool-bar.el (tool-bar-setup): Remove save as, print and customize.
4355
4356 2010-11-21 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4357
4358 * progmodes/python.el (python-font-lock-keywords):
4359 Highlight top-level augmented assignments (Bug#6445).
4360
4361 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4362
4363 * term/ns-win.el (ns-right-control-modifier)
4364 (ns-right-command-modifier): Defvar them.
4365
4366 * cus-start.el (all): Add ns-right-control-modifier and
4367 ns-right-command-modifier (Bug#7458).
4368
4369 2010-11-20 Glenn Morris <rgm@gnu.org>
4370
4371 * emacs-lisp/authors.el (authors-ignored-files)
4372 (authors-valid-file-names, authors-renamed-files-alist): Add entries.
4373
4374 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4375
4376 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs)
4377 (report-emacs-bug-parse-query-results)
4378 (report-emacs-bug-create-existing-bugs-buffer): Pass through
4379 keywords used for querying the bug database to show them in the
4380 existing bugs buffer.
4381
4382 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
4383
4384 * tool-bar.el (tool-bar-setup): Add some :vert-only keywords.
4385
4386 * info.el (info-tool-bar-map): Add some :vert-only keywords.
4387
4388 2010-11-20 Eli Zaretskii <eliz@gnu.org>
4389
4390 * international/characters.el (glyphless-char-display-control):
4391 Make it a defcustom, with update-glyphless-char-display as its
4392 :set attribute.
4393 (top level): Don't call update-glyphless-char-display.
4394
4395 2010-11-20 Michael Albinus <michael.albinus@gmx.de>
4396
4397 Sync with Tramp 2.2.0.
4398
4399 * net/tramp.el (tramp-handle-insert-file-contents): Don't use
4400 `file-remote-p' (due to compatibility).
4401
4402 * net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
4403 (tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
4404
4405 * net/trampver.el: Update release number.
4406
4407 2010-11-20 Eli Zaretskii <eliz@gnu.org>
4408
4409 * faces.el (glyphless-char): Define value for `pc'.
4410
4411 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4412
4413 Implemented a bug querying mechanism.
4414 * mail/emacsbug.el (report-emacs-bug-tracker-url): New variable.
4415 (report-emacs-bug-create-existing-bugs-buffer)
4416 (report-emacs-bug-parse-query-results)
4417 (report-emacs-bug-query-existing-bugs): New functions.
4418
4419 2010-11-19 Tassilo Horn <tassilo@member.fsf.org>
4420
4421 * textmodes/reftex-ref.el (reftex-goto-label): If point is inside
4422 a \ref{} or \pageref{} macro, then use its value as initial input.
4423
4424 2010-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4425
4426 * calc/calc-units.el (math-build-units-table-buffer):
4427 calc/README: Mention that the TeX specific units won't use the
4428 `tex' prefix in TeX mode.
4429 calc/calc-lang.el (math-variable-table): Don't use the `tex'
4430 prefix for units in TeX mode.
4431
4432 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4433
4434 * simple.el (kill-new, kill-append, kill-region):
4435 * comint.el (comint-kill-region): Make the yank-handler argument
4436 obsolete.
4437
4438 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4439
4440 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
4441 that are both openers (resp. closers) and something else.
4442 (smie-grammar): Loosen definition of valid values.
4443 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
4444 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
4445 (smie-indent-after-keyword): Adjust users.
4446 (smie-indent-keyword): Don't indent empty lines.
4447
4448 * vc-hg.el (vc-hg-program): New var.
4449 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
4450 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
4451
4452 2010-11-18 Glenn Morris <rgm@gnu.org>
4453
4454 * emacs-lisp/autoload.el (autoload-find-destination): The function
4455 coding-system-eol-type may return non-numeric values. (Bug#7414)
4456
4457 2010-11-18 Ulrich Mueller <ulm@gentoo.org>
4458
4459 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
4460
4461 2010-11-18 Eli Zaretskii <eliz@gnu.org>
4462
4463 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
4464
4465 2010-11-18 Chong Yidong <cyd@stupidchicken.com>
4466
4467 * textmodes/picture.el (picture-mouse-set-point): Don't use
4468 posn-col-row; explicitly compute the motion based on the posn at
4469 the window-start (Bug#7390).
4470
4471 2010-11-18 Glenn Morris <rgm@gnu.org>
4472
4473 * novice.el (disabled-command-function):
4474 Fix 2009-11-15 change. (Bug#7384)
4475
4476 2010-11-18 Glenn Morris <rgm@gnu.org>
4477
4478 * calendar/calendar.el (diary-iso-date-forms): Make elements
4479 mutually exclusive. (Bug#7377)
4480
4481 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4482
4483 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
4484 when filling the remaining "unconstrained" values.
4485
4486 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4487
4488 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
4489 safety predicate.
4490
4491 * files.el (safe-local-variable-p): Gracefully handle errors.
4492
4493 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
4494 Use smie-indent-virtual when indenting relative to an opener.
4495 (smie-rule-separator): Use smie-rule-parent.
4496 (smie-indent-keyword): Consult rules, even for openers at bol.
4497 (smie-indent-comment-close): Try to align closer's content.
4498
4499 2010-11-18 Glenn Morris <rgm@gnu.org>
4500
4501 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
4502
4503 2010-11-18 Glenn Morris <rgm@gnu.org>
4504
4505 * printing.el (pr-menu-bind): Doc fix.
4506
4507 * speedbar.el (speedbar-toggle-images): Doc fix.
4508
4509 * progmodes/python.el (python-shell): Doc fix.
4510
4511 * wid-edit.el (widget-field-use-before-change)
4512 (widget-use-overlay-change): Doc fixes.
4513
4514 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4515
4516 Minor cleanup to improve style.
4517 * textmodes/rst.el (rst-update-section): Use point-marker.
4518 (rst-get-decoration): Eliminate unneeded assignment.
4519 (rst-promote-region, rst-straighten-decorations)
4520 (rst-section-tree, rst-adjust): Use point-marker.
4521 (rst-toc-mode-mouse-goto): Avoid setq.
4522 (rst-shift-region-guts, rst-shift-region-left)
4523 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2)
4524 (rst-convert-bullets-to-enumeration): Use copy-marker.
4525
4526 * minibuffer.el (completion-fail-discreetly): New var.
4527 (completion--do-completion): Use it.
4528
4529 * electric.el (electric-pair-pairs): New var.
4530 (electric-pair-post-self-insert-function): Use it.
4531 (electric-layout-post-self-insert-function): Don't insert a before
4532 newline unless it's actually needed.
4533
4534 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
4535
4536 * progmodes/python.el (run-python): Explain why we remove the current
4537 directory from sys.path. Suggested by Eric Hanchrow <erich@cozi.com>.
4538
4539 * progmodes/grep.el (grep-regexp-alist): Tighten the regexp (bug#7378).
4540
4541 2010-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4542
4543 * progmodes/octave-mod.el: Rely on elecric-*-modes.
4544 (octave-mode-map): Don't bind ;, SPC, and LF.
4545 (octave-auto-indent, octave-auto-newline): Remove.
4546 (electric-layout-rules): Declare.
4547 (octave-mode): Set electric-layout-rules.
4548 (octave-indent-new-comment-line): Use reindent-then-newline-and-indent.
4549 (octave-reindent-then-newline-and-indent, octave-electric-semi)
4550 (octave-electric-space): Remove.
4551
4552 * electric.el (electric-layout-mode): New minor mode.
4553 (electric--after-char-pos): New function.
4554 (electric-indent-post-self-insert-function): Use it.
4555 (electric-layout-rules): New var.
4556 (electric-layout-post-self-insert-function): New function.
4557 (electric-indent-mode): Make them interact better.
4558
4559 2010-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4560
4561 * emacs-lisp/checkdoc.el (checkdoc-syntax-table): Fix last change.
4562 (checkdoc-sentencespace-region-engine, checkdoc-this-string-valid)
4563 (checkdoc-proper-noun-region-engine): Use with-syntax-table.
4564
4565 2010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
4566
4567 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
4568 Make sure to check inside the word (Bug#6761).
4569
4570 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
4571
4572 * startup.el (command-line): If the cursorColor resource is set,
4573 change the cursor face-spec (Bug#7392).
4574
4575 2010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
4576
4577 The main features of the following allout.el changes are:
4578 - implement user customization for the allout key bindings
4579 - add a customization control by which the user can inhibit use of
4580 a trailing Ctrl-H, so by default it's reserved for use with
4581 describe-prefix-bindings
4582 - adapt to new version of called-interactively-p, while
4583 maintaining backwards compatibility with old version
4584 - fix hotspot navigation so i works properly with meta-modified keys.
4585
4586 * allout.el (allout-keybindings, allout-bind-keys)
4587 (allout-keybindings-binding, allout-prefixed-keybindings)
4588 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
4589 (allout-keybindings-list, allout-mode-map-adjustments)
4590 (allout-setup-mode-map): Establish allout-mode keymaps as user
4591 customizable settings, and also establish a customizable setting which
4592 regulates whether or not a trailing control-h is reserved for use with
4593 describe-prefix-bindings - and inhibit it by default, so that control-h
4594 *is* reserved for describe-prefix-bindings unless the user changes it.
4595
4596 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
4597 and accurately between modified and unmodified events, and handle
4598 modified events more comprehensively.
4599
4600 * allout.el (allout-substring-no-properties):
4601 Alias to use or provide version of `substring-no-properties'.
4602 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
4603
4604 * allout.el (allout-next-single-char-property-change):
4605 Alias to use or provide version of `next-single-char-property-change'.
4606 (allout-annotate-hidden, allout-hide-by-annotation):
4607 Use `allout-next-single-char-property-change'.
4608
4609 * allout.el (allout-select-safe-coding-system):
4610 Alias to use or provide version of `select-safe-coding-system'.
4611 (allout-toggle-subtree-encryption):
4612 Use `allout-select-safe-coding-system'.
4613
4614 * allout.el (allout-set-buffer-multibyte):
4615 Alias to use or provide version of `set-buffer-multibyte'.
4616 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
4617
4618 * allout.el (allout-called-interactively-p): Macro for using the
4619 different versions of called-interactively-p identically, depending on
4620 the subroutine's argument signature.
4621 (allout-back-to-current-heading, allout-beginning-of-current-entry):
4622 Use `(interactive "p")' instead of `(called-interactively-p)'.
4623
4624 * allout.el (allout-init, allout-ascend, allout-end-of-level)
4625 (allout-previous-visible-heading, allout-forward-current-level)
4626 (allout-backward-current-level, allout-show-children):
4627 Use `allout-called-interactively-p' instead of `called-interactively-p'.
4628
4629 * allout.el (allout-before-change-handler):
4630 Exempt edits to the (overlaid) character after the allout outline
4631 bullet from edit confirmation prompt.
4632
4633 * allout.el (allout-add-resumptions):
4634 Ensure that it respects correct buffer for keybindings.
4635
4636 * allout.el (allout-beginning-of-line):
4637 Use `allout-previous-single-char-property-change' alias for the sake of
4638 diverse compatibility.
4639
4640 * allout.el (allout-end-of-line):
4641 Use `allout-mark-active-p' to encapsulate respect for mark activity.
4642
4643 2010-11-13 Chong Yidong <cyd@stupidchicken.com>
4644
4645 * frame.el (frame-notice-user-settings): Don't clobber other
4646 user-set parameters when calling face-set-after-frame-default in
4647 response to background-color parameter (Bug#7373).
4648
4649 2010-11-13 Eli Zaretskii <eliz@gnu.org>
4650
4651 * international/characters.el (glyphless-char-display-control):
4652 Rename from glyphless-char-control; all users changed. Doc fix.
4653 Signal an error if display method is not one of the recognized
4654 symbols.
4655
4656 2010-11-13 Michael Albinus <michael.albinus@gmx.de>
4657
4658 * net/tramp-compat.el (tramp-compat-line-beginning-position)
4659 (tramp-compat-line-end-position): Remove them.
4660
4661 * net/tramp.el (tramp-parse-rhosts-group)
4662 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
4663 (tramp-parse-hosts-group, tramp-parse-passwd-group)
4664 (tramp-parse-netrc-group, tramp-parse-putty-group)
4665 * net/tramp-cmds.el (tramp-append-tramp-buffers)
4666 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
4667 (tramp-sh-handle-file-selinux-context)
4668 (tramp-sh-handle-file-name-all-completions)
4669 (tramp-sh-handle-insert-directory)
4670 (tramp-sh-handle-expand-file-name, tramp-find-executable)
4671 (tramp-wait-for-output, tramp-send-command-and-read)
4672 * net/tramp-smb.el (tramp-smb-read-file-entry)
4673 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
4674
4675 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
4676 `point-at-bol'.
4677 (tramp-remote-coding-commands): Add an alternative using "base64
4678 -d -i". This is needed for older base64 versions from GNU
4679 coreutils. Reported by Klaus Reichl
4680 <Klaus.Reichl@thalesgroup.com>.
4681
4682 2010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
4683
4684 * simple.el (count-words-region): New function.
4685
4686 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4687
4688 * shell.el (shell-dir-cookie-re): New custom variable.
4689 (shell-dir-cookie-watcher): New function.
4690
4691 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
4692 and compilation-mode (bug#7350).
4693
4694 * vc/smerge-mode.el (smerge-refine): Choose better default part to
4695 highlight when one of them is empty.
4696
4697 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
4698 trailing space.
4699 (skeleton-newline): New function.
4700 (skeleton-internal-1): Use it.
4701
4702 * simple.el (open-line): `newline' may strip trailing space.
4703
4704 2010-11-12 Kevin Ryde <user42@zip.com.au>
4705
4706 * international/mule-cmds.el (princ-list): Use mapc.
4707
4708 2010-11-12 Glenn Morris <rgm@gnu.org>
4709
4710 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
4711 Use it to replace all instances of "*Compile-Log*".
4712
4713 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4714
4715 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
4716 indentation specs.
4717
4718 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4719
4720 * progmodes/modula2.el: Use SMIE and skeleton.
4721 (m2-mode-syntax-table): (*..*) can be nested.
4722 Add //...\n. Fix paren syntax.
4723 (m2-mode-map): Remove LF and TAB bindings.
4724 (m2-indent): Add safety property.
4725 (m2-smie-grammar): New var.
4726 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
4727 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
4728 (m2-mode): Use define-derived-mode.
4729 (m2-newline, m2-tab): Remove.
4730 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
4731 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
4732 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
4733 (m2-import): Use define-skeleton.
4734
4735 2010-11-11 Glenn Morris <rgm@gnu.org>
4736
4737 * obsolete/lucid.el: Don't warn about any CL functions in this file.
4738
4739 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
4740 (ls-lisp-verbosity): Add custom :set-after property.
4741 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
4742 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
4743 (ls-lisp-insert-directory): Update caller.
4744 (ls-lisp-set-options): New function.
4745 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
4746 Doc fix.
4747
4748 * play/landmark.el (lm-prompt-for-move):
4749 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
4750
4751 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
4752
4753 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
4754 (idlwave-study-twins): Prefix dynamic local variable `name'.
4755 (idlwave-routine-twin-compare): Update for above change.
4756
4757 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
4758 Prefix dynamic local variables `name', `kwd', and `link'.
4759 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
4760 * progmodes/idlw-complete-structtag.el
4761 (idlwave-complete-structure-tag-help):
4762 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
4763 (idlwave-complete-sysvar-tag-help)
4764 (idlwave-complete-class-structure-tag-help):
4765 Update for above name changes.
4766
4767 2010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4768
4769 * net/browse-url.el (browse-url-browser-function): Change the
4770 default to use `browse-url-mail' on mailto: URLs.
4771
4772 2010-11-10 Chong Yidong <cyd@stupidchicken.com>
4773
4774 * emacs-lisp/package.el (package-read-all-archive-contents):
4775 Reset package-archive-contents to nil before re-reading.
4776
4777 2010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
4778
4779 * textmodes/flyspell.el (flyspell-word): Do not re-check words
4780 already found as misspellings by (flyspell-large-region), just
4781 do highlighting (bug#7322).
4782
4783 2010-11-10 Glenn Morris <rgm@gnu.org>
4784
4785 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
4786
4787 * emulation/edt.el (edt-with-position): New macro.
4788 (edt-find-forward, edt-find-backward, edt-find-next-forward)
4789 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
4790 (edt-paragraph-forward, edt-paragraph-backward): Use it.
4791
4792 * emulation/tpu-extras.el (tpu-with-position): New macro.
4793 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
4794
4795 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
4796
4797 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
4798 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
4799 (texinfo-master-menu, texinfo-insert-node-lines)
4800 (texinfo-multiple-files-update):
4801 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
4802 Use line-beginning-position.
4803
4804 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
4805 No recent Emacs supports system-type `emx'.
4806
4807 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
4808 (ada-command-separator, ada-default-prj-properties)
4809 (ada-find-any-references): Update for above name change.
4810
4811 * dirtrack.el (dirtrack-directory-function)
4812 (dirtrack-canonicalize-function):
4813 * filecache.el (file-cache-completion-ignore-case)
4814 (file-cache-case-fold-search, file-cache-ignore-case):
4815 * term.el (serial-port-is-file-p): Cosmetic change.
4816
4817 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
4818 Remove non-existent `windows-95' system-type.
4819 * dired.el (dired-chown-program): Remove non-existent `linux'
4820 system-type.
4821
4822 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
4823 (ping-program-options): Remove non-existent `linux' system-type.
4824
4825 * startup.el (package-initialize): Update declaration.
4826
4827 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
4828 (ls-lisp-handle-switches): Use time-less-p.
4829 (ls-lisp-format-time): Use float-time.
4830
4831 * textmodes/remember.el (remember-time-to-seconds): Remove.
4832 (remember-store-in-mailbox): Use float-time.
4833
4834 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
4835
4836 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
4837 never a real function.
4838 (with-no-warnings): Remove compat stub, now unused.
4839 (time-less-p): Doc fix.
4840 (time-to-number-of-days): Simplify.
4841
4842 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
4843 Remove.
4844 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
4845 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
4846 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
4847 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
4848 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
4849
4850 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
4851 (eshell-shuffle-files, eshell-shorthand-tar-command)
4852 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
4853 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
4854 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
4855 Prefix dynamic local variable `matches'.
4856
4857 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
4858 Prefix dynamic local variable `skeleton'.
4859
4860 2010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
4861
4862 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
4863 in mail buffer; make yank-action always a command that yanks original
4864 buffer.
4865
4866 2010-11-09 Glenn Morris <rgm@gnu.org>
4867
4868 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
4869
4870 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4871
4872 * minibuffer.el (minibuffer-completion-help): Specify the end of the
4873 completion field (bug#7211).
4874
4875 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
4876 Fix handling of backslash escapes.
4877 (python-quote-syntax): Adjust accordingly.
4878
4879 2010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
4880
4881 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
4882 (vc-mtn-workfile-branch): Adjust to new output format.
4883
4884 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4885
4886 * international/mule-cmds.el (princ-list): Mark as obsolete.
4887
4888 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4889
4890 * emacs-lisp/smie.el: New package.
4891
4892 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
4893
4894 * files.el (backup-by-copying-when-mismatch):
4895 Set `permanent-local' property.
4896
4897 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
4898 `permanent-local' property for `backup-by-copying-when-mismatch'.
4899
4900 2010-11-09 Eli Zaretskii <eliz@gnu.org>
4901
4902 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
4903
4904 2010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
4905
4906 * progmodes/verilog-mode.el (verilog-insert-one-definition)
4907 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
4908 AUTOINOUT for SV style multidimensional arrays, bug294.
4909 Reported by Eric Mastromarchi.
4910 (verilog-preprocess): Use with-current-buffer and
4911 font-lock-fontify-buffer to cleanup style issues.
4912
4913 2010-11-09 Glenn Morris <rgm@gnu.org>
4914
4915 * locate.el (locate, locate-mode): Doc fixes.
4916
4917 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
4918
4919 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
4920 user for confirmation.
4921 (server-force-stop): Use it.
4922 (server-start): Use server-force-stop for kill-emacs-hook, to
4923 avoid user interaction while killing Emacs.
4924
4925 2010-11-09 Glenn Morris <rgm@gnu.org>
4926
4927 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
4928 (meta-indent-line): Simplify.
4929
4930 * vc/emerge.el (emerge-line-number-in-buf):
4931 * textmodes/ispell.el (ispell-region):
4932 * textmodes/fill.el (current-fill-column):
4933 * progmodes/xscheme.el (xscheme-send-current-line):
4934 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
4935 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
4936 * progmodes/sh-script.el (sh-handle-prev-do):
4937 * progmodes/meta-mode.el (meta-indent-line):
4938 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
4939 (idlwave-in-quote):
4940 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
4941 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
4942 * progmodes/fortran.el (fortran-looking-at-if-then):
4943 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
4944 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
4945 (cperl-find-pods-heres):
4946 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
4947 * net/quickurl.el (quickurl-list-insert):
4948 * net/ldap.el (ldap-search-internal):
4949 * net/eudc.el (eudc-expand-inline):
4950 * mail/sendmail.el (sendmail-send-it):
4951 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
4952 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
4953 (viper-brac-function):
4954 * calc/calc-yank.el (calc-do-grab-region):
4955 * calc/calc-keypd.el (calc-keypad-press):
4956 * term.el (term-move-columns, term-insert-spaces):
4957 * speedbar.el (speedbar-highlight-one-tag-line):
4958 * simple.el (current-word):
4959 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
4960 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
4961 (Info-scroll-down):
4962 * hippie-exp.el (he-line-beg):
4963 * epa.el (epa--marked-keys):
4964 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
4965 (dired-update-file-line, dired-add-entry, dired-remove-entry)
4966 (dired-relist-entry):
4967 * buff-menu.el (Buffer-menu-buffer):
4968 * array.el (current-line):
4969 * allout.el (allout-resolve-xref)
4970 (allout-latex-verbatim-quote-curr-line):
4971 Replace yet more uses of end-of-line etc with line-end-position, etc.
4972
4973 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4974
4975 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
4976 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
4977 (checkdoc-syntax-table): Initialize in the declaration.
4978 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
4979 the mode on unconditionally.
4980
4981 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
4982 (extent-end-position, extent-start-position): Remove setf method for
4983 non-existing functions (bug#7319).
4984
4985 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
4986
4987 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
4988 (smie-precs->prec2): Rename from smie-precs-precedence-table.
4989 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
4990 (smie-prec2->grammar): Rename from smie-prec2-levels.
4991 (smie-grammar): Rename from smie-op-levels.
4992 (smie-indent--hanging-p): Rename from smie-hanging-p.
4993 (smie-rule-hanging-p): New alias.
4994 (smie-indent--bolp): Rename from smie-bolp.
4995 (smie-indent--hanging-p): New alias.
4996 (smie--token): New dynamically bound variable.
4997 (smie-indent--parent): New function.
4998 (smie-rule-parent-p): Use it; rename from smie-parent-p.
4999 (smie-rule-next-p): Rename from smie-next-p.
5000 (smie-rule-prev-p): Rename from smie-prev-p.
5001 (smie-rule-sibling-p, smie-rule-parent)
5002 (smie-indent--separator-outdent, smie-rule-separator): New functions.
5003 (smie-rule-separator-outdent): New var.
5004 (smie-indent--rule): Merge with smie-indent--column.
5005 (smie-indent-forward-token, smie-indent-backward-token):
5006 Also recognize close parens.
5007 (smie-indent-keyword): Don't use smie-indent--column any more.
5008 (smie-indent-after-keyword): Ignore closers by default.
5009 (smie-indent-line): Use with-demoted-errors.
5010 * progmodes/octave-mod.el (octave-smie-grammar):
5011 Rename from octave-smie-op-levels.
5012 (octave-smie-rules): Adjust to new behavior.
5013 * progmodes/prolog.el (prolog-smie-grammar):
5014 Rename from prolog-smie-op-levels.
5015
5016 2010-11-07 Glenn Morris <rgm@gnu.org>
5017
5018 * eshell/esh-util.el (subst-char-in-string)
5019 (directory-files-and-attributes): These compatibility definitions are
5020 not needed on any version of Emacs since at least 21.4.
5021
5022 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
5023 (verilog-get-end-of-line): Remove.
5024 (verilog-within-string, verilog-re-search-forward-substr)
5025 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
5026 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
5027 Use point-at-bol, point-at-eol.
5028 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
5029 Remove.
5030 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
5031 (electric-pascal-terminate-line, pascal-set-auto-comments)
5032 (pascal-indent-paramlist, pascal-indent-declaration)
5033 (pascal-get-lineup-indent, pascal-func-completion)
5034 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
5035 Use point-at-bol, point-at-eol.
5036 * progmodes/flymake.el (flymake-line-beginning-position)
5037 (flymake-line-end-position): Remove.
5038 (flymake-highlight-line): Use point-at-bol, point-at-eol.
5039 * eshell/esh-util.el (line-end-position, line-beginning-position):
5040 Remove compat definitions.
5041
5042 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5043 Use end-of-line N.
5044 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
5045 Use line-end-position.
5046
5047 * emacs-lisp/chart.el (chart-zap-chars):
5048 * play/decipher.el (decipher-set-map):
5049 * progmodes/ada-mode.el (ada-get-current-indent)
5050 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
5051 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
5052 * progmodes/ada-xref.el (ada-initialize-runtime-library)
5053 (ada-get-all-references):
5054 * progmodes/cperl-mode.el (cperl-electric-paren)
5055 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
5056 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
5057 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
5058 (cperl-word-at-point-hard):
5059 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
5060 (idlwave-shell-filename-string, idlwave-shell-batch-command)
5061 (idlwave-shell-display-line):
5062 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
5063 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
5064 * progmodes/js.el (js--re-search-forward-inner)
5065 (js--re-search-backward-inner):
5066 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
5067 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
5068 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
5069 * textmodes/flyspell.el (flyspell-process-localwords):
5070 * textmodes/ispell.el (ispell-buffer-local-parsing)
5071 (ispell-buffer-local-dict, ispell-buffer-local-words):
5072 Use point-at-bol and point-at-eol.
5073
5074 * speedbar.el (speedbar-generic-item-info)
5075 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
5076 (speedbar-add-indicator, speedbar-check-vc-this-line)
5077 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
5078 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
5079 Replace more uses of end-of-line etc with line-end-position.
5080
5081 2010-11-06 Glenn Morris <rgm@gnu.org>
5082
5083 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
5084 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
5085 (texinfo-delete-existing-pointers, texinfo-find-pointer)
5086 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
5087 (texinfo-multiple-files-update):
5088 * textmodes/table.el (table--probe-cell-left-up)
5089 (table--probe-cell-right-bottom):
5090 * textmodes/picture.el (picture-tab-search):
5091 * textmodes/page-ext.el (pages-copy-header-and-position)
5092 (pages-directory-for-addresses):
5093 * progmodes/vera-mode.el (vera-get-offset):
5094 * progmodes/simula.el (simula-calculate-indent):
5095 * progmodes/python.el (python-pdbtrack-overlay-arrow):
5096 * progmodes/prolog.el (end-of-prolog-clause):
5097 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
5098 * progmodes/icon.el (indent-icon-exp):
5099 * progmodes/etags.el (tag-re-match-p):
5100 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
5101 * progmodes/ebnf2ps.el (ebnf-begin-file):
5102 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
5103 (dcl-save-local-variable):
5104 * play/life.el (life-setup):
5105 * play/gametree.el (gametree-looking-at-ply):
5106 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5107 * mail/sendmail.el (mail-mode-auto-fill):
5108 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
5109 * emacs-lisp/edebug.el (edebug-overlay-arrow):
5110 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
5111 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
5112 (woman-tab-to-tab-stop, WoMan-warn-ignored):
5113 * type-break.el (type-break-file-keystroke-count):
5114 * term.el (term-replace-by-expanded-history-before-point)
5115 (term-skip-prompt, term-extract-string):
5116 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
5117 (speedbar-contract-line, speedbar-toggle-line-expansion)
5118 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
5119 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
5120 * sort.el (sort-skip-fields):
5121 * skeleton.el (skeleton-internal-list):
5122 * simple.el (line-move-finish, line-move-to-column):
5123 * shell.el (shell-forward-command):
5124 * misc.el (copy-from-above-command):
5125 * makesum.el (double-column):
5126 * ebuff-menu.el (electric-buffer-update-highlight):
5127 * dired.el (dired-move-to-end-of-filename):
5128 * dframe.el (dframe-popup-kludge):
5129 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
5130 * arc-mode.el (archive-get-lineno):
5131 Use line-end-position and line-beginning-position.
5132
5133 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
5134 (idlwave-study-twins): Prefix dynamic local `class'.
5135 (idlwave-routine-twin-compare): Update for above name change.
5136
5137 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
5138 Use boundp tests to silence compiler. Update for changed name of
5139 bytecomp-filename variable.
5140
5141 * emulation/viper-cmd.el (viper-read-string-with-history):
5142 Prefix dynamic local `initial'.
5143 (viper-minibuffer-standard-hook): Update for above name change.
5144
5145 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
5146 (elint-init-form): Update for above name change.
5147
5148 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
5149 local variables `cbeg' and `cend' a prefix.
5150 (mail-extr-voodoo): Update for above name change.
5151
5152 * textmodes/reftex-toc.el (reftex-toc-do-promote)
5153 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
5154 (reftex-toc-promote-action): Doc fix.
5155
5156 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
5157 `prompt', `data' a prefix.
5158 (reftex-select-post-command-hook, reftex-select-callback)
5159 (reftex-select-mouse-accept, reftex-select-read-cite):
5160 Update for above name changes.
5161
5162 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
5163 `refstyle' to reftex-refstyle.
5164 (reftex-offer-label-menu): Update for above name change.
5165 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
5166 `refstyle' name change.
5167
5168 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
5169 with with-current-buffer.
5170 (diff, template): Give dynamic local variables a prefix.
5171 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
5172 (emerge-line-number-in-buf): Update for above name change.
5173 (emerge-combine-versions-internal): Rename local `template' to
5174 emerge-combine-template.
5175 (emerge-combine-versions-edit): Update for above name change.
5176
5177 2010-11-06 Ralf Angeli <angeli@caeruleus.net>
5178
5179 * textmodes/reftex-cite.el
5180 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
5181 entries with whitespace after \bibitem.
5182 (reftex-create-bibtex-file): Match entries containing numbers and
5183 symbol constituents. Make sure that entries with whitespace at
5184 various places are found.
5185
5186 2010-11-05 Christian Millour <cm@abtela.com> (tiny change)
5187
5188 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
5189
5190 2010-11-05 Jan Djärv <jan.h.d@swipnet.se>
5191
5192 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
5193
5194 2010-11-05 Glenn Morris <rgm@gnu.org>
5195
5196 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
5197 (woman2-roff-buffer): Give local variable `request' a prefix.
5198 (woman0-macro): Rename argument `request' in the same way.
5199 (woman-request): New name for `request' dynamic variable.
5200 (woman-unquote, woman-forward-arg): Update for above name change.
5201 (woman1-roff-buffer): Give local variable `unquote' a prefix.
5202 (woman1-unquote): New name for `unquote' dynamic variable.
5203 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
5204 (woman-translations): Rename from `translations'. No longer global.
5205 (woman2-tr, woman-translate): Update for above name change.
5206 (woman-translate): Check for bound variable.
5207 (woman2-roff-buffer): Give local variable `translations' a prefix.
5208
5209 * play/doctor.el: Give all local variables a prefix. Update callers.
5210 (doc$, doctor-put-meaning): Use backquote.
5211
5212 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
5213 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
5214
5215 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
5216 variables bytes, ptr, op a prefix.
5217 (disassemble-offset): Update for above change.
5218
5219 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
5220
5221 * emacs-lisp/package.el (package-unpack): Remove no-op.
5222 (package--builtins, package--dir): Doc fix.
5223 (package-activate-1, package-activate, package-install)
5224 (package-compute-transaction): Fix error message.
5225 (package-delete): Use delete-directory. Omit system packages.
5226 (package-initialize): Set package-alist to nil first.
5227 (package-menu-mark-delete, package-menu-mark-install): Don't add
5228 symbols that are inconsistent with the package state.
5229 (package-menu-execute): Perform deletions and installations as
5230 single batch operations.
5231
5232 2010-11-03 Glenn Morris <rgm@gnu.org>
5233
5234 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
5235 (props): Remove unnecessary declaration.
5236
5237 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
5238 set-process-query-on-exit-flag.
5239
5240 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
5241 (reftex-toc-do-promote): Remove unused local `mpos'.
5242 (reftex-toc-restore-region): Make `mpos' local to this function.
5243
5244 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
5245
5246 * play/landmark.el (lm-losing-threshold): Correct spelling.
5247 (lm-human-plays): Use new name.
5248
5249 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
5250 (gomoku-human-plays): Use new name.
5251
5252 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
5253 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
5254 (gomoku-score-trans-table, gomoku-winning-threshold)
5255 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
5256
5257 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
5258
5259 * emacs-lisp/package.el: Don't put built-in packages in
5260 package-alist, to avoid loading inefficiencies.
5261 (package-built-in-p): Make VERSION optional, and treat it as a
5262 minimum acceptable version.
5263 (package-activate): Search separately for built-in packages.
5264 Emit a warning if a dependency fails.
5265 (define-package): Handle most common case, where there is no
5266 obsolete package, first.
5267 (package-compute-transaction): Print required version in error.
5268 (package--initialized): New variable.
5269 (list-packages): Use it.
5270 (package-initialize): Optional arg NO-ACTIVATE. Don't put
5271 built-in packages in packages-alist; keep it separate.
5272 Set package--initialized.
5273 (describe-package): Avoid activating packages as a side-effect.
5274 Search separately for built-in packages.
5275 (describe-package-1): Handle the case where an elpa package is
5276 simultaneously built-in and available/installed.
5277 (package-installed-p, package--generate-package-list):
5278 Search separately for built-in packages.
5279 (package-load-descriptor): Doc fix.
5280
5281 2010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5282
5283 * progmodes/perl-mode.el (perl-syntax-propertize-function):
5284 Handle __DATA__ and __END__.
5285
5286 2010-11-02 Noah Friedman <friedman@splode.com>
5287
5288 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
5289 nil, do not ask to recompile files that are not already compiled,
5290 and do not recompile them.
5291
5292 2010-11-02 Chong Yidong <cyd@stupidchicken.com>
5293
5294 * emacs-lisp/package.el (package-initialize): Ensure that
5295 obsoleted built-in packages are not in package-activated-list
5296 during activation.
5297 (describe-package-1): Make the "installed" status override
5298 "built-in".
5299
5300 2010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5301
5302 * subr.el (version-separator, version-regexp-alist): Remove '*'
5303 from docstring.
5304 (version-list-<=, version<=, version=): Doc fix.
5305
5306 2010-11-01 Kenichi Handa <handa@m17n.org>
5307
5308 * faces.el (glyphless-char): Inherit underline for tty.
5309
5310 2010-11-01 Kenichi Handa <handa@m17n.org>
5311
5312 Implement various display methods for glyphless characters.
5313
5314 * international/characters.el (char-acronym-table): New variable.
5315 (glyphless-char-control): New variable.
5316 (update-glyphless-char-display): New function.
5317
5318 * faces.el (glyphless-char): New face.
5319
5320 2010-11-01 Glenn Morris <rgm@gnu.org>
5321
5322 * calendar/holidays.el (general-holidays, oriental-holidays)
5323 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
5324 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
5325 the definitions of their targets.
5326
5327 * emacs-lisp/smie.el (smie): New custom group.
5328 (smie-blink-matching-inners, smie-indent-basic): Add :group.
5329
5330 * faces.el (xw-defined-colors, x-setup-function-keys):
5331 * mouse-sel.el (x-select-text):
5332 * term/w32console.el (x-setup-function-keys): Update declarations.
5333
5334 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
5335
5336 * textmodes/ispell.el (comment-add): Declare.
5337
5338 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
5339 Declare.
5340
5341 * info.el (finder-keywords-hash, package-alist): Declare.
5342
5343 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
5344
5345 * finder.el (finder-compile-keywords): Don't use intern-soft,
5346 since package names may not yet exist in the obarray.
5347
5348 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
5349
5350 * vc/vc-arch.el (vc-arch-checkin):
5351 * vc/vc-cvs.el (vc-cvs-checkin):
5352 * vc/vc-mtn.el (vc-mtn-checkin):
5353 * vc/vc-rcs.el (vc-rcs-checkin):
5354 * vc/vc-sccs.el (vc-sccs-checkin):
5355 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
5356 since 2010-04-21 commit by Stefan Monnier.
5357
5358 2010-11-01 Glenn Morris <rgm@gnu.org>
5359
5360 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
5361
5362 * startup.el (package-enable-at-startup, package-initialize):
5363 Silence compiler.
5364
5365 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
5366 Silence compiler.
5367
5368 2010-10-31 Julien Danjou <julien@danjou.info>
5369
5370 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
5371 (byte-recompile-directory):
5372 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
5373 Use `byte-recompile-file'.
5374
5375 2010-10-31 Glenn Morris <rgm@gnu.org>
5376
5377 * cus-start.el: Handle standard values via a keyword.
5378 Only set version property if specified.
5379 (cursor-in-non-selected-windows, menu-bar-mode)
5380 (tool-bar-mode, show-trailing-whitespace):
5381 Do not specify standard values.
5382 (transient-mark-mode, temporary-file-directory): Use :standard.
5383
5384 2010-10-31 Jan Djärv <jan.h.d@swipnet.se>
5385
5386 * term/x-win.el (x-get-selection-value): New function that gets
5387 PRIMARY with type as specified in x-select-request-type. (Bug#6802)
5388
5389 2010-10-31 Michael Albinus <michael.albinus@gmx.de>
5390
5391 * net/tramp.el (tramp-handle-insert-file-contents): For root,
5392 preserve owner and group when editing files. (Bug#7289)
5393
5394 2010-10-31 Glenn Morris <rgm@gnu.org>
5395
5396 * speedbar.el (speedbar-mode):
5397 * play/fortune.el (fortune-in-buffer, fortune):
5398 * play/gomoku.el (gomoku-mode):
5399 * play/landmark.el (lm-mode):
5400 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
5401 Replace inappropriate uses of toggle-read-only. (Bug#7292)
5402
5403 * select.el (x-selection): Mark it as an obsolete alias.
5404
5405 2010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5406
5407 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
5408 major-mode (bug#7284).
5409
5410 2010-10-31 Glenn Morris <rgm@gnu.org>
5411
5412 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
5413 rather than just an unused variable that inherits from the real one.
5414
5415 2010-10-31 Alan Mackenzie <acm@muc.de>
5416
5417 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
5418 This fixes bug #7185.
5419
5420 2010-10-30 Chong Yidong <cyd@stupidchicken.com>
5421
5422 * startup.el (command-line): Search for package directories, and
5423 don't load package.el if none are found.
5424
5425 * emacs-lisp/package.el (describe-package, list-packages):
5426 Call package-initialize if it has not been called yet.
5427
5428 2010-10-30 Alan Mackenzie <acm@muc.de>
5429
5430 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
5431 which fontifies the tail of an enum.
5432 (c-basic-matchers-after): Insert a call to the above new function.
5433 This fixes bug #7264.
5434
5435 2010-10-30 Glenn Morris <rgm@gnu.org>
5436
5437 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
5438 tool-bar-mode, transient-mark-mode. (Bug#7306)
5439 Include the :set property in the dumped Emacs.
5440
5441 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5442
5443 SMIE: change indent rules format, improve smie-setup.
5444 * emacs-lisp/smie.el (smie-precs-precedence-table)
5445 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
5446 Mark them pure so the tables gets built at compile time.
5447 (smie-bnf-precedence-table): Store the closer-alist in the table.
5448 (smie-prec2-levels): Preserve the closer-alist.
5449 (smie-blink-matching-open): Be more forgiving in case of indentation.
5450 (smie-hanging-p): Rename from smie-indent--hanging-p.
5451 (smie-bolp): Rename from smie-indent--bolp.
5452 (smie--parent, smie--after): New dynamic vars.
5453 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
5454 (smie-indent-rules): Remove.
5455 (smie-indent--offset-rule): Remove fun.
5456 (smie-rules-function): New var.
5457 (smie-indent--rule): New fun.
5458 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
5459 (smie-indent-exps): Use it.
5460 (smie-setup): Setup paren blinking; add keyword args for token
5461 functions; extract closer-alist from op-levels.
5462 (smie-indent-debug-log): Remove var.
5463 (smie-indent-debug): Remove fun.
5464 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
5465 (prolog-smie-rules): New fun to replace it.
5466 (prolog-mode-variables): Simplify.
5467 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
5468 it's setup automatically.
5469 (octave-smie-indent-rules): Remove.
5470 (octave-smie-rules): New fun to replace it.
5471 (octave-mode): Simplify.
5472
5473 2010-10-29 Glenn Morris <rgm@gnu.org>
5474
5475 * files.el (temporary-file-directory): Remove (already defined in C).
5476 * cus-start.el: Add temporary-file-directory.
5477
5478 * abbrev.el (abbrev-mode):
5479 * composite.el (auto-composition-mode):
5480 * menu-bar.el (menu-bar-mode):
5481 * simple.el (transient-mark-mode):
5482 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
5483 that they do not define the associated variables twice.
5484 * simple.el (transient-mark-mode): Remove defvar.
5485 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
5486 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
5487 Handle multiple groups, and also custom-delayed-init-variables.
5488 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
5489
5490 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5491
5492 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
5493 (pcase-if): Add one minor optimization.
5494 (pcase-split-equal): Rename from pcase-split-eq.
5495 (pcase-split-member): Rename from pcase-split-memq.
5496 (pcase-u1): Add strings to the member optimization.
5497 Add `guard' variant of predicates.
5498 (pcase-q1): Add string patterns.
5499
5500 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5501
5502 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
5503
5504 2010-10-28 Glenn Morris <rgm@gnu.org>
5505
5506 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5507 Move menu-bar related settings to ../menu-bar.el.
5508 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5509 Move ns-specific settings here from term/ns-win.el.
5510
5511 * simple.el (x-selection-owner-p): Remove unused declaration.
5512
5513 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5514
5515 * minibuffer.el (completion-cycling): New var (bug#7266).
5516 (minibuffer-complete, completion--do-completion):
5517 Use completion--flush-all-sorted-completions.
5518 (minibuffer-complete): Only cycle if completion-cycling is set.
5519 (completion--flush-all-sorted-completions): Unset completion-cycling.
5520 (minibuffer-force-complete): Set completion-cycling.
5521 (completion-all-sorted-completions): Move declaration before first use.
5522
5523 2010-10-28 Leo <sdl.web@gmail.com>
5524
5525 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
5526 which changes the order of matches seen by users (bug#7231).
5527
5528 2010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
5529
5530 * progmodes/compile.el (compilation-mode-font-lock-keywords):
5531 Don't confuse -omega as "-o mega".
5532
5533 2010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
5534
5535 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
5536 (log-edit-author): New dynamic var.
5537 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
5538 to return the author if different from committer.
5539 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
5540
5541 * play/landmark.el: Adjust commenting convention.
5542 (lm-nil-score): Rename from nil-score.
5543 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
5544 (OOOOscore): Move into a let in lm-score-trans-table.
5545 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
5546
5547 * electric.el (electric-indent-chars): Autoload.
5548 * progmodes/octave-mod.el (octave-mode):
5549 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
5550 (ruby-mode-abbrev-table): Merge initialization and declaration.
5551
5552 2010-10-27 Glenn Morris <rgm@gnu.org>
5553
5554 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
5555 variable.
5556
5557 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
5558
5559 * term/ns-win.el: Restore require of cl when compiling.
5560 (menu-bar-final-items): Remove non-existent `windows' menu.
5561 (ns-handle-nxopen): Optionally handle the temp-case.
5562 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
5563 (ns-insert-file, ns-find-file): Use `pop'.
5564
5565 2010-10-26 Glenn Morris <rgm@gnu.org>
5566
5567 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
5568
5569 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
5570
5571 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
5572 global map.
5573 * term/common-win.el (x-setup-function-keys): Remove most of the
5574 keymappings. Comment on the remaining ones.
5575
5576 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
5577
5578 * server.el (server-port): New option. (Bug#854)
5579 (server-start): Use server-port.
5580
5581 2010-10-26 Glenn Morris <rgm@gnu.org>
5582
5583 * term/ns-win.el (ns-version-string): Remove unused declaration.
5584 (ns-invocation-args): Change to x-invocation-args.
5585 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
5586 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
5587 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
5588 Use x-invocation-args instead of ns-invocation-args.
5589 (ns-initialize-window-system, handle-args-function-alist):
5590 Use x-handle-args instead of ns-handle-args.
5591 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
5592 * startup.el (command-line-ns-option-alist): Replace
5593 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
5594 ns-handle-iconic with the x- equivalents.
5595
5596 * term/common-win.el (x-select-enable-clipboard):
5597 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
5598
5599 * term/ns-win.el: No need to require cl when compiling.
5600 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
5601 (xw-defined-colors): Use the common-win definitions.
5602 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
5603 (ns-handle-iconic): Make it an alias for x-handle-iconic.
5604 * term/common-win.el (x-select-text, x-alternatives-map)
5605 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
5606 * loadup.el [ns]: Load common-win.
5607
5608 2010-10-26 Daiki Ueno <ueno@unixuser.org>
5609
5610 * epa-mail.el (epa-mail-encrypt): Handle local-part only
5611 recipients; expand mail aliases (Bug#7280).
5612
5613 2010-10-25 Glenn Morris <rgm@gnu.org>
5614
5615 * term/common-win.el (x-handle-switch): Simplify with pop.
5616 Optionally handle numeric switches.
5617 (x-handle-numeric-switch): Just call x-handle-switch.
5618 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
5619 (x-handle-name-switch, x-handle-display, x-handle-args):
5620 Simplify with pop.
5621
5622 * term/ns-win.el: Do not require easymenu.
5623 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
5624 <spell>: Move adjustments to menu-bar.el.
5625 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
5626 <separator-undo, spell>: Move ns-win's adjustments here.
5627 * loadup.el [ns]: Do not load easymenu.
5628
5629 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5630
5631 * image.el (image-checkbox-checked, image-checkbox-unchecked):
5632 Delete (Bug#7222).
5633
5634 * startup.el (fancy-startup-tail): Instead of using inline images,
5635 refer to image files from etc/.
5636
5637 * wid-edit.el (checkbox): Likewise.
5638 (widget-image-find): Center image specs.
5639
5640 2010-10-24 Glenn Morris <rgm@gnu.org>
5641
5642 * term/ns-win.el (x-select-text): Doc fix.
5643 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
5644 (x-select-text): Move to term/common-win.
5645 * term/w32-win.el (xw-defined-colors): Move to common-win.
5646 * term/x-win.el (xw-defined-colors, x-alternatives-map)
5647 (x-setup-function-keys, x-select-text): Move to common-win.
5648 * term/common-win.el (x-select-text, x-alternatives-map)
5649 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
5650 definitions here.
5651
5652 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
5653
5654 * net/mairix.el (mairix-searches-mode-map):
5655 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
5656
5657 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
5658
5659 * progmodes/verilog-mode.el (verilog-directive-re): Make this variable
5660 auto-built for efficiency of execution and updating.
5661 (verilog-extended-complete-re): Support 'pure' fucntion & task
5662 declarations (these have no bodies).
5663 (verilog-beg-of-statement): General cleanup to enable support of
5664 'pure' fucntion & task declarations (these have no bodies).
5665 These efforts together fix Verilog bug210 from veripool; which was also
5666 noticed by Steve Pearlmutter.
5667 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
5668 (verilog-directive-nest-re, verilog-set-auto-endcomments):
5669 Support `elsif. Reported by Shankar Giri.
5670 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
5671 attribute handling for lining up declarations and assignments.
5672 (verilog-beg-of-statement-1): Fix issue where continued declaration
5673 is indented differently if it is after a begin..end clock.
5674 (verilog-in-attribute-p, verilog-skip-backward-comments)
5675 (verilog-skip-forward-comment-p): Support proper treatment of
5676 attributes by indent code. Reported by Jeff Steele.
5677 (verilog-in-directive-p): Fix comment to correctly describe function.
5678 (verilog-backward-up-list, verilog-in-struct-region-p)
5679 (verilog-backward-token, verilog-in-struct-p)
5680 (verilog-in-coverage-p, verilog-do-indent)
5681 (verilog-pretty-declarations): Use verilog-backward-up-list as
5682 wrapper around backward-up-list inorder to properly skip comments.
5683 Reported by David Rogoff.
5684 (verilog-property-re, verilog-endcomment-reason-re)
5685 (verilog-beg-of-statement, verilog-set-auto-endcomments)
5686 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
5687 of if). Reported by Max Bjurling and
5688 (verilog-calc-1): Fix for clocking block in modport
5689 declaration. Reported by Brian Hunter.
5690
5691 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
5692
5693 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
5694 (verilog-gate-keywords, verilog-read-sub-decls)
5695 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
5696 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
5697 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
5698 (verilog-read-decls): Fix spaces in V2K module parameters causing
5699 mis-identification as interfaces, bug287.
5700 (verilog-read-decls): Fix not treating "parameter string" as a
5701 parameter in AUTOINSTPARAM.
5702 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
5703 treating `elsif similar to `endif inside AUTOSENSE.
5704 (verilog-do-indent): Implement correct automatic or static task or
5705 function end comment highlight. Reported by Steve Pearlmutter.
5706 (verilog-font-lock-keywords-2): Fix highlighting of single
5707 character pins, bug264. Reported by Michael Laajanen.
5708 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
5709 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
5710 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
5711 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
5712 (verilog-pretty-expr): Fix interactive arguments, bug272.
5713 Reported by Mark Johnson.
5714 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
5715 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
5716 bug269. Suggested by Gary Delp.
5717 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
5718 (verilog-preprocessor, verilog-set-compile-command):
5719 Create verilog-preprocess and verilog-preprocessor to show
5720 preprocessed output.
5721 (verilog-get-beg-of-line, verilog-get-end-of-line)
5722 (verilog-modi-file-or-buffer, verilog-modi-name)
5723 (verilog-modi-point, verilog-within-string): Move defmacro's
5724 before first use to avoid warning. Reported by Steve Pearlmutter.
5725 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
5726 (verilog-colorize-region, verilog-highlight-buffer)
5727 (verilog-highlight-includes, verilog-highlight-modules)
5728 (verilog-highlight-region, verilog-mode): Rename colorize to
5729 highlight to match other packages. Disable module highlighting,
5730 as received speed complaints, reenable for experimentation only
5731 using new verilog-highlight-modules.
5732 (verilog-read-decls): Fix regexp stack overflow in very large
5733 AUTO_TEMPLATEs, bug250.
5734 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
5735 (verilog-scan): Create verilog-save-buffer-state to standardize
5736 making insignificant changes that shouldn't call hooks.
5737 (verilog-save-no-change-functions, verilog-save-scan-cache)
5738 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
5739 Create verilog-save-no-change-functions to wrap verilog-scan
5740 preservation, and fix to work with nested preserved calls.
5741 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
5742 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
5743 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
5744 (verilog-submit-bug-report): Update variable list to be complete.
5745 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
5746 breaking on-the-fly font-locking.
5747 (verilog-colorize-buffer, verilog-colorize-include-files)
5748 (verilog-colorize-include-files-buffer, verilog-colorize-region)
5749 (verilog-load-file-at-mouse, verilog-load-file-at-point)
5750 (verilog-mode, verilog-read-inst-module-matcher): With point on a
5751 AUTOINST cell instance name, middle mouse button now finds-file on
5752 it. Suggested by Brad Dobbie.
5753 (verilog-alw-get-temps, verilog-auto-reset)
5754 (verilog-auto-sense-sigs, verilog-read-always-signals)
5755 (verilog-read-always-signals-recurse): Fix loop indexes being
5756 AUTORESET. AUTORESET now assumes any variables in the
5757 initialization section of a for() should be ignored.
5758 Reported by Dan Dever.
5759 (verilog-error-font-lock-keywords)
5760 (verilog-error-regexp-emacs-alist)
5761 (verilog-error-regexp-xemacs-alist): Fix error detection of
5762 Cadence HAL, reported by David Asher. Repair drift between the
5763 three similar error variables.
5764 (verilog-modi-lookup, verilog-modi-lookup-cache)
5765 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
5766 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
5767 Fix slow verilog-auto expansion on very large files.
5768 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
5769 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
5770 "{1*2{...". Broke in last revision.
5771 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
5772 submodule connections with replications "{#{a},#{b}}".
5773
5774 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
5775
5776 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
5777 Fix typo in docstring.
5778
5779 2010-10-24 Kenichi Handa <handa@m17n.org>
5780
5781 * face-remap.el (text-scale-adjust): Call read-event with a proper
5782 prompt.
5783
5784 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5785
5786 * emacs-lisp/unsafep.el: Don't mark functions that display
5787 messages as safe. Suggested by Johan Bockgård.
5788
5789 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5790
5791 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
5792 Turn comments into docstrings.
5793
5794 * minibuffer.el (completion--replace): Move point where it belongs
5795 when there's a common suffix (bug#7215).
5796
5797 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5798
5799 Merge read-color and facemenu-read-color (Bug#7242).
5800
5801 * faces.el (read-color): Use the completion code from
5802 facemenu-read-color. Require match in completion. Doc fix.
5803
5804 * facemenu.el (facemenu-read-color): Alias for read-color.
5805 (facemenu-set-foreground, facemenu-set-background):
5806 Use read-color.
5807
5808 * frame.el (set-background-color, set-foreground-color)
5809 (set-cursor-color, set-mouse-color, set-border-color):
5810 Use read-color.
5811
5812 2010-10-24 Leo <sdl.web@gmail.com>
5813
5814 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
5815 argument of delete-file and delete-directory (Bug#7011).
5816
5817 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5818
5819 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
5820 button-buffer-map.
5821
5822 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
5823
5824 * emacs-lisp/package.el (package--generate-package-list): Make the
5825 *Packages* buffer read-only.
5826
5827 2010-10-24 Alan Mackenzie <acm@muc.de>
5828
5829 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
5830 result of `c-beginning-of-decl-1' between invocations of a lambda
5831 function (Bug #7265).
5832
5833 2010-10-24 Daiki Ueno <ueno@unixuser.org>
5834
5835 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
5836 executable is not available on the system (Bug#7268).
5837
5838 2010-10-24 Glenn Morris <rgm@gnu.org>
5839
5840 * select.el (selection-coding-system, next-selection-coding-system):
5841 Sync doc with C versions.
5842
5843 * w32-vars.el (x-select-enable-clipboard):
5844 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
5845 * term/common-win.el (x-select-enable-clipboard): Move here.
5846
5847 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
5848 definition of C variable.
5849
5850 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
5851 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
5852 Don't redefine things that are defined in C.
5853 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
5854 (show-trailing-whitespace, auto-hscroll-mode)
5855 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
5856 Set up the appropriate custom properties.
5857
5858 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5859
5860 Bind "C-c ]" to ...
5861 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
5862 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
5863 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
5864 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
5865
5866 2010-10-23 Glenn Morris <rgm@gnu.org>
5867
5868 * textmodes/flyspell.el (flyspell-mode): If there was an error,
5869 say what it was.
5870
5871 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
5872 Sync docs with C version.
5873
5874 * term/ns-win.el (xw-defined-colors):
5875 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
5876
5877 * term/pc-win.el (x-select-enable-clipboard):
5878 * term/x-win.el (x-select-enable-clipboard):
5879 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
5880
5881 * comint.el (comint-password-prompt-regexp): Make it less vague.
5882 Bump version.
5883
5884 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
5885
5886 * help.el (finder-by-keyword): Remove unnecessary autoload.
5887
5888 2010-10-22 Glenn Morris <rgm@gnu.org>
5889
5890 * loadup.el: Unconditionally load float-sup.
5891 * paren.el (show-paren-delay):
5892 * emacs-lisp/float-sup.el:
5893 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
5894 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
5895 (lazy-lock-stealth-verbose): Assume float support.
5896 * ps-print.el: Assume float support on Emacs.
5897 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
5898 Remove non-float branch.
5899
5900 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
5901 src/Makefile no longer being pre-processed.
5902
5903 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5904
5905 * emacs-lisp/find-func.el (find-library): Use test-completion.
5906
5907 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5908
5909 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
5910
5911 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
5912
5913 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
5914 space in stat format string.
5915 (tramp-send-command): Unset $PS1 when using here documents, in
5916 order not to get several prompts.
5917 (tramp-get-inline-coding): Return `nil' in case of errors.
5918
5919 2010-10-21 Daiki Ueno <ueno@unixuser.org>
5920
5921 * hexl.el (hexl-mode, hexl-mode-exit):
5922 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
5923 (hexl-revert-buffer-function): New function.
5924 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
5925
5926 2010-10-19 Alan Mackenzie <acm@muc.de>
5927
5928 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
5929 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
5930 that these keywords aren't wrongly matched as identifiers.
5931
5932 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
5933 setting of c-new-BEG and c-new-END from c-before-change to
5934 c-after-change. (Bug#7181)
5935
5936 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
5937
5938 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
5939 Don't mark as safe.
5940
5941 * custom.el (custom-theme-set-variables): Likewise.
5942 (load-theme): Add custom-theme-set-faces and
5943 custom-theme-set-variables to safe-functions while loading.
5944 (custom-enabled-themes): Mark as risky.
5945
5946 2010-10-18 Julien Danjou <julien@danjou.info>
5947
5948 * bindings.el: Remove end dashes in default mode-line-format.
5949
5950 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
5951
5952 * bindings.el (global-map): Bind C-d to delete-char and deletechar
5953 to delete-forward-char.
5954
5955 * simple.el (normal-erase-is-backspace-mode): Remap delete to
5956 deletechar, and hence delete-forward-char.
5957
5958 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5959
5960 * repeat.el (repeat): Use read-key (bug#6256).
5961
5962 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
5963
5964 * emacs-lisp/unsafep.el: Don't mark functions that display
5965 messages as safe. Suggested by Johan Bockgård.
5966
5967 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5968
5969 * minibuffer.el (completion--replace): Move point where it belongs
5970 when there's a common suffix (bug#7215).
5971
5972 2010-10-19 Kenichi Handa <handa@m17n.org>
5973
5974 * international/characters.el: Add category '|' (word breakable)
5975 to fullwidth characters.
5976
5977 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
5978
5979 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
5980 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
5981 order to make stat results a float. Patch by Andreas Schwab
5982 <schwab@linux-m68k.org>.
5983
5984 2010-10-18 Julien Danjou <julien@danjou.info>
5985
5986 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
5987 hidden by `make-pointer-invisible'.
5988
5989 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5990
5991 * files.el (locate-file-completion-table): Strip non-matching elements
5992 before checking length of list (bug#7238).
5993
5994 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
5995
5996 * custom.el (custom-theme-set-variables): Mark as a safe function.
5997 (load-theme): Check forms using unsafep.
5998
5999 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
6000
6001 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
6002
6003 * textmodes/ispell.el (ispell-aspell-find-dictionary):
6004 Fix aspell data file searching (bug#7230).
6005
6006 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6007
6008 * cus-theme.el (custom-theme--migrate-settings): New var.
6009 (customize-create-theme): Allow editing the `user' theme.
6010 (custom-theme-add-variable, custom-theme-add-var-1)
6011 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
6012 to the front of each variable or face widget.
6013 (custom-theme-write): Save theme settings in the correct order.
6014 Optionally, remove saved settings from user customizations.
6015 (custom-theme-write-variables, custom-theme-write-faces):
6016 Save only the checked widgets.
6017 (customize-themes): Add a link for migrating custom settings.
6018
6019 * custom.el (custom-declare-theme, provide-theme):
6020 Use custom-theme-name-valid-p.
6021 (custom-theme-name-valid-p): Remove checks that are now
6022 unnecessary since themes no longer obey load-path.
6023
6024 * cus-edit.el (custom-variable-value-create): For the simple
6025 style, hide documentation string when hidden.
6026
6027 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6028
6029 * cus-edit.el (custom-variable, custom-face): Combine the
6030 :inhibit-magic and :display-style properties into a single
6031 :custom-style property.
6032 (custom-toggle-hide-variable, custom-toggle-hide-face):
6033 New functions. If hiding an edited value, save it to :shown-value.
6034 (custom-variable-value-create, custom-face-value-create): Use them.
6035 (custom-magic-reset): Allow magic property to be unset.
6036
6037 * custom.el: Custom themes no longer use load-path.
6038 (custom-theme-load-path): New option. Change built-in theme
6039 directory to etc/.
6040 (custom-enabled-themes): Add custom-theme-load-path dependency.
6041 (custom-theme--load-path): New function.
6042 (load-theme, custom-available-themes): Use it.
6043
6044 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
6045 (customize-themes): Link to custom-theme-load-path variable.
6046 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
6047 :custom-style property.
6048
6049 * themes/*.el: Moved to etc/.
6050
6051 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
6052
6053 * textmodes/reftex-cite.el
6054 (reftex-extract-bib-entries-from-thebibliography): Do not move
6055 point when searching for \bibitem entries. Match entries with
6056 spaces or tabs in front of arguments.
6057
6058 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6059
6060 * cus-theme.el (customize-create-theme): Delete overlays after
6061 erasing. If given a THEME arg, display only the faces of that arg
6062 instead of custom-theme--listed-faces.
6063 (custom-theme-variable-menu, custom-theme-variable-action)
6064 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
6065 (custom-theme-add-variable, custom-theme-add-face): Apply value
6066 from the theme settings, instead of the current value.
6067 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
6068 (custom-theme-visit-theme): Allow calling outside theme buffers.
6069 (custom-theme-merge-theme): Don't enable the theme when merging.
6070 (custom-theme-write-variables, custom-theme-write-faces): Use the
6071 :shown-value properties to save buffer values, not global ones.
6072 (customize-themes): Display a warning about user customizations.
6073
6074 * cus-edit.el (custom-variable-value-create)
6075 (custom-face-value-create): Obey new special properties
6076 :shown-value and :inhibit-magic.
6077
6078 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
6079
6080 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
6081 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
6082 <dale@codefu.org>.
6083
6084 2010-10-14 Kenichi Handa <handa@m17n.org>
6085
6086 * mail/rmail.el (rmail-show-message-1): Catch an error of
6087 base64-decode-region and just show an error message (bug#7165).
6088
6089 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
6090 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
6091 a font-spec (bug#7197).
6092
6093 2010-10-14 Glenn Morris <rgm@gnu.org>
6094
6095 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
6096
6097 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
6098
6099 * international/mule.el (define-coding-system):
6100 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6101 * composite.el (compose-region): Fix typo in docstring.
6102
6103 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
6104
6105 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
6106 only after checking the theme-face property.
6107
6108 * faces.el (face-spec-reset-face): Reset all attributes in one
6109 single call to set-face-attribute.
6110 (face-spec-match-p): Make it a defsubst.
6111 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
6112 (x-create-frame-with-faces, tty-create-frame-with-faces)
6113 (tty-set-up-initial-frame-faces): Don't recompute face specs in
6114 frame-set-background-mode, since they are recomputed immediately
6115 afterwards in face-set-after-frame-default.
6116 (face-set-after-frame-default): Minor optimization.
6117 (cursor): Provide non-trivial defface spec.
6118
6119 * custom.el (custom-theme-recalc-face): Simplify.
6120
6121 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
6122
6123 * calc/calc-alg.el (math-var): Rename from `var'.
6124 (math-is-polynomial, math-is-poly-rec): Replace `var'
6125 with `math-var'.
6126
6127 * calc/calcalg2.el (math-var): Rename from `var'.
6128 (calcFunc-table, math-scan-for-limits): Replace `var'
6129 with `math-var'.
6130
6131 2010-10-13 Glenn Morris <rgm@gnu.org>
6132
6133 * subr.el (last): Deal with dotted lists (reported in bug#7174).
6134
6135 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
6136
6137 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
6138
6139 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
6140
6141 * net/tls.el (tls-program): Remove spurious %s from openssl.
6142 (tls-starttls-switches): Remove starttls hack.
6143 (open-tls-stream): Ditto.
6144 (tls-find-starttls-argument): Ditto.
6145
6146 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
6147
6148 * image.el (image-library-alist): Declare as obsolete alias.
6149 (image-type-available-p): Use `dynamic-library-alist'.
6150
6151 * term/w32-win.el (dynamic-library-alist):
6152 Use instead of `image-library-alist'.
6153
6154 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
6155
6156 * subr.el (last): Make it faster. (Bug#7174)
6157
6158 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
6159
6160 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
6161
6162 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
6163
6164 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
6165 (describe-theme-1): Extract doc from unloaded themes.
6166
6167 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
6168
6169 * themes/tango-theme.el:
6170 * themes/tango-dark-theme.el:
6171 * themes/wheatgrass-theme.el: New files.
6172
6173 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
6174
6175 * cus-theme.el (describe-theme, customize-themes)
6176 (custom-theme-save): New commands.
6177 (custom-new-theme-mode-map): Bind C-x C-s.
6178 (custom-new-theme-mode): Use custom--initialize-widget-variables.
6179 (customize-create-theme): New optional arg THEME.
6180 (custom-theme-revert): Use it.
6181 (custom-theme-visit-theme): Remove dead code.
6182 (custom-theme-merge-theme): Use custom-available-themes.
6183 (custom-theme-write): Make interactive.
6184 (custom-theme-write): Use custom-theme-name-valid-p.
6185 (describe-theme-1, custom-theme-choose-revert)
6186 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
6187 New funs.
6188 (custom-theme-allow-multiple-selections): New option.
6189 (custom-theme-choose-mode): New major mode.
6190
6191 * custom.el (custom-theme-set-variables): Remove dead code.
6192 Obey custom--inhibit-theme-enable.
6193 (custom--inhibit-theme-enable): New var.
6194 (provide-theme): Obey it.
6195 (load-theme): Replace load with manual read/eval, in order to
6196 check for correctness. Use custom-theme-name-valid-p.
6197 (custom-theme-name-valid-p): New function.
6198 (custom-available-themes): Use it.
6199
6200 * cus-edit.el (custom--initialize-widget-variables): New function.
6201 (Custom-mode): Use it.
6202
6203 * cus-face.el (custom-theme-set-faces): Remove dead code.
6204 Obey custom--inhibit-theme-enable.
6205
6206 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
6207
6208 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
6209
6210 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
6211
6212 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
6213
6214 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
6215 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
6216 (mac-right-option-modifier): New alias for ns-right-option-modifier.
6217
6218 * cus-start.el (all): ns-right-alternate-modifier is new.
6219
6220 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
6221
6222 * emacs-lisp/lisp.el (lisp-completion-at-point):
6223 Use emacs-lisp-mode-syntax-table for the whole function.
6224
6225 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
6226
6227 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
6228 instead of font-lock-mode before adding keywords.
6229 Remove hi-lock-mode off code. Remove inhibit hack.
6230 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
6231 non-nil; removed hook inhibit hack.
6232
6233 2010-10-12 Glenn Morris <rgm@gnu.org>
6234
6235 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
6236 (load-path-shadows-find): ... to this.
6237 (list-load-path-shadows): Update for above change.
6238
6239 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
6240
6241 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
6242
6243 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
6244 Fix comment for declare-function.
6245
6246 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
6247
6248 * custom.el (custom-fix-face-spec): New function; code moved from
6249 custom-face-edit-fix-value.
6250 (custom-push-theme): Use it when checking if a face has been
6251 changed outside customize.
6252 (custom-available-themes): New function.
6253 (load-theme): Use it.
6254
6255 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
6256
6257 * custom.el (custom-push-theme): Cleanup (use cond).
6258 (disable-theme): Recompute the saved-face property.
6259 (custom-theme-recalc-face): Follow face alias before setting prop.
6260
6261 * image.el (image-checkbox-checked, image-checkbox-unchecked):
6262 New variables, containing checkbox images.
6263
6264 * startup.el (fancy-startup-tail):
6265 * wid-edit.el (checkbox): Use them.
6266
6267 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
6268
6269 * shell.el (shell-mode-map):
6270 * progmodes/modula2.el (m2-mode-map):
6271 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
6272 * play/mpuz.el (mpuz-mode-map):
6273 * play/landmark.el (lm-mode-map):
6274 * play/decipher.el (decipher-mode-map):
6275 * play/5x5.el (5x5-mode-map):
6276 * net/telnet.el (telnet-mode-map):
6277 * net/quickurl.el (quickurl-list-mode-map):
6278 * net/mairix.el (mairix-searches-mode-map):
6279 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
6280 * net/dig.el (dig-mode-map):
6281 * mail/mspools.el (mspools-mode-map):
6282 * hexl.el (hexl-mode-map):
6283 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
6284 (wordstar-C-o-map, wordstar-C-q-map):
6285 * emacs-lisp/edebug.el (edebug-eval-mode-map):
6286 * emacs-lisp/chart.el (chart-map):
6287 * edmacro.el (edmacro-mode-map):
6288 * erc/erc-list.el (erc-list-menu-mode-map):
6289 * array.el (array-mode-map): Declare and define in one step.
6290
6291 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
6292
6293 2010-10-10 Daiki Ueno <ueno@unixuser.org>
6294
6295 * epa.el (epa-passphrase-callback-function): Display filename
6296 passed as the 3rd arg.
6297 * epa-file.el (epa-file-passphrase-callback-function):
6298 Pass filename to epa-passphrase-callback-function.
6299
6300 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
6301
6302 * cus-edit.el (custom-face-widget-to-spec)
6303 (custom-face-get-current-spec, custom-face-state): New functions.
6304 (custom-face-set, custom-face-mark-to-save)
6305 (custom-face-value-create, custom-face-state-set): Use them.
6306
6307 * cus-theme.el (custom-theme--listed-faces): New var.
6308 (customize-create-theme): Use *Custom Theme* as the buffer name.
6309 Set revert-buffer-function. Optional arg BUFFER. Insert all
6310 faces listed in custom-theme--listed-faces.
6311 (custom-theme-revert): New function.
6312 (custom-theme-add-variable, custom-theme-add-face): Insert at the
6313 bottom of the list.
6314 (custom-theme-write): Prompt for theme name if empty.
6315 (custom-theme-write-variables): Use dolist.
6316 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
6317
6318 2010-10-09 Alan Mackenzie <acm@muc.de>
6319
6320 Enhance fontification of declarators to take account of the
6321 presence/absence of "typedef".
6322
6323 * cc-engine.el (c-forward-type): New &optional param
6324 "brace-block-too".
6325 (c-forward-decl-or-cast-1): cdr of return value now indicates the
6326 presence of either or both of a "struct"-like keyword and "typedef".
6327
6328 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
6329 fontification of declarators which follow a "}".
6330 (c-font-lock-declarations): Fontify declarators according to the
6331 presence/absence of "typedef".
6332
6333 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
6334 for "typedef".
6335 (c-typedef-decl-key): New lang variable built from
6336 c-typedef-decl-kwds.
6337
6338 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
6339
6340 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
6341 since that's too annoying. Move the filter groups commands to
6342 TAB/backtab.
6343
6344 * epa.el (epa-passphrase-callback-function): Say what we're
6345 querying the password for.
6346
6347 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
6348 behaviour, don't bury the ibuffer buffer when visiting other buffers.
6349
6350 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
6351
6352 * cus-edit.el (custom-commands, custom-buffer-create-internal)
6353 (custom-magic-value-create): Pad button tags with spaces.
6354 (custom-face-edit): New variable.
6355 (custom-face-value-create): Determine whether to use the usual
6356 face editor here, instead of using custom-face-selected.
6357 Pass face defaults to custom-face-edit widget.
6358 (custom-face-selected, custom-display-unselected): Delete widgets.
6359 (custom-display-unselected-match): Function removed.
6360 (custom-face-set, custom-face-mark-to-save):
6361 Accept custom-face-edit widgets as the direct widget child.
6362
6363 * wid-edit.el (widget--completing-widget): New var.
6364 (widget-default-complete): Bind it when doing completion.
6365 (widget-string-complete, widget-file-complete): Use it.
6366
6367 2010-10-09 Glenn Morris <rgm@gnu.org>
6368
6369 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
6370 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
6371 (holiday-hebrew-misc): Small simplifications.
6372
6373 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
6374
6375 * net/browse-url.el: Don't require thingatpt, term, dired,
6376 executable, or w3-auto when compiling.
6377 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
6378 Declare.
6379 (browse-url-text-emacs): Require term.
6380
6381 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
6382
6383 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
6384
6385 2010-10-08 Glenn Morris <rgm@gnu.org>
6386
6387 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
6388
6389 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
6390 (shadows-compare-text-p): Make it an obsolete alias for...
6391 (load-path-shadows-compare-text): ... new name.
6392 (find-emacs-lisp-shadows): Update for above name change.
6393 (load-path-shadows-same-file-or-nonexistent): New name for the old
6394 shadow-same-file-or-nonexistent.
6395
6396 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
6397
6398 * minibuffer.el (completion--some, completion--do-completion)
6399 (minibuffer-complete-and-exit, minibuffer-completion-help)
6400 (completion-basic-try-completion)
6401 (completion-basic-all-completions)
6402 (completion-pcm--find-all-completions): Use lexical-let to
6403 avoid some false matches in variable completion (Bug#7056)
6404
6405 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
6406
6407 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
6408
6409 2010-10-08 Leo <sdl.web@gmail.com>
6410
6411 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
6412 return non-nil if the file exists (Bug#7090).
6413
6414 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
6415
6416 * minibuffer.el (completion--replace):
6417 Better preserve markers (bug#7138).
6418
6419 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
6420
6421 * server.el (server-process-filter): Doc fix.
6422
6423 2010-10-08 Drew Adams <drew.adams@oracle.com>
6424
6425 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
6426
6427 2010-10-08 Glenn Morris <rgm@gnu.org>
6428
6429 * vc/ediff-wind.el (ediff-setup-control-frame):
6430 * vc/ediff-ptch.el (ediff-default-backup-extension):
6431 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
6432 (ediff-exec-process): Remove system-types emx, windows-95.
6433
6434 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
6435
6436 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
6437
6438 * cus-edit.el (custom-variable, custom-face): Doc fix.
6439 (custom-face-edit): Add value-create attribute.
6440 (custom-face-edit-value-create)
6441 (custom-face-edit-value-visibility-action): New functions.
6442 Hide unused face attributes by default, and add a visibility toggle.
6443 (custom-face-edit-deactivate): Show empty values with shadow face.
6444 (custom-face-selected): Only use this for face specs with default
6445 attributes.
6446 (custom-face-value-create): Cleanup.
6447
6448 * wid-edit.el (widget-checklist-value-create): Use dolist.
6449 (widget-checklist-match-find): Make second arg optional.
6450
6451 2010-10-07 Glenn Morris <rgm@gnu.org>
6452
6453 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
6454 Prefix things.
6455
6456 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
6457 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
6458 load-path-shadows-mode, update references.
6459 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
6460 Rename variable and button.
6461 (list-load-path-shadows): Update button caller.
6462
6463 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
6464
6465 * emacs-lisp/smie.el (smie-bnf-classify): New function.
6466 (smie-bnf-precedence-table): Use it to remember the closers/openers.
6467 (smie-merge-prec2s): Handle those new entries.
6468 (smie-prec2-levels): Only set precedence to nil for actual
6469 openers/closers.
6470 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
6471 that is now unnecessary.
6472
6473 2010-10-07 Miles Bader <miles@gnu.org>
6474
6475 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
6476
6477 2010-10-07 Glenn Morris <rgm@gnu.org>
6478
6479 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
6480 (mail-position-on-field): Remove declarations.
6481 (mail-position-on-field): Autoload it.
6482 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
6483 and mail-header-end. Don't require sendmail.
6484
6485 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
6486 (shadow-mode): New mode.
6487 (shadow-find-file): New button.
6488 (list-load-path-shadows): Use shadow-mode and buttons.
6489
6490 * iimage.el (iimage-version): Remove.
6491 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
6492 Turn into defcustoms.
6493 (iimage-mode-map): Give it a doc string.
6494
6495 * calendar/appt.el (appt-activate): Give a warning rather than an error
6496 if there is no diary-file.
6497
6498 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
6499
6500 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6501 Use `tramp-handle-find-backup-file-name'.
6502
6503 2010-10-06 Glenn Morris <rgm@gnu.org>
6504
6505 * font-core.el (font-lock-defaults-alist): Remove variable.
6506 (font-lock-mode): Doc fix.
6507 (font-lock-default-function): Do not consult font-lock-defaults-alist.
6508 * font-lock.el (font-lock-refresh-defaults): Doc fix.
6509 (font-lock-set-defaults): Doc fix.
6510 Do not consult font-lock-defaults-alist.
6511
6512 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
6513
6514 * emacs-lisp/cl.el: No longer provide cl-19.
6515
6516 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
6517
6518 * net/tramp.el (tramp-handle-directory-files-and-attributes)
6519 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
6520 New defuns, taken from tramp-smb.el.
6521 (tramp-coding-system-change-eol-conversion)
6522 (tramp-set-process-query-on-exit-flag): Remove.
6523
6524 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
6525 (tramp-compat-coding-system-change-eol-conversion)
6526 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
6527 from tramp.el.
6528
6529 * net/tramp-gvfs.el:
6530 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
6531 by `tramp-compat-set-process-query-on-exit-flag'.
6532
6533 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6534 Use `tramp-handle-directory-files-and-attributes',
6535 `tramp-handle-file-exists-p' and
6536 `tramp-handle-file-newer-than-file-p'.
6537 (tramp-imap-handle-file-exists-p)
6538 (tramp-imap-handle-file-executable-p)
6539 (tramp-imap-handle-file-readable-p)
6540 (tramp-imap-handle-directory-files-and-attributes)
6541 (tramp-imap-handle-file-newer-than-file-p): Remove.
6542
6543 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
6544 by `tramp-compat-set-process-query-on-exit-flag' and
6545 `tramp-coding-system-change-eol-conversion' by
6546 `tramp-compat-coding-system-change-eol-conversion'.
6547
6548 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6549 Use `tramp-handle-directory-files-and-attributes',
6550 `tramp-handle-file-exists-p' and
6551 `tramp-handle-file-newer-than-file-p'.
6552 (tramp-smb-handle-directory-files-and-attributes)
6553 (tramp-smb-handle-file-exists-p)
6554 (tramp-smb-handle-file-newer-than-file-p): Remove.
6555 (tramp-smb-maybe-open-connection):
6556 Replace `tramp-set-process-query-on-exit-flag' by
6557 `tramp-compat-set-process-query-on-exit-flag'.
6558
6559 2010-10-05 Glenn Morris <rgm@gnu.org>
6560
6561 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
6562
6563 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
6564
6565 Continue reorganization of load dependencies. (Bug#7156)
6566
6567 * net/tramp.el (tramp-handle-file-local-copy-hook)
6568 (tramp-delete-temp-file-function): Move down.
6569 (tramp-exists-file-name-handler): Move up.
6570 (tramp-register-file-name-handlers): Simplify autoload.
6571 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
6572 (tramp-handle-directory-files, tramp-handle-dired-uncache)
6573 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
6574 (tramp-handle-file-name-completion)
6575 (tramp-handle-file-name-directory)
6576 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
6577 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
6578 (tramp-handle-find-backup-file-name)
6579 (tramp-handle-insert-file-contents, tramp-handle-load)
6580 (tramp-handle-substitute-in-file-name)
6581 (tramp-handle-unhandled-file-name-directory)
6582 (tramp-mode-string-to-int, tramp-local-host-p)
6583 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
6584
6585 * net/tramp-gvfs.el (top):
6586 * net/tramp-smb.el (top): Do not require 'tramp-sh.
6587
6588 * net/tramp-sh.el (all): Move several objects to tramp.el, see
6589 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
6590
6591 2010-10-04 Glenn Morris <rgm@gnu.org>
6592
6593 * calendar/appt.el (appt-add): Ensure reminders are enabled.
6594 (appt-activate): Give status messages.
6595
6596 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6597
6598 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
6599 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
6600 `gnutls-negotiate' (formerly `starttls-negotiate').
6601 Remove trivial wrapper `starttls-open-stream'.
6602
6603 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
6604
6605 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
6606 log-outgoing commands.
6607 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
6608 to create a buffer local revert-buffer-function variable.
6609 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
6610 revert-buffer-function lambda.
6611
6612 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6613
6614 * net/gnutls.el (starttls-negotiate): Use the plist interface to
6615 `gnutls-boot'. Make TYPE the only required parameter.
6616 Allow TRUSTFILES and KEYFILES to be lists.
6617 (open-ssl-stream): Use it.
6618
6619 2010-10-03 Glenn Morris <rgm@gnu.org>
6620
6621 * subr.el (directory-sep-char): Remove obsolete variable.
6622 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
6623 it is "necessary".
6624
6625 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
6626 * vc/vc.el (vc-static-header-alist): Doc fix.
6627 * vc/vc-cvs.el (vc-cvs-header):
6628 * vc/vc-rcs.el (vc-rcs-header):
6629 * vc/vc-sccs.el (vc-sccs-header):
6630 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
6631 * obsolete/vc-mcvs.el (vc-mcvs-header):
6632 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
6633 on XEmacs.
6634
6635 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
6636
6637 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
6638 Remove obsolete use of binary-overwrite-mode (Bug#7001).
6639
6640 2010-10-03 Glenn Morris <rgm@gnu.org>
6641
6642 * obsolete/x-menu.el: Remove file, obsolete since 21.1.
6643
6644 * textmodes/rst.el (rst-font-lock-keywords-function):
6645 Drop Emacs 20 code.
6646
6647 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
6648
6649 * printing.el: Drop Emacs 20 code.
6650
6651 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
6652 without having used appt.el already).
6653
6654 * subr.el (make-local-hook): Remove function obsolete since 21.1.
6655 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
6656 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
6657 XEmacs.
6658 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
6659 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
6660
6661 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
6662 (charset-width, find-charset-region, chars-in-region, forward-point)
6663 (encode-coding-string, coding-system-p, ccl-execute-on-string)
6664 (define-ccl-program, multibyte-string-p, string-make-multibyte):
6665 Remove compatibility cruft (none of these are used by ps*.el).
6666
6667 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6668
6669 * subr.el (booleanp): Return t instead of a list (Bug#7086).
6670
6671 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
6672
6673 * server.el (server-process-filter, server-return-error):
6674 Give emacsclient time to shut down after receiving an error string.
6675
6676 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
6677
6678 * files.el (remote-file-name-inhibit-cache): New defcustom.
6679
6680 * time.el (display-time-file-nonempty-p):
6681 Use `remote-file-name-inhibit-cache'.
6682
6683 * net/tramp.el (tramp-completion-reread-directory-timeout):
6684 Fix docstring.
6685
6686 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
6687 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
6688 `remote-file-name-inhibit-cache'. Check also for an integer
6689 value. Add/increase counter when `tramp-verbose' >= 10.
6690 (tramp-set-file-property): Add/increase counter when
6691 `tramp-verbose' >= 10.
6692
6693 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6694 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
6695 (tramp-bug): Set tramp-autoload cookie. Report all interned
6696 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
6697 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
6698 characters only in strings.
6699
6700 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
6701 to backward compatibility.
6702
6703 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
6704 (tramp-handle-file-name-all-completions)
6705 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
6706 (tramp-open-connection-setup-interactive-shell):
6707 Call `tramp-cleanup-connection' directly.
6708
6709 2010-10-02 Glenn Morris <rgm@gnu.org>
6710
6711 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
6712
6713 * subr.el (char-bytes): Remove obsolete function.
6714
6715 * isearch.el (isearch-return-char): Remove obsolete function.
6716
6717 * mouse.el: No longer provide mldrag.
6718 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
6719 Remove obsolete aliases.
6720
6721 * comint.el (comint-kill-output): Remove obsolete alias.
6722
6723 * composite.el (decompose-composite-char): Remove obsolete function.
6724 * ps-def.el (decompose-composite-char): Remove unused function.
6725
6726 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
6727
6728 * outline.el (outline-visible): Remove obsolete function.
6729
6730 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
6731 * faces.el (internal-find-face, internal-get-face)
6732 (frame-update-faces, frame-update-face-colors)
6733 (x-frob-font-weight, x-frob-font-slant)
6734 (internal-frob-font-weight, internal-frob-font-slant)
6735 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
6736 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
6737 (x-make-font-bold-italic): Remove functions and aliases, obsolete
6738 since Emacs 21.1.
6739 * emulation/viper-util.el (viper-get-face):
6740 * obsolete/lucid.el (find-face, get-face): Use facep.
6741 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
6742 Remove unused functions.
6743 * vc/ediff-util.el (ediff-submit-report): Doc fix.
6744
6745 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
6746 delete tempfile if interrupted during compilation.
6747
6748 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6749
6750 * net/tls.el (tls-starttls-switches): Give up on using starttls with
6751 gnutls-cli.
6752 (tls-program): Add --insecure to be consistent with the defaults from
6753 openssl s_client. Now all three commands are insecure.
6754
6755 2010-10-01 Eli Zaretskii <eliz@gnu.org>
6756
6757 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
6758 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
6759 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
6760
6761 2010-10-01 Glenn Morris <rgm@gnu.org>
6762
6763 * obsolete/sc.el: Remove file.
6764
6765 * files.el (temporary-file-directory): On darwin, also try
6766 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
6767
6768 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
6769
6770 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
6771 Let's not break compatibility gratuitously, shall we?
6772
6773 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
6774
6775 * net/tls.el (tls-starttls-switches): New variable.
6776 (tls-find-starttls-argument): Use it.
6777 (open-tls-stream): Ditto.
6778
6779 * net/netrc.el (netrc-credentials): Return the value of the "default"
6780 entry.
6781 (netrc-machine): Ditto.
6782
6783 2010-09-30 Eli Zaretskii <eliz@gnu.org>
6784
6785 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
6786
6787 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
6788
6789 * server.el (server-start): Don't write pid to the authentication file.
6790 (server-create-tty-frame): Don't send pid.
6791 (server-process-filter): Send pid at the start of every connection.
6792
6793 2010-09-30 Glenn Morris <rgm@gnu.org>
6794
6795 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
6796 (show-all-diary-entries): Remove obsolete function aliases.
6797
6798 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
6799 Remove options, obsolete since 22.1.
6800 (appt-display-format, appt-display-message):
6801 Remove backwards-compatibility code.
6802 (appt-check): No longer check appt-issue-message.
6803 (appt-make-list): No longer autoload it. Doc fix. No longer
6804 activate the package.
6805
6806 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
6807
6808 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
6809 (starttls-negotiate): Just call boot, and let the handshake be
6810 triggered from the read loop.
6811
6812 2010-09-29 Glenn Morris <rgm@gnu.org>
6813
6814 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
6815 not displaying the diary.
6816 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
6817 * calendar/appt.el (appt-check): No longer need to kill diary.
6818
6819 * calendar/diary-lib.el (diary-list-entries): Move the
6820 "Preparing..." message entirely here.
6821 (diary-simple-display, diary-fancy-display): Move "Preparing..."
6822 messages to diary-list-entries.
6823 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
6824 diary-display-function.
6825
6826 * calendar/diary-lib.el (diary-include-other-diary-files):
6827 Trap some recursive includes.
6828
6829 * calendar/appt.el (appt-activate): Check diary file.
6830
6831 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
6832
6833 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
6834 construction.
6835
6836 * calendar/time-date.el: No need to require cl for Emacs 21.
6837
6838 2010-09-28 Glenn Morris <rgm@gnu.org>
6839
6840 * calendar/appt.el (appt-check): Minor simplification.
6841
6842 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
6843
6844 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
6845 citation prefix.
6846
6847 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
6848
6849 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
6850 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
6851
6852 2010-09-27 Kenichi Handa <handa@m17n.org>
6853
6854 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
6855 "ustar" format.
6856
6857 2010-09-27 Kenichi Handa <handa@m17n.org>
6858
6859 * international/mule.el (define-coding-system): Docstring fixed.
6860
6861 * international/mule-diag.el (describe-character-set): Use princ
6862 with proper print-length and print-level instead of insert.
6863
6864 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
6865
6866 * window.el (walk-windows): Doc fix (bug#7105).
6867
6868 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6869
6870 * emacs-lisp/float-sup.el (e): Remove.
6871
6872 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
6873
6874 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
6875 variable.
6876 (starttls-negotiate): Use it.
6877
6878 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
6879
6880 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
6881 back.
6882
6883 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
6884
6885 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
6886
6887 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
6888
6889 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
6890
6891 * net/netrc.el (netrc-store-data): New function.
6892
6893 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
6894
6895 * net/gnutls.el: GnuTLS glue code to set up a connection.
6896
6897 2010-09-25 Julien Danjou <julien@danjou.info>
6898
6899 * notifications.el: Call dbus-register-signal only if it is bound.
6900
6901 2010-09-25 Glenn Morris <rgm@gnu.org>
6902
6903 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6904 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
6905 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
6906 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
6907 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
6908 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
6909 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
6910 * eshell/esh-util.el, eshell/esh-var.el:
6911 Remove leading `*' from docs of faces and defcustoms.
6912
6913 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
6914
6915 * eshell/em-ls.el (eshell-ls-archive-regexp):
6916 * eshell/esh-util.el (eshell-tar-regexp):
6917 * ibuffer.el (ibuffer-compressed-file-name-regexp):
6918 * info.el (Info-suffix-list):
6919 * international/mule.el (auto-coding-alist):
6920 * woman.el (woman-file-regexp, woman-file-compression-regexp):
6921 * progmodes/etags.el (tags-compression-info-list):
6922 Support xz compression.
6923
6924 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
6925
6926 * files.el (get-free-disk-space): Don't assume the "df" output
6927 columns line up (Bug#6995).
6928
6929 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
6930
6931 * finder.el (finder-unknown-keywords):
6932 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
6933 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
6934
6935 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
6936
6937 * server.el (server-start): Revert part of 2010-08-08 change. Using
6938 address 127.0.0.1 for local host is now done in Fmake_network_process.
6939
6940 2010-09-24 Glenn Morris <rgm@gnu.org>
6941
6942 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
6943 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
6944 * textmodes/css-mode.el, textmodes/dns-mode.el:
6945 Move autoloaded auto-mode-alist entries to files.el.
6946 * files.el (auto-mode-alist): Move entries here.
6947
6948 2010-09-23 Glenn Morris <rgm@gnu.org>
6949
6950 * isearch.el (isearch-lazy-highlight-cleanup)
6951 (isearch-lazy-highlight-initial-delay)
6952 (isearch-lazy-highlight-interval)
6953 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
6954 * net/net-utils.el (ipconfig-program-options):
6955 Move aliases to options before the associated definitions.
6956
6957 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6958
6959 * newcomment.el (comment-normalize-vars): Better test validity of
6960 comment-end-skip.
6961
6962 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6963
6964 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
6965 (float-e): New name for `e'.
6966 (degrees-to-radians, radians-to-degrees):
6967 * calendar/solar.el (solar-longitude):
6968 * calculator.el (calculator-registers, calculator-funcall):
6969 * textmodes/artist.el (artist-spray-random-points):
6970 * play/bubbles.el (bubbles--initialize-images): Use new names.
6971
6972 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
6973
6974 Update to CEDET 1.0's version of EIEIO.
6975
6976 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
6977 New function.
6978 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
6979 (eieio-default-eval-maybe): Eval val instead of unquoting only.
6980 (class-precedence-list): If class is nil, return nil.
6981 (eieio-generic-call): If class of first input arg is nil, don't
6982 look up static methods, and do check for primary methods.
6983 (initialize-instance): See if the default needs to be evaluated
6984 during the constructor.
6985 (eieio-perform-slot-validation-for-default): Don't do the check
6986 for values that will eventually be evaluated.
6987 (eieio-eval-default-p): New function.
6988 (eieio-default-eval-maybe): Use it.
6989
6990 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
6991
6992 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
6993 method-invocation-order.
6994 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
6995 (eieio-class-precedence-dfs): Compute class precedence list using
6996 dfs algorithm.
6997 (eieio-class-precedence-bfs): Compute class precedence list using
6998 bfs algorithm.
6999 (eieio-class-precedence-c3): Compute class precedence list using
7000 c3 algorithm.
7001 (class-precedence-list): New function.
7002 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
7003 (inconsistent-class-hierarchy): New error symbol.
7004 (call-next-method): Stow the replacement argument list for future
7005 call-next-method invocations.
7006
7007 2010-09-23 Glenn Morris <rgm@gnu.org>
7008
7009 * calendar/appt.el (appt-check): If not displaying the diary,
7010 use (diary 1) to only get the entries we need.
7011 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
7012 that it is in day order. (Bug#7019)
7013
7014 * calendar/appt.el (appt-check): Rather than showing the diary,
7015 just turn off invisible display, and only if needed.
7016
7017 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
7018
7019 2010-09-23 Glenn Morris <rgm@gnu.org>
7020
7021 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
7022 (byte-compile-defvar, byte-compile-cl-warn):
7023 Start warnings with lower-case, like the majority.
7024
7025 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
7026
7027 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
7028
7029 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
7030 * files.el (auto-mode-alist): Move ld-script entries here, further down
7031 the list.
7032
7033 * vc/add-log.el: Don't require timezone when compiling.
7034 (timezone-make-date-sortable): Autoload it.
7035 (change-log-sortable-date-at): Don't require timezone.
7036 Use `ignore-errors'.
7037
7038 * comint.el (comint-use-prompt-regexp-instead-of-fields):
7039 Move alias before definition, so it does not need autoloading.
7040
7041 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
7042 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
7043 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
7044 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
7045 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
7046 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
7047 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
7048 * textmodes/tex-mode.el, textmodes/two-column.el:
7049 Remove leading `*' from docs of defcustoms etc.
7050
7051 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
7052
7053 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
7054
7055 2010-09-22 Dan Christensen <jdc@uwo.ca>
7056
7057 * calendar/time-date.el (date-to-time): Try using parse-time-string
7058 first before using the slower timezone-make-date-arpa-standard.
7059
7060 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
7061
7062 * calendar/time-date.el (format-seconds): Comment fix.
7063
7064 2010-09-22 Glenn Morris <rgm@gnu.org>
7065
7066 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
7067 is not automatically buffer-local.
7068
7069 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7070
7071 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
7072 (smie-indent-comment): Be more careful with comment-start-skip.
7073 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
7074 (smie-indent-functions): Use them.
7075
7076 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
7077
7078 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
7079
7080 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
7081
7082 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
7083 tool-bar-position. Don't modify frame parameters here.
7084 (menu-bar-options-save): Add tool-bar-position.
7085
7086 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
7087
7088 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7089
7090 * textmodes/reftex-parse.el (reftex-what-macro)
7091 (reftex-context-substring): Let-bind forward-sexp-function to nil
7092 since we don't need/want to treat \begin...\end as a block (bug#7053).
7093
7094 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
7095
7096 * simple.el (blink-matching-open): Use syntax-class.
7097
7098 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
7099 Set invisibility spec for pascal's outline mode.
7100 (pascal-outline-change): Clean up calling convention.
7101 (pascal-show-all, pascal-hide-other-defuns): Update callers.
7102
7103 * progmodes/prolog.el (prolog-smie-forward-token)
7104 (prolog-smie-backward-token): New functions.
7105 (prolog-mode-variables): Use them to parse "!," correctly.
7106 Set up smie-blink-matching for ".".
7107
7108 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
7109 and `end'.
7110 (ispell-region, ispell-process-line): Update users.
7111
7112 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
7113 point-min==1.
7114
7115 * textmodes/ispell.el: Fix commenting convention.
7116 (ispell-parse-output): Simplify, use push.
7117 (ispell-region): Use match-string-no-properties.
7118 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
7119 (ispell-minor-mode): Use define-minor-mode.
7120 (ispell-message): Remove unused var `skip-regexp'.
7121 (ispell-add-per-file-word-list): Use dynamic let-binding.
7122 Try and use the proper comment marker.
7123
7124 * mail/sendmail.el: Fix commenting convention.
7125 (sendmail-send-it): Use line-beginning-position.
7126
7127 * help-fns.el (describe-variable): Add original value, if applicable.
7128
7129 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
7130
7131 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
7132
7133 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
7134
7135 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7136
7137 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
7138 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
7139 (smie-prec2-levels): Use them to better diagnose precedence cycles.
7140 (smie-blink-matching-check): Don't signal a mismatch if car is t.
7141 (smie-blink-matching-open): Rewrite to remove assumptions, so that
7142 something like "." can also be a closer.
7143 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
7144 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
7145 Rename internal functions to use "--". Update callers.
7146
7147 * frame.el (make-frame-names-alist): Don't list frames on other displays.
7148
7149 * fringe.el (fringe-styles): New var.
7150 (fringe-mode, fringe-query-style): Use it.
7151
7152 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
7153
7154 * progmodes/sql.el: Version 2.8
7155 (sql-login-params): Update widget structure; changes still needed.
7156 (sql-product-alist): Add :list-all and :list-table features for
7157 SQLite, Postgres and MySQL products.
7158 (sql-redirect): Handle default value.
7159 (sql-execute, sql-execute-feature): New functions.
7160 (sql-read-table-name): New function.
7161 (sql-list-all, sql-list-table): New functions. User API.
7162 (sql-mode-map, sql-interactive-mode-map): Add key definitions
7163 for above functions.
7164 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
7165 for above functions.
7166 (sql-postgres-login-params): Add user and database defaults.
7167 (sql-buffer-live-p): Bug fix.
7168 (sql-product-history): New variable.
7169 (sql-read-product): New function. Use it.
7170 (sql-set-product, sql-product-interactive): Use it.
7171 (sql-connection-history): New variable.
7172 (sql-read-connection): New function. Use it.
7173 (sql-connect): New function.
7174 (sql-for-each-login): Redesign function interface.
7175 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
7176 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
7177 (sql-comint): Check for program. Existing live buffer.
7178 (sql-comint-postgres): Add port parameter.
7179
7180 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7181
7182 * emacs-lisp/warnings.el: Fix commenting convention.
7183 (display-warning): Use special mode and make the buffer read-only.
7184
7185 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
7186
7187 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
7188 empty string when it follows a repeated or optional pattern.
7189
7190 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7191
7192 * indent.el (indent-according-to-mode): Apply syntax-propertize.
7193 (indent-region): Use indent-according-to-mode.
7194
7195 2010-09-18 Eli Zaretskii <eliz@gnu.org>
7196
7197 * fringe.el (fringe-mode): Doc fix.
7198
7199 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
7200
7201 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
7202 refreshing the preview buffer.
7203
7204 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7205
7206 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
7207 (latex-syntax-propertize-rules): New consts; replace
7208 tex-font-lock-syntactic-keywords.
7209 (tex-env-mark, latex-env-before-change): New functions.
7210 (latex-electric-env-pair-mode): New minor mode.
7211 (tex-font-lock-verb): Change arguments; do move point.
7212 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
7213 representation as a form of comment.
7214 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
7215 (doctex-syntax-propertize-rules): New const; replaces
7216 doctex-font-lock-syntactic-keywords.
7217 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
7218
7219 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
7220 (fortran-make-syntax-propertize-function): New function; replaces
7221 fortran-font-lock-syntactic-keywords.
7222 (fortran-mode): Use it.
7223 (fortran-line-length): Use it. Improve interactive spec.
7224
7225 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
7226 (syntax-propertize-rules): Add var-ref case. Fix offset computation
7227 when adding surrounding \(..\).
7228
7229 * progmodes/js.el (js-mode): Fix last change (bug#7054).
7230
7231 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7232
7233 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
7234 Use with-current-buffer.
7235
7236 * isearch.el (isearch-face): Rename from `isearch'.
7237 (isearch-highlight): Use new name.
7238
7239 2010-09-17 Eli Zaretskii <eliz@gnu.org>
7240
7241 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
7242 5, for `half' width fringes. (Bug#6933)
7243
7244 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7245
7246 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
7247 (byte-compile-defvar): "foo/bar" does not lack a prefix.
7248
7249 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
7250
7251 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
7252
7253 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
7254 in calculating new frame position. Add more space between new and
7255 parent on the left (Bug#7048).
7256
7257 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
7258
7259 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
7260 defmacro.
7261
7262 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
7263
7264 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
7265
7266 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
7267 obsolete alias for x-selection-value.
7268
7269 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
7270
7271 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
7272
7273 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
7274 cookie.
7275
7276 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
7277
7278 * net/tramp-compat.el (tramp-compat-with-temp-message)
7279 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
7280 (tramp-compat-process-put): New defuns.
7281
7282 * net/tramp.el (top):
7283 * net/tramp-gvfs.el (top):
7284 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
7285
7286 * net/tramp.el (tramp-progress-reporter-update):
7287 Use `tramp-compat-funcall'.
7288
7289 * net/tramp.el (tramp-process-actions):
7290 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
7291 * net/tramp-sh.el (tramp-handle-vc-registered)
7292 (tramp-get-remote-stat, tramp-get-remote-readlink):
7293 Use `tramp-compat-with-temp-message'.
7294
7295 * net/tramp-sh.el (top): Require 'cl.
7296 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
7297 (tramp-open-connection-setup-interactive-shell):
7298 Use `tramp-compat-process-put'.
7299
7300 2010-09-15 Alan Mackenzie <acm@muc.de>
7301
7302 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
7303 indentation.
7304 (c-forward-<>-arglist-recur): Fix an infinite recursion.
7305
7306 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
7307
7308 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
7309 `lexical' for warnings related to lexical scoping.
7310 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
7311 global vars which don't have a prefix and could hence affect lexical
7312 scoping in unrelated files.
7313
7314 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7315
7316 * net/imap.el: Revert back to version
7317 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
7318 seem problematic.
7319
7320 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
7321
7322 * obsolete/old-whitespace.el (whitespace-unload-function):
7323 Explicitly pass `obarray' to `unintern' to avoid a warning.
7324
7325 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7326
7327 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
7328 Add `when' argument. Update callers.
7329
7330 * subr.el (unintern): Declare the obarray arg mandatory.
7331
7332 2010-09-14 Glenn Morris <rgm@gnu.org>
7333
7334 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
7335 Doc fixes.
7336
7337 * calendar/diary-lib.el (diary-included-files): New variable.
7338 (diary-list-entries): Maybe initialize diary-included-files.
7339 (diary-include-other-diary-files): Append to diary-included-files.
7340 * calendar/appt.el (appt-update-list): Also check the members of
7341 diary-included-files. (Bug#6999)
7342 (appt-check): Doc fix.
7343
7344 2010-09-14 David Reitter <david.reitter@gmail.com>
7345
7346 * simple.el (line-move-visual): Do not truncate goal column to
7347 integer size. (Bug#7020)
7348
7349 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7350
7351 * repeat.el (repeat): Allow repeating when the last event is a click.
7352 Suggested by Drew Adams (bug#6256).
7353
7354 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
7355
7356 * vc/vc-hg.el (vc-hg-state, vc-hg-working-revision):
7357 Replace setting HGRCPATH to "" by some less invasive --config options.
7358
7359 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7360
7361 * font-lock.el (font-lock-beginning-of-syntax-function):
7362 Mark as obsolete.
7363
7364 2010-09-14 Glenn Morris <rgm@gnu.org>
7365
7366 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
7367 and tool-bar modes. (Bug#6211)
7368 (menu-bar-mode): Move setting of standard-value after the
7369 minor-mode definition, otherwise it seems to have no effect.
7370
7371 2010-09-14 Masatake YAMATO <yamato@redhat.com>
7372
7373 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
7374 Fix typo. (Bug#6976)
7375
7376 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7377
7378 * whitespace.el: Allow cleaning up blanks without blank
7379 visualization (Bug#6651). Adjust help window for
7380 whitespace-toggle-options (Bug#6479). Allow to use fill-column
7381 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
7382 (whitespace-style): Add new value 'face. Adjust docstring.
7383 (whitespace-space, whitespace-hspace, whitespace-tab):
7384 Adjust foreground property face.
7385 (whitespace-line-column): Adjust docstring and type declaration.
7386 (whitespace-style-value-list, whitespace-toggle-option-alist)
7387 (whitespace-help-text): Adjust const initialization.
7388 (whitespace-toggle-options, global-whitespace-toggle-options):
7389 Adjust docstring.
7390 (whitespace-display-window, whitespace-interactive-char)
7391 (whitespace-style-face-p, whitespace-color-on): Adjust code.
7392 (whitespace-help-scroll): New fun.
7393
7394 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
7395
7396 * calendar/time-date.el (format-seconds): Comment fix.
7397
7398 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
7399
7400 * progmodes/sql.el: Version 2.7.
7401 (sql-buffer-live-p): Improve detection.
7402 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7403 (sql-set-sqli-buffer): Use it.
7404 (sql-product-interactive): Run `sql-set-sqli-hook'.
7405 (sql-rename-buffer): Code cleanup.
7406 (sql-redirect, sql-redirect-value): New functions. More to come.
7407
7408 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
7409
7410 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.
7411 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
7412 (TRAMP_SRC): New macro.
7413 ($(lisp)/net/tramp-loaddefs.el): New target.
7414
7415 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
7416
7417 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
7418
7419 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
7420
7421 * net/tramp.el (top): Don't show loading message. Require just
7422 'tramp-compat, everything else is required there.
7423 Use `ignore-errors' where appropriate.
7424 (tramp-inline-compress-start-size, tramp-copy-size-limit)
7425 (tramp-terminal-type, tramp-end-of-output)
7426 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
7427 (tramp-completion-function-alist-ssh)
7428 (tramp-completion-function-alist-telnet)
7429 (tramp-completion-function-alist-su)
7430 (tramp-completion-function-alist-putty, tramp-remote-path)
7431 (tramp-remote-process-environment, tramp-sh-extra-args)
7432 (tramp-actions-before-shell, tramp-uudecode)
7433 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
7434 (tramp-perl-file-attributes)
7435 (tramp-perl-directory-files-and-attributes)
7436 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
7437 (tramp-perl-encode, tramp-perl-decode)
7438 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
7439 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
7440 (tramp-handle-make-symbolic-link, tramp-handle-load)
7441 (tramp-handle-file-name-as-directory)
7442 (tramp-handle-file-name-directory)
7443 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
7444 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
7445 (tramp-do-file-attributes-with-ls)
7446 (tramp-do-file-attributes-with-perl)
7447 (tramp-do-file-attributes-with-stat)
7448 (tramp-handle-set-visited-file-modtime)
7449 (tramp-handle-verify-visited-file-modtime)
7450 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
7451 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
7452 (tramp-handle-file-selinux-context)
7453 (tramp-handle-set-file-selinux-context)
7454 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
7455 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
7456 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
7457 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
7458 (tramp-handle-file-ownership-preserved-p)
7459 (tramp-handle-directory-file-name, tramp-handle-directory-files)
7460 (tramp-handle-directory-files-and-attributes)
7461 (tramp-do-directory-files-and-attributes-with-perl)
7462 (tramp-do-directory-files-and-attributes-with-stat)
7463 (tramp-handle-file-name-all-completions)
7464 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
7465 (tramp-handle-copy-file, tramp-handle-copy-directory)
7466 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
7467 (tramp-do-copy-or-rename-file-via-buffer)
7468 (tramp-do-copy-or-rename-file-directly)
7469 (tramp-do-copy-or-rename-file-out-of-band)
7470 (tramp-handle-make-directory, tramp-handle-delete-directory)
7471 (tramp-handle-delete-file)
7472 (tramp-handle-dired-recursive-delete-directory)
7473 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
7474 (tramp-handle-insert-directory)
7475 (tramp-handle-unhandled-file-name-directory)
7476 (tramp-handle-expand-file-name)
7477 (tramp-handle-substitute-in-file-name)
7478 (tramp-handle-executable-find, tramp-process-sentinel)
7479 (tramp-handle-start-file-process, tramp-handle-process-file)
7480 (tramp-handle-call-process-region, tramp-handle-shell-command)
7481 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
7482 (tramp-handle-insert-file-contents)
7483 (tramp-handle-insert-file-contents-literally)
7484 (tramp-handle-find-backup-file-name)
7485 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
7486 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
7487 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
7488 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
7489 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
7490 (tramp-find-file-exists-command, tramp-open-shell)
7491 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
7492 (tramp-open-connection-setup-interactive-shell)
7493 (tramp-local-coding-commands, tramp-remote-coding-commands)
7494 (tramp-find-inline-encoding, tramp-call-local-coding-command)
7495 (tramp-inline-compress-commands, tramp-find-inline-compress)
7496 (tramp-compute-multi-hops, tramp-maybe-open-connection)
7497 (tramp-send-command, tramp-wait-for-output)
7498 (tramp-send-command-and-check, tramp-barf-unless-okay)
7499 (tramp-send-command-and-read, tramp-mode-string-to-int)
7500 (tramp-convert-file-attributes, tramp-check-cached-permissions)
7501 (tramp-file-mode-from-int, tramp-file-mode-permissions)
7502 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
7503 (tramp-method-out-of-band-p, tramp-local-host-p)
7504 (tramp-get-remote-path, tramp-get-remote-tmpdir)
7505 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
7506 (tramp-get-test-command, tramp-get-test-nt-command)
7507 (tramp-get-file-exists-command, tramp-get-remote-ln)
7508 (tramp-get-remote-perl, tramp-get-remote-stat)
7509 (tramp-get-remote-readlink, tramp-get-remote-trash)
7510 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
7511 (tramp-get-local-uid, tramp-get-local-gid)
7512 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
7513 tramp-sh.el.
7514 (tramp-methods, tramp-default-method-alist)
7515 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
7516 Move initialization to tramp-sh.el.
7517 (tramp-temp-name-prefix): Make it a defconst.
7518 (tramp-dissect-file-name): Don't check anymore for multi-hop
7519 methods.
7520 (tramp-debug-outline-regexp): Add a docstring.
7521 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
7522 (tramp-get-debug-buffer): Use it.
7523
7524 * net/tramp-cache.el (top): Set tramp-autoload cookie for
7525 initialization forms.
7526 (tramp-set-connection-property): Don't protect `tramp-message'
7527 call, it isn't necessary any longer.
7528 (tramp-dump-connection-properties): Use `ignore-errors'.
7529
7530 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
7531 'password-cache and 'auth-source.
7532
7533 * net/tramp-gvfs.el (top):
7534 * net/tramp-smb.el (top): Require 'tramp-sh.
7535
7536 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
7537
7538 * net/tramp-sh.el: New file, derived from tramp.el.
7539 (top): Initialize `tramp-methods', `tramp-default-method-alist',
7540 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
7541 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
7542 Use `ignore-errors' where appropriate.
7543 (tramp-sh-file-name-handler-alist): Rename from
7544 `tramp-file-name-handler-alist'.
7545 (tramp-send-command-and-check): Return t or nil. Remove all
7546 `zerop' checks, where called.
7547 (tramp-handle-set-file-modes)
7548 (tramp-do-copy-or-rename-file-directly)
7549 (tramp-handle-delete-directory, tramp-handle-delete-file)
7550 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
7551 (tramp-sh-file-name-handler, tramp-send-command-and-check)
7552 (tramp-get-remote-ln): Set tramp-autoload cookie.
7553
7554 * net/tramp-fish.el: Remove file.
7555
7556 2010-09-13 Daiki Ueno <ueno@unixuser.org>
7557
7558 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
7559 buffer-file-name to avoid file-locking. (Bug#7026)
7560
7561 2010-09-13 Julien Danjou <julien@danjou.info>
7562
7563 * notifications.el (notifications-notify): Add support for
7564 image-path and sound-name.
7565 (notifications-specification-version): Add this variable.
7566
7567 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7568
7569 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
7570
7571 2010-09-12 Leo <sdl.web@gmail.com>
7572
7573 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
7574 (rcirc-completion-start): New variables.
7575 (rcirc-nick-completions): Rename to rcirc-completions.
7576 (rcirc-nick-completion-start-offset): Delete.
7577 (rcirc-completion-at-point): New function for constructing
7578 completion data for both nicks and irc commands. Add to
7579 completion-at-point-functions in rcirc mode.
7580 (rcirc-complete): Rename from rcirc-nick-complete; use
7581 rcirc-completion-at-point.
7582 (defun-rcirc-command): Update rcirc-client-commands.
7583
7584 2010-09-11 Glenn Morris <rgm@gnu.org>
7585
7586 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
7587 atomically, to avoid parallel build errors. (Bug#4196)
7588
7589 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
7590
7591 * progmodes/sql.el: Version 2.6
7592 (sql-dialect): Synonym for "sql-product".
7593 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7594 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
7595 Set "sql-buffer" to buffer name not buffer object so multiple sql
7596 interactive buffers work properly. Reverts misguided changes in
7597 earlier work.
7598 (sql-comint): Make sure different buffer name is used if "*SQL*"
7599 buffer is for a different product.
7600 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
7601 login param.
7602 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
7603 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
7604 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
7605 Accept new buffer name or prompt for one.
7606 (sql-port): Default to zero.
7607 (sql-comint-mysql): Handle "sql-port" as a numeric.
7608 (sql-port-history): Delete unused variable.
7609 (sql-get-login): Default "sql-port" to a number.
7610 (sql-product-alist): Correct Postgres prompt and terminator regexp.
7611 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
7612 "sqlite3" executables.
7613 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
7614 (sql-buffer-live-p): New function.
7615 (sql-mode-menu, sql-send-string): Use it.
7616 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
7617 syntax pattern.
7618 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
7619 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
7620
7621 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
7622
7623 * net/netrc.el (netrc-credentials): New convenience function.
7624
7625 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7626
7627 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
7628 to replace texinfo-font-lock-syntactic-keywords.
7629 (texinfo-mode): Use it.
7630
7631 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
7632 Use syntax-propertize-function.
7633
7634 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
7635 replace sgml-font-lock-syntactic-keywords.
7636 (sgml-mode): Use it.
7637
7638 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
7639 since we don't use it.
7640
7641 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
7642
7643 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
7644 if available.
7645 (vhdl-fontify-buffer): Adjust.
7646
7647 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
7648 replace tcl-font-lock-syntactic-keywords.
7649 (tcl-mode): Use it.
7650
7651 * progmodes/simula.el (simula-syntax-propertize-function): New var to
7652 replace simula-font-lock-syntactic-keywords.
7653 (simula-mode): Use it.
7654
7655 * progmodes/sh-script.el (sh-st-symbol): Remove.
7656 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
7657 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
7658 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
7659 (sh-font-lock-paren): Set syntax-multiline.
7660 (sh-font-lock-syntactic-keywords): Remove.
7661 (sh-syntax-propertize-function): New function to replace it.
7662 (sh-mode): Use it.
7663
7664 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
7665 Define while compiling.
7666 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7667 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
7668 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
7669 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7670 (ruby-here-doc-end-syntax): Only define when
7671 syntax-propertize is not available.
7672 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
7673 New functions.
7674 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
7675 (electric-indent-chars): Silence bytecompiler.
7676 (ruby-mode): Use prog-mode, syntax-propertize-function, and
7677 electric-indent-chars.
7678
7679 * progmodes/python.el (python-syntax-propertize-function): New var to
7680 replace python-font-lock-syntactic-keywords.
7681 (python-mode): Use it.
7682 (python-quote-syntax): Simplify and adjust to new use.
7683
7684 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
7685 replace perl-font-lock-syntactic-keywords.
7686 (perl-syntax-propertize-special-constructs): New fun to replace
7687 perl-font-lock-special-syntactic-constructs.
7688 (perl-font-lock-syntactic-face-function): New fun.
7689 (perl-mode): Use it.
7690
7691 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
7692 to replace octave-font-lock-close-quotes.
7693 (octave-syntax-propertize-function): New function to replace
7694 octave-font-lock-syntactic-keywords.
7695 (octave-mode): Use it.
7696
7697 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
7698 replaces mixal-font-lock-syntactic-keywords.
7699 (mixal-mode): Use it.
7700
7701 * progmodes/make-mode.el (makefile-syntax-propertize-function):
7702 New var; replaces makefile-font-lock-syntactic-keywords.
7703 (makefile-mode): Use it.
7704 (makefile-imake-mode): Adjust.
7705
7706 * progmodes/js.el (js--regexp-literal): Define while compiling.
7707 (js-syntax-propertize-function): New var; replaces
7708 js-font-lock-syntactic-keywords.
7709 (js-mode): Use it.
7710
7711 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
7712 replaces gdb-script-font-lock-syntactic-keywords.
7713 (gdb-script-mode): Use it.
7714
7715 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
7716 (fortran--font-lock-syntactic-keywords): New var.
7717 (fortran-line-length): Update syntax-propertize-function and
7718 fortran--font-lock-syntactic-keywords.
7719
7720 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
7721
7722 * progmodes/cfengine.el (cfengine-mode):
7723 Use syntax-propertize-function.
7724 (cfengine-font-lock-syntactic-keywords): Remove.
7725
7726 * progmodes/autoconf.el (autoconf-mode):
7727 Use syntax-propertize-function.
7728 (autoconf-font-lock-syntactic-keywords): Remove.
7729
7730 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
7731 (ada-after-change-function, ada-initialize-syntax-table-properties)
7732 (ada-handle-syntax-table-properties): Only define when
7733 syntax-propertize is not available.
7734 (ada-mode): Use syntax-propertize-function.
7735
7736 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
7737 (font-lock-fontify-syntactic-keywords-region): Move handling of
7738 font-lock-syntactically-fontified to...
7739 (font-lock-default-fontify-region): ...here.
7740 Let syntax-propertize-function take precedence.
7741 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
7742
7743 * emacs-lisp/syntax.el (syntax-propertize-function)
7744 (syntax-propertize-chunk-size, syntax-propertize--done)
7745 (syntax-propertize-extend-region-functions): New vars.
7746 (syntax-propertize-wholelines, syntax-propertize-multiline)
7747 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
7748 (syntax-propertize): New functions.
7749 (syntax-propertize-rules): New macro.
7750 (syntax-ppss-flush-cache): Set syntax-propertize--done.
7751 (syntax-ppss): Call syntax-propertize.
7752
7753 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
7754
7755 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
7756
7757 * textmodes/ispell.el (ispell-init-process): Improve comments.
7758 XEmacs compatibility changes regarding (add-hook) 'local option
7759 and (set-process-query-on-exit-flag).
7760
7761 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
7762
7763 * net/tramp-cache.el (tramp-parse-connection-properties):
7764 Set tramp-autoload cookie.
7765
7766 2010-09-09 Glenn Morris <rgm@gnu.org>
7767
7768 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
7769 (imagemagick-register-types): Doc fix.
7770
7771 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
7772
7773 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
7774
7775 * progmodes/js.el (require): Require is already "eval-and-compile".
7776 (js--re-search-forward): Avoid `eval'. Preserve the error data.
7777 (js--re-search-backward): Use js--re-search-forward.
7778
7779 * progmodes/fortran.el (fortran-line-length): Don't recompute
7780 syntactic keywords redundantly a second time.
7781
7782 * progmodes/ada-mode.el: Replace "(set '" with setq.
7783 (ada-mode): Simplify.
7784 (ada-create-case-exception, ada-adjust-case-interactive)
7785 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
7786 (ada-search-ignore-string-comment, ada-move-to-start)
7787 (ada-move-to-end): Use with-syntax-table.
7788
7789 * font-lock.el (save-buffer-state): Remove `varlist' arg.
7790 (font-lock-unfontify-region, font-lock-default-fontify-region):
7791 Update usage correspondingly.
7792 (font-lock-fontify-syntactic-keywords-region):
7793 Set parse-sexp-lookup-properties buffer-locally here.
7794 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
7795
7796 * simple.el (blink-matching-open): Don't burp if we can't find a match.
7797
7798 2010-09-08 Glenn Morris <rgm@gnu.org>
7799
7800 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
7801 Error if not compiled with -DBYTE_CODE_METER.
7802
7803 * emacs-lisp/bytecomp.el (byte-recompile-directory):
7804 Ignore dir-locals-file.
7805
7806 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
7807
7808 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7809 Not a const.
7810 (compilation-error-regexp-alist-alist): Rule out ": " in file names
7811 for the `gnu' messages.
7812 (compilation-set-skip-threshold): New command.
7813 (compilation-start): Use \' rather than $.
7814 (compilation-forget-errors): Use clrhash.
7815
7816 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
7817
7818 * textmodes/ispell.el (ispell-valid-dictionary-list):
7819 Simplify logic.
7820
7821 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
7822
7823 Migrate to Tramp 2.2. Rearrange load dependencies.
7824 (Bug#1529, Bug#5448, Bug#5705)
7825
7826 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
7827 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
7828 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
7829
7830 * net/tramp.el (top): Remove all other tramp-* loads except
7831 tramp-compat.el. Remove all changes to tramp-unload-hook for
7832 other tramp-* packages. Rearrange defun order. Change calls of
7833 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
7834 `tramp-compat-octal-to-decimal' to new function names.
7835 (tramp-terminal-type, tramp-initial-end-of-output)
7836 (tramp-methods, tramp-foreign-file-name-handler-alist)
7837 (tramp-tramp-file-p, tramp-completion-mode-p)
7838 (tramp-send-command-and-check, tramp-get-remote-path)
7839 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
7840 (tramp-shell-quote-argument): Set tramp-autoload cookie.
7841 (with-file-property, with-connection-property): Move to
7842 tramp-cache.el.
7843 (tramp-local-call-process, tramp-decimal-to-octal)
7844 (tramp-octal-to-decimal): Move to tramp-compat.el.
7845 (tramp-handle-shell-command): Do not require 'shell.
7846 (tramp-compute-multi-hops): No special handling for tramp-gw-*
7847 symbols.
7848 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
7849
7850 * net/tramp-cache.el (top): Require 'tramp. Add to
7851 `tramp-unload-hook'.
7852 (tramp-cache-data, tramp-get-file-property)
7853 (tramp-set-file-property, tramp-flush-file-property)
7854 (tramp-flush-directory-property, tramp-get-connection-property)
7855 (tramp-set-connection-property, tramp-flush-connection-property)
7856 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
7857 cookie.
7858 (with-file-property, with-connection-property): New defuns, moved
7859 from tramp.el.
7860 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
7861 macro.
7862
7863 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
7864 (tramp-version): Set tramp-autoload cookie.
7865
7866 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
7867 changes to tramp-unload-hook for other tramp-* packages. Add to
7868 `tramp-unload-hook'.
7869 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
7870 (tramp-compat-call-process): New defuns, moved from tramp.el.
7871
7872 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
7873 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
7874 Add to `tramp-unload-hook'. Change call of
7875 `tramp-compat-decimal-to-octal' to new function name.
7876 (tramp-fish-method): Make it a defconst.
7877 (tramp-fish-file-name-p): Make it a defsubst.
7878 (tramp-fish-method, tramp-fish-file-name-handler)
7879 (tramp-fish-file-name-p): Set tramp-autoload cookie.
7880
7881 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
7882 `tramp-foreign-file-name-handler-alist'. Add to
7883 `tramp-unload-hook'.
7884 (tramp-ftp-method): Make it a defconst.
7885 (tramp-ftp-file-name-p): Make it a defsubst.
7886 (tramp-ftp-method, tramp-ftp-file-name-handler)
7887 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
7888
7889 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
7890 `tramp-foreign-file-name-handler-alist'. Add to
7891 `tramp-unload-hook'. Change checks, whether package can be
7892 loaded.
7893 (tramp-gvfs-file-name-p): Make it a defsubst.
7894 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
7895 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
7896 (tramp-gvfs-handle-file-directory-p): New defun.
7897 (tramp-gvfs-file-name-handler-alist): Use it.
7898
7899 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
7900 `tramp-foreign-file-name-handler-alist'. Add to
7901 `tramp-unload-hook'.
7902 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
7903 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
7904 defconst.
7905 (tramp-gw-tunnel-method, tramp-gw-socks-method)
7906 (tramp-gw-open-connection): Set tramp-autoload cookie.
7907
7908 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
7909 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
7910 Add to `tramp-unload-hook'. Change checks, whether package can be
7911 loaded.
7912 (tramp-imap-file-name-p): Make it a defsubst.
7913 (tramp-imap-method, tramp-imaps-method)
7914 (tramp-imap-file-name-handler)
7915 (tramp-imap-file-name-p): Set tramp-autoload cookie.
7916
7917 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
7918 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
7919 Add to `tramp-unload-hook'. Change checks, whether package can be
7920 loaded. Change call of `tramp-compat-decimal-to-octal' to new
7921 function name.
7922 (tramp-smb-tunnel-method): Make it a defconst.
7923 (tramp-smb-file-name-p): Make it a defsubst.
7924 (tramp-smb-method, tramp-smb-file-name-handler)
7925 (tramp-smb-file-name-p): Set tramp-autoload cookie.
7926
7927 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
7928 (tramp-uuencode-region): Set tramp-autoload cookie.
7929
7930 * net/trampver.el (top) Add to `tramp-unload-hook'.
7931 (tramp-version, tramp-bug-report-address): Set tramp-autoload
7932 cookie. Update release number.
7933
7934 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
7935
7936 * textmodes/ispell.el (ispell-start-process): Make sure original
7937 arg list is properly initialized (Bug#6993, Bug#6994).
7938
7939 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
7940
7941 * files.el (directory-abbrev-alist): Use \` as default regexp.
7942
7943 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
7944 chars like - or ] (bug#6984).
7945 (rx-any-condense-range): Explode 2-char ranges.
7946
7947 2010-09-06 Glenn Morris <rgm@gnu.org>
7948
7949 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
7950
7951 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7952
7953 * textmodes/bibtex.el:
7954 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
7955
7956 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7957
7958 * net/imap.el (imap-message-map): Remove optional buffer parameter,
7959 since no callers use it.
7960 (imap-message-get): Ditto.
7961 (imap-message-put): Ditto.
7962 (imap-mailbox-map): Ditto.
7963 (imap-mailbox-put): Ditto.
7964 (imap-mailbox-get): Ditto.
7965 (imap-mailbox-get): Revert last change for this function.
7966
7967 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7968
7969 * net/imap.el (imap-fetch-safe): Remove function, and alter all
7970 callers to use `imap-fetch' instead. According to the comments, this
7971 should be safe, since all other IMAP clients use the 1:* syntax.
7972 (imap-enable-exchange-bug-workaround): Remove.
7973 (imap-debug): Remove -- doesn't seem very useful.
7974
7975 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7976
7977 * net/imap.el (imap-log): New convenience function used throughout
7978 instead of repeating the same code all over the place.
7979
7980 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
7981
7982 * mouse.el (mouse-save-then-kill): Save region to kill-ring
7983 when mouse-drag-copy-region is non-nil (Bug#6956).
7984
7985 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
7986
7987 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
7988 Improve regexps (Bug#6987).
7989 (dired-sort-toggle): Search more robustly for -t flag.
7990
7991 * files.el (get-free-disk-space): Search more robustly for
7992 "available" column. Suggested by Ehud Karni
7993 <ehud@unix.mvs.co.il>.
7994
7995 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
7996
7997 * international/uni-bidi.el:
7998 * international/uni-category.el:
7999 * international/uni-combining.el:
8000 * international/uni-decimal.el:
8001 * international/uni-mirrored.el:
8002 * international/uni-name.el: Regenerate.
8003
8004 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8005
8006 * electric.el (electric-indent-post-self-insert-function):
8007 Don't reindent with a sloppy indentation function.
8008
8009 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
8010 border case in change-log-mode.
8011
8012 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
8013
8014 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8015 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
8016 Recognize leading tab in gcc-include regexp. Ignore names with
8017 leading "from" or "in" in gnu regexp (Bug#6937).
8018
8019 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8020
8021 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
8022 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
8023 (ispell-start-process): Avoid setq and simplify logic.
8024 (ispell-init-process): Setup kill-buffer-hook locally when needed.
8025 (kill-buffer-hook): Don't use it globally with code that uses
8026 expand-file-name since that may call kill-buffer via
8027 code_conversion_restore.
8028
8029 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
8030
8031 * emacs-lisp/package.el (package-directory-list): Only call
8032 file-name-nondirectory on a string.
8033
8034 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
8035
8036 * emacs-lisp/package.el (package--download-one-archive):
8037 Ensure that archive-contents is valid before saving it.
8038 (package-activate-1, package-mark-obsolete, define-package)
8039 (package-compute-transaction, package-list-maybe-add): Use push.
8040
8041 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
8042
8043 Use SMIE's blink-paren for octave-mode.
8044 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
8045 Backslashes do not escape single-quotes, single-quotes do.
8046 (octave-block-else-regexp, octave-block-end-regexp)
8047 (octave-block-match-alist): Remove.
8048 (octave-smie-bnf-table): New var, with old content.
8049 (octave-smie-op-levels): Use it.
8050 (octave-smie-closer-alist): New var.
8051 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
8052 (octave-blink-matching-block-open): Remove.
8053 (octave-reindent-then-newline-and-indent, octave-electric-semi)
8054 (octave-electric-space): Let self-insert-command run expand-abbrev and
8055 blink parens.
8056
8057 * electric.el (electricity): New group.
8058 (electric-indent-chars): New var.
8059 (electric-indent-post-self-insert-function): New fun.
8060 (electric-indent-mode): New minor mode.
8061 (electric-pair-skip-self): New custom.
8062 (electric-pair-post-self-insert-function): New function.
8063 (electric-pair-mode): New minor mode.
8064
8065 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
8066 calcAlg-blink-matching-open.
8067 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
8068 (calc-do-alg-entry): Only touch the part of the keymap that varies.
8069 Use the new blink-matching-check-function.
8070
8071 Provide blink-matching support to SMIE.
8072 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
8073 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
8074 (smie-blink-matching-check, smie-blink-matching-open): New functions.
8075
8076 * simple.el (newline): Fix last change to properly remove itself from
8077 the hook.
8078
8079 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
8080
8081 * simple.el (newline): Eliminate optimization.
8082 Use post-self-insert-hook to set hard-newline and things before
8083 running post-self-insert-hook.
8084 (blink-matching-check-mismatch): New function.
8085 (blink-matching-check-function): New variable.
8086 (blink-matching-open): Use them.
8087 Skip back forward over prefix chars skipped by forward-sexp.
8088 Don't check if the parens are backslash escaped.
8089 (blink-paren-post-self-insert-function): Check backslash escaping here.
8090
8091 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
8092
8093 * emacs-lisp/package.el (package-menu-mode-map):
8094 Change package-menu-revert bindings to revert-buffer.
8095 (package-menu-mode): Set revert-buffer-function.
8096 (package-menu-revert): Doc fix.
8097
8098 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
8099
8100 * textmodes/ispell.el (ispell-init-process): Use "~/" as
8101 `default-directory' unless using Ispell per-directory personal
8102 dictionaries and not in a mini-buffer under XEmacs.
8103 (kill-buffer-hook): Do not kill ispell process on exit when
8104 `ispell-process-directory' is "~/". (Bug#6143)
8105
8106 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
8107
8108 * simple.el (kill-new): Call interprogram-cut-function with only
8109 one argument.
8110
8111 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
8112 Remove cut buffer from error message.
8113
8114 * term/x-win.el (x-select-text):
8115 * term/pc-win.el (x-selection-value):
8116 * term/ns-win.el (x-selection-value):
8117 * eshell/em-term.el:
8118 * w32-fns.el (x-get-selection-value):
8119 * mouse-sel.el (mouse-sel-set-selection-function):
8120 * frame.el (display-selections-p): Remove cut-buffer in documentation.
8121
8122 * term/x-win.el: Update documentation for x-last-selected-text-*.
8123 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
8124 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
8125 (x-select-text): Remove argument PUSH, update documentation.
8126 Remove cut-buffer code.
8127 (x-selection-value-internal): Was previously x-selection-value.
8128 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
8129 Update documentation, remove cut-buffer code.
8130 Call x-selection-value-internal.
8131 (x-clipboard-yank): Call x-selection-value-internal.
8132 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
8133
8134 * term/pc-win.el (x-last-selected-text):
8135 x-cut-buffer-or-selection-value renamed to x-selection-value
8136 (x-select-text): Remove argument PUSH, update documentation.
8137
8138 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
8139 x-cut-buffer-or-selection-value renamed to x-selection-value
8140 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
8141 (x-select-text): Remove argument PUSH, update documentation.
8142
8143 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
8144
8145 * w32-fns.el (x-last-selected-text):
8146 x-cut-buffer-or-selection-value renamed to x-selection-value.
8147 (x-cut-buffer-max): Remove.
8148 (x-select-text): Remove argument PUSH, update documentation.
8149
8150 * simple.el (interprogram-cut-function): Remove mention of PUSH.
8151
8152 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
8153
8154 * mouse-sel.el (mouse-sel-get-selection-function):
8155 x-cut-buffer-or-selection-value renamed to x-selection-value.
8156 (x-select-text): Remove optional push.
8157
8158 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
8159
8160 * simple.el (blink-paren-function): Move from C to here.
8161 (blink-paren-post-self-insert-function): New function.
8162 (post-self-insert-hook): Use it.
8163
8164 * emacs-lisp/pcase.el (pcase-split-memq):
8165 Fix overenthusiastic optimisation.
8166 (pcase-u1): Handle the case of a lambda pred.
8167
8168 2010-08-31 Kenichi Handa <handa@m17n.org>
8169
8170 * international/mule-cmds.el (standard-display-european-internal):
8171 Setup standard-display-table for 8-bit characters by storing 8-bit
8172 characters in the element vector.
8173
8174 * disp-table.el (standard-display-8bit):
8175 Setup standard-display-table for 8-bit characters by storing 8-bit
8176 characters in the element vector.
8177 (standard-display-european): Likewise.
8178
8179 2010-08-31 Masatake YAMATO <yamato@redhat.com>
8180
8181 * textmodes/nroff-mode.el (nroff-view): New command.
8182 (nroff-mode-map): Bind it to C-c C-c.
8183
8184 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8185
8186 * emacs-lisp/smie.el (smie-down-list): New command.
8187
8188 Remove old indentation and navigation code on octave-mode.
8189 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
8190 smie-down-list rather than add a binding for octave-down-block.
8191 (octave-mark-block, octave-blink-matching-block-open):
8192 Rely on forward-sexp-function.
8193 (octave-fill-paragraph): Don't narrow, so you can use
8194 indent-according-to-mode.
8195 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
8196 (octave-in-block-p, octave-re-search-forward-kw)
8197 (octave-re-search-backward-kw, octave-indent-calculate)
8198 (octave-end-as-array-index-p, octave-block-end-offset)
8199 (octave-scan-blocks, octave-forward-block, octave-backward-block)
8200 (octave-down-block, octave-backward-up-block, octave-up-block)
8201 (octave-before-magic-comment-p, octave-indent-line): Remove.
8202
8203 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
8204
8205 * emacs-lisp/package.el (package--read-archive-file): Just use
8206 `read', to avoid copying an additional string.
8207 (package-menu-mode): Set header-line-format here.
8208 (package-menu-refresh, package-menu-revert): Signal an error if
8209 not in the Package Menu.
8210 (package-menu-package-list): New var.
8211 (package--generate-package-list): Operate on the current buffer;
8212 don't assume that it is *Packages*, since the user may rename it.
8213 Allow persistent package listings and sort keys using
8214 package-menu-package-list and package-menu-package-sort-key.
8215 (package-menu--version-predicate): Fix version calculation.
8216 (package-menu-sort-by-column): Don't select the window.
8217 (package--list-packages): Create the *Packages* buffer.
8218 Set package-menu-package-list-key.
8219 (list-packages): Sorting by status is now the default.
8220 (package-buffer-info): Use match-string-no-properties.
8221 (define-package): Add a &rest argument for future proofing, but
8222 don't use it yet.
8223 (package-install-from-buffer, package-install-buffer-internal):
8224 Merge into a single function, package-install-from-buffer.
8225 (package-install-file): Change caller.
8226
8227 * finder.el: Load finder-inf using `require'.
8228 (finder-list-matches): Sorting by status is now the default.
8229 (finder-compile-keywords): Simpify printing.
8230
8231 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8232
8233 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8234 (octave-mode-map): Remove special bindings for forward/backward-block
8235 and octave-backward-up-block. Use smie-close-block.
8236 (octave-continuation-marker-regexp): New var.
8237 (octave-continuation-regexp): Use it.
8238 (octave-operator-table, octave-smie-op-levels)
8239 (octave-operator-regexp, octave-smie-indent-rules): New vars.
8240 (octave-smie-backward-token, octave-smie-forward-token): New funs.
8241 (octave-mode): Use SMIE.
8242 (octave-close-block): Delete.
8243
8244 2010-08-30 Eli Zaretskii <eliz@gnu.org>
8245
8246 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
8247 CLIPBOARD, not in PRIMARY. (Bug#6944)
8248
8249 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8250
8251 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
8252 a list of parents.
8253 (smie-indent-column): Allow indirection through variables.
8254
8255 * composite.el (save-buffer-state): Delete, unused.
8256 * font-lock.el (save-buffer-state): Use with-silent-modifications.
8257 (font-lock-default-fontify-region): Use with-syntax-table.
8258 * jit-lock.el (with-buffer-unmodified): Remove.
8259 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
8260
8261 Use `declare' in defmacros.
8262 * window.el (save-selected-window):
8263 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
8264 * progmodes/python.el (def-python-skeleton):
8265 * net/dbus.el (dbus-ignore-errors):
8266 * jka-cmpr-hook.el (with-auto-compression-mode):
8267 * international/mule.el (with-category-table):
8268 * emacs-lisp/timer.el (with-timeout):
8269 * emacs-lisp/lisp-mnt.el (lm-with-file):
8270 * emacs-lisp/eieio.el (with-slots):
8271 * emacs-lisp/easymenu.el (easy-menu-define):
8272 * emacs-lisp/debug.el (debugger-env-macro):
8273 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
8274 (Multiple-value-call, Multiple-value-prog1):
8275 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
8276 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
8277 edebug rule to definition.
8278 * emacs-lisp/lisp-mode.el (save-selected-window)
8279 (with-current-buffer, combine-after-change-calls)
8280 (with-output-to-string, with-temp-file, with-temp-buffer)
8281 (with-temp-message, with-syntax-table, read-if, eval-after-load)
8282 (dolist, dotimes, when, unless):
8283 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
8284
8285 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
8286
8287 * finder.el: Require `package'.
8288 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
8289 (finder-package-info): Var deleted.
8290 (finder-keywords-hash, finder--builtins-alist): New vars.
8291 (finder-compile-keywords): Compute package--builtins and
8292 finder-keywords-hash instead of finder-keywords-hash, respecting
8293 the "Package" header.
8294 (finder-unknown-keywords, finder-list-matches):
8295 Use finder-keywords-hash and package--list-packages.
8296 (finder-mode): Don't set font-lock-defaults.
8297 (finder-exit): We don't use "*Finder-package*" and "*Finder
8298 Category*" buffers anymore.
8299
8300 * emacs-lisp/package.el (package--builtins-base): Var deleted.
8301 (package--builtins): Set default value to nil.
8302 (package-initialize): Load precomputed value of package--builtins
8303 from finder-inf.el.
8304 (package-alist, package-compute-transaction)
8305 (package-download-transaction): Improve docstring.
8306 (package-read-all-archive-contents): Do not change
8307 package--builtins here.
8308 (list-packages): Make package-list-packages an alias for this.
8309 Sort by status by default.
8310 (package--list-packages): Add optional PACKAGES arg.
8311 (describe-package-1): Use font-lock-face property. For built-in
8312 packages, insert file commentary.
8313 (package--generate-package-list): Rename from
8314 package-list-packages-internal; all callers changed. Add optional
8315 PACKAGES arg. Add alphabetical sort fallbacks.
8316 (package-menu--version-predicate, package-menu--status-predicate)
8317 (package-menu--description-predicate)
8318 (package-menu--name-predicate): New functions.
8319
8320 * info.el (Info-finder-find-node): Search package-alist instead of
8321 finder-package-info.
8322
8323 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
8324
8325 * subr.el (version-regexp-alist): Don't use "a" and "b" for
8326 "alpha" and "beta".
8327 (version-to-list): Handle versions like "10.3d".
8328
8329 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8330
8331 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
8332 (macroexp-accumulate): Use `declare'.
8333
8334 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8335
8336 * whitespace.el (whitespace-style): Adjust type declaration.
8337
8338 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
8339
8340 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
8341
8342 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
8343
8344 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
8345 (Bug#6907).
8346
8347 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
8348
8349 * progmodes/js.el: Make indentation more customizable (Bug#6914).
8350 (js-paren-indent-offset, js-square-indent-offset)
8351 (js-curly-indent-offset): New options.
8352 (js--proper-indentation): Use them.
8353
8354 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
8355
8356 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
8357 instead of inspecting font-lock properties (Bug#6916).
8358
8359 2010-08-26 David Reitter <david.reitter@gmail.com>
8360
8361 * server.el (server-visit-files): Run pre-command-hook and
8362 post-command-hook for each buffer while it is current (Bug#6910).
8363 (server-execute): Do not run hooks here.
8364
8365 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
8366
8367 Sync with Tramp 2.1.19.
8368
8369 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
8370 Protect deleting tmpfile.
8371 (tramp-gvfs-maybe-open-connection): Use `tramp-compat-funcall'.
8372
8373 * net/tramp.el (tramp-handle-expand-file-name)
8374 (tramp-completion-handle-file-name-all-completions)
8375 (tramp-completion-handle-file-name-completion):
8376 Use `tramp-connectable-p'.
8377
8378 * net/trampver.el: Update release number.
8379
8380 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
8381
8382 * help.el (help-map): Bind `C-h P' to describe-package.
8383
8384 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
8385
8386 * emacs-lisp/package.el (package-refresh-contents): Catch errors
8387 when downloading archives.
8388 (describe-package-1): Add package commentary.
8389 (package-install-button-action): New function.
8390 (package-menu-mode-map): Bind ? to package-menu-describe-package.
8391 (package-menu-view-commentary): Function removed.
8392 (package-list-packages-internal): Hide the `package' package too.
8393
8394 2010-08-25 Kenichi Handa <handa@m17n.org>
8395
8396 * language/misc-lang.el ("Arabic"): New language environment.
8397 Setup composition-function-table for Arabic characters.
8398
8399 * international/fontset.el (setup-default-fontset): Fix typo for
8400 arabic OTF spec (fini->fina).
8401
8402 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
8403
8404 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
8405 on all frames.
8406
8407 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8408
8409 * whitespace.el: Allow cleaning up blanks without blank
8410 visualization (Bug#6651). Adjust help window for
8411 whitespace-toggle-options (Bug#6479). Allow to use fill-column
8412 instead of whitespace-line-column (from EmacsWiki). New version
8413 13.1.
8414 (whitespace-style): Add new value 'face. Adjust docstring.
8415 (whitespace-space, whitespace-hspace, whitespace-tab):
8416 Adjust foreground property face.
8417 (whitespace-line-column): Adjust docstring and type declaration.
8418 (whitespace-style-value-list, whitespace-toggle-option-alist)
8419 (whitespace-help-text): Adjust const initialization.
8420 (whitespace-toggle-options, global-whitespace-toggle-options):
8421 Adjust docstring.
8422 (whitespace-display-window, whitespace-interactive-char)
8423 (whitespace-style-face-p, whitespace-color-on): Adjust code.
8424 (whitespace-help-scroll): New fun.
8425
8426 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8427
8428 * emacs-lisp/package.el (list-packages): Alias for
8429 package-list-packages.
8430
8431 2010-08-24 Kevin Ryde <user42@zip.com.au>
8432
8433 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
8434 (Bug#5651).
8435
8436 * progmodes/ruby-mode.el (ruby): Add defgroup.
8437
8438 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8439
8440 * progmodes/python.el: Add Ipython support (Bug#5390).
8441 (python-shell-prompt-alist)
8442 (python-shell-continuation-prompt-alist): New options.
8443 (python--set-prompt-regexp): New function.
8444 (inferior-python-mode, run-python, python-shell):
8445 Require ansi-color. Use python--set-prompt-regexp to set the comint
8446 prompt based on the Python interpreter.
8447 (python--prompt-regexp): New var.
8448 (python-check-comint-prompt)
8449 (python-comint-output-filter-function): Use it.
8450 (run-python): Use a pipe (Bug#5694).
8451
8452 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
8453
8454 * progmodes/python.el (python-send-region): Send a different
8455 Python command if Ipython is in use.
8456 (python-check-version): Use a Python command to find the version.
8457
8458 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8459
8460 * mouse.el (mouse-yank-primary): Avoid setting primary when
8461 deactivating the mark (Bug#6872).
8462
8463 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
8464
8465 * progmodes/python.el (python-block-pairs): Allow use of "finally"
8466 with "else" (Bug#3991).
8467
8468 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
8469
8470 * net/dbus.el: Accept UNIX domain sockets as bus address.
8471 (top): Don't initialize `dbus-registered-objects-table' anymore,
8472 this is done in dbusbind.c.
8473 (dbus-check-event): Adapt test for bus.
8474 (dbus-return-values-table, dbus-unregister-service)
8475 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
8476 Adapt doc string.
8477
8478 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
8479
8480 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
8481
8482 2010-08-22 Juri Linkov <juri@jurta.org>
8483
8484 * simple.el (read-extended-command): New function with the logic
8485 for `completing-read' moved to Elisp from `execute-extended-command'.
8486 Use `function-called-at-point' in `minibuffer-default-add-function'
8487 to get a command name for M-n (bug#5364, bug#5214).
8488
8489 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8490
8491 * startup.el (command-line-1): Issue warning for ignored arguments
8492 --unibyte, etc (Bug#6886).
8493
8494 2010-08-22 Leo <sdl.web@gmail.com>
8495
8496 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
8497 (ignore, bright, dim, keyword): Split list of nicknames before
8498 passing to rcirc-add-or-remove (Bug#6894).
8499
8500 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8501
8502 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
8503
8504 2010-08-22 Leo <sdl.web@gmail.com>
8505
8506 Fix buffer-list rename&refresh after killing a buffer in ido.
8507 * ido.el: Revert Óscar's.
8508 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
8509 Remember the buffers at head, rather than their name.
8510 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
8511
8512 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
8513 Stefan Monnier <monnier@iro.umontreal.ca>
8514
8515 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
8516 extra backslash added to each line (bug#6890).
8517
8518 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
8519
8520 * subr.el (read-key): Don't echo keystrokes (bug#6883).
8521
8522 2010-08-22 Glenn Morris <rgm@gnu.org>
8523
8524 * menu-bar.el (menu-bar-games-menu): Add landmark.
8525
8526 2010-08-22 Glenn Morris <rgm@gnu.org>
8527
8528 * align.el (align-regexp): Make group and spacing arguments
8529 use the interactive defaults when non-interactive. (Bug#6698)
8530
8531 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
8532 expansion, so as not to need sendmail.
8533 (mail-text-start): Remove declaration.
8534 (rmail-retry-failure): Require sendmail.
8535
8536 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8537
8538 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
8539
8540 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
8541
8542 * progmodes/flymake.el (flymake-start-syntax-check-process):
8543 Use `start-file-process' in order to let it run also on remote hosts.
8544
8545 2010-08-22 Kenichi Handa <handa@m17n.org>
8546
8547 * files.el: Add `word-wrap' as safe local variable.
8548
8549 2010-08-22 Glenn Morris <rgm@gnu.org>
8550
8551 * woman.el (woman-translate): Case matters. (Bug#6849)
8552
8553 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8554
8555 * simple.el (kill-region): Doc fix (Bug#6787).
8556
8557 2010-08-22 Glenn Morris <rgm@gnu.org>
8558
8559 * calendar/diary-lib.el (diary-header-line-format):
8560 Fit it to the window, not the frame.
8561
8562 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
8563
8564 * subr.el (ignore-errors): Add debug declaration.
8565
8566 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
8567
8568 * whitespace.el (whitespace-color-off): Remove post-command-hook
8569 locally.
8570
8571 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
8572
8573 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
8574
8575 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
8576
8577 * cus-edit.el (custom-group-value-create): Add extra newline
8578 before end line (Bug#6876).
8579
8580 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
8581
8582 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
8583 when extending it. Before killing on the second click, check if
8584 the buffer is the correct one. Doc fix.
8585 (mouse-secondary-save-then-kill): Allow usage without first
8586 calling mouse-start-secondary, by defaulting to point. Don't save
8587 an empty secondary selection. Doc fix.
8588
8589 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8590
8591 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
8592 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
8593 New version 13.0.
8594 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
8595 Adjust initialization.
8596 (whitespace-bob-marker, whitespace-eob-marker)
8597 (whitespace-buffer-changed): New vars.
8598 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
8599 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
8600 (whitespace-post-command-hook, whitespace-display-char-on):
8601 Adjust code.
8602 (whitespace-looking-back, whitespace-buffer-changed): New funs.
8603 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
8604
8605 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
8606
8607 * files.el (locate-file-completion-table): Only list the .el and .elc
8608 extensions if there's no other choice (bug#5955).
8609
8610 * facemenu.el (facemenu-self-insert-data): New var.
8611 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
8612 New functions.
8613 (facemenu-add-face): Use them.
8614
8615 * simple.el (blink-matching-open): Obey forward-sexp-function.
8616
8617 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
8618
8619 * simple.el (prog-mode-map): New var.
8620 (prog-indent-sexp): New command.
8621
8622 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
8623
8624 * progmodes/prolog.el (smie): Require.
8625
8626 * emacs-lisp/smie.el (smie-default-backward-token)
8627 (smie-default-forward-token): Strip properties.
8628 (smie-next-sexp): Be more careful with associative operators.
8629 (smie-forward-sexp-command): Generalize.
8630 (smie-backward-sexp-command): Simplify.
8631 (smie-closer-alist): New var.
8632 (smie-close-block): New command.
8633 (smie-indent-debug-log): New var.
8634 (smie-indent-offset-rule): Add a few more cases.
8635 (smie-indent-column): New function.
8636 (smie-indent-after-keyword): Use it.
8637 (smie-indent-keyword): Use it.
8638 Fix up the opener code's point position.
8639 (smie-indent-comment): Only applies at BOL.
8640 (smie-indent-debug): New command.
8641
8642 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
8643 declarations that are useful before running the macro.
8644
8645 2010-08-18 Joakim Verona <joakim@verona.se>
8646
8647 * image.el (imagemagick-types-inhibit): New variable.
8648 (imagemagick-register-types): New function.
8649 * image-mode.el (image-transform-properties): New function.
8650 (image-transform-set-scale, image-transform-fit-to-height)
8651 (image-transform-set-rotation, image-transform-set-resize)
8652 (image-transform-fit-to-width, image-transform-fit-to-height):
8653 New functions.
8654 (image-toggle-display-image): Support image transforms.
8655
8656 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
8657
8658 * image.el (create-animated-image): Don't add heuristic mask to image
8659 (Bug#6839).
8660
8661 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
8662
8663 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
8664 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
8665
8666 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
8667
8668 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
8669
8670 Font-lock '...' strings, plus various simplifications and fixes.
8671 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8672 (octave-font-lock-close-quotes): New function.
8673 (octave-font-lock-syntactic-keywords): New var.
8674 (octave-mode): Use it. Set beginning-of-defun-function.
8675 (octave-mode-map): Don't override the <foo>-defun commands.
8676 (octave-mode-menu): Pass it directly to easy-menu-define;
8677 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
8678 (octave-block-match-alist): Fix up last change so that
8679 octave-close-block uses the more specific keyword.
8680 (info-lookup-mode): Silence byte-compiler.
8681 (octave-beginning-of-defun): Not interactive any more.
8682 Optimize slightly.
8683 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
8684 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
8685 (octave-completion-at-point-function): Make sure point is within
8686 beg..end.
8687 (octave-reindent-then-newline-and-indent):
8688 Use reindent-then-newline-and-indent.
8689 (octave-add-octave-menu): Remove.
8690
8691 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
8692
8693 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
8694 (report-emacs-bug-can-use-xdg-email): New functions.
8695 (report-emacs-bug): Set can-xdg-email to result of
8696 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
8697 \C-cm to report-emacs-bug-insert-to-mailer and add help text
8698 about it.
8699
8700 * net/browse-url.el (browse-url-default-browser): Add cond
8701 for browse-url-xdg-open.
8702 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
8703
8704 2010-08-17 Glenn Morris <rgm@gnu.org>
8705
8706 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
8707 (c-fontify-recorded-types-and-refs): Define for compiler.
8708 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
8709 before use.
8710
8711 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
8712 Fix format call.
8713
8714 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
8715
8716 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
8717 properties.
8718 (tramp-handle-process-file): Call the program in a subshell, in
8719 order to preserve working directory.
8720 (tramp-action-password): Hide password prompt before next run.
8721 (tramp-process-actions): Widen connection buffer for the trace.
8722
8723 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8724
8725 * net/rcirc.el (rcirc-log-process-buffers): New option.
8726 (rcirc-print): Use it.
8727 (rcirc-generate-log-filename): New function.
8728 (rcirc-log-filename-function): Change default to
8729 rcirc-generate-log-filename (Bug#6828).
8730
8731 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
8732
8733 * simple.el (deactivate-mark): If select-active-regions is `only',
8734 only set selection for temporarily active regions.
8735
8736 * cus-start.el: Change defcustom for select-active-regions.
8737
8738 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
8739
8740 * mouse.el (mouse--drag-set-mark-and-point): New function.
8741 (mouse-drag-track): Use LOCATION arg to push-mark.
8742 Use mouse--drag-set-mark-and-point to take click-count into
8743 consideration when updating point and mark (Bug#6840).
8744
8745 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
8746
8747 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8748 Give the Ruby rule a lower priority than Gnu (Bug#6778).
8749
8750 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
8751
8752 * font-lock.el (lisp-font-lock-keywords-2):
8753 Add combine-after-change-calls, condition-case-no-debug,
8754 with-demoted-errors, and with-silent-modifications (Bug#6025).
8755
8756 2010-08-14 Kevin Ryde <user42@zip.com.au>
8757
8758 * emacs-lisp/copyright.el (copyright-update-year)
8759 (copyright-update): Temporary switch-to-buffer to ensure the
8760 buffer change being queried is visible (Bug#5394).
8761
8762 2010-08-14 Tom Tromey <tromey@redhat.com>
8763
8764 * progmodes/etags.el (tags-file-name): Mark safe if stringp
8765 (Bug#6733).
8766
8767 2010-08-14 Eli Zaretskii <eliz@gnu.org>
8768
8769 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
8770 MS-DOS. (Bug#6689)
8771
8772 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
8773
8774 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
8775 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
8776 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
8777 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
8778 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
8779 Call menu-bar-set-tool-bar-position.
8780
8781 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8782
8783 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
8784 comment style (bug#6834).
8785 * progmodes/scheme.el (scheme-mode-syntax-table):
8786 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
8787 "b" flag in "' 14b" syntax.
8788
8789 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
8790 for (un)commenting the region and performing completion.
8791 (octave-mode-menu): Use standard commands for help and completion.
8792 (octave-mode-syntax-table): Support %{..%} comments (sort of).
8793 (octave-mode): Use define-derived-mode.
8794 Set completion-at-point-functions and don't set columns.
8795 Don't disable adaptive-fill-regexp.
8796 (octave-describe-major-mode, octave-comment-region)
8797 (octave-uncomment-region, octave-comment-indent)
8798 (octave-indent-for-comment): Remove.
8799 (octave-indent-calculate): Rename from calculate-octave-indent.
8800 (octave-indent-line, octave-fill-paragraph): Update caller.
8801 (octave-initialize-completions): No need to make an alist.
8802 (octave-completion-at-point-function): New function.
8803 (octave-complete-symbol): Use it.
8804 (octave-insert-defun): Use define-skeleton.
8805
8806 * progmodes/octave-mod.el (octave-mode): Set comment-add.
8807 (octave-mode-map): Use comment-dwim (bug#6829).
8808
8809 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com>
8810
8811 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
8812 indentation of inserted comment.
8813
8814 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
8815
8816 * faces.el (region): Add type gtk that uses gtk colors.
8817
8818 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
8819 Handle theme-name change.
8820
8821 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
8822
8823 * progmodes/sql.el: Version 2.5
8824 (sql-product-alist): Add :prompt-cont-regexp property for several
8825 database products.
8826 (sql-prompt-cont-regexp): New variable.
8827 (sql-output-newline-count, sql-output-by-send):
8828 New variables. Record number of newlines in input text.
8829 (sql-send-string): Handle multiple filters and count newlines.
8830 (sql-send-magic-terminator): Count terminator newline.
8831 (sql-interactive-remove-continuation-prompt): Filters output to
8832 remove continuation prompts; one for each newline.
8833 (sql-interactive-mode): Set up new variables, prompt regexp and
8834 output filter.
8835 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
8836 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
8837
8838 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8839
8840 * emacs-lisp/pcase.el: New file.
8841
8842 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
8843
8844 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
8845 as here-document, otherwise the command could exceed maximum
8846 length of command line.
8847 (tramp-handle-vc-registered): Call script accordingly.
8848 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
8849
8850 2010-08-10 Kenichi Handa <handa@m17n.org>
8851
8852 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
8853 composable pattern.
8854
8855 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
8856
8857 * emacs-lisp/package.el (package-version-split)
8858 (package--version-first-nonzero, package-version-compare):
8859 Functions removed.
8860 (package-directory-list, package-load-all-descriptors)
8861 (package--built-in, package-activate, define-package)
8862 (package-installed-p, package-compute-transaction)
8863 (package-read-all-archive-contents)
8864 (package--add-to-archive-contents, package-buffer-info)
8865 (package-tar-file-info, package-list-packages-internal):
8866 Use version-to-list and version-list-*.
8867
8868 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8869 Use version-to-list.
8870 (package-upload-buffer-internal): Use version-list-<=.
8871
8872 2010-08-09 Kenichi Handa <handa@m17n.org>
8873
8874 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
8875 composable pattern.
8876
8877 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
8878
8879 * tutorial.el (tutorial--default-keys): C-d is now bound to
8880 delete-forward-char (Bug#6826).
8881
8882 * mouse.el (mouse-drag-track): Remove accidentally-removed check
8883 for `double' value of mouse-1-click-follows-link (Bug#6807).
8884
8885 2010-08-08 Johan Bockgård <bojohan@gnu.org>
8886
8887 * replace.el (replace-highlight): Bind isearch-forward and
8888 isearch-error, ensuring that highlighting is updated if the user
8889 switches the search direction (Bug#6808).
8890
8891 * isearch.el (isearch-lazy-highlight-forward): New var.
8892 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8893 (isearch-lazy-highlight-update): Use it.
8894
8895 2010-08-08 Kenichi Handa <handa@m17n.org>
8896
8897 * international/mule.el (define-charset): Store NAME as :base property.
8898 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
8899 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
8900 current priority. Force using the designation of the specific
8901 charset by adding `charset' text property. Improve the whole algorithm.
8902
8903 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8904
8905 * emulation/pc-select.el (pc-selection-mode-hook)
8906 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
8907 (pc-selection-mode): Fix typos in docstrings.
8908
8909 2010-08-08 Kenichi Handa <handa@m17n.org>
8910
8911 * language/cyrillic.el: Don't add "microsoft-cp1251" to
8912 ctext-non-standard-encodings-alist here.
8913
8914 * international/mule.el (ctext-non-standard-encodings-alist):
8915 Add "koi8-r" and "microsoft-cp1251".
8916 (ctext-standard-encodings): New variable.
8917 (ctext-non-standard-encodings-table): List only elements for
8918 non-standard encodings.
8919 (ctext-pre-write-conversion): Adjust for the above change.
8920 Check ctext-standard-encodings.
8921
8922 * international/mule-conf.el (compound-text): Doc fix.
8923 (ctext-no-compositions): Doc fix.
8924 (compound-text-with-extensions): Doc fix.
8925
8926 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8927
8928 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
8929
8930 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8931
8932 * progmodes/which-func.el (which-func-format): Split help-echo text
8933 into lines, like other mode-line tooltips.
8934
8935 * server.el (server-start): When using TCP sockets, force IPv4
8936 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
8937
8938 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8939
8940 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
8941
8942 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8943
8944 * term.el (term-delimiter-argument-list): Reflow docstring.
8945 (term-read-input-ring, term-write-input-ring, term-send-input)
8946 (term-bol, term-erase-in-display, serial-supported-or-barf):
8947 Fix typos in docstrings.
8948
8949 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8950
8951 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
8952
8953 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8954
8955 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
8956
8957 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
8958
8959 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
8960 Fix typo in docstring (bug#6747).
8961
8962 2010-08-08 Leo <sdl.web@gmail.com>
8963
8964 * eshell/esh-io.el (eshell-get-target): Better detection of
8965 read-only file (Bug#6762).
8966
8967 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
8968
8969 * align.el (align-default-spacing): Doc fix.
8970 (align-region-heuristic, align-regexp): Fix typos in docstrings.
8971
8972 2010-08-08 Stephen Peters <speters@itasoftware.com>
8973
8974 * calendar/icalendar.el
8975 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
8976 (icalendar--get-weekday-numbers): New.
8977 (icalendar--convert-recurring-to-diary): Handle multiple byday
8978 values in weekly rules. (Bug#6766)
8979
8980 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
8981
8982 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
8983 (icalendar--create-uid, icalendar-export-region)
8984 (icalendar--parse-summary-and-rest): Code formatting.
8985
8986 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
8987
8988 * calc/calc.el (calc-trail-mode, calc-refresh): Use `face' property
8989 to italicize headers.
8990 (calc-highlight-selections-with-faces): New variable.
8991 (calc-selected-face, calc-nonselected-face): New faces.
8992
8993 * calc/calccomp.el (math-comp-highlight-string): Use
8994 `calc-highlight-selections-with-faces' to determine how to highlight
8995 sub-formulas.
8996
8997 * calc/calc-sel.el (calc-show-selections): Change message to when
8998 using faces to highlight selections.
8999
9000 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
9001
9002 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
9003 Add SQLite 3 keywords, functions and datatypes.
9004 (sql-interactive-mode): Remove `comint-process-echoes' set to t
9005 (Bug#6686).
9006
9007 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
9008
9009 * simple.el (select-active-regions): Move to keyboard.c.
9010 (deactivate-mark): Used saved-region-selection.
9011 (select-active-region): Function removed.
9012 (activate-mark, set-mark, push-mark-command)
9013 (handle-shift-selection): Don't call it.
9014 (keyboard-quit): Avoid adding the region to the window selection.
9015
9016 * mouse.el (mouse-drag-track): Remove hacks to deal with old
9017 select-active-regions implementation.
9018 (mouse-yank-at-click): Doc fix.
9019
9020 * cus-start.el: Add custom declaration for select-active-regions.
9021
9022 2010-08-07 Eli Zaretskii <eliz@gnu.org>
9023
9024 * simple.el (delete-forward-char): Doc fix.
9025
9026 * tutorial.el (help-with-tutorial): Hack safe file-local variables
9027 after reading the tutorial.
9028
9029 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
9030
9031 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph):
9032 Fix for the case that a C style comment has its delimiters alone on
9033 their respective lines. (Bug#193)
9034
9035 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
9036
9037 * net/tramp.el (tramp-handle-start-file-process): Set connection
9038 property "vec".
9039 (tramp-process-sentinel): Use it for flushing the cache.
9040 We cannot do it via the process buffer, the buffer could be deleted
9041 already when running the sentinel.
9042
9043 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
9044
9045 * comint.el (comint-mode): Make directory tracking functions
9046 functional on remote files. (Bug#6764)
9047
9048 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
9049
9050 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
9051
9052 2010-08-05 Eli Zaretskii <eliz@gnu.org>
9053
9054 * emacs-lisp/find-gc.el (find-gc-source-files):
9055 Rename unexec.c => unexcoff.c.
9056
9057 * emacs-lisp/authors.el (authors-fixed-entries):
9058 Rename unexec.c => unexcoff.c.
9059
9060 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
9061
9062 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
9063 cache, not only file cache.
9064 (tramp-process-sentinel): New defun.
9065 (tramp-handle-start-file-process): Use it, in order to invalidate
9066 file caches.
9067
9068 2010-08-03 Leo <sdl.web@gmail.com>
9069
9070 * server.el (server-start): Simplify loop.
9071
9072 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
9073
9074 * frame.el (screen-height, screen-width, set-screen-width)
9075 (set-screen-height): Remove ancient compatibility aliases.
9076
9077 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
9078 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
9079
9080 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
9081 that change current buffer.
9082
9083 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9084
9085 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
9086 beginning of the string. Use `string-match-p'. (Bug#6765)
9087
9088 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
9089
9090 * cus-start.el (x-gtk-use-system-tooltips): New variable.
9091
9092 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
9093
9094 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
9095 (package--builtins): Tweak descriptions.
9096 (package-print-package): Upcase descriptions if necessary.
9097 Show all built-in packages in font-lock-builtin-face.
9098 (package-list-packages-internal): Omit "emacs" package.
9099 Show status of built-in packages as "built-in".
9100
9101 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
9102
9103 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
9104 before killing to preserve the primary selection (Bug#6701).
9105
9106 * term/x-win.el (x-select-text): Doc fix.
9107
9108 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
9109
9110 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
9111 (objc-font-lock-extra-types):
9112 * progmodes/cc-mode.el (c-basic-common-init):
9113 * progmodes/cc-langs.el (c-make-mode-syntax-table)
9114 (c++-make-template-syntax-table)
9115 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
9116 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
9117 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
9118 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
9119 * progmodes/cc-fonts.el (c-make-inverse-face)
9120 (c-basic-matchers-after):
9121 * progmodes/cc-engine.el (c-forward-keyword-clause)
9122 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
9123 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
9124 (c-guess-continued-construct, c-guess-basic-syntax):
9125 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
9126 The above functions were modified or created.
9127
9128 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
9129
9130 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
9131
9132 2010-07-31 Eli Zaretskii <eliz@gnu.org>
9133
9134 * files.el (bidi-paragraph-direction): Define safe local values.
9135
9136 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
9137 language-info-alist. Remove outdated FIXME in a comment.
9138
9139 2010-07-31 Alan Mackenzie <acm@muc.de>
9140
9141 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
9142 Auto-fill broken in C/C++ modes.
9143
9144 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
9145
9146 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
9147 (menu-bar-showhide-tool-bar-menu-customize-disable)
9148 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
9149 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
9150 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
9151 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
9152 make a menu for Options => toolbar that can move it.
9153
9154 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
9155
9156 * emacs-lisp/package-x.el (package--make-rss-entry):
9157 (package-maint-add-news-item, package--update-news)
9158 (package-upload-buffer-internal): New arg ARCHIVE-URL.
9159
9160 * emacs-lisp/package.el (package-archive-url): Rename from
9161 package-archive-id.
9162 (package-install): Doc fix.
9163 (package-download-single, package-download-tar, package-install)
9164 (package-menu-view-commentary): Callers changed.
9165
9166 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
9167
9168 * net/tramp.el (tramp-handle-start-file-process): Check only for
9169 `remote-tty' process property.
9170 (tramp-open-shell): Don't check for tty.
9171 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
9172 process property.
9173
9174 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
9175 host.
9176
9177 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
9178
9179 * emacs-lisp/package.el (package-load-list, package-archives)
9180 (package-archive-contents, package-user-dir)
9181 (package-directory-list, package--builtins, package-alist)
9182 (package-activated-list, package-obsolete-alist): Mark as risky.
9183
9184 2010-07-28 Phil Hagelberg <phil@evri.com>
9185
9186 Add support for non-default package repositories.
9187 * emacs-lisp/package.el (package-archive-base): Var deleted.
9188 (package-archives): New variable.
9189 (package-archive-contents): Doc fix.
9190 (package-load-descriptor): Do nothing if descriptor file is missing.
9191 (package--write-file-no-coding): New function.
9192 (package-unpack-single): Use it.
9193 (package-archive-id): New function.
9194 (package-download-single, package-download-tar)
9195 (package-menu-view-commentary): Use it.
9196 (package-installed-p): Make second argument optional.
9197 (package-read-all-archive-contents): New function.
9198 (package-initialize): Use it.
9199 (package-read-archive-contents): Add ARCHIVE argument.
9200 (package--add-to-archive-contents): New function.
9201 (package-install): Don't call package-read-archive-contents.
9202 (package--download-one-archive): Store archive file in a
9203 subdirectory of package-user-dir.
9204 (package-menu-execute): Remove spurious line movement.
9205
9206 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
9207
9208 * cus-start.el (tool-bar-style): Add text-image-horiz.
9209
9210 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
9211
9212 * progmodes/gud.el (gud-common-init): Check for remoteness of
9213 `file', and not of `default-directory'.
9214
9215 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
9216
9217 * net/tramp.el (tramp-methods): Move hostname to the end in all
9218 ssh `tramp-login-args'.
9219 (tramp-verbose): Describe verbose level 9.
9220 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
9221 (tramp-open-connection-setup-interactive-shell): Trace stty
9222 settings if `tramp-verbose' >= 9.
9223 (tramp-handle-start-file-process): Implement tty setting.
9224 (Bug#4604, Bug#6360)
9225
9226 * net/tramp-cmds.el (tramp-bug): Recommend setting of
9227 `tramp-verbose' to 9.
9228
9229 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
9230
9231 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
9232 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
9233 Remove references to package `lisp-re' (bug#4369).
9234
9235 2010-07-27 Tom Tromey <tromey@redhat.com>
9236
9237 * progmodes/js.el (js-mode):
9238 * progmodes/make-mode.el (makefile-mode):
9239 * progmodes/simula.el (simula-mode):
9240 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
9241
9242 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
9243
9244 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
9245
9246 * time.el (display-time-day-and-date): Remove spurious * in docstring.
9247 (display-time-world-buffer-name, display-time-world-mode-map):
9248 Fix typos in docstrings.
9249
9250 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
9251
9252 * image-mode.el (image-display-size): New function.
9253 (image-forward-hscroll, image-next-line, image-eol, image-eob)
9254 (image-mode-fit-frame): Use it (Bug#6639).
9255
9256 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
9257
9258 * dired.el (dired-buffers-for-dir): Handle list values of
9259 dired-directory (Bug#6636).
9260
9261 2010-07-26 Sam Steingold <sds@gnu.org>
9262
9263 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
9264 Do not call `x-get-selection' the second time, reuse the value.
9265
9266 2010-07-26 Daiki Ueno <ueno@unixuser.org>
9267
9268 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
9269 which consist of control chars only. Suggested by Richard Stallman.
9270
9271 2010-07-25 Daiki Ueno <ueno@unixuser.org>
9272
9273 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
9274 exists before passing an error to find-file-not-found-functions
9275 (bug#6723).
9276
9277 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
9278
9279 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
9280 Remove leading nil element, adjust values.
9281 (tetris-shapes, tetris-shape-scores):
9282 Change representation of shapes and remove some redundancy.
9283 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
9284 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
9285 Adjust for working with new representation of shapes.
9286 (tetris-shape-rotations): New function.
9287 (tetris-move-bottom, tetris-move-left, tetris-move-right)
9288 (tetris-rotate-prev, tetris-rotate-next):
9289 Adjust for working with the new version of tetris-test-shape.
9290
9291 2010-07-23 Markus Triska <markus.triska@gmx.at>
9292
9293 * progmodes/ps-mode.el: Use comint (bug#5954).
9294 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
9295 (ps-mode-other-newline): Simplify.
9296 (ps-run-mode): Derive from comint-mode instead of
9297 fundamental-mode, yielding input history etc.
9298 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
9299 (ps-run-send-string): Adapt for comint-mode.
9300 (ps-run-newline): Remove now unneeded function.
9301
9302 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9303
9304 * net/tramp.el (tramp-methods): Move hostname to the end in all
9305 plink `tramp-login-args'.
9306
9307 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9308
9309 * net/tramp.el (tramp-open-shell): New defun.
9310 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9311 Use it.
9312
9313 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9314
9315 * net/tramp.el (tramp-file-name-regexp-unified)
9316 (tramp-completion-file-name-regexp-unified): On W32 systems, do
9317 not regard the volume letter as remote filename. (Bug#5447)
9318
9319 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
9320
9321 * custom.el (custom-declare-variable): Give a clearer error message
9322 when the docstring is missing (bug#6476).
9323
9324 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
9325
9326 * progmodes/sql.el: Version 2.4. Improved Login prompting.
9327 (sql-login-params): New widget definition.
9328 (sql-oracle-login-params, sql-mysql-login-params)
9329 (sql-solid-login-params, sql-sybase-login-params)
9330 (sql-informix-login-params, sql-ingres-login-params)
9331 (sql-ms-login-params, sql-postgres-login-params)
9332 (sql-interbase-login-params, sql-db2-login-params)
9333 (sql-linter-login-params): Use it.
9334 (sql-sqlite-login-params): Use it; Define "database" parameter as
9335 a file name.
9336 (sql-sqlite-program): Change to "sqlite3".
9337 (sql-comint-sqlite): Make sure database name is complete.
9338 (sql-for-each-login): New function.
9339 (sql-connect, sql-save-connection): Use it.
9340 (sql-get-login-ext): New function.
9341 (sql-get-login): Use it.
9342 (sql-make-alternate-buffer-name): Handle :file parameters.
9343
9344 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
9345
9346 * dired.el (dired-no-confirm): Document value t and fix defcustom to
9347 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
9348
9349 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
9350
9351 * dired.el (dired-mode-map): Use command remapping (bug#6632).
9352
9353 2010-07-22 Lawrence Mitchell <wence@gmx.li>
9354
9355 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
9356
9357 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
9358
9359 * net/tramp.el (tramp-get-ls-command)
9360 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
9361 instead of "/".
9362
9363 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
9364
9365 * progmodes/sql.el: Version 2.3.
9366 (sql-connection-alist): Change keys from symbols to strings;
9367 enhanced the widget definition.
9368 (sql-mode-menu): Add submenu to select connections.
9369 (sql-interactive-mode-menu): Add "Save Connection" item.
9370 (sql-add-product): Fix menu item.
9371 (sql-get-product-feature): Improved error handling.
9372 (sql--alt-buffer-part, sql--alt-if-not-empty): Remove.
9373 (sql-make-alternate-buffer-name): Simplified.
9374 (sql-product-interactive): Handle missing product.
9375 (sql-connect): Support string keys, minor improvements.
9376 (sql-save-connection): New function.
9377 (sql-connection-menu-filter): New function.
9378
9379 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
9380
9381 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
9382 (tramp-open-connection-setup-interactive-shell):
9383 Apply workaround for IRIX64 bug. Move argument of last
9384 `tramp-send-command' where it belongs to.
9385
9386 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
9387
9388 * net/tramp.el (tramp-perl-file-attributes)
9389 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
9390 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
9391 front of `login-args'.
9392
9393 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
9394
9395 * time.el (display-time-world-mode): Define with `define-derived-mode'.
9396 Set `show-trailing-whitespace' to nil.
9397 (display-time-world-display): Simplify.
9398
9399 2010-07-18 Alan Mackenzie <acm@muc.de>
9400
9401 Enhance `c-file-style' in file/directory local variables.
9402 * progmodes/cc-mode.el (c-count-cfss): New function.
9403 (c-before-hack-hook): Call `c-set-style' differently according to
9404 whether c-file-style was set in file or directory local
9405 variables.
9406
9407 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
9408
9409 * progmodes/sql.el: Version 2.2.
9410 (sql-product, sql-user, sql-database, sql-server, sql-port):
9411 Use defcustom :safe keyword rather than putting safe-local-variable
9412 property.
9413 (sql-password): Use defcustom :risky keyword rather than putting
9414 risky-local-variable property.
9415 (sql-oracle-login-params, sql-sqlite-login-params)
9416 (sql-solid-login-params, sql-sybase-login-params)
9417 (sql-informix-login-params, sql-ingres-login-params)
9418 (sql-ms-login-params, sql-postgres-login-params)
9419 (sql-interbase-login-params, sql-db2-login-params)
9420 (sql-linter-login-params): Add `port' option.
9421 (sql-get-product-feature): Add NO-INDIRECT parameter.
9422 (sql-comint-oracle, sql-comint-sybase)
9423 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
9424 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
9425 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
9426 (sql-comint-linter): Rename sql-connect-* functions to
9427 sql-comint-*.
9428 (sql-product-alist, sql-mode-menu): Rename as above and
9429 :sqli-connect-func to :sqli-comint-func.
9430 (sql-connection): New variable.
9431 (sql-interactive-mode): Set it.
9432 (sql-connection-alist): New variable.
9433 (sql-connect): New function.
9434 (sql--alt-buffer-part, sql--alt-if-not-empty)
9435 (sql-make-alternate-buffer-name): Improved alternative buffer name.
9436
9437 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9438
9439 * image-mode.el (image-bookmark-make-record): Do not set context
9440 in an image (Bug#6650).
9441
9442 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
9443
9444 * simple.el (select-active-region): New function.
9445 (push-mark-command, set-mark, activate-mark)
9446 (handle-shift-selection): Use it.
9447 (deactivate-mark): Don't check for size of region.
9448
9449 * mouse.el (mouse-drag-track): Use select-active-region.
9450
9451 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
9452
9453 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
9454 "--dired" stronger.
9455
9456 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
9457
9458 * term/x-win.el (x-select-enable-primary): Change default to nil.
9459 (x-select-enable-clipboard): Add :version keyword.
9460
9461 * mouse.el (mouse-drag-copy-region):
9462 * simple.el (select-active-regions): Likewise.
9463
9464 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
9465
9466 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
9467 (vc-coding-system-for-diff): Use it to decide whether to inherit
9468 from the file the EOL format for reading the diffs of that file.
9469 (Bug#4451)
9470
9471 2010-07-16 Eli Zaretskii <eliz@gnu.org>
9472
9473 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
9474 unibyte, so compressed attachments are not compressed again.
9475
9476 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
9477
9478 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
9479 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
9480 (tramp-find-shell): Simplify setting connection property.
9481 (tramp-get-ls-command): Make test for "--color=never" stronger.
9482
9483 2010-07-15 Simon South <ssouth@member.fsf.org>
9484
9485 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
9486 blocks within record declarations (i.e. variant parts) correctly.
9487
9488 2010-07-15 Simon South <ssouth@member.fsf.org>
9489
9490 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
9491 over literal tokens when parsing so newlines aren't "absorbed" by
9492 single-line comments. Corrects the indentation of case blocks
9493 that have a comment on the first line.
9494
9495 2010-07-14 Karl Fogel <kfogel@red-bean.com>
9496
9497 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
9498 by Drew Adams (Bug#5504).
9499
9500 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
9501
9502 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
9503 now that Unicode is used (Bug#6594).
9504
9505 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
9506
9507 * term/x-win.el (x-select-enable-clipboard): Default to t.
9508 (x-initialize-window-system): Don't overwrite Paste menu item.
9509
9510 * simple.el (select-active-regions): Default to t.
9511 (push-mark-command): Don't overwrite primary with empty string.
9512
9513 * mouse.el: Bind mouse-2 to mouse-yank-primary.
9514 (mouse-drag-copy-region): Default to nil.
9515
9516 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
9517 Cut/Copy/Paste menu bar items.
9518
9519 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9520
9521 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
9522 Patch applied by Karl Fogel.
9523
9524 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
9525 and `bookmark-current-buffer' if they have been already set in
9526 another buffer (e.g gnus-art).
9527
9528 2010-07-13 Karl Fogel <kfogel@red-bean.com>
9529 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9530
9531 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
9532
9533 * bookmark.el (bookmark-make-record-default): Allow unneeded
9534 information to be omitted from the record.
9535
9536 Adjust declarations and calls:
9537
9538 * info.el (bookmark-make-record-default): Adjust declaration.
9539 (Info-bookmark-make-record): Adjust call.
9540
9541 * woman.el (bookmark-make-record-default): Adjust declaration.
9542 (woman-bookmark-make-record): Adjust call.
9543
9544 * man.el (bookmark-make-record-default): Adjust declaration.
9545 (Man-bookmark-make-record): Adjust call.
9546
9547 * image-mode.el (bookmark-make-record-default): Adjust declaration.
9548
9549 * doc-view.el (bookmark-make-record-default): Adjust declaration.
9550
9551 2010-07-13 Karl Fogel <kfogel@red-bean.com>
9552
9553 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
9554 This is also from Thierry Volpiatto's patch in bug #6444. However,
9555 because it was extraneous to the functional change in that patch,
9556 and causes a re-indendation, I am committing it separately.
9557
9558 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9559
9560 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
9561 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
9562 Patch applied by Karl Fogel (Bug#6444).
9563
9564 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
9565
9566 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
9567
9568 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
9569
9570 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
9571 Dempsky; bug#5084). Remove incorrect binding for S-tab.
9572 (ns-alternatives-map): Change S-tab binding to backtab
9573 (bug#6616).
9574
9575 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
9576 under ns.
9577
9578 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
9579
9580 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
9581 (Bug#5806)
9582
9583 * language/tv-util.el (tai-viet-re): Remove format.
9584
9585 2010-07-12 Kenichi Handa <handa@m17n.org>
9586
9587 * language/hebrew.el: Remove no-byte-compile declaration.
9588 Change coding: tag to utf-8. Register hebrew-shape-gstring in
9589 composition-function-table for 3-character looking back.
9590 (hebrew-font-get-precomposed): New function.
9591 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
9592
9593 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
9594
9595 * mouse.el (mouse-drag-track): Handle select-active-regions
9596 (Bug#6612).
9597
9598 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
9599
9600 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
9601 empty argument to gvfs-copy.
9602
9603 2010-07-10 Glenn Morris <rgm@gnu.org>
9604
9605 * calendar/calendar.el (calendar-week-end-day): New function.
9606 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
9607 Respect calendar-week-start-day. (Bug#6606)
9608 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
9609 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
9610 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
9611 respect calendar-week-start-day.
9612
9613 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
9614
9615 * simple.el (use-region-p): Doc fix (Bug#6607).
9616
9617 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
9618
9619 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9620 Add regexps for cucumber and ruby.
9621
9622 2010-07-08 Daiki Ueno <ueno@unixuser.org>
9623
9624 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
9625 (epa-file-insert-file-contents): Hack to prevent
9626 find-file from opening empty buffer when decryption failed
9627 (bug#6568).
9628
9629 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
9630
9631 * textmodes/ispell.el (ispell-alternate-dictionary):
9632 Use file-readable-p.
9633 Return nil if no word-list is found at default locations.
9634 (ispell-complete-word-dict): Default to nil.
9635 (ispell-command-loop): Use 'word-list' when using lookup-words.
9636 (lookup-words): Use ispell-complete-word-dict or
9637 ispell-alternate-dictionary. Check for word-list availability
9638 and handle errors if needed with better messages (Bug#6539).
9639 (ispell-complete-word): Use ispell-complete-word-dict or
9640 ispell-alternate-dictionary.
9641
9642 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
9643
9644 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
9645 builtins (BufferError, BytesWarning, WindowsError; callables
9646 bin, bytearray, bytes, format, memoryview, next, print; __package__).
9647
9648 2010-07-07 Glenn Morris <rgm@gnu.org>
9649
9650 * play/zone.el (top-level): Do not require timer, tabify, or cl.
9651 (zone-shift-left): Ignore intangibility, and any errors from
9652 forward-char.
9653 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
9654 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
9655 deleting, and copying text properties.
9656 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
9657 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
9658 to point-max is hard.
9659 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
9660 (zone-fill-out-screen): Ignore intangibility.
9661
9662 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
9663
9664 * menu-bar.el (menu-bar-mode):
9665 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
9666 if it has been set.
9667
9668 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
9669 word/line selection (Bug#6565).
9670
9671 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
9672
9673 * net/dbus.el (dbus-send-signal): Declare function.
9674
9675 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
9676
9677 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
9678 (dbus-register-property): New optional argument EMITS-SIGNAL.
9679 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
9680
9681 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
9682
9683 * mouse.el (mouse-drag-overlay): Variable deleted.
9684 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
9685 (mouse--remap-link-click-p): New function.
9686 (mouse-drag-track): Handle dragging by using temporary Transient
9687 Mark mode, instead of a special overlay.
9688 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
9689 mouse-show-mark.
9690
9691 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
9692 deleted.
9693
9694 2010-07-02 Juri Linkov <juri@jurta.org>
9695
9696 * autoinsert.el (auto-insert-alist): Fix readability
9697 by using dotted pair notation for lambda.
9698
9699 2010-07-02 Juri Linkov <juri@jurta.org>
9700
9701 * faces.el (read-face-name): Rename arg `string-describing-default'
9702 to `default'. Doc fix. Display the default value in quotes
9703 in the prompt. With empty input, return the `default' arg,
9704 unless the default value is a string (in which case return nil).
9705 (describe-face): Replace the string `default' arg of `read-face-name'
9706 with the symbol `default'.
9707
9708 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
9709
9710 * emulation/viper-cmd.el (viper-delete-backward-char)
9711 (viper-del-backward-char-in-insert)
9712 (viper-del-backward-char-in-replace, viper-change)
9713 (viper-backward-indent): Replace delete-backward-char with
9714 delete-char (Bug#6552).
9715
9716 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
9717
9718 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
9719
9720 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9721
9722 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
9723 argument passed to frame-creation-function (Bug#5378).
9724
9725 * faces.el (x-handle-named-frame-geometry)
9726 (x-handle-reverse-video, x-create-frame-with-faces)
9727 (face-set-after-frame-default, tty-create-frame-with-faces):
9728 Don't separately consult default-frame-alist. It is now passed as the
9729 PARAMETER argument.
9730
9731 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
9732
9733 * startup.el (command-line): Don't call tool-bar-setup in a
9734 tty-only build.
9735
9736 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9737
9738 * ruler-mode.el (ruler--save-header-line-format): New fun.
9739 (ruler-mode): Use it as a setter function, so as not to overwrite
9740 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
9741
9742 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
9743
9744 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
9745 (vc-root-diff, vc-print-root-log, vc-log-incoming)
9746 (vc-log-outgoing): Use it.
9747 (vc-diff-internal): Set diff-vc-backend.
9748
9749 * vc/diff-mode.el (diff-vc-backend): New var.
9750
9751 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
9752
9753 * dynamic-setting.el (font-setting-change-default-font):
9754 Remove call to message.
9755
9756 2010-06-28 Kenichi Handa <handa@m17n.org>
9757
9758 * international/quail.el (quail-insert-kbd-layout): Fix the
9759 showing of untranslated characters.
9760
9761 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
9762
9763 * simple.el (delete-active-region): New option.
9764 (delete-backward-char): Implement in Lisp.
9765 (delete-forward-char): New command.
9766
9767 * mouse.el (mouse-region-delete-keys): Delete.
9768 (mouse-show-mark): Simplify.
9769
9770 * bindings.el (global-map): Bind delete and DEL, the former to
9771 delete-forward-char.
9772
9773 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
9774
9775 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
9776 (ruby-mode): Bind indent-line-function (Bug#5119).
9777
9778 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
9779
9780 * startup.el (command-line): Recognize "0" X resource value.
9781
9782 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
9783
9784 * startup.el (command-line): Use X resources to set the value of
9785 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
9786
9787 * menu-bar.el (menu-bar-mode):
9788 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
9789 Set init-value to t.
9790
9791 * frame.el (frame-notice-user-settings): Don't change
9792 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
9793 vice versa (Bug#2249).
9794
9795 2010-06-26 Eli Zaretskii <eliz@gnu.org>
9796
9797 * w32-fns.el (w32-convert-standard-filename): Doc fix.
9798
9799 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
9800
9801 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
9802 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
9803
9804 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
9805 default directories are expanded (Bug#6143).
9806
9807 2010-06-24 Juri Linkov <juri@jurta.org>
9808
9809 * minibuffer.el (completions-format): Change default from nil to
9810 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
9811
9812 2010-06-24 Juri Linkov <juri@jurta.org>
9813
9814 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
9815 buffer-locally to lambda that re-runs the vc diff command.
9816 (Bug#6447)
9817
9818 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
9819
9820 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
9821 echo area is in use (Bug#3412).
9822
9823 2010-06-22 Glenn Morris <rgm@gnu.org>
9824
9825 * textmodes/texinfmt.el (texinfo-format-region)
9826 (texinfo-raise-lower-sections, texinfo-format-separate-node)
9827 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
9828 (texinfo-format-option, texinfo-noindent):
9829 Use line-beginning-position and line-end-position.
9830
9831 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
9832 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
9833 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
9834 utf-8 characters.
9835
9836 2010-06-21 Karl Fogel <kfogel@red-bean.com>
9837
9838 * play/zone.el (zone-fall-through-ws): Fix next-line ->
9839 forward-line fallout.
9840
9841 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
9842
9843 * mouse.el (mouse-appearance-menu): Add docstring.
9844
9845 * help.el (describe-key): Print up-event using key-description.
9846
9847 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
9848
9849 * net/zeroconf.el (zeroconf-resolve-service)
9850 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
9851 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
9852
9853 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
9854
9855 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
9856
9857 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
9858
9859 Avoid displaying files with a nil state in vc-dir.
9860 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
9861 cases that cause insertion.
9862 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
9863 with a nil state.
9864
9865 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9866
9867 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
9868
9869 2010-06-29 Leo <sdl.web@gmail.com>
9870
9871 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
9872
9873 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9874
9875 * generic-x.el (bat-generic-mode): Fix regexp for command line
9876 switches (Bug#5719).
9877
9878 2010-06-27 Masatake YAMATO <yamato@redhat.com>
9879
9880 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
9881 of nconc to avoid pure storage error (Bug#6239).
9882
9883 2010-06-27 Christoph Scholtes <cschol2112@googlemail.com>
9884
9885 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
9886 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
9887 bindings of bookmark-automatically-show-annotations (Bug#6515).
9888
9889 2010-06-25 Eli Zaretskii <eliz@gnu.org>
9890
9891 * arc-mode.el (archive-zip-extract): Don't quote the file name on
9892 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
9893
9894 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
9895
9896 * comint.el (make-comint, make-comint-in-buffer): Mention return
9897 value in the docstrings. (Bug#6498)
9898
9899 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
9900
9901 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
9902 since it is not present when using some non-default switches.
9903
9904 2010-06-23 Karl Fogel <kfogel@red-bean.com>
9905
9906 * simple.el (compose-mail): Fix doc string to refer to
9907 `compose-mail-user-agent-warnings', instead of to the
9908 nonexistent `compose-mail-check-user-agent'.
9909
9910 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
9911
9912 Fix an indentation bug:
9913
9914 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
9915 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
9916 of existing values.
9917
9918 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
9919 (c-clear->-pair-props-if-match-before): now return t when they've
9920 cleared properties, nil otherwise.
9921 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
9922 by taking account of the existing value.
9923
9924 * progmodes/cc-defs.el
9925 (c-clear-char-property-with-value-function): Fix this to clear the
9926 property rather than overwriting it with nil.
9927
9928 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
9929
9930 * emacs-lisp/package.el (package-print-package): Add link to
9931 package description via describe-package.
9932 (describe-package-1): List package requirements. Add button to
9933 perform installation.
9934 (package-menu-describe-package): New command.
9935
9936 * help-mode.el (help-package): New button type.
9937
9938 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
9939
9940 * emacs-lisp/package.el: Move package-list-packages binding to
9941 menu-bar.el.
9942 (describe-package, describe-package-1, package--dir): New funs.
9943 (package-activate-1): Use package--dir.
9944
9945 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
9946
9947 * help-mode.el (help-package-def): New button type.
9948
9949 * menu-bar.el: Move package-list-packages binding here from
9950 package.el.
9951
9952 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
9953
9954 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
9955
9956 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9957
9958 * emacs-lisp/edebug.el (edebug-read-list):
9959 Phase out old-style backquotes.
9960
9961 2010-06-17 Juri Linkov <juri@jurta.org>
9962
9963 * help-mode.el (help-mode): Set buffer-local variable
9964 revert-buffer-function to help-mode-revert-buffer.
9965 (help-mode-revert-buffer): New function.
9966
9967 * info.el (Info-revert-find-node): Check for major-mode Info-mode
9968 before popping to "*info*" (like in other Info functions).
9969 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
9970 old-history-forward. Pop to old-buffer-name or "*info*" to
9971 recreate the killed buffer. Set Info-history-forward from
9972 old-history-forward.
9973 (Info-breadcrumbs-depth): Add :group and :version.
9974
9975 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
9976
9977 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
9978
9979 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
9980
9981 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
9982 for languages like Portuguese with pt_{BR,PT} and no plain pt.
9983
9984 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
9985
9986 * emacs-lisp/package.el (package-menu-mode-map):
9987 Move initialization into declaration.
9988
9989 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
9990
9991 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
9992
9993 * emacs-lisp/package.el (package-archive-base): Point to
9994 elpa.gnu.org.
9995 (package-enable, package-load-list): New defcustoms.
9996 (package-user-dir, package-directory-list): Turn into defcustoms.
9997 Don't include package-user-dir in package-directory-list.
9998 (package--builtins-base): Don't include Emacs as a "package".
9999 (package-subdirectory-regexp): New var.
10000 (package-load-all-descriptors, package-compute-transaction)
10001 (package-download-transaction): Obey package-load-list.
10002 (package-activate-1): Rename from package-do-activate.
10003 (package-list-packages-internal): Check package-load-list.
10004 (package-load-descriptor, package-generate-autoloads)
10005 (package-unpack, package-unpack-single)
10006 (package--read-archive-file, package-delete):
10007 Use expand-file-name.
10008
10009 * emacs-lisp/package-x.el: New file. Package uploading
10010 functionality split out from package.el.
10011
10012 * startup.el (command-line): Load packages after reading init file.
10013
10014 2010-06-17 Tom Tromey <tromey@redhat.com>
10015
10016 * emacs-lisp/package.el: New file.
10017
10018 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10019
10020 Fix vc-annotate for renamed files when using Git.
10021 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
10022 ls-files. Doe not pass the object as a file name to cat-file, it
10023 is not a file name.
10024 (vc-git-annotate-command): Pass the file name using -- to avoid
10025 ambiguity with the revision.
10026 (vc-git-previous-revision): Pass a relative file name.
10027
10028 2010-06-22 Glenn Morris <rgm@gnu.org>
10029
10030 * progmodes/js.el (js-mode-map): Use standard capitalization and
10031 ellipses for menu entries.
10032
10033 * wid-edit.el (widget-complete): Doc fix.
10034
10035 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
10036
10037 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
10038
10039 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10040
10041 Fix annotating other revisions for renamed files in vc-annotate.
10042 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
10043 VC backend. Use it when non-nil.
10044 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
10045 (Bug#6487).
10046
10047 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
10048 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
10049 Do not pass the file name to the 'previous-revision call when we
10050 don't want a file diff. (Bug#6489)
10051
10052 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10053
10054 Fix finding revisions for renamed files in vc-annotate.
10055 * vc/vc.el (vc-find-revision): Add an optional argument for
10056 the VC backend. Use it when non-nil.
10057 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
10058 backend to vc-find-revision. (Bug#6487)
10059
10060 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10061
10062 Fix reading file names in Git annotate buffers.
10063 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
10064 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
10065
10066 2010-06-20 Alan Mackenzie <acm@muc.de>
10067
10068 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
10069 in file local variables, set it first.
10070
10071 2010-06-19 Glenn Morris <rgm@gnu.org>
10072
10073 * descr-text.el (describe-char-unicode-data): Insert separating
10074 space when needed. (Bug#6422)
10075
10076 * progmodes/idlwave.el (idlwave-action-and-binding):
10077 Fix typo in 2009-12-03 change. (Bug#6450)
10078
10079 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
10080
10081 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
10082 handling for `lambda' (misunderstanding).
10083
10084 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
10085
10086 * calc/calc-poly.el (math-accum-factors): Make sure that
10087 constants aren't distributed after they are factored out.
10088
10089 2010-06-16 Juri Linkov <juri@jurta.org>
10090
10091 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
10092 `list-colors-print'. (Bug#6332)
10093
10094 * subr.el (read-quoted-char): Fix up last change (bug#6290).
10095
10096 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10097
10098 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
10099 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
10100
10101 * font-lock.el (font-lock-major-mode): Rename from
10102 font-lock-mode-major-mode to distinguish it from
10103 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
10104 (font-lock-set-defaults):
10105 * font-core.el (font-lock-default-function): Adjust users.
10106 (font-lock-mode): Don't set it at all.
10107
10108 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10109
10110 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
10111
10112 2010-06-16 Glenn Morris <rgm@gnu.org>
10113
10114 * calendar/appt.el (appt-time-msg-list): Doc fix.
10115 (appt-check): Let-bind appt-warn-time.
10116 (appt-add): Make the 3rd argument optional.
10117 Simplify argument names. Doc fix. Check for integer WARNTIME.
10118 Only add WARNTIME to the output list if non-nil.
10119
10120 2010-06-16 Ivan Kanis <apple@kanis.eu>
10121
10122 * calendar/appt.el (appt-check): Let the 3rd element of
10123 appt-time-msg-list specify the warning time.
10124 (appt-add): Add new argument with the warning time. (Bug#5176)
10125
10126 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
10127
10128 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
10129 older than version 1.6. (Bug#6361)
10130
10131 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
10132
10133 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
10134 used by cl-do-arglist. (Bug#6408)
10135
10136 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
10137
10138 * textmodes/ispell.el (ispell-dictionary-base-alist):
10139 Fix portuguese casechars/not-casechars for missing 'çÇ'.
10140 Suggested by Rolando Pereira (bug#6434).
10141
10142 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
10143
10144 * facemenu.el (list-colors-sort): Doc fix.
10145
10146 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
10147
10148 * progmodes/sql.el (sql-connect-mysql): Fix typo.
10149
10150 2010-06-14 Juri Linkov <juri@jurta.org>
10151
10152 Add sort option `list-colors-sort'. (Bug#6332)
10153 * facemenu.el (color-rgb-to-hsv): New function.
10154 (list-colors-sort): New defcustom.
10155 (list-colors-sort-key): New function.
10156 (list-colors-display): Doc fix. Sort list according to the option
10157 `list-colors-sort'.
10158 (list-colors-print): Add HSV values to `help-echo' property of
10159 RGB strings.
10160
10161 2010-06-14 Juri Linkov <juri@jurta.org>
10162
10163 * compare-w.el: Move to the "vc" subdirectory.
10164
10165 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10166
10167 * image-mode.el (image-mode-map): Remap left-char and right-char.
10168
10169 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
10170
10171 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
10172
10173 * term/common-win.el (x-colors): Add all the color names defined
10174 in rgb.txt (Bug#6332).
10175
10176 * facemenu.el (list-colors-print): Don't print extra names if it
10177 will overflow the window width.
10178
10179 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
10180 change (Bug#6343).
10181
10182 2010-06-12 Eli Zaretskii <eliz@gnu.org>
10183
10184 * files.el (make-directory): Doc fix (bug#6396).
10185
10186 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
10187
10188 * net/tramp.el (tramp-remote-process-environment): Protect version
10189 string by apostroph.
10190 (tramp-shell-prompt-pattern): Do not use a shy group in case of
10191 XEmacs.
10192 (tramp-file-name-for-operation): Add `call-process-region'.
10193 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
10194
10195 * net/tramp-compat.el (top): Do not autoload
10196 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
10197 only when `start-file-process' is not bound.
10198 (tramp-advice-file-expand-wildcards): Do not use
10199 `tramp-handle-file-remote-p'.
10200 (tramp-compat-make-temp-file): Handle the case, that
10201 `make-temp-file' has no third argument EXTENSION.
10202
10203 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
10204
10205 * makefile.w32-in (WINS_BASIC): Include new directory vc.
10206
10207 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
10208
10209 2010-06-11 Juri Linkov <juri@jurta.org>
10210
10211 * finder.el (finder-known-keywords): Add keyword "vc"
10212 for version control.
10213
10214 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
10215 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
10216 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
10217 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
10218
10219 2010-06-11 Juri Linkov <juri@jurta.org>
10220
10221 Move version control related files to the "vc" subdirectory.
10222 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
10223 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
10224 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
10225 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
10226 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
10227 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
10228 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
10229 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
10230 Move files to the "vc" subdirectory.
10231
10232 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
10233
10234 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
10235 (Bug#6367).
10236
10237 2010-06-11 Stephen Eglen <stephen@gnu.org>
10238
10239 * shell.el: Bind `shell-resync-dirs' to M-RET.
10240
10241 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
10242
10243 * notifications.el: Move file from lisp/net, because it is
10244 supposed to talk locally to the user.
10245
10246 2010-06-10 Julien Danjou <julien@danjou.info>
10247
10248 * net/notifications.el (notifications-on-action-signal)
10249 (notifications-on-closed-signal): Pass notification id as first
10250 argument to the callback functions. Add docstrings.
10251 (notifications-notify): Fix docstring.
10252
10253 2010-06-10 Glenn Morris <rgm@gnu.org>
10254
10255 * emacs-lisp/authors.el (authors-ignored-files)
10256 (authors-valid-file-names): Add some files.
10257
10258 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10259
10260 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
10261 merge conflict, giving preference to the emacs-23 version of the code.
10262
10263 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10264
10265 * emacs-lisp/advice.el (ad-compile-function):
10266 Define warning-suppress-types before we let-bind it (bug#6275).
10267
10268 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
10269 declare it, make it buffer-local and permanent-local (bug#6324).
10270 (vc-resynch-window): Adjust name.
10271 * vc-hooks.el (vc-find-file-hook): Adjust name.
10272
10273 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
10274
10275 * net/notifications.el (notifications-notify): Fix docstring.
10276
10277 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
10278
10279 Update to Unicode 6.0.0 beta.
10280 * international/charprop.el: Update copyright.
10281 * international/mule-cmds.el (ucs-names): Update character ranges.
10282 * international/uni-bidi.el:
10283 * international/uni-category.el:
10284 * international/uni-combining.el:
10285 * international/uni-comment.el:
10286 * international/uni-decimal.el:
10287 * international/uni-decomposition.el:
10288 * international/uni-digit.el:
10289 * international/uni-lowercase.el:
10290 * international/uni-mirrored.el:
10291 * international/uni-name.el:
10292 * international/uni-numeric.el:
10293 * international/uni-old-name.el:
10294 * international/uni-titlecase.el:
10295 * international/uni-uppercase.el: Regenerate.
10296
10297 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
10298
10299 * emacs-lisp/smie.el (comment-string-strip): Declare function.
10300 (smie-precs-precedence-table): Fix typo in docstring.
10301
10302 * vc-mtn.el (log-edit-extract-headers): Declare function.
10303
10304 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
10305
10306 * net/notifications.el (dbus-register-signal): Declare function.
10307 (notifications-notify): Fix typos and reflow docstring.
10308
10309 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10310
10311 Improve VC create/retrieve tag/branch.
10312 * vc.el (vc-create-tag): Do not read the directory name for VCs
10313 with repository revision granularity. Adjust the tag/branch
10314 prompt. Reset VC properties.
10315 (vc-retrieve-tag): Do not read the directory name for VCs
10316 with repository revision granularity. Reset VC properties.
10317
10318 2010-06-09 Julien Danjou <julien@danjou.info>
10319
10320 * net/notifications.el: New file.
10321
10322 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10323
10324 Add optional support for resetting VC properties.
10325 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
10326 call vc-file-clearprops when true.
10327 (vc-resynch-buffer): Add new optional argument, pass it down.
10328 (vc-resynch-buffers-in-directory): Likewise.
10329
10330 Improve support for special markup in the VC commit message.
10331 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
10332 * vc-hg.el (vc-hg-checkin): Add support for Date:.
10333 * vc-git.el (vc-git-checkin):
10334 * vc-bzr.el (vc-bzr-checkin): Likewise.
10335
10336 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10337
10338 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
10339 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
10340
10341 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
10342
10343 * iimage.el: Remove images as soon as the underlying text is modified.
10344 (iimage-modification-hook): New function.
10345 (iimage-mode-buffer): Use it.
10346
10347 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10348
10349 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
10350 smie-indent-offset-after. Add :prev case. Make a bit more generic.
10351 (smie-indent-virtual): Remove `virtual' arg. Update callers.
10352 (smie-indent-keyword): Add handling of open-paren keywords.
10353 (smie-indent-comment-continue): Don't assume comment-continue.
10354
10355 2010-06-07 Martin Rudalics <rudalics@gmx.at>
10356
10357 * window.el (pop-to-buffer): Remove the conditional that
10358 compares new-window and old-window, so it will reselect
10359 the selected window unconditionally.
10360 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
10361
10362 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10363
10364 * emacs-lisp/smie.el (smie-indent-offset-after)
10365 (smie-indent-forward-token, smie-indent-backward-token): New functions.
10366 (smie-indent-after-keyword): Use them.
10367 (smie-indent-fixindent): Only applies to the indentation of the BOL.
10368 (smie-indent-keyword): Tweak the black magic.
10369 (smie-indent-comment-continue): Strip comment-continue before use.
10370 (smie-indent-functions): Indent comments before keywords.
10371
10372 2010-06-06 Juri Linkov <juri@jurta.org>
10373
10374 * isearch.el (isearch-lazy-highlight-search): Fix looping
10375 by checking for empty match. This syncs this loop with the
10376 similar loop in `isearch-search'. (Bug#6362)
10377
10378 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
10379
10380 * net/dbus.el (dbus-register-method): Declare function.
10381 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
10382 (dbus-introspect): Doc fix.
10383 (dbus-event-bus-name, dbus-introspect-get-interface)
10384 (dbus-introspect-get-argument): Reflow docstrings.
10385
10386 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
10387
10388 vc-log-incoming/vc-log-outgoing fixes for Git.
10389 * vc-git.el (vc-git-log-view-mode): Fix font lock for
10390 incoming/outgoing logs.
10391 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
10392 instead of vc-git-compute-remote.
10393 (vc-git-compute-remote): Remove.
10394
10395 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
10396
10397 * term/common-win.el (x-colors): Add "dark green" and "dark
10398 turquoise" (Bug#6332).
10399
10400 2010-06-04 Juri Linkov <juri@jurta.org>
10401
10402 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
10403 Instead of setting `replace' to t and replacing the same string
10404 with itself, don't do certain actions when
10405 kill-do-not-save-duplicates is non-nil and string is equal to car
10406 of kill-ring: don't call menu-bar-update-yank-menu, don't push
10407 interprogram-paste strings to kill-ring, and don't push the input
10408 argument `string' to kill-ring.
10409 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
10410
10411 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
10412
10413 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
10414
10415 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
10416
10417 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
10418 (tramp-gvfs-handler-mounted-unmounted)
10419 (tramp-gvfs-connection-mounted-p): Handle default-location.
10420
10421 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
10422 move files to trash.
10423
10424 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
10425
10426 * international/mule-cmds.el (nonascii-insert-offset)
10427 (nonascii-translation-table): Add obsolescence information.
10428
10429 * international/mule.el (make-translation-table-from-vector): Doc fix.
10430
10431 2010-06-03 Glenn Morris <rgm@gnu.org>
10432
10433 * desktop.el (desktop-clear-preserve-buffers):
10434 Add "*Warnings*" buffer. (Bug#6336)
10435
10436 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
10437
10438 vc-log-incoming/vc-log-outgoing improvements for Git.
10439 * vc-git.el (vc-git-log-outgoing): Use the same format as the
10440 short log.
10441 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
10442
10443 Add bindings for vc-log-incoming and vc-log-outgoing.
10444 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
10445 and vc-log-outgoing.
10446 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
10447 and vc-log-outgoing.
10448
10449 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
10450
10451 * net/rcirc.el (rcirc-sort-nicknames): Remove.
10452 (rcirc-handler-366): Always sort nicknames.
10453
10454 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
10455
10456 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
10457
10458 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
10459
10460 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
10461
10462 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10463
10464 * net/rcirc.el (rcirc-sort-nicknames): Change default.
10465 (rcirc-sort-nicknames-join): Avoid setq.
10466
10467 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
10468
10469 * net/rcirc.el (rcirc-sort-nicknames): New custom.
10470 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
10471 (rcirc-handler-366): Use them.
10472
10473 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10474
10475 Split smie-indent-calculate into more manageable chunks.
10476 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
10477 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
10478 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
10479 (smie-indent-exps): Extract from smie-indent-calculate.
10480 (smie-indent-functions): New var.
10481 (smie-indent-functions): Use them.
10482
10483 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10484
10485 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
10486 (smie-indent-calculate): Simplify and cleanup.
10487
10488 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
10489
10490 * net/tramp-gvfs.el (top): Require url-util.
10491 (tramp-gvfs-mount-point): Remove.
10492 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
10493 New defuns.
10494 (with-tramp-dbus-call-method): Format trace message.
10495 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
10496 Implement backup call, when operation on local files fails.
10497 Use progress reporter. Flush properties of changed files.
10498 (tramp-gvfs-handle-make-directory): Make more traces.
10499 (tramp-gvfs-url-file-name): Hexify file name in url.
10500 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
10501 into account for the resulting file name.
10502 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
10503 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
10504 (tramp-gvfs-handler-mounted-unmounted)
10505 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
10506 attribute "default_location". Set "prefix" property.
10507 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
10508 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
10509 exists. Raise an error, if not (due to a corresponding answer
10510 "no" in interactive questions, for example).
10511
10512 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
10513
10514 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
10515
10516 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
10517
10518 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
10519 right-*. (Bug#6265)
10520
10521 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
10522
10523 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
10524 * vc-git.el (vc-git-compute-remote): New function.
10525 (vc-git-log-outgoing): Use it instead of hard coding a value.
10526 (vc-git-log-incoming): New function.
10527
10528 Improve state updating for VC tag commands.
10529 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
10530 to update the state of all buffers in the directory.
10531
10532 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
10533
10534 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10535
10536 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
10537 `file-directory-p' to the filename part rather than to the whole text.
10538
10539 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10540
10541 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
10542
10543 2010-05-31 Drew Adams <drew.adams@oracle.com>
10544
10545 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
10546
10547 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
10548
10549 * subr.el (momentary-string-display): Just use read-event to read
10550 the exit event (Bug#6238).
10551
10552 2010-05-30 Eli Zaretskii <eliz@gnu.org>
10553
10554 * international/mule.el (define-coding-system): Doc fix (bug#6313).
10555
10556 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
10557
10558 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
10559 Suggested by Eli Zaretskii <eliz@gnu.org>.
10560
10561 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10562
10563 * minibuffer.el (completion-file-name-table): Don't return a boundary
10564 past the end of `string' (bug#6299).
10565 (completion--file-name-table): Delegate to completion-file-name-table
10566 for the `boundaries' case.
10567
10568 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
10569
10570 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
10571 movement commands.
10572
10573 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
10574 `path-separator', but maintain compatibility with Emacs 20.2.
10575
10576 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
10577
10578 * server.el (server-process-filter): Receive parent-id argument
10579 from emacsclient.
10580 (server-create-window-system-frame): New arg. Pass parent-id as
10581 frame parameter.
10582
10583 2010-05-29 Eli Zaretskii <eliz@gnu.org>
10584
10585 Bidi-sensitive word movement with arrow keys.
10586 * subr.el (right-arrow-command, left-arrow-command): Move to
10587 bindings.el.
10588
10589 * bindings.el (right-char, left-char): Move from subr.el and
10590 rename from right-arrow-command and left-arrow-command.
10591 (right-word, left-word): New functions.
10592 (global-map) <right>: Bind to right-char.
10593 (global-map) <left>: Bind to left-char.
10594 (global-map) <C-right>: Bind to right-word.
10595 (global-map) <C-left>: Bind to left-word.
10596
10597 * ls-lisp.el (ls-lisp-classify-file): New function.
10598 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
10599 (ls-lisp-classify): Call ls-lisp-classify-file.
10600 (insert-directory): Remove blanks from switches.
10601
10602 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
10603
10604 * ansi-color.el: Delete unused escape sequences (Bug#6085).
10605 (ansi-color-drop-regexp): New constant.
10606 (ansi-color-apply, ansi-color-filter-region)
10607 (ansi-color-apply-on-region): Delete unrecognized control sequences.
10608 (ansi-color-apply): Build string list before calling concat.
10609
10610 2010-05-28 Juri Linkov <juri@jurta.org>
10611
10612 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
10613 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
10614 (Bug#5270)
10615
10616 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
10617
10618 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
10619 to ignored backtrace functions.
10620 (with-progress-reporter): Expand docstring.
10621 (tramp-handle-delete-file): Implement TRASH argument.
10622 (tramp-get-remote-trash): New defun.
10623
10624 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
10625
10626 * net/tramp-compat.el (tramp-compat-delete-file):
10627 Use `symbol-value' for backward compatibility.
10628
10629 * net/tramp.el (tramp-handle-make-symbolic-link)
10630 (tramp-handle-load)
10631 (tramp-do-copy-or-rename-file-via-buffer)
10632 (tramp-do-copy-or-rename-file-directly)
10633 (tramp-do-copy-or-rename-file-out-of-band)
10634 (tramp-handle-process-file, tramp-handle-call-process-region)
10635 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10636 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10637 (tramp-delete-temp-file-function): Use `delete-file' instead
10638 of `tramp-compat-delete-file'.
10639
10640 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10641 (tramp-fish-handle-make-symbolic-link)
10642 (tramp-fish-handle-process-file): Use `delete-file' instead
10643 of `tramp-compat-delete-file'.
10644
10645 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
10646 Use `delete-file' instead of `tramp-compat-delete-file'.
10647
10648 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
10649 Use `delete-file' instead of `tramp-compat-delete-file'.
10650
10651 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
10652 Use `delete-file' instead of `tramp-compat-delete-file'.
10653
10654 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10655 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10656 (tramp-smb-handle-write-region): Use `delete-file' instead of
10657 `tramp-compat-delete-file'.
10658 (tramp-smb-handle-delete-directory): Use 'trash as arg.
10659
10660 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10661
10662 * dired.el (dired-delete-file): New arg TRASH.
10663 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
10664 (dired-do-flagged-delete, dired-do-delete): Use trash.
10665
10666 * speedbar.el (speedbar-item-delete): Allow trashing.
10667
10668 * files.el (delete-directory): New arg TRASH.
10669
10670 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
10671 (ange-ftp-rename-remote-to-remote)
10672 (ange-ftp-rename-local-to-remote)
10673 (ange-ftp-rename-remote-to-local, ange-ftp-load)
10674 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
10675 `delete-file'.
10676 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
10677 allow trashing.
10678
10679 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
10680 handle new TRASH arg of `delete-file'.
10681
10682 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
10683 (tramp-handle-make-symbolic-link, tramp-handle-load)
10684 (tramp-do-copy-or-rename-file-via-buffer)
10685 (tramp-do-copy-or-rename-file-directly)
10686 (tramp-do-copy-or-rename-file-out-of-band)
10687 (tramp-handle-process-file, tramp-handle-call-process-region)
10688 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10689 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10690 (tramp-delete-temp-file-function): Use null TRASH arg in
10691 tramp-compat-delete-file call.
10692
10693 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10694 (tramp-fish-handle-delete-file)
10695 (tramp-fish-handle-make-symbolic-link)
10696 (tramp-fish-handle-process-file): Use null TRASH arg in
10697 `tramp-compat-delete-file' call.
10698
10699 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
10700 arg in `tramp-compat-delete-file' call.
10701
10702 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
10703 (tramp-gvfs-handle-write-region): Use null TRASH arg in
10704 `tramp-compat-delete-file' call.
10705
10706 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
10707 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
10708 `tramp-compat-delete-file' call.
10709
10710 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10711 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10712 (tramp-smb-handle-write-region): Use null TRASH arg in
10713 tramp-compat-delete-file call.
10714 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
10715 (tramp-smb-handle-delete-file): Rename arg.
10716
10717 * diff.el (diff-sentinel):
10718 * epg.el (epg--make-temp-file, epg-decrypt-string)
10719 (epg-verify-string, epg-sign-string, epg-encrypt-string):
10720 * jka-compr.el (jka-compr-partial-uncompress)
10721 (jka-compr-call-process, jka-compr-write-region):
10722 * server.el (server-sentinel): Remove optional arg from
10723 delete-file, reverting 2010-05-03 change.
10724
10725 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10726
10727 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10728 Use font-lock-constant-face, not obsolete font-lock-reference-face.
10729
10730 2010-05-27 Kenichi Handa <handa@m17n.org>
10731
10732 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
10733 element of GSTRING is nil.
10734
10735 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10736
10737 * emacs-lisp/smie.el (smie-forward-token-function)
10738 (smie-backward-token-function): New vars.
10739 (smie-backward-sexp, smie-forward-sexp)
10740 (smie-indent-hanging-p, smie-indent-calculate): Use them.
10741 (smie-default-backward-token): Rename from smie-backward-token and
10742 skip comments.
10743 (smie-default-forward-token): Rename from smie-forward-token and
10744 skip comments.
10745 (smie-next-sexp): Handle nil results from next-token.
10746 (smie-indent-calculate): Add a new case for special `fixindent' comments.
10747
10748 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10749
10750 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10751 Use font-lock-constant-face, not obsolete font-lock-reference-face.
10752
10753 2010-05-27 Masatake YAMATO <yamato@redhat.com>
10754
10755 * htmlfontify.el (hfy-face-resolve-face): New function.
10756 (hfy-face-to-style): Use it (Bug#6279).
10757
10758 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10759
10760 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
10761 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
10762
10763 2010-05-26 Glenn Morris <rgm@gnu.org>
10764
10765 * emulation/edt.el (edt-load-keys): Use locate-library.
10766
10767 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
10768
10769 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
10770 (log-edit-changelog-entries): Doc fix.
10771 (log-edit-changelog-insert-entries): Args changed.
10772 Rename relative filenames in ChangeLog entries. Delete tabs.
10773 (log-edit-insert-changelog-entries): Reorganize return value of
10774 `log-edit-changelog-entries' to pass filenames to
10775 log-edit-changelog-insert-entries.
10776
10777 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10778
10779 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
10780 `image-dired-dired-insert-marked-thumbs' to
10781 `image-dired-dired-toggle-marked-thumbs'.
10782
10783 * image-dired.el: Require cl when compiling.
10784 (image-dired-dired-toggle-marked-thumbs): Rename from
10785 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
10786 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
10787 to 'no-dir. Skip files whose names don't match
10788 `image-file-name-regexp'. When file has a thumbnail overlay,
10789 delete it. (Bug#5270)
10790
10791 2010-05-25 Juri Linkov <juri@jurta.org>
10792
10793 * image-mode.el (image-mode): Add image-after-revert-hook to
10794 after-revert-hook.
10795 (image-after-revert-hook): New function. (Bug#5669)
10796
10797 2010-05-25 Juri Linkov <juri@jurta.org>
10798
10799 * image.el (image-animated-p): When delay between animated images
10800 is 0, set it to 10 (0.1 sec). (Bug#6258)
10801
10802 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
10803
10804 * net/tramp.el (tramp-handle-insert-directory): Don't use
10805 `forward-word', its default syntax could be changed.
10806
10807 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
10808
10809 * net/tramp.el (tramp-progress-reporter-update): New defun.
10810 (with-progress-reporter): Use it.
10811 (tramp-process-actions):
10812 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
10813 Preserve current message, in order to let progress reporter continue
10814 afterwards. (Bug#6257)
10815
10816 2010-05-25 Glenn Morris <rgm@gnu.org>
10817
10818 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
10819 Add :version.
10820
10821 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
10822
10823 * net/rcirc.el (rcirc-default-user-name): Change to "user".
10824 (rcirc-default-full-name): Change to "unknown".
10825 (rcirc-user-name-history): Add variable.
10826
10827 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
10828 Jonathan Rockway <jon@jrock.us>
10829
10830 * net/rcirc.el (rcirc-server-alist): Add :pass.
10831 (rcirc): When prompting for connection parameters, also prompt for
10832 username and password.
10833 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
10834 value to server when connecting.
10835
10836 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10837
10838 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
10839 (smie-merge-prec2s): Pass the tables as separate args.
10840 (smie-bnf-precedence-table): Adjust call accordingly.
10841 (smie-prec2-levels): Set levels at the end.
10842
10843 Replace Lisp calls to delete-backward-char by delete-char.
10844 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
10845 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
10846 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
10847 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
10848 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
10849 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
10850 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
10851 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
10852 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
10853 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
10854 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
10855 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
10856 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
10857 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
10858 delete-backward-char by calls to delete-char.
10859
10860 2010-05-25 Kenichi Handa <handa@m17n.org>
10861
10862 * language/hebrew.el (hebrew-shape-gstring): New function.
10863 Register it in composition-function-table for all Hebrew combining
10864 characters.
10865
10866 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10867
10868 * epa.el (epa--select-keys): Don't explicitly delete the window since
10869 that can fail (e.g. sole window in frame). Use dedication instead.
10870
10871 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
10872
10873 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
10874
10875 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
10876
10877 * image.el (image-refresh): Define as an alias for image-flush.
10878
10879 * image-mode.el (image-toggle-display-image): Caller changed.
10880
10881 2010-05-21 Juri Linkov <juri@jurta.org>
10882
10883 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
10884 Remove "all" from grep-files-aliases. Split grep-files-aliases by
10885 whitespace, call wildcard-to-regexp on substrings and concat them
10886 with "\\|". (Bug#6114)
10887
10888 2010-05-21 Alan Mackenzie <acm@muc.de>
10889
10890 * progmodes/cc-engine.el (c-parse-state-get-strategy):
10891 Replace parameter `here' with `here-' and `here-plus', which sandwich
10892 any pertinent CPP construct.
10893 (c-remove-stale-state-cache-backwards): Fix a bug which happens
10894 when doing (c-parse-state) in a CPP construct: Exclude any "new"
10895 CPP construct from taking part in the scanning.
10896
10897 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
10898
10899 * net/tramp.el (tramp-do-copy-or-rename-file)
10900 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
10901 Tune `with-progress-reporter' messages.
10902 (tramp-handle-vc-registered):
10903 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
10904 (tramp-fish-handle-insert-file-contents)
10905 (tramp-fish-maybe-open-connection):
10906 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
10907 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
10908 (tramp-imap-handle-insert-file-contents)
10909 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
10910
10911 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
10912
10913 * add-log.el (change-log-font-lock-keywords):
10914 Highlight all authors in multi-author entries.
10915
10916 * smerge-mode.el (smerge-refine-ignore-whitespace)
10917 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
10918 Fix typos in docstrings.
10919 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
10920
10921 2010-05-21 Glenn Morris <rgm@gnu.org>
10922
10923 * progmodes/fortran.el (fortran-mode):
10924 * progmodes/f90.el (f90-mode): Derive from prog-mode.
10925
10926 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
10927 having a relative path in src/Makefile.in.
10928
10929 2010-05-20 Kevin Ryde <user42@zip.com.au>
10930
10931 * help-mode.el (help-make-xrefs): For Info node links turn
10932 newlines into spaces. Link node names with newlines are matched
10933 by help-xref-info-regexp and buttonized, this change ensures they
10934 can be followed successfully with RET. (Bug#6206)
10935
10936 2010-05-20 Juri Linkov <juri@jurta.org>
10937
10938 * locate.el (locate): Use pop-to-buffer instead of
10939 switch-to-buffer-other-window. (Bug#6204)
10940
10941 2010-05-20 Juri Linkov <juri@jurta.org>
10942
10943 * replace.el (replace-highlight): Fix lazy-highlighting
10944 for `M-s w str M-% str RET'.
10945
10946 2009-12-15 Masatake YAMATO <yamato@redhat.com>
10947
10948 * isearch.el (isearch-yank-word-or-char): Pull next subword
10949 when `subword-mode' is activated. (Bug#6220)
10950
10951 2010-05-20 Mark A. Hershberger <mah@everybody.org>
10952
10953 * isearch.el (isearch-update-post-hook): New hook.
10954 (isearch-update): Use the new hook. (Bug#6225)
10955
10956 2010-05-20 Juri Linkov <juri@jurta.org>
10957
10958 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
10959 [f1], [help], and (char-to-string help-char) instead of "\C-h".
10960 (Bug#6222)
10961
10962 2010-05-20 Juri Linkov <juri@jurta.org>
10963
10964 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
10965 (Bug#6223)
10966
10967 2010-05-20 Juri Linkov <juri@jurta.org>
10968
10969 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
10970 FILE-NAME to read from the minibuffer when called interactively
10971 with prefix argument instead of using buffer-file-name.
10972 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
10973
10974 * dired.el: Update autoloads.
10975
10976 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
10977
10978 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
10979 nxml-finish-element, for consistency with SGML mode.
10980
10981 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
10982 octave-close-block.
10983
10984 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
10985
10986 * composite.el: Require cl when compiling.
10987 (reference-point-alist, compose-gstring-for-graphic)
10988 (compose-gstring-for-terminal): Fix typos in docstrings.
10989
10990 2010-05-19 Juri Linkov <juri@jurta.org>
10991
10992 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
10993 set-window-parameter.
10994
10995 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
10996
10997 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
10998 where appropriate.
10999 (tramp-maybe-open-connection): Use it.
11000
11001 2010-05-19 Eli Zaretskii <eliz@gnu.org>
11002
11003 * simple.el (move-end-of-line): Make sure we are at line beginning
11004 before backing up to end of previous line.
11005
11006 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
11007
11008 * password-cache.el (password-cache-remove): Fix docstring.
11009
11010 * net/secrets.el: Autoload the widget functions.
11011 (secrets-search-items, secrets-create-item)
11012 (secrets-get-attributes, secrets-expand-item): Attributes will be
11013 stored on the password database without leading ":", as all other
11014 clients do as well.
11015 (secrets-mode): Fix docstring.
11016 (secrets-show-secrets): Provide it as autoloaded command only when
11017 D-Bus support is available. Check existence of Secret Service API.
11018
11019 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11020
11021 * indent.el (indent-region): Deactivate region (bug#6200).
11022
11023 2010-05-19 Glenn Morris <rgm@gnu.org>
11024
11025 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
11026
11027 2010-05-19 Kenichi Handa <handa@m17n.org>
11028
11029 * composite.el: Register compose-gstring-for-graphic in
11030 composition-function-table only for combining characters (Mn, Mc, Me).
11031
11032 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
11033
11034 * calc/calc-trail.el (calc-trail-isearch-forward)
11035 (calc-trail-isearch-backward): Ensure that the new window
11036 point is set correctly.
11037
11038 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11039
11040 * subr.el (read-quoted-char): Resolve modifiers after key
11041 remapping (bug#6212).
11042
11043 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
11044
11045 Add visualization code for secrets.
11046 * net/secrets.el (secrets-mode): New major mode.
11047 (secrets-show-secrets, secrets-show-collections)
11048 (secrets-expand-collection, secrets-expand-item)
11049 (secrets-tree-widget-after-toggle-function)
11050 (secrets-tree-widget-show-password): New defuns.
11051
11052 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11053
11054 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
11055 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
11056 handled in smie-next-sexp.
11057 (smie-indent-calculate): Provide a starting indentation (so the
11058 recursion is well-founded ;-).
11059
11060 Fix handling of non-associative equal levels.
11061 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
11062 when it's not needed.
11063 (smie-op-left, smie-op-right): New functions.
11064 (smie-next-sexp): New function, extracted from smie-backward-sexp.
11065 Better handle equal levels to distinguish the associative case from
11066 the "multi-keyword construct" case.
11067 (smie-backward-sexp, smie-forward-sexp): Use it.
11068
11069 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
11070
11071 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
11072
11073 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
11074 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
11075
11076 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11077
11078 Provide a simple generic indentation engine and use it for Prolog.
11079 * emacs-lisp/smie.el: New file.
11080 * progmodes/prolog.el (prolog-smie-op-levels)
11081 (prolog-smie-indent-rules): New var.
11082 (prolog-mode-variables): Use them to configure SMIE.
11083 (prolog-indent-line, prolog-indent-level): Remove.
11084
11085 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
11086
11087 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
11088 order before computing the averages.
11089
11090 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
11091
11092 * calc/calc-vec.el (calc-histogram):
11093 (calcFunc-histogram): Allow vectors as inputs.
11094 (math-vector-avg): New function.
11095
11096 * calc/calc-ext.el (math-group-float): Have the number of digits
11097 being grouped depend on the radix (Bug#6189).
11098
11099 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
11100
11101 * version.el (emacs-copyright, emacs-version): Don't define here,
11102 now that emacs.c defines it.
11103
11104 2010-05-15 Eli Zaretskii <eliz@gnu.org>
11105
11106 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
11107 "Describe Language Environment" menu item.
11108
11109 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
11110
11111 Bidi-sensitive movement with arrow keys.
11112 * subr.el (right-arrow-command, left-arrow-command): New functions.
11113
11114 * bindings.el (global-map): Bind them to right and left arrow keys.
11115
11116 Don't override standard definition of convert-standard-filename.
11117 * files.el (convert-standard-filename):
11118 Call w32-convert-standard-filename and dos-convert-standard-filename on
11119 the corresponding systems.
11120
11121 * w32-fns.el (w32-convert-standard-filename): Rename from
11122 convert-standard-filename. Doc fix.
11123
11124 * dos-fns.el (dos-convert-standard-filename): Doc fix.
11125 (convert-standard-filename): Don't defalias.
11126 (register-name-alist, make-register, register-value)
11127 (set-register-value, intdos): Obsolete aliases for the
11128 corresponding dos-* functions and variables.
11129 (dos-intdos): Add a doc string.
11130
11131 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
11132
11133 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
11134 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
11135 (math-compose-tex-func):
11136 * calc/calccomp.el (math-compose-expr):
11137 * calc/calc-ext.el (math-format-flat-expr-fancy):
11138 * calc/calc-store.el (calc-read-var-name):
11139 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
11140
11141 * calc/calc.el (var-π, var-φ, var-γ): New variables.
11142 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
11143 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
11144 (math-standard-units): Add units.
11145
11146 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11147
11148 * progmodes/asm-mode.el (asm-mode):
11149 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
11150
11151 * pcomplete.el (pcomplete-completions-at-point): New function,
11152 extracted from pcomplete-std-complete.
11153 (pcomplete-std-complete): Use it.
11154
11155 2010-05-15 Glenn Morris <rgm@gnu.org>
11156
11157 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11158 Remove references to CVS, RCS and Old directories.
11159
11160 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
11161
11162 * calc/calc-bin.el (math-format-twos-complement): Group digits when
11163 appropriate.
11164
11165 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11166
11167 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
11168 (sh-mode-syntax-table): Give it a default value instead.
11169 (sh-header-marker): Make buffer-local.
11170 (sh-mode): Move make-local-variable to the corresponding setq.
11171 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
11172 Use complete-with-action.
11173
11174 * simple.el (prog-mode): New (abstract) major mode.
11175 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
11176 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
11177
11178 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
11179
11180 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
11181 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
11182 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
11183 (sql-make-alternate-buffer-name, sql-placeholders-filter)
11184 (sql-escape-newlines-filter, sql-input-sender)
11185 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
11186
11187 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
11188
11189 Add TeX open-block and close-block keybindings to SGML, and vice versa.
11190
11191 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
11192 latex-open-block and C-c / to latex-close-block.
11193
11194 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
11195 and C-c C-e to sgml-close-tag.
11196
11197 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
11198
11199 * net/tramp.el (with-progress-reporter): Create reporter object
11200 only when the message would be displayed. Handle nested calls.
11201 (tramp-handle-load, tramp-handle-file-local-copy)
11202 (tramp-handle-insert-file-contents, tramp-handle-write-region)
11203 (tramp-maybe-send-script, tramp-find-shell):
11204 Use `with-progress-reporter'.
11205 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
11206 Fix message text.
11207
11208 * net/tramp-smb.el (tramp-smb-handle-copy-file)
11209 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
11210 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
11211 Use `with-progress-reporter'.
11212
11213 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
11214
11215 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
11216 process everytime when spellchecking from the minibuffer (bug#6143).
11217
11218 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11219
11220 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
11221
11222 * dos-fns.el: Add "dos-" prefix for namespace control.
11223 (convert-standard-filename): Define as alias for
11224 dos-convert-standard-filename but only if applicable.
11225
11226 2010-05-12 Alan Mackenzie <acm@muc.de>
11227
11228 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
11229 Push the mark at the start of these functions when appropriate.
11230
11231 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11232
11233 * minibuffer.el (completion-cycle-threshold): New custom var.
11234 (completion--do-completion): Use it.
11235 (minibuffer-complete): Use cycling if appropriate.
11236
11237 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
11238
11239 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
11240 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
11241
11242 2010-05-11 Juri Linkov <juri@jurta.org>
11243
11244 * scroll-all.el (scroll-all-check-to-scroll):
11245 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
11246
11247 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
11248
11249 * iimage.el (iimage-mode-map): Move initialization into declaration.
11250 (iimage-mode-buffer): Use with-silent-modifications.
11251 Simplify calling convention. Adjust callers.
11252 (iimage-mode): Don't run hook redundantly.
11253
11254 * minibuffer.el (completion-pcm--pattern->regex):
11255 Fix last change (bug#6160).
11256
11257 2010-05-10 Juri Linkov <juri@jurta.org>
11258
11259 Remove nodes visited during Isearch from the Info history.
11260 * info.el (Info-isearch-initial-history)
11261 (Info-isearch-initial-history-list): New variables.
11262 (Info-isearch-start): Record initial values of
11263 Info-isearch-initial-history and Info-isearch-initial-history-list.
11264 Add Info-isearch-end to isearch-mode-end-hook.
11265 (Info-isearch-end): New function.
11266
11267 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
11268
11269 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
11270 format string, in order to work around a bug in pdksh.
11271 Reported by Gilles Pion <gpion@lfdj.com>.
11272 (tramp-handle-verify-visited-file-modtime): Do not send a command
11273 when the connection is not established.
11274 (tramp-handle-set-file-times): Simplify the check for utc.
11275
11276 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
11277
11278 Fix use of `filter-buffer-substring' (rework previous change).
11279 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
11280 (cua-repeat-replace-region):
11281 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
11282 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11283 (cua-cut-region-to-global-mark): Use it.
11284
11285 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
11286
11287 * progmodes/sql.el: Version 2.1.
11288 (sql-product-alist): Redesign structure of product info.
11289 (sql-product, sql-user, sql-server, sql-database): Safe variables.
11290 (sql-port, sql-port-history): New variables.
11291 (sql-interactive-product): New variable.
11292 (sql-send-terminator): New variable.
11293 (sql-imenu-generic-expression): Add "Types" imenu entry.
11294 (sql-oracle-login-params, sql-sqlite-login-params)
11295 (sql-mysql-login-params, sql-solid-login-params)
11296 (sql-sybase-login-params, sql-informix-login-params)
11297 (sql-ingres-login-params, sql-ms-login-params)
11298 (sql-postgres-login-params, sql-interbase-login-params)
11299 (sql-db2-login-params, sql-linter-login-params)
11300 (sql-oracle-scan-on): New variables.
11301 (sql-mode-map): Add C-c C-i to start interactive mode.
11302 (sql-mode-menu): Update existing menu entries.
11303 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
11304 (sql-mode-oracle-font-lock-keywords)
11305 (sql-mode-postgres-font-lock-keywords)
11306 (sql-mode-ms-font-lock-keywords)
11307 (sql-mode-sybase-font-lock-keywords)
11308 (sql-mode-informix-font-lock-keywords)
11309 (sql-mode-interbase-font-lock-keywords)
11310 (sql-mode-ingres-font-lock-keywords)
11311 (sql-mode-solid-font-lock-keywords)
11312 (sql-mode-mysql-font-lock-keywords)
11313 (sql-mode-sqlite-font-lock-keywords)
11314 (sql-mode-db2-font-lock-keywords)
11315 (sql-mode-linter-font-lock-keywords): Update initialization to
11316 reduce run-time complexity.
11317 (sql-add-product, sql-del-product): New functions.
11318 (sql-set-product-feature, sql-get-product-feature): New functions.
11319 (sql-product-font-lock): Update product API.
11320 (sql-add-product-keywords): New function.
11321 (sql-highlight-product): Update product API.
11322 (sql-help-list-products): New function.
11323 (sql-help): Dynamically lists free and non-free products.
11324 (sql-get-login): Correct bug in handling history and added
11325 prompt for port.
11326 (sql-copy-column): Copy without properties.
11327 (sqli-input-sender): Apply filters to SQLi input.
11328 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
11329 Implement as a filter.
11330 (sql-escape-newlines-filter): Implement as a filter.
11331 (sql-remove-tabs-filter): New function.
11332 (sql-send-magic-terminator): New function.
11333 (sql-send-string): Implement magic terminator.
11334 (sql-send-region): Use `sql-send-string'.
11335 (sql-interactive-mode): Use product API.
11336 (sql-product-interactive): Use product API.
11337 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
11338 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
11339 (sql-db2, sql-linter): Use `sql-product-interactive'.
11340 (sql-connect): New function.
11341 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
11342 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
11343 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
11344 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
11345 Use `sql-connect'.
11346
11347 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11348
11349 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
11350 New custom variable.
11351 (completion-pcm--string->pattern): Use it.
11352 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
11353 Make it handle any symbol as `any'.
11354 (completion-pcm--merge-completions): Extract common suffix for the new
11355 `prefix' symbol as well.
11356 (completion-substring--all-completions): Use the new `prefix' symbol.
11357
11358 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
11359
11360 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
11361 not bound.
11362 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
11363 (tramp-compat-funcall): New defmacro.
11364 (tramp-compat-line-beginning-position)
11365 (tramp-compat-line-end-position)
11366 (tramp-compat-temporary-file-directory)
11367 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
11368 (tramp-compat-copy-file, tramp-compat-copy-directory)
11369 (tramp-compat-delete-file, tramp-compat-delete-directory)
11370 (tramp-compat-number-sequence, tramp-compat-process-running-p)
11371 * net/tramp.el (top, with-progress-reporter)
11372 (tramp-rfn-eshadow-setup-minibuffer)
11373 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
11374 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
11375 (tramp-completion-mode-p, tramp-check-for-regexp)
11376 (tramp-open-connection-setup-interactive-shell)
11377 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
11378 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
11379 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
11380 * net/tramp-cmds.el (tramp-cleanup-all-connections)
11381 (tramp-reporter-dump-variable, tramp-load-report-modules)
11382 (tramp-append-tramp-buffers)
11383 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
11384
11385 * net/tramp-imap.el (top): Autoload `epg-make-context'.
11386
11387 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11388
11389 * progmodes/compile.el (compilation-buffer-modtime): Rename from
11390 buffer-modtime. Adjust users.
11391
11392 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11393
11394 * international/mule.el (auto-coding-alist): Only purecopy
11395 car of each item, not the whole list (Bug#6083).
11396
11397 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11398
11399 * progmodes/js.el (js-mode): Make paragraph variables local before
11400 calling c-setup-paragraph-variables (Bug#6071).
11401
11402 2010-05-08 Eli Zaretskii <eliz@gnu.org>
11403
11404 * composite.el (compose-region, reference-point-alist): Fix typos
11405 in the doc strings.
11406
11407 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
11408
11409 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
11410 gnuplot's "set" command.
11411
11412 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11413
11414 * abbrev.el (last-abbrev-text): Doc fix.
11415 (abbrev-prefix-mark): Don't escape parenthesis.
11416
11417 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
11418
11419 * composite.el (find-composition): Doc fix.
11420
11421 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11422
11423 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
11424 (sql-oracle-program, sql-sqlite-options)
11425 (sql-query-placeholders-and-send): Doc fixes.
11426 (sql-set-product, sql-interactive-mode): Reflow docstrings.
11427 (sql-imenu-generic-expression, sql-buffer)
11428 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
11429 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
11430 (sql-mode-sybase-font-lock-keywords)
11431 (sql-mode-informix-font-lock-keywords)
11432 (sql-mode-interbase-font-lock-keywords)
11433 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
11434 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
11435 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
11436 (sql-product-feature, sql-highlight-product)
11437 (comint-line-beginning-position, sql-rename-buffer)
11438 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
11439 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
11440 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
11441 Fix typos in docstrings.
11442
11443 2010-05-08 Juri Linkov <juri@jurta.org>
11444
11445 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
11446 property instead of `invisible' and `after-string' (bug#5998).
11447
11448 2010-05-08 Juri Linkov <juri@jurta.org>
11449
11450 * image-mode.el (image-mode-as-text): Fix typo in docstring.
11451
11452 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11453
11454 * filecache.el (file-cache-add-directory-list)
11455 (file-cache-add-directory-recursively): Fix typos in docstrings.
11456
11457 2010-05-08 Kenichi Handa <handa@m17n.org>
11458
11459 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
11460 (gujarati-composable-pattern): Fix typo.
11461
11462 2010-05-08 Kenichi Handa <handa@m17n.org>
11463
11464 * language/indian.el (oriya-composable-pattern)
11465 (tamil-composable-pattern, malayalam-composable-pattern):
11466 Add two-part vowels to "v" (vowel sign).
11467
11468 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11469
11470 * files.el (copy-directory): Handle symlinks (Bug#5982).
11471
11472 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
11473
11474 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
11475 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
11476 (Bug#5846).
11477
11478 2010-05-08 Glenn Morris <rgm@gnu.org>
11479
11480 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
11481
11482 * minibuffer.el (completion-at-point): Doc fix.
11483
11484 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11485
11486 * electric.el (Electric-command-loop): Minor tweak.
11487
11488 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
11489 better with dedicated windows.
11490
11491 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
11492
11493 * Version 23.2 released.
11494
11495 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
11496 Stefan Monnier <monnier@iro.umontreal.ca>
11497
11498 Highlight vendor specific properties.
11499 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
11500 (css-proprietary-property): New face.
11501 (css-font-lock-keywords): Use them.
11502
11503 2010-05-07 Eli Zaretskii <eliz@gnu.org>
11504
11505 * cus-start.el (all): Add native condition for tool-bar-* symbols.
11506
11507 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11508
11509 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
11510 * files.el (auto-mode-alist): Remove redundant entries.
11511
11512 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
11513 * simple.el (auto-save-mode): Move from files.el.
11514 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
11515
11516 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
11517
11518 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
11519
11520 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
11521
11522 * mail/binhex.el (binhex-decode-region-internal)
11523 * mail/uudecode.el (uudecode-decode-region-internal)
11524 * net/dns.el (dns-read-string-name, dns-write, dns-read)
11525 (dns-read-type, dns-query)
11526 * pgg-parse.el (pgg-parse-armor)
11527 * pgg.el (pgg-verify-region)
11528 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
11529 XEmacs.
11530
11531 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
11532
11533 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
11534
11535 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
11536
11537 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
11538 * emulation/cua-base.el (cua-repeat-replace-region):
11539 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11540 (cua-cut-region-to-global-mark):
11541 Remove text properties with `set-text-properties'.
11542
11543 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
11544
11545 * net/tramp.el (top, with-progress-reporter):
11546 Use `symbol-function' inside `funcall'.
11547
11548 * net/tramp-compat.el (tramp-compat-file-attributes)
11549 (tramp-compat-delete-file, tramp-compat-delete-directory):
11550 Handle only `wrong-number-of-arguments' error.
11551
11552 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
11553 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
11554 inside `funcall'.
11555
11556 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11557
11558 * minibuffer.el (completion--sreverse, completion--common-suffix):
11559 New functions.
11560 (completion-pcm--merge-completions): Extract common suffix when safe.
11561
11562 * emacs-lisp/easy-mmode.el (define-minor-mode):
11563 Make :variable more flexible.
11564 * files.el (auto-save-mode): Use it to define using define-minor-mode.
11565
11566 2010-05-05 Juri Linkov <juri@jurta.org>
11567
11568 Add `slow' and `history' tags to the desktop data.
11569
11570 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
11571 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
11572 (Info-finder-find-node): Require `finder.el' to be able
11573 to restore node from the desktop.
11574 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
11575 data `Info-history' and `slow' tag in the assoc list.
11576 (Info-restore-desktop-buffer): Don't restore nodes with the
11577 `slow' tag. Restore `Info-history'.
11578
11579 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
11580
11581 Add FORCE argument to `delete-file'.
11582
11583 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
11584 forcing to delete the temporary file.
11585 (ange-ftp-delete-file): Add FORCE arg.
11586 (ange-ftp-rename-remote-to-remote)
11587 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
11588 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
11589 Force file deletion.
11590
11591 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
11592
11593 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
11594 (tramp-handle-make-symbolic-link, tramp-handle-load)
11595 (tramp-do-copy-or-rename-file-via-buffer)
11596 (tramp-do-copy-or-rename-file-directly)
11597 (tramp-do-copy-or-rename-file-out-of-band)
11598 (tramp-handle-process-file, tramp-handle-call-process-region)
11599 (tramp-handle-shell-command, tramp-handle-file-local-copy)
11600 (tramp-handle-insert-file-contents, tramp-handle-write-region)
11601 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
11602
11603 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
11604 (tramp-fish-handle-make-symbolic-link)
11605 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
11606
11607 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
11608 Use `tramp-compat-delete-file'.
11609
11610 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
11611 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
11612
11613 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
11614 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
11615
11616 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
11617 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
11618 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
11619 Use `tramp-compat-delete-file'.
11620
11621 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11622
11623 Minor cleanups.
11624 * subr.el (add-minor-mode): Use push.
11625 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
11626 * emulation/edt.el (edt-select-mode): Simplify.
11627
11628 Use define-minor-mode in more cases.
11629 * term/tvi970.el (tvi970-set-keypad-mode):
11630 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
11631 (normal-erase-is-backspace-mode):
11632 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
11633 (set-scroll-bar-mode-1): (Re)move to its sole caller.
11634 (get-scroll-bar-mode): New function.
11635 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
11636
11637 Use define-minor-mode for less obvious cases.
11638 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
11639 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
11640 * international/iso-ascii.el (iso-ascii-mode):
11641 * frame.el (auto-raise-mode, auto-lower-mode):
11642 * composite.el (global-auto-composition-mode): Use define-minor-mode.
11643
11644 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
11645
11646 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
11647 in order to see error messages for failed logins.
11648
11649 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
11650
11651 * diff.el (diff-sentinel):
11652
11653 * epg.el (epg--make-temp-file, epg-decrypt-string)
11654 (epg-verify-string, epg-sign-string, epg-encrypt-string):
11655
11656 * jka-compr.el (jka-compr-partial-uncompress)
11657 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
11658
11659 * server.el (server-sentinel): Use delete-file's new FORCE arg
11660 (Bug#6070).
11661
11662 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11663
11664 Use define-minor-mode where applicable.
11665 * view.el (view-mode):
11666 * type-break.el (type-break-query-mode)
11667 (type-break-mode-line-message-mode):
11668 * textmodes/reftex.el (reftex-mode):
11669 * term/vt100.el (vt100-wide-mode):
11670 * tar-mode.el (tar-subfile-mode):
11671 * savehist.el (savehist-mode):
11672 * ibuf-ext.el (ibuffer-auto-mode):
11673 * composite.el (auto-composition-mode):
11674 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
11675 Use define-minor-mode.
11676 (vhdl-mode): Use static mode-line format.
11677 (vhdl-mode-line-update): Delete.
11678 (vhdl-create-mode-menu, vhdl-activate-customizations)
11679 (vhdl-hs-minor-mode): Don't bother calling it.
11680
11681 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11682
11683 * simple.el (with-wrapper-hook): Move.
11684 (buffer-substring-filters): Mark obsolete.
11685 (filter-buffer-substring-functions): New variable.
11686 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
11687
11688 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
11689 Michael Albinus <michael.albinus@gmx.de>
11690
11691 Implement compression for inline methods.
11692
11693 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
11694 (tramp-copy-size-limit): Allow also nil.
11695 (tramp-inline-compress-commands): New defconst.
11696 (tramp-find-inline-compress, tramp-get-inline-compress)
11697 (tramp-get-inline-coding): New defuns.
11698 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
11699 replaced by `tramp-get-inline-coding'.
11700 (tramp-handle-file-local-copy, tramp-handle-write-region)
11701 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
11702
11703 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11704
11705 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
11706 Remove unused functions.
11707
11708 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
11709 Set find-tag-default-function as a variable rather than a property.
11710
11711 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
11712 * progmodes/etags.el (tags-completion-at-point-function):
11713 Remove left over interactive spec. Add autoloading stub.
11714 (complete-tag): Use tags-completion-at-point-function.
11715
11716 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
11717
11718 * minibuffer.el (tags-completion-at-point-function): Fix return value.
11719
11720 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
11721
11722 * ido.el (ido-init-completion-maps): Remove C-v binding.
11723 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
11724
11725 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
11726
11727 * minibuffer.el (tags-completion-at-point-function): New function.
11728 (completion-at-point-functions): Use it.
11729
11730 * progmodes/etags.el (complete-tag): Revert last change.
11731
11732 2010-04-29 Alan Mackenzie <acm@muc.de>
11733
11734 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
11735 off-by-one error (in end of macro position).
11736
11737 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11738
11739 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
11740 firefox is absent. Don't autoload.
11741 (browse-url-galeon-program): Don't autoload.
11742
11743 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
11744
11745 * bindings.el (complete-symbol): Move into minibuffer.el.
11746
11747 * minibuffer.el (complete-tag): Move from etags.el. If tags
11748 completion cannot be performed, return nil instead of signalling
11749 an error.
11750 (completion-at-point): Make it an alias for complete-symbol.
11751 (complete-symbol): Move from bindings.el, and replace with the
11752 body of completion-at-point.
11753
11754 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
11755
11756 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
11757
11758 * net/tramp.el (tramp-remote-selinux-p): New defun.
11759 (tramp-handle-file-selinux-context)
11760 (tramp-handle-set-file-selinux-context): Use it.
11761
11762 2010-04-28 Sam Steingold <sds@gnu.org>
11763
11764 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
11765 `safe-local-variable' if the value is a string or a symbol with
11766 the property `bug-reference-url-format'.
11767
11768 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
11769
11770 * progmodes/bug-reference.el (bug-reference-url-format):
11771 Revert 2010-04-27 change due to security risk.
11772
11773 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11774
11775 Make it possible to locally disable a globally enabled mode.
11776 * simple.el (fundamental-mode): Run fundamental-mode-hook.
11777 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
11778 rather than kill-all-local-variables so it runs fundamental-mode-hook.
11779 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
11780 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
11781 that subsequent hooks get a chance to disable it.
11782
11783 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11784
11785 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
11786 Avoid re-enabling a minor mode after the user turned the minor mode
11787 off if MODE-enable-in-buffers is run twice (typically once from
11788 fundamental-mode's after-change-major-mode-hook and a second time from
11789 run-mode-hook's own after-change-major-mode-hook).
11790
11791 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
11792
11793 2010-04-27 Sam Steingold <sds@gnu.org>
11794
11795 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
11796 `safe-local-variable' if the value is a string or a function, as
11797 documented and implemented on 2010-04-02.
11798
11799 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
11800
11801 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
11802 when method is 'kill.
11803
11804 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
11805
11806 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
11807 condition in default directory check.
11808 (ispell-init-process, ispell-kill-ispell, kill-buffer-hook):
11809 Kill ispell process when killing its associated buffer.
11810
11811 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
11812
11813 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
11814 but we aren't using it.
11815
11816 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
11817
11818 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
11819 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
11820
11821 2010-04-24 Glenn Morris <rgm@gnu.org>
11822
11823 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
11824 Ignore VCS-ignore files, and deleted nextstep preferences files.
11825 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
11826 (authors-ambiguous-files): New list.
11827 (authors-valid-file-names): Add some deleted files.
11828 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
11829 (authors-disambiguate-file-name): New function. (Bug#5501)
11830 (authors-canonical-file-name): Doc fix.
11831 Don't warn about obsolete files.
11832 (authors-canonical-file-name, authors-scan-el):
11833 Use authors-disambiguate-file-name.
11834
11835 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
11836 Add autoload cookies.
11837 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
11838 (generated-autoload-file): Set file-local value to "htmlfontify.el".
11839 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
11840 They have definitions / compiler macros in cl.el.
11841 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
11842 Replace manual autoloads with generated ones.
11843 (htmlfontify-unload-rgb-file): Remove autoload.
11844 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
11845
11846 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
11847
11848 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
11849 (byte-compile-setq-default): Optimize for the
11850 single-var case and don't call byte-compile-form in this case to avoid
11851 inf-loop with byte-compile-set-default.
11852
11853 * progmodes/compile.el (compilation-start): Abbreviate default directory.
11854
11855 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
11856
11857 Implement SELINUX backends.
11858
11859 * net/tramp.el (tramp-file-name-handler-alist):
11860 Add `file-selinux-context' and `set-file-selinux-context'.
11861 (tramp-handle-file-selinux-context)
11862 (tramp-handle-set-file-selinux-context): New defuns.
11863 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
11864 Handle PRESERVE-SELINUX-CONTEXT.
11865
11866 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11867 Add `file-selinux-context' and `set-file-selinux-context'.
11868 (tramp-gvfs-handle-file-selinux-context)
11869 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
11870 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
11871
11872 * net/ange-ftp.el (ange-ftp-copy-file):
11873 * net/tramp-fish.el (tramp-fish-handle-copy-file):
11874 * net/tramp-imap.el (tramp-imap-handle-copy-file):
11875 * net/tramp-smb.el (tramp-smb-handle-copy-file):
11876 Add PRESERVE-SELINUX-CONTEXT.
11877
11878 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
11879
11880 Synchronize with Tramp repository.
11881
11882 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
11883 (tramp-action-process-alive, tramp-action-out-of-band)
11884 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
11885 (tramp-exists-file-name-handler): Fix docstring.
11886 (with-progress-reporter): New defmacro.
11887 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
11888 (tramp-maybe-open-connection): Use it.
11889
11890 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
11891
11892 Detect ssh 'ControlMaster' argument automatically in some cases.
11893
11894 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
11895 (tramp-default-method): Use it.
11896
11897 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
11898
11899 * net/tramp.el (tramp-handle-copy-file): Add new optional
11900 parameter `preserve-selinux-context'.
11901 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
11902
11903 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
11904
11905 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
11906 Ensure, that non remote files are still checked. Oops.
11907
11908 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
11909
11910 Fix Bug#5840.
11911
11912 * icomplete.el (icomplete-completions): Use `non-essential'.
11913
11914 * net/tramp.el (tramp-connectable-p): New defun.
11915 (tramp-handle-expand-file-name)
11916 (tramp-completion-handle-file-name-all-completions)
11917 (tramp-completion-handle-file-name-completion): Use it.
11918
11919 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
11920
11921 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
11922
11923 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
11924
11925 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
11926
11927 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
11928
11929 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
11930 is present.
11931
11932 * info.el (info-tool-bar-map): Add labels.
11933
11934 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
11935
11936 * cus-edit.el (custom-commands): Add labels for tool bar.
11937 (custom-buffer-create-internal, Custom-mode): Adjust for
11938 labels in custom-commands.
11939
11940 * dynamic-setting.el: Renamed from font-setting.el.
11941
11942 2010-04-21 John Wiegley <jwiegley@gmail.com>
11943
11944 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
11945 toggles the use of virtual buffers.
11946 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
11947 (ido-toggle-virtual-buffers): New function.
11948
11949 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
11950
11951 Use `define-derived-mode'; fix window selection; doc fixes.
11952 * play/tetris.el (tetris, tetris-update-speed-function)
11953 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
11954 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
11955 (tetris-rotate-next, tetris-end-game, tetris-start-game)
11956 (tetris-pause-game): Fix typos in docstrings.
11957 (tetris-mode-map, tetris-null-map):
11958 Move initialization into declaration.
11959 (tetris-mode): Define with `define-derived-mode';
11960 set show-trailing-whitespace to nil.
11961 (tetris): Prefer window already displaying the "*Tetris*" buffer.
11962
11963 2010-04-21 Karel Klíč <kklic@redhat.com>
11964
11965 * files.el (backup-buffer): Handle SELinux context, and return it
11966 if a backup was made by renaming.
11967 (backup-buffer-copy): Set SELinux context to the target file.
11968 (basic-save-buffer): Set SELinux context of the newly written file.
11969 (basic-save-buffer-1): Now it also returns any SELinux context.
11970 (basic-save-buffer-2): Set SELinux context of the newly created file,
11971 and return it.
11972 * net/tramp.el (tramp-file-name-for-operation):
11973 Add file-selinux-context.
11974
11975 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
11976
11977 Make the log-edit comments use RFC822 format throughout.
11978
11979 * vc.el (vc-checkin, vc-modify-change-comment):
11980 Adjust to new vc-start/finish-logentry.
11981 (vc-find-conflicted-file): New command.
11982 (vc-transfer-file): Adjust to new vc-checkin.
11983 (vc-next-action): Improve scoping.
11984
11985 * vc-hg.el (vc-hg-log-edit-mode): Remove.
11986 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
11987
11988 * vc-git.el (vc-git-log-edit-mode): Remove.
11989 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
11990 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
11991
11992 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
11993 (vc-start-logentry): Remove argument `extra'.
11994 (vc-finish-logentry): Remove extra args.
11995
11996 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
11997 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
11998 (vc-bzr-conflicted-files): New function.
11999
12000 * log-edit.el (log-edit-extra-flags)
12001 (log-edit-before-checkin-process): Remove.
12002 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
12003 (log-edit-headers-alist): New var.
12004 (log-edit-header-contents-regexp): New const.
12005 (log-edit-match-to-eoh): New function.
12006 (log-edit-font-lock-keywords): Use them.
12007 (log-edit): Insert a "Summary:" header as default.
12008 (log-edit-mode): Mark font-lock rules as case-insensitive.
12009 (log-edit-done): Cleanup headers.
12010 (log-view-process-buffer): Remove.
12011 (log-edit-extract-headers): New function to replace it.
12012
12013 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
12014
12015 * subr.el (default-direction-reversed): Remove obsolescence info.
12016
12017 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12018
12019 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
12020 windows/frames.
12021
12022 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
12023 I.e. include text after point in the completion region.
12024 Also, return nil when we're not after/in a symbol.
12025
12026 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
12027 default enable-multibyte-characters.
12028
12029 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12030
12031 * international/mule.el: Help the user choose a valid coding-system.
12032 (read-buffer-file-coding-system): New function.
12033 (set-buffer-file-coding-system): Use it. Prompt the user if the
12034 coding-system cannot encode all the chars.
12035
12036 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
12037 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
12038 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
12039 Don't use *vc-bzr-shelve*.
12040
12041 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
12042
12043 Fix the version number for added files.
12044 * vc-hg.el (vc-hg-working-revision): Check if the file is
12045 registered after hg parent fails (Bug#5961).
12046
12047 2010-04-19 Glenn Morris <rgm@gnu.org>
12048
12049 * htmlfontify.el (htmlfontify-buffer)
12050 (htmlfontify-copy-and-link-dir): Autoload entry points.
12051
12052 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
12053
12054 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
12055 name relative to the project root (Bug#5960).
12056
12057 2010-04-19 Glenn Morris <rgm@gnu.org>
12058
12059 * vc-git.el (vc-git-print-log): Doc fix.
12060
12061 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
12062
12063 * ido.el (ido-file-internal): Fix 2009-12-02 change.
12064
12065 2010-04-19 Christoph Scholtes <cschol2112@googlemail.com>
12066
12067 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
12068 default settings (Bug#5928).
12069
12070 2010-04-19 Glenn Morris <rgm@gnu.org>
12071
12072 * progmodes/fortran.el (fortran-match-and-skip-declaration):
12073 New function.
12074 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
12075
12076 2010-04-19 Kenichi Handa <handa@m17n.org>
12077
12078 * language/indian.el (malayalam-composable-pattern): Fix previous
12079 change (add U+0D4D "SIGN VIRAMA").
12080 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
12081 (tamil-composable-pattern): Fix typo in the regexp.
12082 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
12083 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
12084 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
12085
12086 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
12087
12088 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
12089 paragraph-separate (Bug#5821).
12090
12091 2010-04-19 Juri Linkov <juri@jurta.org>
12092
12093 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
12094
12095 * info.el (Info-find-node-2): Comment out code that skips
12096 breadcrumbs line.
12097 (Info-mouse-follow-link): New command.
12098 (Info-link-keymap): New keymap.
12099 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
12100 Return a string with links instead of inserting breadcrumbs
12101 to the Info buffer.
12102 (Info-fontify-node): Comment out code that inserts breadcrumbs.
12103 Instead of putting the `invisible' text property over the Info
12104 header, make an overlay over the Info header with the `invisible'
12105 property and `after-string' set to the string returned by
12106 `Info-breadcrumbs'.
12107
12108 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
12109
12110 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
12111 Reported by monkey@sandpframing.com.
12112
12113 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12114
12115 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
12116 (tmm-get-keymap): Add key-binding shortcuts now that they're not
12117 available in the "keyseq cache" any more.
12118
12119 * custom.el (defcustom): Add edebug spec.
12120
12121 2010-04-18 Juri Linkov <juri@jurta.org>
12122
12123 Test for special mode-class in view-buffer instead of view-file (bug#5513).
12124
12125 * view.el (view-file, view-buffer): Move test for special mode-class
12126 from view-file to view-buffer.
12127
12128 * tar-mode.el (tar-extract): Turn if's into one cond
12129 like in arc-mode.el.
12130
12131 2010-04-18 Juri Linkov <juri@jurta.org>
12132
12133 Add 7z archive format support (bug#5475).
12134
12135 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
12136 (archive-7z-extract): New defcustom.
12137 (archive-find-type): Add magic string for 7z.
12138 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
12139 If `stderr-file' is non-nil, use `(t stderr-file)' for the
12140 `buffer' arg of `call-process'.
12141 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
12142 call the function `archive-7z-extract' with the variable
12143 `archive-7z-extract' let-bound to `archive-zip-extract'.
12144 (archive-7z-summarize, archive-7z-extract): New functions.
12145
12146 * international/mule.el (auto-coding-alist):
12147 * files.el (auto-mode-alist): Add 7z file extension.
12148
12149 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12150
12151 * loadup.el: Setup hash-cons for pure data.
12152
12153 Fix duplicate entries in cedet's loaddefs.el files.
12154 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
12155 Should make most file-local generated-autoload-file unnecessary.
12156 (print-readably): Silence warnings.
12157 (autoload-find-destination): Take load-name as an arg to make sure
12158 it's the same as the one that will be in the file.
12159 (autoload-generate-file-autoloads): Adjust to above changes.
12160 Try to make the dataflow a bit simpler.
12161
12162 * cvs-status.el (cvs-refontify): Remove unused.
12163
12164 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
12165
12166 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
12167
12168 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
12169 twos-complement mode.
12170
12171 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
12172
12173 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
12174 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
12175 (calc-inverse): Add "Option" to message, as appropriate.
12176 (calc-hyperbolic): Add "Option" to message, as appropriate.
12177 (calc-option, calc-is-option): New functions.
12178
12179 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
12180 (calc-option-prefix-help): New function.
12181
12182 * calc/calc-misc.el (calc-help): Add "Option" entry.
12183
12184 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
12185 (calc-option-flag): New variable.
12186 (calc-do): Set `calc-option-flag to nil.
12187 (calc-set-mode-line): Add "Opt " as appropriate.
12188
12189 2010-04-16 Juri Linkov <juri@jurta.org>
12190
12191 Move scrolling commands from simple.el to window.el
12192 because their primitives are implemented in window.c.
12193
12194 * simple.el (scroll-error-top-bottom)
12195 (scroll-up-command, scroll-down-command, scroll-up-line)
12196 (scroll-down-line, scroll-other-window-down)
12197 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12198 * window.el (scroll-error-top-bottom)
12199 (scroll-up-command, scroll-down-command, scroll-up-line)
12200 (scroll-down-line, scroll-other-window-down)
12201 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12202 Move from simple.el to window.el because their primitives are
12203 implemented in window.c.
12204
12205 2010-04-16 Juri Linkov <juri@jurta.org>
12206
12207 * isearch.el (isearch-lookup-scroll-key): Check both
12208 `isearch-scroll' and `scroll-command' properties.
12209 (scroll-up, scroll-down): Remove `isearch-scroll' property.
12210
12211 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
12212
12213 * simple.el (scroll-up-command, scroll-down-command)
12214 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
12215
12216 2010-04-15 Juri Linkov <juri@jurta.org>
12217
12218 * simple.el (scroll-up-command, scroll-down-command)
12219 (scroll-up-line, scroll-down-line): Put `scroll-command'
12220 property on the these symbols. Remove them from
12221 `scroll-preserve-screen-position-commands'.
12222
12223 * mwheel.el (mwheel-scroll): Put `scroll-command' and
12224 `isearch-scroll' properties on the `mwheel-scroll' symbol.
12225 Remove it from `scroll-preserve-screen-position-commands'.
12226
12227 * isearch.el (isearch-allow-scroll): Doc fix.
12228
12229 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
12230
12231 * net/tramp.el (tramp-error-with-buffer): Don't show the
12232 connection buffer when we are in completion mode.
12233 (tramp-file-name-handler): Catch the error for some operations
12234 when we are in completion mode. This gives the user the chance to
12235 correct the file name in the minibuffer.
12236
12237 2010-04-15 Glenn Morris <rgm@gnu.org>
12238
12239 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
12240
12241 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
12242
12243 Simplify by using `define-derived-mode'.
12244 * info.el (Info-mode):
12245 * calendar/todo-mode.el (todo-mode):
12246 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
12247 (gomoku-mode-map): Move initialization into declaration.
12248
12249 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
12250
12251 Fix Bug#5840.
12252 * ido.el (ido-file-name-all-completions-1):
12253 * minibuffer.el (minibuffer-completion-help):
12254 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
12255
12256 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12257
12258 * simple.el (non-essential): New var.
12259
12260 Add a new field `location' to bookmarks for non-file bookmarks.
12261 * bookmark.el (bookmark-location): Use the new field, if present.
12262 (bookmark-insert-location): Undo last change, not needed any more.
12263 * man.el (Man-bookmark-make-record):
12264 * woman.el (woman-bookmark-make-record): Add `location' field.
12265
12266 2010-04-14 Juri Linkov <juri@jurta.org>
12267
12268 * simple.el (scroll-error-top-bottom): New defcustom.
12269 (scroll-up-command, scroll-down-command): Use it. Doc fix.
12270
12271 * emulation/pc-select.el (pc-select-override-scroll-error):
12272 Obsolete in favor of `scroll-error-top-bottom'.
12273
12274 2010-04-14 Juri Linkov <juri@jurta.org>
12275
12276 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
12277 `scroll-up-command' and `M-v' to `scroll-down-command'.
12278
12279 * emulation/cua-rect.el (cua--init-rectangles):
12280 * forms.el (forms--change-commands):
12281 * image-mode.el (image-mode-map):
12282 Remap scroll-down-command and scroll-up-command
12283 in addition to scroll-down and scroll-up.
12284
12285 2010-04-14 Juri Linkov <juri@jurta.org>
12286
12287 * mwheel.el (scroll-preserve-screen-position-commands):
12288 Add mwheel-scroll to this list of commands.
12289
12290 * simple.el (scroll-preserve-screen-position-commands):
12291 Add scroll-up-command, scroll-down-command, scroll-up-line,
12292 scroll-down-line to this list of commands.
12293
12294 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12295
12296 * obsolete/complete.el: Move from lisp/complete.el.
12297
12298 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
12299
12300 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
12301 to the minor mode function now turns the mode ON unconditionally.
12302
12303 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12304
12305 * vc-dir.el (vc-dir-kill-line): New command.
12306 (vc-dir-mode-map): Bind it to C-k.
12307
12308 * bookmark.el (bookmark-insert-location): Handle a nil filename.
12309
12310 * woman.el: Add bookmark declarations to silence the compiler.
12311 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
12312 step to compatibility between man and woman bookmarks.
12313 Adjust for Man-default-bookmark-title renaming.
12314 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
12315
12316 * man.el: Add bookmark declarations to silence the compiler.
12317 (Man-name-local-regexp): Make it match NAME as well.
12318 (Man-getpage-in-background): Return the buffer.
12319 (Man-notify-when-ready): Use `case'.
12320 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
12321 Don't hardcode "NAME". Simplify.
12322 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
12323 Rename from Man-bookmark-make-record.
12324 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
12325 we have the actual man-args. Use Man-getpage-in-background rather
12326 than `man' since the arg is already processed. Let bookmark.el do the
12327 window handling. Only wait for the relevant process.
12328 Don't forget to autoload.
12329
12330 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
12331
12332 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12333
12334 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
12335 New functions.
12336 (woman-mode): Setup bookmark support.
12337
12338 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
12339 (man-bookmark-jump): New functions.
12340 (Man-mode): Setup bookmark support.
12341
12342 2010-04-10 Jari Aalto <jari.aalto@cante.net>
12343
12344 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
12345 recognize ssh-keygen prompt (Bug#2817).
12346
12347 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
12348
12349 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
12350
12351 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
12352
12353 Synchronize with Tramp repository.
12354
12355 * net/tramp.el (tramp-completion-function-alist)
12356 (tramp-file-name-regexp, tramp-chunksize)
12357 (tramp-local-coding-commands, tramp-remote-coding-commands):
12358 Fix docstring.
12359 (tramp-remote-process-environment): Use `format' instead of `concat'.
12360 (tramp-handle-directory-files-and-attributes)
12361 (tramp-get-remote-path): Use `copy-tree'.
12362 (tramp-handle-file-name-all-completions): Backward/ XEmacs
12363 compatibility: Use `completion-ignore-case' if
12364 `read-file-name-completion-ignore-case' does not exist.
12365 (tramp-do-copy-or-rename-file-directly): Do not use
12366 `tramp-handle-file-remote-p'.
12367 (tramp-do-copy-or-rename-file-out-of-band):
12368 Use `tramp-compat-delete-directory'.
12369 (tramp-do-copy-or-rename-file-out-of-band)
12370 (tramp-compute-multi-hops, tramp-maybe-open-connection):
12371 Use `format-spec-make'.
12372 (tramp-find-foreign-file-name-handler)
12373 (tramp-advice-make-auto-save-file-name)
12374 (tramp-set-auto-save-file-modes): Remove superfluous check for
12375 `stringp'. This is done inside `tramp-tramp-file-p'.
12376 (tramp-debug-outline-regexp): New defconst.
12377 (tramp-get-debug-buffer): Use it.
12378 (tramp-check-for-regexp): Use (forward-line 1).
12379 (tramp-set-auto-save-file-modes): Adapt version check.
12380
12381 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
12382 Wrap call of `featurep' for 2nd argument.
12383 (tramp-compat-make-temp-file): Simplify fallback implementation.
12384 (tramp-compat-copy-tree): Remove function.
12385 (tramp-compat-delete-directory): Provide implementation for older
12386 Emacsen.
12387
12388 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
12389 Do not use `tramp-fish-handle-file-attributes.
12390
12391 * net/trampver.el: Update release number.
12392
12393 2010-04-10 Glenn Morris <rgm@gnu.org>
12394
12395 * progmodes/compile.el (compilation-save-buffers-predicate):
12396 Add missing :version tag.
12397
12398 2010-04-09 Sam Steingold <sds@gnu.org>
12399
12400 * progmodes/compile.el (compilation-save-buffers-predicate):
12401 Remove the "autoload" cookie.
12402
12403 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
12404 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
12405 and `bug-reference-prog-mode' can be used in hooks directly.
12406
12407 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
12408
12409 Add --author support to git commit.
12410 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
12411 (vc-git-log-edit-mode): New minor mode.
12412 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
12413 New declarations.
12414
12415 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
12416
12417 * vc-hooks.el, vc-git.el: Improve documentation comments.
12418
12419 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12420
12421 Fix some of the problems in defsubst* (bug#5728).
12422 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
12423 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
12424
12425 2010-04-07 Sam Steingold <sds@gnu.org>
12426
12427 * progmodes/compile.el (compilation-save-buffers-predicate):
12428 New custom variable.
12429 (compile, recompile): Pass it to `save-some-buffers'.
12430
12431 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
12432
12433 * wid-edit.el (widget-choose): Move cursor to the second line of
12434 the buffer (Bug#5695).
12435
12436 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12437
12438 Add new VC methods: vc-log-incoming and vc-log-outgoing.
12439 * vc.el (vc-print-log-setup-buttons): New function split out from
12440 vc-print-log-internal.
12441 (vc-log-internal-common): New function, a parametrized version of
12442 vc-print-log-internal.
12443 (vc-print-log-internal): Just call vc-log-internal-common with the
12444 right arguments.
12445 (vc-incoming-outgoing-internal):
12446 (vc-log-incoming, vc-log-outgoing): New functions.
12447 (vc-log-view-type): New permanent local variable.
12448
12449 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
12450
12451 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
12452 of the dynamic bound vc-short-log.
12453 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
12454
12455 * vc-git.el (vc-git-log-outgoing): New function.
12456 (vc-git-log-view-mode): Use vc-log-view-type instead
12457 of the dynamic bound vc-short-log.
12458
12459 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
12460 of the dynamic bound vc-short-log. Highlight the tag.
12461 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
12462 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
12463 (vc-hg-incoming-mode): Remove.
12464 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
12465
12466 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12467
12468 Fix default-directory for vc-root-diff.
12469 * vc.el (vc-root-diff): Bind default-directory to the root
12470 directory for the diff command.
12471
12472 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
12473
12474 * progmodes/verilog-mode.el (verilog-forward-sexp):
12475 (verilog-calc-1): Support "disable fork" and "fork wait" multi
12476 word keywords, suggested by Steve Pearlmutter.
12477 (verilog-pretty-declarations): Support lineup of declarations in
12478 port lists.
12479 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
12480 fix bug for /* / comments.
12481 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
12482 Speed up and simplfy as this is never called with a bound.
12483 (verilog-pretty-declarations): Enhance to line up declarations
12484 inside a parameter list, suggested by Alan Morgan.
12485 (verilog-pretty-expr): Tune assignment regular expression match
12486 string for corner cases; also use markers instead of character
12487 number as indent changes the later.
12488
12489 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
12490
12491 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
12492 as missing keyword.
12493 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
12494 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
12495 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
12496 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
12497 Tennant.
12498 (verilog-keywords):
12499 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
12500 1800-2009 keywords, including "global.".
12501
12502 2010-04-06 John Wiegley <jwiegley@gmail.com>
12503
12504 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
12505 appearing in buffer list (if a live buffer name matched a recentf
12506 file basename). Should use uniquify to offer a real solution.
12507
12508 2010-04-06 John Wiegley <jwiegley@gmail.com>
12509
12510 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
12511 comment to code, and add a :version tag.
12512 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
12513
12514 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
12515
12516 Enable recentf-mode if using virtual buffers.
12517 * ido.el (recentf-list): Declare for byte-compiler.
12518 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
12519 (ido-make-buffer-list): Simplify.
12520 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
12521
12522 2010-04-05 Juri Linkov <juri@jurta.org>
12523
12524 Scrolling commands which scroll a line instead of full screen.
12525 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12526
12527 * simple.el (scroll-up-line, scroll-down-line): New commands.
12528 Put property isearch-scroll=t on them.
12529
12530 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
12531 Remove commands.
12532
12533 2010-04-05 Juri Linkov <juri@jurta.org>
12534
12535 Scrolling commands which do not signal errors at top/bottom.
12536 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12537
12538 * simple.el (scroll-up-command, scroll-down-command): New commands.
12539 Put property isearch-scroll=t on them.
12540
12541 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
12542 `scroll-down-command' and [next] from `scroll-up' to
12543 `scroll-up-command'.
12544
12545 * emulation/cua-base.el: Put property CUA=move on
12546 `scroll-up-command' and `scroll-down-command'.
12547 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
12548 and `scroll-down-command' to `cua-scroll-down'.
12549
12550 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
12551
12552 * help.el (describe-mode): Return nil.
12553
12554 2010-04-04 John Wiegley <jwiegley@gmail.com>
12555
12556 * ido.el (ido-use-virtual-buffers): New variable to indicate
12557 whether "virtual buffer" support is enabled for IDO.
12558 (ido-virtual): Face used to indicate virtual buffers in the list.
12559 (ido-buffer-internal): If a buffer is chosen, and no such buffer
12560 exists, but a virtual buffer of that name does (which would be why
12561 it was in the list), recreate the buffer by reopening the file.
12562 (ido-make-buffer-list): If virtual buffers are being used, call
12563 `ido-add-virtual-buffers-to-list' before the make list hook.
12564 (ido-virtual-buffers): New variable which contains a copy of the
12565 current contents of the `recentf-list', albeit pared down for the
12566 sake of speed, and with proper faces applied.
12567 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
12568 create a list of "virtual buffers" to present to the user in
12569 addition to the currently open set. Note that this logic could
12570 get rather slow if that list is too large. With the default
12571 `recentf-max-saved-items' of 200, there is little speed penalty.
12572
12573 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12574
12575 * font-lock.el: Require CL when compiling.
12576 (font-lock-turn-on-thing-lock): Use `case'.
12577
12578 2010-04-03 Eli Zaretskii <eliz@gnu.org>
12579
12580 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
12581 Zaretskii.
12582
12583 2010-04-02 Juri Linkov <juri@jurta.org>
12584
12585 * ehelp.el (electric-help-orig-major-mode):
12586 New buffer-local variable.
12587 (electric-help-mode): Set it to original major-mode. Doc fix.
12588 (with-electric-help): Use `electric-help-orig-major-mode' instead
12589 of (default-value 'major-mode). Doc fix.
12590 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
12591
12592 2010-04-02 Sam Steingold <sds@gnu.org>
12593
12594 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
12595 `vc-hg-command' with a list of flags.
12596
12597 * progmodes/bug-reference.el (bug-reference-bug-regexp):
12598 Also accept "patch" and "RFE".
12599 (bug-reference-fontify): `bug-reference-url-format' can also be a
12600 function to be able to handle the bug kind.
12601 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
12602
12603 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
12604
12605 * tmm.el (tmm-get-keymap): Check with symbolp before passing
12606 value to fboundp, it may not be a symbol.
12607
12608 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12609
12610 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
12611
12612 2010-03-31 Juri Linkov <juri@jurta.org>
12613
12614 * simple.el (next-line, previous-line): Re-throw a signal
12615 with `signal' instead of using `ding'.
12616 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
12617
12618 2010-03-31 Juri Linkov <juri@jurta.org>
12619
12620 * simple.el (keyboard-escape-quit): Raise deselecting the active
12621 region higher than exiting the minibuffer.
12622 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
12623
12624 2010-03-31 Juri Linkov <juri@jurta.org>
12625
12626 * image.el (image-animated-p): Use `image-metadata' instead of
12627 `image-extension-data'. Get GIF extenstion data from metadata
12628 property `extension-data'.
12629
12630 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12631
12632 * simple.el (append-to-buffer): Simplify.
12633
12634 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
12635
12636 * textmodes/artist.el (artist-mode): Fix typo in docstring.
12637 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
12638
12639 2010-03-31 Kenichi Handa <handa@m17n.org>
12640
12641 * language/sinhala.el (composition-function-table): Fix regexp for
12642 the new Unicode specification.
12643
12644 * language/indian.el (devanagari-composable-pattern)
12645 (tamil-composable-pattern, kannada-composable-pattern)
12646 (malayalam-composable-pattern): Adjust for the new Unicode
12647 specification.
12648 (bengali-composable-pattern, gurmukhi-composable-pattern)
12649 (gujarati-composable-pattern, oriya-composable-pattern)
12650 (telugu-composable-pattern): New variables to cope with the new
12651 Unicode specification. Use them in composition-function-table.
12652
12653 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12654
12655 Make tmm-menubar work for the Buffers menu again (bug#5726).
12656 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
12657 vectors rather than cons cells, as used in menu-bar-update-buffers.
12658
12659 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12660
12661 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
12662 (js-insert-and-indent): Revert 2009-08-15 change, restoring
12663 electric punctuation for "{}();,:" (Bug#5586).
12664
12665 * mail/sendmail.el (mail-default-directory): Doc fix.
12666
12667 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12668
12669 * mail/sendmail.el (mail-default-directory): Doc fix.
12670
12671 2010-03-31 Eli Zaretskii <eliz@gnu.org>
12672
12673 * subr.el (version-regexp-alist, version-to-list)
12674 (version-list-<, version-list-=, version-list-<=)
12675 (version-list-not-zero, version<, version<=, version=): Doc fix.
12676 (Bug#5744).
12677
12678 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
12679
12680 * vc.el (vc-root-diff): Doc fix.
12681
12682 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12683
12684 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
12685
12686 * simple.el (append-to-buffer): Fix last change.
12687
12688 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12689
12690 * simple.el (append-to-buffer): Ensure that point is preserved if
12691 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
12692 (Bug#5749)
12693
12694 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12695
12696 * files.el (auto-mode-case-fold): Change default to t.
12697
12698 2010-03-30 Juri Linkov <juri@jurta.org>
12699
12700 * dired-x.el (dired-omit-mode): Doc fix.
12701
12702 2010-03-30 Juri Linkov <juri@jurta.org>
12703
12704 * replace.el (occur-accumulate-lines): Move occur-engine related
12705 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
12706 to be located after `occur-engine'.
12707
12708 2010-03-30 Juri Linkov <juri@jurta.org>
12709
12710 Make occur handle multi-line matches cleanly with context.
12711 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
12712
12713 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
12714 (occur-engine): Add local variables `ret', `prev-after-lines',
12715 `prev-lines'. Use more arguments for `occur-context-lines'.
12716 Set first elem of its returned list to `data', and the second elem
12717 to `prev-after-lines'. Don't print the separator line.
12718 In the end, print remaining context after-lines.
12719 (occur-context-lines): Add new arguments `begpt', `endpt',
12720 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
12721 after-lines of the previous match with before-lines of the
12722 current match and not overlap them. Return a list with two
12723 values: the output line and the list of context after-lines.
12724
12725 2010-03-30 Juri Linkov <juri@jurta.org>
12726
12727 * replace.el (occur-accumulate-lines): Fix a bug where the first
12728 context line at the beginning of the buffer was missing.
12729
12730 2010-03-30 Eli Zaretskii <eliz@gnu.org>
12731
12732 * files.el: Make bidi-display-reordering safe variable for boolean
12733 values.
12734
12735 2010-03-29 Phil Hagelberg <phil@evri.com>
12736 Chong Yidong <cyd@stupidchicken.com>
12737
12738 * subr.el: Extend progress reporters to perform "spinning".
12739 (progress-reporter-update, progress-reporter-do-update):
12740 Handle non-numeric value arguments.
12741 (progress-reporter--pulse-characters): New var.
12742
12743 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
12744
12745 * progmodes/compile.el (compilation-start): Fix regexp detection
12746 of initial cd command (Bug#5771).
12747
12748 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
12749
12750 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
12751
12752 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
12753
12754 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
12755 * progmodes/gdb-mi.el: Restore.
12756 * progmodes/gdb-ui.el: Remove.
12757 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
12758
12759 2010-03-25 Glenn Morris <rgm@gnu.org>
12760
12761 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
12762 all dired buffers, even tramp ones. (Bug#5755)
12763
12764 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
12765
12766 Add "union tags" in mpc.el.
12767 * mpc.el: Remove backward compatibility code.
12768 (mpc-browser-tags): Change default.
12769 (mpc--find-memoize-union-tags): New var.
12770 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
12771 (mpc-cmd-find): Handle the case where the playlist does not exist.
12772 Handle union-tags.
12773 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
12774 (mpc-cmd-add): Use mpc-cmd-flush.
12775 (mpc-tagbrowser-tag-name): New fun.
12776 (mpc-tagbrowser-buf): Use it.
12777 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
12778
12779 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12780
12781 Misc cleanup.
12782 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
12783 Use replace-regexp-in-string.
12784 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
12785 (makefile-imake-mode-syntax-table): Move init into defvar.
12786 (makefile-mode): Use define-derived-mode.
12787
12788 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
12789 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
12790 not be present any more.
12791
12792 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
12793
12794 * faces.el (set-face-attribute): Fix typo in docstring.
12795 (face-valid-attribute-values): Reflow docstring.
12796
12797 2010-03-24 Glenn Morris <rgm@gnu.org>
12798
12799 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
12800
12801 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
12802
12803 * indent.el (indent-for-tab-command): Doc fix.
12804
12805 2010-03-24 Alan Mackenzie <acm@muc.de>
12806
12807 * progmodes/cc-engine.el (c-remove-stale-state-cache):
12808 Fix off-by-one error. Fixes bug #5747.
12809
12810 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
12811
12812 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
12813 (image-dired-read-comment): Doc fix.
12814
12815 * json.el (json-object-type, json-array-type, json-key-type)
12816 (json-false, json-null, json-read-number):
12817 * minibuffer.el (completion-in-region-functions):
12818 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
12819 (cal-tex-cursor-week):
12820 * emacs-lisp/trace.el (trace-function):
12821 * eshell/em-basic.el (eshell/printnl):
12822 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
12823 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
12824 * obsolete/levents.el (allocate-event, event-key, event-object)
12825 (event-point, event-process, event-timestamp, event-to-character)
12826 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
12827 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
12828 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
12829 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
12830 (reftex-highlight-selection): Fix typos in docstrings.
12831
12832 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
12833
12834 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
12835
12836 2010-03-24 Glenn Morris <rgm@gnu.org>
12837
12838 * mail/rmail.el (rmail-highlight-face): Restore option deleted
12839 2008-02-13 without comment; mark it obsolete.
12840 (rmail-highlight-headers): Use rmail-highlight-face once more.
12841
12842 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
12843
12844 * woman.el (woman2-process-escapes): Only consume the newline if
12845 the filler character is on a line by itself (Bug#5729).
12846
12847 2010-03-24 Kenichi Handa <handa@m17n.org>
12848
12849 * language/indian.el (devanagari-composable-pattern): Add more
12850 consonants.
12851
12852 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
12853
12854 * net/trampver.el: Update release number.
12855
12856 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
12857
12858 * net/tramp.el (tramp-find-executable):
12859 Use `tramp-get-connection-buffer'. Make the regexp for checking
12860 output of "wc -l" more robust.
12861 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
12862 (tramp-open-connection-setup-interactive-shell): Remove workaround
12863 for OpenSolaris bug, it is not needed anymore.
12864
12865 2010-03-24 Glenn Morris <rgm@gnu.org>
12866
12867 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
12868
12869 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
12870
12871 * files.el (auto-mode-alist): Accept more verilog file patterns.
12872
12873 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12874
12875 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
12876
12877 2010-03-24 Glenn Morris <rgm@gnu.org>
12878
12879 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
12880 log-edit-before-checkin-process.
12881
12882 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
12883
12884 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
12885
12886 * vc-dispatcher.el (vc-start-logentry): Doc fix.
12887 (log-view-process-buffer, log-edit-extra-flags): Declare.
12888
12889 * log-edit.el (log-edit-before-checkin-process): Doc fix.
12890
12891 2010-03-23 Sam Steingold <sds@gnu.org>
12892
12893 Fix bug#5620: recalculate all markers on compilation buffer
12894 modifications, not on file modifications.
12895 * progmodes/compile.el (compilation-buffer-modtime): New buffer-local
12896 variable: the buffer modification time, for buffers not associated with
12897 files.
12898 (compilation-mode): Create it.
12899 (compilation-filter): Update it.
12900 (compilation-next-error-function): Use it instead of
12901 `visited-file-modtime' for timestamp.
12902
12903 2010-03-23 Juri Linkov <juri@jurta.org>
12904
12905 Implement Occur multi-line matches.
12906 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
12907
12908 * replace.el (occur): Doc fix.
12909 (occur-engine): Set `begpt' to the beginning of the first line.
12910 Set `endpt' to the end of the last match line. At first, count
12911 line numbers between `origpt' and `begpt'. Split out code from
12912 `out-line' variable to new let-bindings `match-prefix' and
12913 `match-str'. In `out-line' add non-numeric prefix to all
12914 non-first lines of multi-line matches. Finally, count lines
12915 between `begpt' and `endpt' and add to `lines'.
12916
12917 2010-03-23 Juri Linkov <juri@jurta.org>
12918
12919 * replace.el (occur-accumulate-lines, occur-engine):
12920 Use `occur-engine-line' instead of duplicate code.
12921 (occur-engine-line): New function created from duplicate code
12922 in `occur-accumulate-lines' and `occur-engine'.
12923
12924 * replace.el (occur-engine-line): Add optional arg `keep-props'.
12925 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
12926
12927 2010-03-23 Juri Linkov <juri@jurta.org>
12928
12929 * finder.el: Remove TODO tasks.
12930
12931 * info.el (Info-finder-find-node): Add node "all"
12932 with all package info. Handle a list of multiple keywords
12933 separated by comma.
12934 (info-finder): In interactive use with a prefix argument,
12935 use `completing-read-multiple' to read a list of keywords
12936 separated by comma.
12937
12938 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
12939
12940 Add a new completion style `substring'.
12941 * minibuffer.el (completion-basic--pattern): New function.
12942 (completion-basic-try-completion, completion-basic-all-completions):
12943 Use it.
12944 (completion-substring--all-completions)
12945 (completion-substring-try-completion)
12946 (completion-substring-all-completions): New functions.
12947 (completion-styles-alist): New style `substring'.
12948
12949 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
12950
12951 Get rid of .elc files after removal of the corresponding .el.
12952 * Makefile.in (compile-clean): New target.
12953 (compile-main): Use it.
12954
12955 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
12956
12957 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
12958 don't do make there. When compiling with separate object dir, there
12959 is no Makefile there.
12960
12961 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
12962
12963 Get rid of the ELCFILES abomination, again.
12964 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
12965 (all, compile): Don't call compile-last.
12966 (compile-main): Build the "elcfiles" list dynamically.
12967 (compile-targets): New (internal) target.
12968
12969 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
12970
12971 * Makefile.in (top_srcdir): Define.
12972 (abs_top_builddir): Define.
12973 (srcdir): Don't append `/..'.
12974 (EMACS): Use ${abs_top_builddir}.
12975 (all, compile, compile-always, compile-last): Don't set emacswd.
12976 (update-subdirs, update-authors): Use $(top_srcdir) instead of
12977 $(srcdir).
12978 (lisp): Use $(srcdir) instead of @srcdir@.
12979
12980 2010-03-21 Juri Linkov <juri@jurta.org>
12981
12982 Fix message of multi-line occur regexps and multi-buffer header lines.
12983 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
12984
12985 * replace.el (occur-1): Don't display regexp if it is longer
12986 than window-width. Use `query-replace-descr' to display regexp.
12987 (occur-engine): Don't display regexp in the buffer header for
12988 multi-buffer occur. Display a separate header line with total
12989 match count and regexp for multi-buffer occur.
12990 Use `query-replace-descr' to display regexp.
12991
12992 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
12993
12994 * net/secrets.el: Fix parenthesis.
12995 (secrets-enabled): Fix parenthesis.
12996
12997 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12998
12999 Use more relative file and directory names.
13000 * Makefile.in (EMACS): Arrange for it to work when we chdir.
13001 (setwins, setwins_almost, setwins_for_subdirs):
13002 Don't `cd'; output relative names.
13003 (all, compile, compile-always, compile-last): Set emacswd.
13004 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
13005 Just cd to the lisp source dir so we can use relative file names.
13006
13007 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
13008
13009 2010-03-20 Glenn Morris <rgm@gnu.org>
13010
13011 * textmodes/rst.el: Use faces for font-lock customization, and make the
13012 old -face variables obsolete.
13013 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
13014 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
13015 (rst-block-face, rst-external-face, rst-definition-face)
13016 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
13017 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
13018 Make obsolete.
13019 (rst-font-lock-keywords-function): Update for above changes.
13020
13021 2010-03-20 Juri Linkov <juri@jurta.org>
13022
13023 * s-region.el:
13024 * obsolete/s-region.el: Move to obsolete.
13025
13026 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
13027
13028 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
13029
13030 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13031
13032 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
13033
13034 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13035
13036 Add special markup processing for commit logs.
13037 * log-edit.el (log-edit-extra-flags): New variable.
13038 (log-edit): Add new argument MODE. Use that mode when non-nil
13039 instead of the log-view-mode.
13040 (log-view-process-buffer): New function.
13041
13042 * vc.el: Document that the checkin method takes optional
13043 arguments. Document new backend specific method: log-view-mode.
13044 (vc-default-log-edit-mode): New function.
13045 (vc-checkin): Use a backend specific log-view-mode.
13046 Pass extra arguments to the checkin method.
13047 (vc-modify-change-comment): Pass a dummy extra argument.
13048
13049 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
13050 log-edit.
13051 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
13052 (vc-finish-logentry): Process the log buffer before passing it
13053 down. Pass log-edit-extra-flags.
13054
13055 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
13056 command.
13057 (log-edit-extra-flags, log-edit-before-checkin-process):
13058 New declarations.
13059
13060 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
13061 command.
13062 (log-edit-extra-flags, log-edit-before-checkin-process):
13063 New declarations.
13064 (vc-hg-log-edit-mode): New derived mode.
13065
13066 * vc-arch.el (vc-arch-checkin):
13067 * vc-cvs.el (vc-cvs-checkin):
13068 * vc-git.el (vc-git-checkin):
13069 * vc-mtn.el (vc-mtn-checkin):
13070 * vc-rcs.el (vc-rcs-checkin):
13071 * vc-sccs.el (vc-sccs-checkin):
13072 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
13073
13074 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13075
13076 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
13077 parent typo).
13078
13079 2010-03-19 Glenn Morris <rgm@gnu.org>
13080
13081 * password-cache.el (password-cache, password-cache-expiry): Autoload.
13082
13083 2010-03-18 Glenn Morris <rgm@gnu.org>
13084
13085 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
13086
13087 * replace.el (query-replace-history): Give it a doc string.
13088 (map-query-replace-regexp): Use query-replace-from-history-variable
13089 and query-replace-to-history-variable.
13090
13091 * mail/hashcash.el (declare-function): Remove duplicate definition.
13092
13093 * mail/emacsbug.el (report-emacs-bug-pretest-address):
13094 Make it an obsolete alias for report-emacs-bug-address.
13095 (message-strip-special-text-properties): Declare.
13096 (report-emacs-bug): Remove test for a pretest bug address.
13097 Combine message-mode-specific code.
13098
13099 * mail/supercite.el: Don't require sendmail.
13100 (mh-in-header-p): Declare rather than using with-no-warnings.
13101 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
13102 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
13103
13104 * calendar/cal-french.el: Convert to utf-8.
13105
13106 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
13107 Emacs scripts.
13108
13109 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
13110
13111 * net/secrets.el (secrets-enabled): New variable. Use it instead
13112 of a subfeature.
13113
13114 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
13115
13116 * net/secrets.el (top): Register the D-Bus signals only when the
13117 service "org.freedesktop.secrets" can be pinged.
13118 Provide subfeature `enabled'.
13119
13120 2010-03-14 Juri Linkov <juri@jurta.org>
13121
13122 Add finder unknown keywords.
13123
13124 * finder.el (finder-unknown-keywords): New function.
13125
13126 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
13127 to create a Finder node with unknown keywords.
13128
13129 2010-03-14 Juri Linkov <juri@jurta.org>
13130
13131 * finder.el (finder-compile-keywords): Replace `princ' with
13132 `prin1' on a list of symbols interned from keyword strings.
13133
13134 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
13135 a comma, then split keywords using a comma and optional whitespace.
13136 Otherwise, split by whitespace.
13137
13138 * complete.el:
13139 * face-remap.el:
13140 * log-view.el:
13141 * net/hmac-def.el:
13142 * net/hmac-md5.el:
13143 * net/netrc.el:
13144 * progmodes/mixal-mode.el: Fix keywords.
13145
13146 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
13147
13148 * Makefile.in (ELCFILES): Add net/secrets.elc.
13149
13150 * net/secrets.el: New file.
13151
13152 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13153
13154 * facemenu.el (list-colors-display, list-colors-print): New arg
13155 callback. Use it to allow selecting colors.
13156
13157 * wid-edit.el (widget-image-insert): Insert image prop even if the
13158 current display is non-graphic.
13159 (widget-field-value-set): New fun.
13160 (editable-field): Use it.
13161 (widget-field-value-get): Clean up unused var.
13162 (widget-color-value-create, widget-color--choose-action):
13163 New funs. Allow using list-colors-display to choose color.
13164
13165 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13166
13167 * cus-edit.el: Resort topmost custom groups.
13168 (custom-buffer-sort-alphabetically): Default to t.
13169 (customize-apropos): Use apropos-parse-pattern.
13170 (custom-search-field): New var.
13171 (custom-buffer-create-internal): Add custom-apropos search field.
13172 (custom-add-parent-links): Don't display parent doc.
13173 (custom-group-value-create): Don't sort top-level custom group.
13174 (custom-magic-value-create): Show visibility button before option name.
13175
13176 (custom-variable-state): New fun, from custom-variable-state-set.
13177 (custom-variable-state-set): Use it.
13178 (custom-group-value-create): Hide options with standard values
13179 using the :hidden-states property. Use progress reporter.
13180
13181 (custom-show): Simplify.
13182 (custom-visibility): Disable images by default.
13183 (custom-variable): New property :hidden-states.
13184 (custom-variable-value-create): Enable images for
13185 custom-visibility widgets. Use :hidden-states property to
13186 determine initial visibility.
13187
13188 * wid-edit.el (widget-image-find): Give images center ascent.
13189 (visibility): Add :on-image and :off-image properties.
13190 (widget-visibility-value-create): Use them.
13191
13192 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13193
13194 * cus-edit.el (processes): Remove from development group.
13195 (oop, hypermedia): Delete group.
13196 (comm): Promote to top-level group.
13197
13198 * net/browse-url.el (browse-url):
13199 * net/xesam.el (xesam):
13200 * net/tramp.el (tramp):
13201 * net/goto-addr.el (goto-address):
13202 * net/ange-ftp.el (ange-ftp): Put in comm group.
13203
13204 * view.el (view): Remove from editing group.
13205
13206 * uniquify.el (uniquify): Put in files group.
13207
13208 * net/browse-url.el (browse-url):
13209 * ps-print.el (postscript): Put in external group.
13210
13211 * cus-edit.el (outlines):
13212 * textmodes/text-mode.el (text-mode-hook):
13213 * textmodes/table.el (table):
13214 * textmodes/picture.el (picture):
13215 * outline.el (outlines): Put in wp group.
13216
13217 * nxml/nxml-mode.el (nxml): Remove from wp group.
13218
13219 * net/tramp-imap.el (tramp-imap): Put in tramp group.
13220
13221 * mail/metamail.el (metamail): Remove from hypermedia group.
13222
13223 * cus-edit.el (abbrev):
13224 * whitespace.el (whitespace):
13225 * vcursor.el (vcursor):
13226 * reveal.el (reveal):
13227 * hl-line.el (hl-line): Put in convenience group.
13228
13229 * epg-config.el (epg): Put in data group.
13230
13231 * emulation/pc-select.el (pc-select): Put in emulations group.
13232
13233 * calculator.el (calculator): Put in applications group.
13234
13235 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13236
13237 Add .dir-locals.el support for file-less buffers.
13238 * files.el (hack-local-variables): Split out code to apply local
13239 variable settings ...
13240 (hack-local-variables-apply): ... here. New function.
13241 (hack-dir-local-variables): Use the default directory for when the
13242 buffer does not have an associated file.
13243 (hack-dir-local-variables-non-file-buffer): New function.
13244 * diff-mode.el (diff-mode):
13245 * vc-annotate.el (vc-annotate-mode):
13246 * vc-dir.el (vc-dir-mode):
13247 * log-edit.el (log-edit-mode):
13248 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
13249
13250 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13251
13252 Add support for shelving snapshots and for showing shelves.
13253 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
13254 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
13255 New functions.
13256 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
13257 (vc-bzr-extra-menu-map): Map them.
13258
13259 2010-03-11 Glenn Morris <rgm@gnu.org>
13260
13261 * cus-edit.el (customize-changed-options-previous-release):
13262 Bump to 23.1.
13263
13264 * image.el (image-animate-max-time): Fix :version tag.
13265
13266 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
13267
13268 * Branch for 23.2.
13269
13270 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
13271
13272 * vc-git.el (vc-git-revision-table): Include remote branches.
13273
13274 2010-03-10 Kim F. Storm <storm@cua.dk>
13275
13276 Animated image API.
13277 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
13278
13279 * image.el (image-animate-max-time): New defcustom.
13280 (image-animated-types): New defconst.
13281 (create-animated-image, image-animate-timer)
13282 (image-animate-start, image-animate-stop, image-animate-timeout)
13283 (image-animated-p): New functions.
13284
13285 * image-mode.el (image-toggle-display-image):
13286 Replace `create-image' with `create-animated-image'.
13287
13288 2010-03-09 Miles Bader <miles@gnu.org>
13289
13290 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
13291 instead of "format:"; this ensures that the output is
13292 newline-terminated.
13293
13294 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
13295
13296 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
13297 that all errors are caught, and that the return value is always a
13298 list (Bug#5692).
13299
13300 2010-03-08 Kenichi Handa <handa@m17n.org>
13301
13302 * language/misc-lang.el (windows-1256): New coding system.
13303 (cp1256): New alias of windows-1256 (bug#5690).
13304
13305 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
13306
13307 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
13308 call to rfc822-bad-address. (Bug#5692)
13309
13310 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
13311
13312 * vc-git.el (vc-git-annotate-extract-revision-at-line):
13313 Use vc-git-root as default directory for revision path (Bug#5657).
13314
13315 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
13316
13317 * calculator.el (calculator): Don't bind split-window-keep-point
13318 (Bug#5674).
13319
13320 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
13321
13322 * vc-git.el: Re-flow to fit into 80 columns.
13323 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
13324 Remove spurious `quote' element in each case alternative.
13325 (vc-git-show-log-entry): Use prog1.
13326 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
13327
13328 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
13329
13330 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
13331
13332 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
13333
13334 * macros.el (insert-kbd-macro): Look up keyboard macro using the
13335 definition, not the name (Bug#5481).
13336
13337 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
13338
13339 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
13340 argument with a local variable. (Bug#5670)
13341
13342 2010-03-02 Juri Linkov <juri@jurta.org>
13343
13344 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
13345
13346 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
13347
13348 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
13349 error when FILENAME and NEWNAME are existing remote directories.
13350
13351 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
13352 parameter DIR-FLAG.
13353
13354 2010-03-02 Glenn Morris <rgm@gnu.org>
13355
13356 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
13357 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
13358
13359 2010-03-01 Kenichi Handa <handa@m17n.org>
13360
13361 * language/burmese.el (burmese-composable-pattern): Rename from
13362 myanmar-composable-pattern.
13363
13364 * international/characters.el (script-list):
13365 * international/fontset.el (script-representative-chars):
13366 Change myanmar to burmese.
13367 (otf-script-alist): Likewise.
13368 (setup-default-fontset): Likewise. Re-fix :otf spec.
13369
13370 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
13371
13372 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
13373
13374 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
13375
13376 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
13377
13378 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
13379
13380 * net/tramp.el (tramp-handle-write-region): START can be a string.
13381 Take care in the checks. Reported by Dan Davison
13382 <davison@stats.ox.ac.uk>.
13383
13384 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
13385
13386 * net/dbus.el (dbus-introspect, dbus-get-property)
13387 (dbus-set-property, dbus-get-all-properties):
13388 Use `dbus-call-method' when noninteractive. (Bug#5645)
13389
13390 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
13391
13392 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
13393 * emacs-lisp/elint.el (elint-add-required-env):
13394 * calendar/icalendar.el (icalendar--add-diary-entry):
13395 * calc/calcalg2.el (math-tracing-integral):
13396 * files.el (recover-session-finish): Use with-current-buffer
13397 instead of save-excursion.
13398
13399 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
13400
13401 Fix in-buffer completion when after-change-functions modify the buffer.
13402 * minibuffer.el (completion--replace): New function.
13403 (completion--do-completion): Use it and use relative movement.
13404
13405 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
13406
13407 * international/fontset.el (setup-default-fontset): Fix :otf spec.
13408
13409 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
13410
13411 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
13412 Allow the characters _<> in the stack entry (Bug#5653).
13413
13414 2010-02-26 Kenichi Handa <handa@m17n.org>
13415
13416 * language/burmese.el: Fix entries in composition-function-table.
13417 (myanmar-composable-pattern): New variable.
13418
13419 * international/fontset.el (setup-default-fontset): Add an entry
13420 for myanmar.
13421
13422 * international/characters.el (script-list): Add Myanmar
13423 Extended-A.
13424
13425 2010-02-26 Glenn Morris <rgm@gnu.org>
13426
13427 * custom.el (custom-initialize-delay): Doc fix.
13428
13429 * mail/sendmail.el (send-mail-function): Autoload the call
13430 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
13431
13432 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
13433
13434 * files.el (hack-local-variables-filter): For eval forms, also
13435 check safe-local-variable-p (Bug#5636).
13436
13437 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
13438
13439 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
13440 setting the modes by `ignore-errors'. It might fail, for example
13441 if the file is not owned by the user but the group.
13442 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
13443
13444 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
13445
13446 * files.el (directory-listing-before-filename-regexp):
13447 Use stricter matching for iso-style dates, to avoid false matches with
13448 date-like filenames (Bug#5597).
13449
13450 * htmlfontify.el (htmlfontify): Doc fix.
13451
13452 * eshell/eshell.el (eshell): Doc fix.
13453
13454 * startup.el (fancy-about-screen): In mode-line, apply
13455 mode-line-buffer-id face only to the buffer name (Bug#5613).
13456
13457 2010-02-20 Kevin Ryde <user42@zip.com.au>
13458
13459 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13460 In `watcom' anchor regexp to start of line, to avoid slowness
13461 (Bug#5599).
13462
13463 2010-02-20 Eli Zaretskii <eliz@gnu.org>
13464
13465 * subr.el (remove-yank-excluded-properties): Explain in a comment
13466 why `category' property is removed.
13467
13468 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
13469
13470 * isearch.el (isearch-update-post-hook, isearch-update):
13471 Revert 2010-02-17 change.
13472
13473 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
13474
13475 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
13476 (icalendar--convert-weekly-to-ical)
13477 (icalendar--convert-yearly-to-ical)
13478 (icalendar--convert-block-to-ical)
13479 (icalendar--convert-cyclic-to-ical)
13480 (icalendar--convert-anniversary-to-ical): Take care of time
13481 specifications where hour has 1-digit only (Bug#5549).
13482
13483 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
13484
13485 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
13486 of disassemble output in GDB 7.1.
13487
13488 2010-02-19 Glenn Morris <rgm@gnu.org>
13489
13490 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
13491 property. (Bug#5593)
13492
13493 2010-02-18 Sam Steingold <sds@gnu.org>
13494
13495 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
13496
13497 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
13498
13499 Use abbreviated file names in bookmarks (bug#5591).
13500 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
13501 calls to expand-file-name.
13502 (bookmark-relocate): Use abbreviated file names in bookmarks.
13503 (bookmark-load): Use abbreviated file names in messages.
13504
13505 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
13506
13507 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
13508 expand "." and "..". Reported by Thierry Volpiatto
13509 <thierry.volpiatto@gmail.com>.
13510
13511 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
13512
13513 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
13514 permissions of the temporary file to "0600". In case the remote
13515 file has no read permissions for the owner, there might be
13516 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
13517
13518 22010-02-18 Glenn Morris <rgm@gnu.org>
13519
13520 * emacs-lisp/authors.el (authors-renamed-files-alist):
13521 Add entries for INSTALL.CVS.
13522
13523 2010-02-17 Mark A. Hershberger <mah@everybody.org>
13524
13525 * vc-bzr.el: Fix typo in Known Bugs section.
13526
13527 * isearch.el (isearch-update-post-hook): New hook.
13528 (isearch-update): Use the new hook.
13529
13530 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
13531
13532 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
13533 Fix errors in copying directories.
13534 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
13535 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
13536 (tramp-handle-delete-file)
13537 (tramp-handle-dired-recursive-delete-directory)
13538 (tramp-handle-write-region): Flush also the cache for the upper
13539 directory.
13540
13541 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
13542
13543 * simple.el (save-interprogram-paste-before-kill): Doc fix.
13544
13545 * cus-edit.el (hardware): Doc fix.
13546
13547 * man.el (man): Add to external custom group.
13548
13549 * delim-col.el (columns): Move to wp custom group.
13550
13551 * doc-view.el (doc-view): Add to data custom group.
13552
13553 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
13554
13555 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
13556 by ispell-parse-output (Bug#5575).
13557
13558 2010-02-16 Kenichi Handa <handa@m17n.org>
13559
13560 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
13561 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
13562 (skkdic-convert): Use `euc-japan' coding system for writing.
13563
13564 2010-02-16 Glenn Morris <rgm@gnu.org>
13565
13566 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
13567 tex-main-file before using it. (Bug#5562)
13568
13569 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
13570
13571 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
13572 warnings, since it is annoying for the user to see them each time he
13573 runs the code.
13574
13575 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
13576
13577 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
13578 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
13579 instead of PROC for caching "first-password-request". Otherwise,
13580 new processes would not profit from passwords already entered.
13581
13582 * net/tramp-cache.el (tramp-dump-connection-properties):
13583 Don't save "first-password-request" property.
13584
13585 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
13586
13587 * outline.el (outline-head-from-level):
13588 * simple.el (with-wrapper-hook):
13589 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
13590 (elint-defun, elint-buffer-env, elint-top-form-logged)
13591 (elint-unbound-variable):
13592 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
13593 Fix typos in docstrings.
13594
13595 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
13596
13597 * files.el (insert-directory): When WILDCARD-REGEXP and
13598 FULL-DIRECTORY-P are nil, insert the file entry instead of the
13599 whole directory. (Bug#5551)
13600
13601 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
13602 dired's alignment sanity. (Bug#5516)
13603
13604 2010-02-14 Juri Linkov <juri@jurta.org>
13605
13606 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
13607 Remove remaining ^H with their preceding chars. (Bug#5566)
13608
13609 2010-02-13 Glenn Morris <rgm@gnu.org>
13610
13611 * simple.el (transpose-subr): Give it a doc-string.
13612
13613 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
13614 Doc fixes.
13615
13616 2010-02-12 Juri Linkov <juri@jurta.org>
13617
13618 * arc-mode.el (archive-unique-fname): Make directories for nested
13619 archives. (Bug#5540)
13620
13621 2010-02-12 Juri Linkov <juri@jurta.org>
13622
13623 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
13624
13625 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13626
13627 * subr.el (copy-overlay): Handle deleted overlays.
13628
13629 * man.el (Man-completion-table): Don't signal an error if we can't run
13630 manual-program (bug#4056).
13631
13632 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
13633
13634 * textmodes/artist.el (artist-mt): Fix typos in docstring.
13635
13636 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13637
13638 * info.el (Info-bookmark-jump): Simplify.
13639
13640 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
13641 (bookmark-default-handler): Accept new bookmark field `buffer'.
13642
13643 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
13644
13645 * iswitchb.el (iswitchb-completions): Revert last change.
13646
13647 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
13648
13649 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
13650 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
13651 This prevents file names like "~/" being listed literally.
13652
13653 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
13654
13655 * term/xterm.el (xterm-maybe-set-dark-background-mode):
13656 Remove dead code. (Bug#5546)
13657
13658 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
13659
13660 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
13661 correctly (Bug#5548).
13662
13663 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
13664
13665 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
13666 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
13667
13668 2010-02-08 Kenichi Handa <handa@m17n.org>
13669
13670 * international/mule-util.el (with-coding-priority): Add autoload
13671 cookie for putting `lisp-indent-function'.
13672
13673 2010-02-07 Glenn Morris <rgm@gnu.org>
13674
13675 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
13676 Move F2003 named interfaces from keywords-2 to keywords-1, and
13677 use function-name-face rather than constant-face.
13678 Simplify "abstract interface" regexp.
13679
13680 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
13681
13682 * eshell/esh-util.el (eshell-file-attributes): New optional arg
13683 ID-FORMAT. Pass it to `file-attributes'.
13684
13685 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
13686
13687 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
13688
13689 * faces.el (set-face-attribute): Allow calling
13690 internal-set-lisp-face-attribute with 'unspecified family and
13691 foundry argument (Bug#5536).
13692
13693 2010-02-07 Glenn Morris <rgm@gnu.org>
13694
13695 * progmodes/f90.el (f90-font-lock-keywords-2)
13696 (f90-looking-at-type-like, f90-looking-at-program-block-end):
13697 Handle F2003 named interfaces.
13698
13699 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
13700
13701 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
13702 beg and end before calling c-get-state-before-change-functions.
13703
13704 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
13705
13706 * vc-bzr.el (vc-bzr-dir-extra-headers):
13707 Disable the pending merges header.
13708
13709 2010-02-05 Juri Linkov <juri@jurta.org>
13710
13711 * doc-view.el (doc-view-mode):
13712 * image-mode.el (image-mode): Put property mode-class=special.
13713 (Bug#4896)
13714
13715 2010-02-05 Mark A. Hershberger <mah@everybody.org>
13716
13717 * vc-svn.el (vc-svn-revision-table): New function.
13718
13719 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
13720
13721 * net/ange-ftp.el (ange-ftp-insert-directory):
13722 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
13723 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
13724 Handle also directories. (Bug#5478)
13725
13726 2010-02-05 Glenn Morris <rgm@gnu.org>
13727
13728 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
13729
13730 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
13731
13732 * startup.el (command-line-1): Convert options beginning with a
13733 single dash as well (Bug#5519).
13734
13735 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
13736
13737 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
13738 * minibuffer.el (completion-initials-expand): Only check the presence
13739 of delims *within* the boundaries, since otherwise the / delim is
13740 always found for files.
13741
13742 Fix up various corner case problems.
13743 * doc-view.el (doc-view-last-page-number): New function.
13744 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
13745 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
13746 (doc-view-kill-proc): Avoid inf-loop in freak cases.
13747 (doc-view-reconvert-doc): Use the new recursive delete-directory.
13748 (doc-view-convert-current-doc): Don't create the resolution.el file
13749 here any more.
13750 (doc-view-pdf/ps->png): Do it here instead.
13751 (doc-view-already-converted-p): Check that resolution.el is present.
13752 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
13753 windows that are not yet showing images.
13754
13755 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
13756
13757 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
13758 `dired-uncache' for every elemnt which is an absolute file name.
13759
13760 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
13761 directory, handle its directory component.
13762 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
13763 function is called permanently and creates noise, otherwise.
13764
13765 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
13766 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
13767 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
13768
13769 2010-02-04 David Burger <dburger@google.com> (tiny change)
13770
13771 * macros.el (apply-macro-to-region-lines):
13772 Minor simplification. (Bug#5485)
13773
13774 2010-02-04 Glenn Morris <rgm@gnu.org>
13775
13776 * mail/rmail.el (rmail-show-message-1): Handle malformed
13777 quoted-printable text. (Bug#5441)
13778
13779 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
13780
13781 * simple.el (visual-line-mode): Capitalize lighter.
13782
13783 2010-02-03 John Wiegley <jwiegley@gmail.com>
13784
13785 * iswitchb.el (iswitchb-completions): Add bookmark files to the
13786 list of files considered for "virtual buffer" completions.
13787
13788 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
13789
13790 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
13791 also in case of (and (not full) (not wildcard)). This is needed
13792 when dired is called with a list of files, which are not in
13793 `default-directory'. (Bug#5478)
13794
13795 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
13796
13797 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
13798
13799 2010-02-02 Juri Linkov <juri@jurta.org>
13800
13801 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
13802 from unidiff to allow function-line after @@.
13803
13804 2010-02-02 Juri Linkov <juri@jurta.org>
13805
13806 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
13807 '(RCS SCCS) with inverted condition.
13808
13809 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
13810
13811 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
13812 messages.
13813
13814 2010-02-01 Juri Linkov <juri@jurta.org>
13815
13816 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
13817 compare with "pkunzip" and "pkzip" instead of only "pkzip".
13818 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
13819 only when (car archive-zip-extract) is "unzip". (Bug#5475)
13820
13821 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
13822
13823 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
13824 (doc-view-revert-buffer): New command.
13825 (doc-view-mode-map): Use it.
13826
13827 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
13828
13829 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
13830 pending merge is detected.
13831
13832 2010-01-31 Juri Linkov <juri@jurta.org>
13833
13834 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
13835 beginning of interactive spec like all other grep commands do.
13836 Put "all" in front of "gz". (Bug#5260)
13837
13838 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
13839
13840 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
13841
13842 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
13843
13844 * dirtrack.el (dirtrack): Warn instead of signalling error if the
13845 regexp is incorrect (Bug#5476).
13846
13847 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
13848
13849 * net/tramp.el (tramp-handle-insert-directory): Handle also
13850 symlinks, when FILENAME is not in `default-directory'.
13851
13852 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
13853
13854 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
13855 FILE is not in `default-directory'. (Bug#5478)
13856
13857 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
13858 of SWITCHES. Handle the case, FILENAME is not in
13859 `default-directory'. (Bug#5478)
13860 (tramp-register-file-name-handlers): Add safe-magic property.
13861
13862 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
13863
13864 * arc-mode.el (archive-zip-extract): Quote the argument passed to
13865 unzip (Bug#5475).
13866
13867 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
13868
13869 * progmodes/flymake.el (flymake-allowed-file-name-masks)
13870 (flymake-master-make-header-init): Add other C++ filename masks.
13871 (flymake-find-possible-master-files)
13872 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
13873
13874 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
13875
13876 Fix some busybox annoyances.
13877
13878 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
13879 not responding." string.
13880 (tramp-open-connection-setup-interactive-shell): Dump stty
13881 settings. Enable "neveropen" arg for all `tramp-send-command'
13882 calls. Handle "=" in variable values properly.
13883 (tramp-find-inline-encoding): Raise an error, when no encoding is
13884 found.
13885 (tramp-wait-for-output): Check, whether PROC buffer is available.
13886 Remove spurious " ^H" sequences, sent by busybox.
13887 (tramp-get-ls-command): Suppress coloring, if possible.
13888
13889 2010-01-28 Glenn Morris <rgm@gnu.org>
13890
13891 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
13892
13893 * log-edit.el (log-edit-strip-single-file-name): Add missing
13894 :safe, :group, and :version tags.
13895
13896 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
13897
13898 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
13899 buffers. (Bug#5477)
13900
13901 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
13902
13903 * files.el (delete-directory): Handle moving to trash without
13904 first doing recursion (Bug#5436).
13905
13906 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
13907
13908 * vc-hooks.el (vc-path): Mark as obsolete.
13909
13910 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
13911
13912 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
13913 names too.
13914
13915 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
13916 for the short log.
13917 (vc-bzr-log-view-mode): Adjust regexp for the above change.
13918
13919 2010-01-25 Mark A. Hershberger <mah@everybody.org>
13920
13921 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
13922
13923 * vc-bzr.el (vc-bzr-revision-table): New function.
13924
13925 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com>
13926
13927 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
13928 diff-index command. This requires at least git-1.5.5. (Bug#1589).
13929
13930 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
13931
13932 Remove support for adding --signoff on commit.
13933 Future support will use an incompatible generic mechanism.
13934 * vc-git.el (vc-git-add-signoff): Remove variable.
13935 (vc-git-toggle-signoff): Remove function.
13936 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
13937
13938 * term/xterm.el (xterm-maybe-set-dark-background-mode):
13939 Rename from xterm-set-background-mode. Return t if the background mode
13940 was set.
13941 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
13942 earlier, call it again in case the background mode has changed.
13943
13944 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
13945
13946 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
13947 (Bug#3541).
13948
13949 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
13950
13951 * emacs-lisp/assoc.el (aelement): Doc fix.
13952 (aput, adelete, amake): Use lexical-let (Bug#5450).
13953
13954 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
13955
13956 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
13957 is the same as subprogram call, not declaration. (Bug#5435).
13958
13959 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
13960
13961 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
13962 (tramp-smb-maybe-open-connection): Use it.
13963
13964 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
13965
13966 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
13967
13968 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
13969
13970 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
13971 just because we see "encoding: 8bit".
13972 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
13973
13974 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
13975
13976 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
13977
13978 2010-01-22 Eli Zaretskii <eliz@gnu.org>
13979
13980 * jka-compr.el (jka-compr-load): If load-file is not in
13981 load-history, try its file-truename version. (bug#5447)
13982
13983 2010-01-21 Alan Mackenzie <acm@muc.de>
13984
13985 Fix a situation where deletion of a cpp construct throws an error.
13986 * progmodes/cc-engine.el (c-invalidate-state-cache):
13987 Before invoking c-with-all-but-one-cpps-commented-out, check that the
13988 special cpp construct is still in the buffer.
13989 (c-parse-state): Record the special cpp with markers, not numbers.
13990
13991 2010-01-21 Kenichi Handa <handa@m17n.org>
13992
13993 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
13994 process last-command-event, as it is now decoded first (Bug#5380).
13995
13996 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
13997
13998 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
13999
14000 2010-01-20 Glenn Morris <rgm@gnu.org>
14001
14002 * indent.el (tab-always-indent): Fix custom-type.
14003
14004 2010-01-19 Alan Mackenzie <acm@muc.de>
14005
14006 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
14007 buffer throws "args out of range".
14008 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
14009 playing the role of delimiter.
14010
14011 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
14012
14013 * progmodes/ada-mode.el: Fix bug#5400.
14014 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
14015 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
14016 changed. Delete RECURSIVE parameter; never used. Improve doc string.
14017 Improve comments in "is" portion. Handle null procedure declaration.
14018 (ada-move-to-end): Improve doc string.
14019
14020 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
14021
14022 * ido.el (ido-cur-list): Initialize to nil.
14023 Remove obsolete information from commentary.
14024 (ido-choice-list): Initialize to nil.
14025 (ido-get-bufname): Reject minibuffers.
14026 (ido-make-buffer-list): If "default" is a nonexistent
14027 buffer, ignore it, as per the function's comment.
14028 (ido-kill-buffer-internal): New function.
14029 (ido-kill-buffer-at-head): Use it.
14030 (ido-visit-buffer): Likewise.
14031
14032 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
14033
14034 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
14035
14036 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
14037
14038 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
14039 Fix typos in chart titles.
14040
14041 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
14042 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
14043 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
14044 (describe-class, eieio-describe-generic, describe-generic):
14045 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
14046 (eieio-speedbar-expand):
14047 * emulation/viper-cmd.el (viper-exec-form-in-vi)
14048 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
14049 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
14050 (viper-del-backward-char-in-replace, viper-backward-indent)
14051 (viper-brac-function, viper-register-to-point, viper-submit-report):
14052 * net/tramp.el (tramp-remote-coding-commands):
14053 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
14054 Fix typos in docstrings.
14055
14056 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
14057
14058 * mail/sendmail.el (mail-yank-original): Set the mark if the
14059 specified function for yanking does not do it.
14060
14061 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
14062
14063 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
14064
14065 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
14066 resyncing a directory.
14067
14068 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
14069
14070 * progmodes/ada-mode.el: Fix bug#1920.
14071 (ada-ident-re): Delete ., allow multibyte characters.
14072 (ada-goto-label-re): New; matches goto labels.
14073 (ada-block-label-re): New; matches block labels.
14074 (ada-label-re): New; matches both.
14075 (ada-named-block-re): Delete; callers changed to use
14076 `ada-block-label-re' instead.
14077 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
14078 Use `ada-block-label-re'.
14079 (ada-indent-on-previous-lines): Improve handling of goto labels.
14080 (ada-get-indent-block-start): Special-case block label.
14081 (ada-get-indent-label): Split into `ada-indent-block-label' and
14082 `ada-indent-goto-label'.
14083 (ada-goto-stmt-start, ada-goto-next-non-ws):
14084 Optionally ignore goto labels.
14085 (ada-goto-next-word): Simplify.
14086 (ada-indent-newline-indent-conditional): Insert newline before
14087 trying to fix indentation; doc fix.
14088
14089 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
14090
14091 * calc/calc.el (calc-command-flags): Give it an initial value.
14092
14093 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
14094
14095 * files.el (minibuffer-with-setup-hook):
14096 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
14097 (artist-key-draw-continously, artist-key-do-continously-continously)
14098 (artist-key-set-point-continously, artist-mouse-draw-continously):
14099 Fix typos in docstrings.
14100
14101 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
14102
14103 * nxml/nxml-mode.el (nxml-extend-after-change-region):
14104 Never return t (Bug#3898).
14105
14106 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
14107
14108 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
14109 can parse the output of the external commands (Bug#5279).
14110
14111 2010-01-16 Jari Aalto <jari.aalto@cante.net>
14112
14113 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
14114
14115 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
14116
14117 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
14118
14119 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
14120
14121 * startup.el (command-line): Remove unused --icon-type arg.
14122 Handle --display arg, passing it to command-line-1 (Bug#5392).
14123
14124 2010-01-16 Mario Lang <mlang@delysid.org>
14125
14126 * emacs-lisp/chart.el (chart-translate-namezone):
14127 * textmodes/artist.el (artist-compute-popup-menu-table):
14128 Remove duplicated words in doc-strings.
14129
14130 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
14131
14132 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
14133 to mairix-search to suppress threading (Bug#5342).
14134
14135 2010-01-15 Kenichi Handa <handa@m17n.org>
14136
14137 * international/mule-cmds.el (canonicalize-coding-system-name):
14138 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
14139
14140 2010-01-15 Glenn Morris <rgm@gnu.org>
14141
14142 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
14143
14144 * wid-edit.el (widget-keymap): Doc fix.
14145
14146 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
14147 former seems to be more widely accepted by various svn versions.
14148
14149 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14150
14151 * find-cmd.el (find-constituents):
14152 * vc-arch.el (vc-arch-root):
14153 * window.el (window-body-height, pop-up-frames):
14154 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
14155 * progmodes/ada-stmt.el (ada-if):
14156 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
14157 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
14158 (ispell-encoding8-command, ispell-aspell-supports-utf8)
14159 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
14160
14161 * progmodes/flymake.el (flymake-post-syntax-check):
14162 Fix typo in error message.
14163
14164 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14165
14166 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
14167 which is always a string. (Bug#5313)
14168
14169 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14170
14171 * progmodes/ada-xref.el (ada-default-prj-properties):
14172 Simplify previous change.
14173
14174 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14175
14176 * progmodes/ada-xref.el (ada-default-prj-properties):
14177 Default ada_project_path to $ADA_PROJECT_PATH.
14178
14179 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14180
14181 * progmodes/ada-mode.el (ada-create-keymap):
14182 Override `narrow-to-defun' with `ada-narrow-to-defun'.
14183
14184 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14185
14186 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
14187 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
14188 (ada-get-current-indent, ada-imenu-generic-expression)
14189 (ada-which-function): Check for it.
14190
14191 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14192
14193 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
14194 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
14195
14196 2010-01-14 Glenn Morris <rgm@gnu.org>
14197
14198 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
14199
14200 2010-01-14 Kenichi Handa <handa@m17n.org>
14201
14202 * composite.el (auto-composition-mode): Make it a buffer local
14203 variable (permanent-local).
14204 (auto-composition-function): Set the default value to
14205 auto-compose-chars.
14206 (auto-composition-mode): Make it a simple function, not a minor mode.
14207 (global-auto-composition-mode): Likewise.
14208 (turn-on-auto-composition-if-enabled): Delete it.
14209
14210 2010-01-13 Karl Fogel <kfogel@red-bean.com>
14211
14212 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
14213
14214 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
14215
14216 * files.el (copy-directory): Compute target for recursive
14217 directories with identical names. (Bug#5343)
14218
14219 2010-01-12 Glenn Morris <rgm@gnu.org>
14220
14221 * mail/emacsbug.el (report-emacs-bug-pretest-address):
14222 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
14223
14224 2010-01-11 Sam Steingold <sds@gnu.org>
14225
14226 * imenu.el (imenu-default-create-index-function): Detect infinite
14227 loops caused by imenu-prev-index-position-function.
14228
14229 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
14230
14231 * htmlfontify.el (htmlfontify-load-rgb-file)
14232 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
14233 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
14234 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
14235 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
14236 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
14237 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
14238 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
14239 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
14240 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
14241 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
14242 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
14243 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
14244 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
14245 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
14246 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
14247 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
14248 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
14249 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
14250 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
14251 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
14252 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
14253 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
14254 backslash-quoting from parentheses, etc.
14255
14256 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
14257
14258 * progmodes/js.el: Autoload javascript-mode alias.
14259
14260 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
14261
14262 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
14263 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
14264 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
14265 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
14266 Fix typos in docstrings.
14267 (ffap-url-regexp): Doc fix.
14268 (ffap-at-mouse): Fix typo in message.
14269
14270 2010-01-11 Glenn Morris <rgm@gnu.org>
14271
14272 * version.el (emacs-copyright): Set copyright year to 2010.
14273
14274 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
14275
14276 * format.el (format-annotate-function): Only set
14277 write-region-post-annotation-function after running to-fn so as not to
14278 affect nested write-region calls (bug#5273).
14279
14280 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
14281
14282 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
14283 wisent/python.el.
14284
14285 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
14286
14287 * man.el (Man-goto-section): Signal error if the section is not
14288 found (Bug#5317).
14289
14290 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
14291
14292 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
14293 URLs with a leading triple slash in the file: scheme. (Bug#5345)
14294
14295 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
14296
14297 * progmodes/compile.el: Don't treat compile-command as safe if
14298 compilation-read-command might be nil (Bug#4218).
14299
14300 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
14301
14302 * startup.el (command-line-1): Use orig-argi to check for ignored X and
14303 NS options.
14304
14305 2010-01-08 Kenichi Handa <handa@m17n.org>
14306
14307 * international/fontset.el (build-default-fontset-data):
14308 Exclude characters in scripts kana, hangul, han, or cjk-misc.
14309
14310 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
14311
14312 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
14313 to `create-file-buffer' as it expects, not just a buffer name.
14314 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
14315 to help uniquify. (Bug#3224)
14316
14317 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
14318
14319 * font-setting.el (font-setting-change-default-font): Use user-spec
14320 instead of name.
14321
14322 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
14323
14324 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
14325
14326 2010-01-05 Tom Tromey <tromey@redhat.com>
14327
14328 * progmodes/python.el (python-font-lock-keywords):
14329 Handle qualified decorators (Bug#881).
14330
14331 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14332
14333 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
14334 in a lightweight checkout.
14335
14336 2010-01-05 Kenichi Handa <handa@m17n.org>
14337
14338 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
14339
14340 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14341
14342 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
14343
14344 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
14345
14346 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
14347 checkouts. (Bug#618)
14348 (vc-bzr-log-view-mode): Also highlight the author.
14349 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
14350 (vc-bzr-shelve-menu-map):
14351 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
14352 (vc-bzr-shelve-apply): Make prompt more explicit.
14353
14354 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
14355
14356 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
14357 They are valid characters in URL paths (rfc3986), and at least
14358 Firefox does not understand the encoded version (Bug#3166).
14359
14360 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
14361
14362 * progmodes/octave-mod.el (octave-end-keywords)
14363 (octave-block-begin-or-end-regexp, octave-block-match-alist):
14364 Add "end" keyword (Bug#3061).
14365 (octave-end-as-array-index-p): New function.
14366 (calculate-octave-indent): Use it.
14367
14368 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14369
14370 * bookmark.el: Consistently put the text property on the bookmark name.
14371 (bookmark-bmenu-marks-width): Bump back to 2, to include
14372 annotation marks.
14373 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
14374 property on the bookmark name, instead of not putting it at all.
14375 (bookmark-bmenu-list): Fix where we put the text property.
14376
14377 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14378
14379 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
14380 for showing buffer modified state (as added in the previous change).
14381
14382 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14383
14384 * bookmark.el: Show modified state of bookmark buffer more accurately.
14385 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
14386 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
14387 (with-buffer-modified-unmodified): New macro.
14388 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
14389 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
14390 Use new macro to preserve the buffer modified state.
14391
14392 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14393
14394 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
14395 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
14396 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
14397 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
14398 (bookmark-bmenu-rename, bookmark-bmenu-locate)
14399 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
14400 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
14401
14402 2010-01-02 Eli Zaretskii <eliz@gnu.org>
14403
14404 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14405 Make the lines in the generated doc string shorter. (Bug#4668)
14406
14407 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
14408
14409 * net/rcirc.el: Add follow-link binding (Bug#4738).
14410
14411 2010-01-02 Eli Zaretskii <eliz@gnu.org>
14412
14413 * Makefile.in (bzr-update): Rename from cvs-update.
14414 (cvs-update): New target for backward compatibility.
14415
14416 * makefile.w32-in (bzr-update): Rename from cvs-update.
14417 (cvs-update): New target for backward compatibility.
14418
14419 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14420
14421 * bookmark.el: Remove gratuitous gratitude.
14422
14423 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14424
14425 * bookmark.el (bookmark-bmenu-any-marks): New function.
14426 (bookmark-bmenu-save): Clear buffer modification if no marks.
14427
14428 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14429
14430 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
14431 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
14432 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
14433 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
14434
14435 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
14436 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
14437 To: emacs-devel {_AT_} gnu.org
14438 Subject: bookmark.el bug report
14439 Date: Mon, 28 Dec 2009 14:19:16 +0800
14440 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
14441
14442 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14443
14444 * bookmark.el: Improvements suggested by Drew Adams:
14445 (bookmark-bmenu-ensure-position): New name for
14446 `bookmark-bmenu-check-position'. Just ensure the position,
14447 don't return any meaningful value.
14448 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
14449 New constants.
14450
14451 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
14452
14453 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
14454 (bookmark-yank-point, bookmark-bmenu-check-position):
14455 Fix typos in docstrings.
14456 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
14457 (bookmark-name-from-full-record, bookmark-get-position)
14458 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
14459 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
14460 Remove useless quoting of parenthesis, etc. in docstrings.
14461
14462 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
14463 (ediff-append-custom-diff): Fix typo in error message.
14464 (ediff-meta-mark-equal-files): Fix typos in messages.
14465
14466 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
14467
14468 * net/imap-hash.el (imap-hash-make): Doc fix.
14469 (imap-hash-test): Fix typo in error message; reflow docstring.
14470 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
14471 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
14472 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
14473 Fix typos in docstrings.
14474 (imap-hash-open-connection): Fix typo in error message.
14475
14476 * play/gomoku.el (gomoku): Fix typos in docstring.
14477
14478 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
14479 (gdb-jsonify-buffer): Fix typos in docstring.
14480 (gdb-goto-breakpoint): Fix typo in error message.
14481 ("Display Other Windows"): Fix typo in help message.
14482 (gdb-speedbar-expand-node): Fix typo in question.
14483
14484 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
14485 (idlwave-html-system-help-location, idlwave-html-help-location)
14486 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
14487 (idlwave-help-browser-generic-args, idlwave-help-directory)
14488 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
14489 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
14490 (idlwave-online-help, idlwave-help-html-link)
14491 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
14492 Fix typos in docstrings.
14493 (idlwave-help-with-source, idlwave-help-find-routine-definition):
14494 Reflow docstrings.
14495 (idlwave-help-assistant-start): Fix typo in error message.
14496
14497 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
14498 (octave-electric-space): Fix typos in docstrings.
14499
14500 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
14501
14502 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
14503
14504 2010-01-01 Juri Linkov <juri@jurta.org>
14505
14506 * comint.el (comint-input-ring-size): Make it a defcustom and
14507 increase the default to 500 (Bug#5148).
14508
14509 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
14510
14511 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
14512 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
14513 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
14514
14515 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
14516
14517 Show working revision correctly for mercurial.
14518 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
14519 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
14520
14521 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
14522
14523 Declare some functions for the byte-compiler.
14524 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
14525 (speedbar-timer-fn, speedbar-change-expand-button-char)
14526 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
14527
14528 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
14529
14530 This changeset reverts GDB Graphical Interface to use annotations.
14531 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
14532
14533 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
14534
14535 Make vc-dir work on subdirectories of the bzr root.
14536 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
14537 Return file names relative to it.
14538 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
14539 relative directory to vc-bzr-after-dir-status.
14540
14541 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
14542
14543 * font-lock.el (font-lock-refresh-defaults): New function, which
14544 can be used to let font-lock react to external changes in
14545 variables like font-lock-defaults and keywords.
14546 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
14547
14548 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
14549
14550 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
14551
14552 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
14553
14554 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
14555
14556 Supersede color.diff settings in git log (bug#5211).
14557
14558 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
14559 escape chars in its output when the user has color.diff set to `always'.
14560 This fix works on git 1.4.2 and newer (released on 2006-08-13).
14561
14562 2009-12-26 Kevin Ryde <user42@zip.com.au>
14563
14564 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
14565 node. Keep previous "Index" name to work with past coreutils too.
14566
14567 * man.el (man): Revise docstring a bit to show -a and -l as
14568 examples. Add -k description since support for it has otherwise
14569 been a secret. (Further to bug#3717.)
14570 (Man-bgproc-sentinel): When "-k foo" produces no output show error
14571 "no matches" rather than "Can't find manpage", as the latter reads
14572 like -k was interpreted as a page name, which is not so. (Bug#5431)
14573
14574 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
14575
14576 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
14577 switches. Check also for //SUBDIRED// line.
14578
14579 2009-12-25 Kenichi Handa <handa@m17n.org>
14580
14581 * language/indian.el (devanagari-composable-pattern): Fix to
14582 handle ZWNJ and ZWJ. Use it in composition-function-table for
14583 Devanagari.
14584 (malayalam-composable-pattern): Fix previous change.
14585
14586 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14587
14588 * ps-print.el (ps-face-attributes): It was not returning the
14589 attribute face for faces specified as string. Reported by harven
14590 <harven@free.fr>. (Bug#5254)
14591 (ps-print-version): New version 7.3.5.
14592
14593 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
14594
14595 * calendar/icalendar.el (icalendar--convert-tz-offset):
14596 Fix timezone names.
14597 (icalendar--convert-tz-offset): Fix the "last-day-problem".
14598 (icalendar--add-diary-entry): Remove the trailing blank that
14599 diary-make-entry inserts.
14600
14601 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
14602
14603 Make `file-expand-wildcards' work for remote files.
14604
14605 * files.el (file-expand-wildcards): In case of remote files, check
14606 only local file name part for wildcards. Provide feature 'files
14607 and subfeature 'remote-wildcards. (Bug#5198)
14608
14609 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
14610 if there is already an established connection.
14611 (tramp-advice-file-expand-wildcards): Remove it.
14612
14613 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
14614 (tramp-advice-file-expand-wildcards): Move from tramp.el.
14615 Activate advice for older GNU Emacs versions. (Bug#5237)
14616
14617 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
14618
14619 Some doc fixes (more needed).
14620
14621 * find-cmd.el (find-constituents): Reflow docstring.
14622 (find-cmd, find-prune, find-command): Fix typos in docstrings.
14623 (find-generic): Doc fix.
14624
14625 2009-12-17 Juri Linkov <juri@jurta.org>
14626
14627 Fix regression from 23.1 to allow multiple modes in Local Variables.
14628
14629 * files.el (hack-local-variables-filter): While ignoring duplicates,
14630 don't take `mode' into account.
14631 (hack-local-variables-filter, hack-dir-local-variables):
14632 Don't remove duplicate `mode' from local-variables-alist (like `eval').
14633
14634 2009-12-17 Juri Linkov <juri@jurta.org>
14635
14636 Make `dired-diff' safer. (Bug#5225)
14637
14638 * dired-aux.el (dired-diff): Signal an error when `file' equals to
14639 `current' or when `file' is a directory of the `current' file.
14640
14641 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
14642
14643 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
14644 unconditionally preloaded files.
14645
14646 2009-12-16 Juri Linkov <juri@jurta.org>
14647
14648 Revert to old 23.1 logic of using the file at the mark as default.
14649 * dired-aux.el (dired-diff): Use the file at the mark as default
14650 if it's not the same as the current file, and the target dir is
14651 the current dir or the mark is active. Add the current file
14652 as the arg of `dired-dwim-target-defaults'. Use the default file
14653 in the prompt. (Bug#5225)
14654
14655 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
14656
14657 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
14658 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
14659 (tramp-check-for-regexp): Check also, when an echoing shell stops
14660 to echo sent commands.
14661
14662 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
14663
14664 * Makefile.in: Revert last change (Bug#5191).
14665
14666 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
14667
14668 * vc-hg.el (vc-hg-print-log): Fix argument order.
14669 (vc-hg-working-revision): Make sure the command is executed in a
14670 known environment so that we can parse the output. (Bug#4417)
14671
14672 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
14673
14674 * progmodes/python.el (python-symbol-completions): Remove text
14675 properties from symbol string before calling python-send-receive.
14676
14677 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
14678
14679 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
14680 when there are values for both file and line. (Bug#5060)
14681
14682 2009-12-14 Juri Linkov <juri@jurta.org>
14683
14684 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
14685 whitespace after the file name of the first line of unified format,
14686 because git-diff doesn't output whitespace and file modification time
14687 after the file name.
14688
14689 2009-12-14 David Kastrup <dak@gnu.org>
14690
14691 * info.el (Info-hide-cookies-node): Before hiding a cookie,
14692 check if it already has the `display' property added by
14693 `Info-display-images-node', and not put the `invisible' property
14694 in this case.
14695
14696 2009-12-13 Glenn Morris <rgm@gnu.org>
14697
14698 * mail/emacsbug.el (message-sort-headers): Define for compiler.
14699 (report-emacs-bug): In message-mode, sort manually before storing
14700 original report text. (Bug#5178)
14701 Remove superfluous save-excursion.
14702
14703 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
14704
14705 * net/dbus.el (dbus-property-handler): Filter lambda forms out
14706 when responding to "GetAll" properties.
14707
14708 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
14709
14710 * simple.el (compose-mail): Remove mail-setup-with-from from
14711 customization checks.
14712
14713 2009-12-12 Eli Zaretskii <eliz@gnu.org>
14714
14715 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
14716 RAR archives created on Unix systems.
14717
14718 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
14719
14720 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
14721 the varalias that was accidentally removed by the 2009-11-19 change
14722 (bug#5186).
14723
14724 2009-12-12 Kenichi Handa <handa@m17n.org>
14725
14726 * language/indian.el (indian-compose-regexp): New function.
14727 (malayalam-composable-pattern): Fix the pattern.
14728 (composition-function-table): Set malayalam-composable-pattern for
14729 Malayalam characters.
14730
14731 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
14732
14733 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
14734 rather than down-mouse-1, based on follow-link conventions.
14735
14736 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
14737 are compiled.
14738
14739 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
14740
14741 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
14742 (verilog-vmm-statement-re, verilog-ovm-statement-re)
14743 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
14744 (verilog-leap-to-head, verilog-backward-token):
14745 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
14746
14747 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
14748
14749 * progmodes/verilog-mode.el (verilog-auto-lineup)
14750 (verilog-nameable-item-re): Cleanup user-visible spelling and
14751 documentation errors. One reported by Gary Delp.
14752 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
14753 (verilog-read-decls): Fix AUTOWIRE with types declared in a
14754 package, bug195. Reported by Pierre-David Pfister.
14755
14756 2009-12-11 Glenn Morris <rgm@gnu.org>
14757
14758 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
14759
14760 * mail/emacsbug.el: No longer require sendmail.
14761 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
14762 (report-emacs-bug-orig-text): Doc fix.
14763 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
14764 New local variables, to adapt to different mail-user-agents.
14765 (report-emacs-bug): Fix test for a gnu.org address.
14766 Use overlays for emphasis, since font-lock defeats 'face property.
14767 Pretest bugs also end up at the newsgroup these days.
14768 Stop message-mode stripping text properties.
14769 Set and use the new buffer-local variables.
14770 (report-emacs-bug-hook): Add doc-string.
14771 Remove some unnecessary save-excursions and simplify.
14772 Use the appropriate hook and send-command.
14773
14774 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
14775 capitalization of some menu entries.
14776
14777 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14778
14779 * whitespace.el (whitespace-display-char-on):
14780 Ensure `buffer-display-table' is unique when two or more windows are
14781 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
14782 New version 12.1.
14783
14784 2009-12-10 Eli Zaretskii <eliz@gnu.org>
14785
14786 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
14787 characters in the Attribute field.
14788
14789 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
14790
14791 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
14792
14793 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
14794
14795 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
14796 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
14797 Disregard autoload-excludes.
14798 (update-directory-autoloads): Obey autoload-excludes here instead.
14799 But don't store its contents in no-autoloads and remove entries that
14800 refer to excludes files.
14801
14802 2009-12-10 Glenn Morris <rgm@gnu.org>
14803
14804 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
14805 (expand-mail-aliases): Define for compiler.
14806
14807 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
14808 Define for compiler.
14809
14810 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
14811 appropriate for the mail-user-agent in use.
14812
14813 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
14814
14815 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
14816
14817 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
14818
14819 Fix short log parsing and fontification.
14820 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
14821 Fix fontification for the [merge] label.
14822
14823 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
14824
14825 Drop some properties to avoid surprises (bug#5002).
14826 * htmlfontify.el (hfy-ignored-properties): New defcustom.
14827 (hfy-fontify-buffer): Use it.
14828
14829 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
14830
14831 Minor cleanup.
14832 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
14833 Adjust all callers.
14834 (ffap-locate-file): Remove unused arg `dir-ok' and make other
14835 args compulsory. Adjust callers.
14836 (ffap-gopher-at-point): Remove unused var `name'.
14837
14838 Get rid of the ELCFILES abomination.
14839 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
14840 (compile-elcfiles): New phony target.
14841 (compile-main): Compute ELCFILES dynamically.
14842 (compile-clean): New target to remove left-over elc files.
14843 (compile, all): Use it.
14844
14845 2009-12-09 Kenichi Handa <handa@etlken>
14846
14847 * international/mule-diag.el: Require help-mode instead of help-fns.
14848
14849 2009-12-09 Kenichi Handa <handa@m17n.org>
14850
14851 * international/mule-cmds.el (ucs-names): Supply sufficiently
14852 fine ranges instead of pre-calculating accurate ranges.
14853 Iterate with bigger gc-cons-threshold.
14854
14855 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
14856
14857 Add support for stashing a snapshot of the current tree.
14858 * vc-git.el (vc-git-stash-snapshot): New function.
14859 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
14860
14861 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
14862
14863 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
14864 instead of `(beginning|end)-of-line'.
14865
14866 2009-12-08 Glenn Morris <rgm@gnu.org>
14867
14868 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
14869
14870 * Makefile.in (ELCFILES): Regenerate.
14871
14872 2009-12-07 Juri Linkov <juri@jurta.org>
14873
14874 Don't lazy-highlight the comint output in history Isearch mode.
14875
14876 * comint.el (comint-history-isearch-search): Instead of
14877 `comint-line-beginning-position', use `comint-after-pmark-p'
14878 to check if point if before the process mark, and go to
14879 `process-mark' in this case.
14880
14881 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
14882
14883 * textmodes/tex-mode.el (latex-complete)
14884 (latex-indent-or-complete): Remove.
14885 (latex-mode): Set completion-at-point-functions instead.
14886
14887 Provide a standard completion command and hook it into TAB.
14888 * minibuffer.el (completion-at-point-functions): New var.
14889 (completion-at-point): New command.
14890 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
14891 * progmodes/python.el (python-mode-map): Use completion-at-point.
14892 (python-completion-at-point): Rename from python-partial-symbol and
14893 adjust for use in completion-at-point-functions.
14894 (python-mode): Setup completion-at-point for Python completion.
14895 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
14896 extracted from lisp-complete-symbol.
14897 (lisp-complete-symbol): Use it.
14898 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
14899 setup completion-at-point for Elisp completion.
14900 (emacs-lisp-mode-map, lisp-interaction-mode-map):
14901 Use completion-at-point.
14902 * ielm.el (ielm-map): Use completion-at-point.
14903 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
14904 * progmodes/sym-comp.el: Move to...
14905 * obsolete/sym-comp.el: Move from progmodes.
14906
14907 2009-12-07 Eli Zaretskii <eliz@gnu.org>
14908
14909 Prevent save-buffer in Rmail buffers from using the coding-system
14910 of the current message, and from clobbering the encoding mnemonics
14911 in the mode line (Bug#4623).
14912
14913 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
14914 flag, too.
14915 (rmail-message-encoding): New variable.
14916 (rmail-write-region-annotate): Record the encoding of the current
14917 message in rmail-message-encoding.
14918 (rmail-after-save-hook): New function, restores the encoding of
14919 the current message after the message collection is saved.
14920
14921 2009-12-07 Juri Linkov <juri@jurta.org>
14922
14923 * progmodes/grep.el (grep-read-files): Use `completing-read'
14924 instead of `read-string'. Set its `collection' arg to
14925 `read-file-name-internal'. (Bug#4301)
14926
14927 2009-12-07 Juri Linkov <juri@jurta.org>
14928
14929 Correctly restore original Isearch point. (Bug#4994)
14930
14931 * isearch.el (isearch-mode): Move `isearch-push-state' after
14932 `(run-hooks 'isearch-mode-hook)'.
14933 (isearch-cancel): When `isearch-push-state-function' is defined,
14934 let-bind `isearch-cmds' to the first state (the last element of
14935 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
14936 function and restores the original point). Otherwise, move point
14937 to `isearch-opoint'.
14938
14939 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
14940
14941 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
14942 chars that don't have names, so the table can be built much faster at
14943 run-time.
14944
14945 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
14946
14947 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
14948 change. Suggested by David Kastrup.
14949
14950 * simple.el (compose-mail): Check for incompatibilities and warn.
14951 (compose-mail-user-agent-warnings): New option.
14952
14953 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
14954
14955 Support showing a single log entry from vc-annotate.
14956 * vc.el (print-log): Add a new argument: START-REVISION.
14957 (vc-print-log-internal): Add a new optional argument and
14958 pass it to the backend.
14959 (vc-print-log, vc-print-root-log): Adjust callers.
14960 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
14961 buffer already displays the requested log entry, use it.
14962 Otherwise display only the log entry in question.
14963 * vc-svn.el (vc-svn-print-log):
14964 * vc-mtn.el (vc-mtn-print-log):
14965 * vc-hg.el (vc-hg-state):
14966 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
14967 (vc-git-show-log-entry): Return t on success.
14968 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
14969 (vc-bzr-show-log-entry): Return t on success.
14970 * vc-rcs.el (vc-rcs-print-log):
14971 * vc-sccs.el (vc-sccs-print-log):
14972 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
14973
14974 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
14975
14976 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
14977 Add menus to the meta mode. (Bug#5043)
14978
14979 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
14980
14981 * ediff-init.el (ediff-event-key): Use event-to-character instead of
14982 event-key.
14983
14984 * ediff.el (ediff-buffers-internal): Add unwind-protect.
14985
14986 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
14987
14988 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
14989 Berbain <raphael.berbain@gmail.com>.
14990
14991 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
14992 characters.
14993 (tramp-initial-end-of-output): New defconst.
14994 (tramp-methods, tramp-find-shell)
14995 (tramp-open-connection-setup-interactive-shell)
14996 (tramp-maybe-open-connection): Use it.
14997 (tramp-shell-prompt-pattern, tramp-wait-for-output):
14998 Handle existence of `#' and `$'.
14999
15000 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
15001 Use `tramp-initial-end-of-output'.
15002
15003 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
15004
15005 Get the background mode from the terminal for xterm, and set
15006 faces accordingly.
15007 * term/xterm.el (xterm-set-background-mode): New function.
15008 (terminal-init-xterm): Use it in case xterm supports background
15009 color queries. Recompute faces after getting the background
15010 color.
15011
15012 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
15013
15014 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
15015 number comment back on its own line, for easier parsing.
15016
15017 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
15018
15019 Make it work for non-file buffers (bug#5102).
15020 * doc-view.el (doc-view-current-cache-dir):
15021 Use doc-view-buffer-file-name rather than buffer-file-name.
15022 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
15023
15024 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
15025
15026 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
15027 author field is too short.
15028
15029 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
15030
15031 * vc-git.el (vc-git-print-log): Handle a limit argument.
15032 Display the short log in graph form and with labels.
15033 (vc-git-log-view-mode): Handle labels.
15034
15035 Make vc-revert change VC state from 'added to 'unregistered.
15036 * vc-git.el (vc-git-revert): Call git reset first.
15037
15038 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
15039
15040 * net/newst-backend.el, net/newst-plainview.el:
15041 * net/newst-reader.el, net/newst-ticker.el:
15042 * net/newst-treeview.el, net/newsticker.el:
15043 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
15044
15045 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
15046
15047 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
15048
15049 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
15050 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
15051 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
15052 Update annotation regexp.
15053
15054 * simple.el (beginning-of-visual-line): Constrain to field
15055 boundaries (Bug#5106).
15056
15057 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
15058
15059 * xml.el (xml-substitute-numeric-entities):
15060 Move newsticker--decode-numeric-entities in newst-backend.el to
15061 xml-substitute-numeric-entities in xml.el. (Bug#5008)
15062 * net/newst-backend.el (newsticker--parse-generic-feed)
15063 (newsticker--parse-generic-items)
15064 (newsticker--decode-numeric-entities):
15065 Move newsticker--decode-numeric-entities in newst-backend.el to
15066 xml-substitute-numeric-entities in xml.el. (Bug#5008)
15067
15068 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
15069
15070 * progmodes/js.el (js--js-not): Add null to the list of values.
15071
15072 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
15073
15074 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
15075
15076 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15077
15078 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
15079 delimiter if it is at the end of the current line.
15080 (bibtex-generate-url-list): Fix docstring.
15081
15082 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15083
15084 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
15085 minibuffer's content with itself.
15086 Fold the confirm-after-completion case into the `confirm' case.
15087 (completion-pcm-word-delimiters): Add : and / to the delimiters.
15088
15089 2009-12-06 Kevin Ryde <user42@zip.com.au>
15090
15091 * ffap.el (ffap-rfc-path): Make this a defcustom since
15092 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
15093
15094 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
15095 manuals, similar to existing setup for help-mode. (Bug#3913.)
15096
15097 2009-12-05 Juri Linkov <juri@jurta.org>
15098
15099 Save and restore dired buffer's point positions too. (Bug#4880)
15100
15101 * dired.el (dired-save-positions): Return in the first element
15102 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
15103 Doc fix.
15104 (dired-restore-positions): First restore buffer's position.
15105 While restoring window's positions, check if window still displays
15106 the original buffer.
15107
15108 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
15109
15110 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
15111 if possible.
15112
15113 * shell.el (shell): Require ansi-color (Bug#5113).
15114
15115 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
15116
15117 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
15118
15119 2009-12-05 Alan Mackenzie <acm@muc.de>
15120
15121 * progmodes/cc-mode.el (c-before-hack-hook)
15122 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
15123 `c-file-style' to work again. This reversion restores the current
15124 software to its state in Emacs 23.1. (Bug#4146)
15125
15126 2009-12-05 Kevin Ryde <user42@zip.com.au>
15127
15128 * textmodes/sgml-mode.el (sgml-lexical-context):
15129 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
15130
15131 2009-12-05 Juri Linkov <juri@jurta.org>
15132
15133 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
15134 for virtual nodes. (Bug#4147)
15135 (Info-find-node-2): Set `Info-current-node-virtual' to nil
15136 when moving from a virtual node.
15137 (Info-mode-menu): Add `Info-virtual-index' to the menu.
15138 (Info-mode): Add `Info-virtual-index' to the docstring.
15139
15140 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15141
15142 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
15143 track of the buffer position of the end of a BibTeX entry as this
15144 position may change during reformatting.
15145 (bibtex-format-entry): Remove whitespace before processing
15146 numerical fields so that we recognize the latter properly.
15147 (bibtex-reformat): Do not use push which changes the global value
15148 of bibtex-entry-format.
15149 (bibtex-field-braces-alist, bibtex-field-strings-alist)
15150 (bibtex-field-re-init): Replace only space characters by regexp
15151 for whitespace.
15152 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
15153 (bibtex-initialize): Also update bibtex-strings.
15154 (bibtex-kill-field): Preserve white space at end of entry.
15155 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
15156 Update bibtex-reference-keys.
15157
15158 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
15159
15160 * minibuffer.el (completion-pcm--merge-try): Also consider placing
15161 point after a star, if that's the only place where modifications can
15162 make progress.
15163
15164 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
15165
15166 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
15167 in docstrings.
15168
15169 2009-12-04 Juri Linkov <juri@jurta.org>
15170
15171 * proced.el (proced): Call `(proced-update t)' to update process
15172 information instead of only running proced-post-display-hook.
15173 (proced-send-signal): Add a leading space to the buffer name
15174 " *Marked Processes*" to make this buffer ephemeral.
15175
15176 2009-12-04 Juri Linkov <juri@jurta.org>
15177
15178 * dired.el (dired-auto-revert-buffer): New defcustom.
15179 (dired-internal-noselect): Use it.
15180
15181 2009-12-04 Juri Linkov <juri@jurta.org>
15182
15183 Change roles of modes and functions in image-mode.el (Bug#5062).
15184
15185 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
15186 in `auto-mode-alist'.
15187 (image-mode-previous-major-mode): New variable.
15188 (image-minor-mode-map): Rename from `image-mode-text-map'.
15189 (image-mode): Move graceful error-handling code from
15190 `image-minor-mode' to here. On errors call `image-mode-as-text'.
15191 (image-minor-mode): Remove all image-handling code.
15192 Replace `image-mode-text-map' with `image-minor-mode-map'.
15193 Check for `image-type' in mode-line format string.
15194 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
15195 (image-mode-as-text): New function with most code from
15196 `image-mode-maybe'.
15197 (image-toggle-display-text): Move code that removes image
15198 properties from `image-toggle-display' to here.
15199 (image-toggle-display-image): New function with code that adds
15200 image properties copied from `image-toggle-display'.
15201 (image-toggle-display): Remove most code with leaving only code
15202 that toggles between `image-mode-as-text' and `image-mode'.
15203
15204 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
15205
15206 * net/newst-treeview.el
15207 (newsticker--treeview-list-highlight-start): Restored call to
15208 save-excursion: Selected item was stuck.
15209 (newsticker--treeview-list-select): New.
15210 (newsticker--treeview-item-show-text)
15211 (newsticker--treeview-item-show)
15212 (newsticker--treeview-item-update): Use new
15213 newsticker-treeview-item-mode.
15214 (newsticker-treeview-update): Keep current item.
15215 (newsticker-treeview-next-new-or-immortal-item): Doc change.
15216 (newsticker--treeview-first-feed): Doc change.
15217 (newsticker-treeview-list-menu)
15218 (newsticker-treeview-item-menu): Add menu entries.
15219 (newsticker-treeview-item-mode): New.
15220
15221 * net/newst-backend.el (newsticker-customize): Delete other
15222 windows.
15223
15224 2009-12-04 Sam Steingold <sds@gnu.org>
15225
15226 * log-view.el (log-view-mode-map): "q" calls quit-window,
15227 like in all the other non-self-insert buffers.
15228
15229 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
15230
15231 Minor cleanup.
15232 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
15233 key decoding rather than do it manually via last-input-event +
15234 ascii-character.
15235 (term-exec): Use delete-and-extract-region.
15236 (term-handle-ansi-terminal-messages): Remove unused var `end'.
15237 (term-process-pager): Remove unused var `i'.
15238 (term-dynamic-simple-complete): Make obsolete.
15239 (serial-update-config-menu): Remove unused vars `y' and `str'.
15240 (term-update-mode-line): Remove unused var `temp'.
15241
15242 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15243
15244 Limit the number of log entries displayed by default.
15245 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
15246 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
15247 using a prefix argument.
15248
15249 2009-12-03 Glenn Morris <rgm@gnu.org>
15250
15251 * progmodes/idlwave.el (class): Restore still useful declaration.
15252
15253 2009-12-03 Alan Mackenzie <acm@muc.de>
15254
15255 Enhance `c-parse-state' to run efficiently in "brace deserts".
15256
15257 * progmodes/cc-mode.el (c-basic-common-init):
15258 Call c-state-cache-init.
15259 (c-neutralize-syntax-in-and-mark-CPP): Rename from
15260 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
15261 placing `category' properties value 'c-cpp-delimiter at its boundaries.
15262
15263 * progmodes/cc-langs.el (c-before-font-lock-function):
15264 c-extend-and-neutralize-syntax-in-CPP has been renamed
15265 c-neutralize-syntax-in-and-mark-CPP.
15266
15267 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
15268 with `category' properties now, not `syntax-table' ones.
15269
15270 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
15271 enhanced (but slower) version of c-end-of-macro that won't land
15272 inside a literal or on another awkward character.
15273 (c-state-cache-too-far, c-state-cache-start)
15274 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
15275 (c-state-nonlit-pos-cache-limit, c-state-point-min)
15276 (c-state-point-min-lit-type, c-state-point-min-lit-start)
15277 (c-state-min-scan-pos, c-state-brace-pair-desert)
15278 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
15279 buffer local variables.
15280 (c-state-literal-at, c-state-lit-beg)
15281 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
15282 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
15283 (c-state-cache-top-paren, c-state-cache-after-top-paren)
15284 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
15285 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
15286 (c-renarrow-state-cache)
15287 (c-append-lower-brace-pair-to-state-cache)
15288 (c-state-push-any-brace-pair, c-append-to-state-cache)
15289 (c-remove-stale-state-cache)
15290 (c-remove-stale-state-cache-backwards, c-state-cache-init)
15291 (c-invalidate-state-cache-1, c-parse-state-1)
15292 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
15293 (c-parse-state): Enhance and refactor.
15294 (c-debug-parse-state): Amend to deal with all the new variables.
15295
15296 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
15297 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
15298 modify to use category text properties rather than syntax-table ones.
15299 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
15300 to switch off/on the syntactic paren property of C++ template
15301 delimiters using the category property.
15302 (c-with-<->-as-parens-suppressed): Macro to invoke code with
15303 template delims suppressed.
15304 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
15305 New constant/macros which apply category properties to the start
15306 and end of preprocessor constructs.
15307 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
15308 "comment out" the syntactic value of characters in preprocessor
15309 constructs.
15310 (c-with-cpps-commented-out)
15311 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
15312 with characters in all or all but one preprocessor constructs
15313 "commented out".
15314
15315 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15316
15317 * proced.el (proced-filter-alist): Use regexp-quote.
15318
15319 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
15320
15321 Cleanup.
15322 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
15323 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
15324 arguments. Expand `default-directory'.
15325
15326 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
15327 the benefit of returning an expanded localname.
15328 (tramp-tramp-file-p): Handle the case NAME is not a string.
15329
15330 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15331
15332 Add support for bzr shelve/unshelve.
15333 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
15334 (vc-bzr-extra-menu-map): New variables.
15335 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
15336 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
15337 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
15338 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
15339 (vc-bzr-dir-extra-headers): Display shelves.
15340
15341 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
15342
15343 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15344
15345 * textmodes/bibtex.el (bibtex-complete-internal):
15346 Use completion-in-region.
15347 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
15348
15349 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15350
15351 Support applying stashes. Improve UI.
15352 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
15353 (vc-git-stash-apply, vc-git-stash-pop)
15354 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
15355 (vc-git-stash-menu): New functions.
15356 (vc-git-stash-menu-map): New variable.
15357 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
15358
15359 2009-12-03 Glenn Morris <rgm@gnu.org>
15360
15361 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
15362 (vc-print-log-internal): Fix previous change.
15363 (vc-revert): Correct pluralization.
15364
15365 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15366
15367 * progmodes/make-mode.el (makefile-special-targets-list): No need for
15368 it to be an alist any more.
15369 (makefile-complete): Use completion-in-region.
15370
15371 * progmodes/octave-mod.el (octave-complete-symbol):
15372 Use completion-in-region.
15373
15374 Misc cleanup.
15375 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
15376 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
15377 (idlwave-complete-class): Don't quote lambda.
15378 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
15379 (idlwave-mode-map): Move initialization into declaration.
15380 (idlwave-action-and-binding): Use backquotes.
15381 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
15382 Simplify.
15383 (idlwave-is-pointer-dereference): Remove unused var `pos'.
15384 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
15385 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
15386 `parts', and `all-parts'.
15387 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
15388 (idlwave-convert-xml-system-routine-info): Remove unused string
15389 `version-string'.
15390 (idlwave-display-user-catalog-widget): Use dolist.
15391 (idlwave-scanning-lib): Declare dynamically-scoped var.
15392 (idlwave-scan-library-catalogs): Remove unused var `flags'.
15393 (completion-highlight-first-word-only): Declare to silence bytecomp.
15394 (idlwave-popup-select): Tighten scope of `resp'.
15395 (idlwave-find-struct-tag): Remove unused var `beg'.
15396 (idlwave-after-load-rinfo-hook): Declare.
15397 (idlwave-sintern-class-info): Remove unused var `taglist'.
15398 (idlwave-find-class-definition): Remove unused var `list'.
15399 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
15400 (idlwave-what-module-find-class): Remove unused var `classes'.
15401
15402 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
15403
15404 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
15405
15406 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15407
15408 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
15409 buffers visited. Remove redundant current-buffer-saving.
15410
15411 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15412
15413 Use completion-in-buffer and remove uses of dynamic scoping.
15414 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
15415 (pascal-buffer-to-use, pascal-flag): Don't declare.
15416 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
15417 (pascal-get-completion-decl, pascal-keyword-completion):
15418 Add `pascal-str' argument, save-excursion,
15419 return the found completions, and don't filter with pascal-pred.
15420 (pascal-completion-cache): New var.
15421 (pascal-completion): Don't switch buffer any more (it was never
15422 necessary). Don't save-excursion any more (it's done by the called
15423 subroutines). Use a cache to avoid redundant computations.
15424 Use complete-with-action rather than pascal-completion-response and
15425 let it apply the predicate as well.
15426 (pascal-complete-word): Use completion-in-buffer when
15427 pascal-toggle-completions is nil.
15428 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
15429 not used any more.
15430 (pascal-comp-defun): Don't change buffer any more.
15431 Use complete-with-action rather than pascal-completion-response and
15432 let it apply the predicate as well.
15433 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
15434 when neded.
15435
15436 2009-12-02 Kenichi Handa <handa@m17n.org>
15437
15438 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
15439 shape for all Indic scripts.
15440
15441 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15442
15443 Use completion-in-buffer.
15444 * wid-edit.el (widget-field-text-end): New function.
15445 (widget-field-value-get): Use it.
15446 (widget-string-complete, widget-file-complete)
15447 (widget-color-complete): Use it and completion-in-region.
15448 (widget-complete): Don't narrow the buffer.
15449
15450 2009-12-02 Glenn Morris <rgm@gnu.org>
15451
15452 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
15453 (rmail-select-summary): Use rmail-pop-to-buffer.
15454 * mail/rmailsum.el: Replace all pop-to-buffer calls with
15455 rmail-pop-to-buffer, to prevent horizontal splits.
15456
15457 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
15458 save-excursion with save-current-buffer.
15459 Widen before searching. (Bug#5093)
15460 (diary-list-sexp-entries): Remove superfluous save-excursion.
15461
15462 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
15463
15464 * woman.el (woman-make-bufname): Handle man-pages with "." in the
15465 name. (Bug#5038)
15466
15467 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
15468
15469 * ido.el (ido-file-internal): Handle filenames at point that do
15470 not have a directory part. (Bug#5049)
15471
15472 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
15473
15474 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
15475 (mpc-songs-jump-to, mpc-resume): Doc fixes.
15476
15477 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
15478
15479 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
15480 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
15481 any more.
15482
15483 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15484
15485 * comint.el (comint-insert-input): Ignore clicks to the right of
15486 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
15487
15488 * vc.el (vc-print-log-internal): Don't wait for the process to
15489 terminate before setting up the major mode.
15490
15491 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
15492 in case.
15493
15494 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
15495 the last element.
15496
15497 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
15498
15499 2009-12-01 Glenn Morris <rgm@gnu.org>
15500
15501 * window.el (window--display-buffer-2): Fix previous changes.
15502
15503 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
15504
15505 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
15506
15507 2009-12-01 Glenn Morris <rgm@gnu.org>
15508
15509 * Makefile.in (ELCFILES): Add mpc.elc.
15510
15511 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15512
15513 * mpc.el: New file.
15514
15515 2009-12-01 Glenn Morris <rgm@gnu.org>
15516
15517 * window.el (window-to-use): Define for compiler.
15518
15519 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
15520 consistent with others (no final period).
15521
15522 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
15523 (rmail-mime-show): Downcase the encoding. (Bug#5070)
15524
15525 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
15526
15527 Make vc-print-log buttons work.
15528 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
15529
15530 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
15531
15532 * savehist.el (savehist-autosave-interval): Allow setting to nil
15533 through customize. (Bug#5056)
15534
15535 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
15536
15537 Fix references to jit-lock properties.
15538 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
15539 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
15540 (perl-font-lock-special-syntactic-constructs):
15541 Quote jit-lock-defer-multiline property.
15542
15543 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
15544
15545 * vc-git.el (vc-git-registered): Call vc-git-root only once.
15546
15547 2009-11-30 Juri Linkov <juri@jurta.org>
15548
15549 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
15550 value `buffer' of `multi-isearch-next-buffer-current-function'.
15551 Use `(current-buffer)' when `buffer' is nil.
15552 (multi-isearch-next-buffer-from-list): Don't fallback to
15553 `(current-buffer)' when `buffer' is nil. (Bug#4947)
15554
15555 2009-11-30 Juri Linkov <juri@jurta.org>
15556
15557 * misearch.el (multi-isearch-read-buffers): Move canonicalization
15558 of buffers with `get-buffer' to `multi-isearch-buffers'.
15559 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15560 Canonicalize BUFFERS with `get-buffer'. Doc fix.
15561 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
15562 FILES with `expand-file-name' converting relative file names
15563 to absolute. Doc fix. (Bug#4727)
15564
15565 2009-11-30 Juri Linkov <juri@jurta.org>
15566
15567 * misearch.el (multi-isearch-read-buffers)
15568 (multi-isearch-read-matching-buffers): New functions.
15569 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15570 Use them in the `interactive' spec. Doc fix.
15571 (multi-isearch-read-files, multi-isearch-read-matching-files):
15572 New functions.
15573 (multi-isearch-files, multi-isearch-files-regexp):
15574 Use them in the `interactive' spec. Doc fix. (Bug#4725)
15575
15576 2009-11-30 Juri Linkov <juri@jurta.org>
15577
15578 * doc-view.el (doc-view-continuous):
15579 Rename from `doc-view-continuous-mode'.
15580 (doc-view-menu): Move "Toggle display" to the top.
15581 Add submenu "Continuous" with radio buttons "Off"/"On"
15582 and "Save as Default".
15583 (doc-view-scroll-up-or-next-page)
15584 (doc-view-scroll-down-or-previous-page)
15585 (doc-view-next-line-or-next-page)
15586 (doc-view-previous-line-or-previous-page):
15587 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
15588
15589 2009-11-30 Juri Linkov <juri@jurta.org>
15590
15591 * comint.el (comint-mode-map): Rebind `M-r' from
15592 `comint-previous-matching-input' to
15593 `comint-history-isearch-backward-regexp'.
15594 Unbind `M-s' to allow global key binding `M-s'.
15595 Add menu items for `comint-history-isearch-backward' and
15596 `comint-history-isearch-backward-regexp'. (Bug#3746)
15597
15598 2009-11-30 Juri Linkov <juri@jurta.org>
15599
15600 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
15601 For def=recenter, replace `recenter' with `recenter-top-bottom'
15602 that is called with `this-command' and `last-command' let-bound
15603 to `recenter-top-bottom'. When the last `def' was not `recenter',
15604 set `recenter-last-op' to nil. (Bug#4981)
15605
15606 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
15607
15608 Minor cleanup and simplification.
15609 * filecache.el (file-cache-add-directory)
15610 (file-cache-add-directory-recursively)
15611 (file-cache-add-from-file-cache-buffer)
15612 (file-cache-delete-file-regexp, file-cache-delete-directory)
15613 (file-cache-files-matching-internal, file-cache-display): Use dolist.
15614 (file-cache-temp-minibuffer-message): Delete function.
15615 (file-cache-minibuffer-complete): Use minibuffer-message instead.
15616
15617 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
15618 Don't signal an error when bumping into EOB in tr, s, or y.
15619
15620 2009-11-29 Juri Linkov <juri@jurta.org>
15621
15622 * startup.el (fancy-about-text): Fix wording of Guided Tour.
15623 (Bug#4960)
15624
15625 * descr-text.el (describe-char-unidata-list): Use lowercase name
15626 for "Unicode name" like in other tags.
15627
15628 2009-11-29 Juri Linkov <juri@jurta.org>
15629
15630 * ediff-util.el (ediff-minibuffer-with-setup-hook):
15631 New compatibility macro.
15632 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
15633
15634 2009-11-29 Juri Linkov <juri@jurta.org>
15635
15636 Add defcustom to define the cycling order of `recenter-top-bottom'.
15637 (Bug#4981)
15638
15639 * window.el (recenter-last-op): Doc fix.
15640 (recenter-positions): New defcustom.
15641 (recenter-top-bottom): Rewrite to use `recenter-positions'.
15642 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
15643
15644 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
15645
15646 Improve integration of Tramp and ange-ftp in eshell.
15647
15648 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
15649 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
15650 (eshell/sudo): Flatten args. Let-bind `default-directory'.
15651
15652 * eshell/esh-util.el (top): Require also Tramp when compiling.
15653 (eshell-directory-files-and-attributes): Check for FTP remote
15654 connection.
15655 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
15656 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
15657 (eshell-file-attributes): Handle ".". Return `entry'.
15658
15659 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
15660 (ange-ftp-directory-files-and-attributes)
15661 (ange-ftp-real-directory-files-and-attributes): New defuns.
15662
15663 * net/tramp.el (tramp-maybe-open-connection): Open the remote
15664 shell with "exec" when possible. This prevents trailing prompts
15665 in `start-file-process'.
15666
15667 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15668
15669 Try and remove assumptions about point-min==1.
15670 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
15671 (rng-compute-mode-line-string): Show the validation percentage in
15672 terms of the narrowed text, not the widened text.
15673 (rng-do-some-validation): Don't catch internal errors when debugging.
15674 (rng-first-error): Simplify.
15675 (rng-after-change-function): Remove work around. AFAIK the bug has
15676 been fixed a while ago.
15677
15678 * image-mode.el (image-minor-mode): Exit more gracefully when the image
15679 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
15680
15681 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
15682
15683 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
15684 `cd' doesn't always do it for us (bug#5067).
15685
15686 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
15687 on 2009-10-25 as part of some other change (bug#5067).
15688
15689 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15690
15691 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
15692 `suspicious'.
15693 (byte-compile-warnings): Use byte-compile-warning-types.
15694 (byte-compile-save-excursion): Warn about use of set-buffer right
15695 after save-excursion.
15696
15697 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
15698 the excursion as well.
15699
15700 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
15701
15702 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
15703 providing a Tramp related implementation of "su" and "sudo".
15704 (eshell-unix-initialize): Add "su" and "sudo".
15705
15706 2009-11-27 Daiki Ueno <ueno@unixuser.org>
15707
15708 * net/socks.el (socks-send-command): Convert binary request to
15709 unibyte before sending. This fixes mishandling of some port
15710 numbers such as 129.
15711
15712 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15713
15714 * help.el (describe-bindings-internal): Remove `interactive'.
15715
15716 * man.el (Man-completion-table): Trim a terminating "(".
15717 Remove the space between name page a section.
15718 Add the command's description on the `help-echo' property.
15719 Remove `process-connection-type' binding since it's unused by
15720 call-process.
15721 Provide completion for the "<section> <name>" format as well.
15722 (Man-default-man-entry): Remove spurious var shadowing the argument.
15723
15724 2009-11-26 Kevin Ryde <user42@zip.com.au>
15725
15726 * log-view.el: Add "Keywords: tools", since its other keywords
15727 aren't in finder-known-keywords, and following vc.el.
15728
15729 * sha1.el (sha1-string-external): default-directory "/" in case
15730 otherwise non-existent. process-connection-type pipe for touch of
15731 efficiency recommended by elisp manual. (An aside in Bug#3911.)
15732
15733 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
15734
15735 Misc coding convention cleanups.
15736 * htmlfontify.el (hfy-init-kludge-hook): Rename from
15737 hfy-init-kludge-hooks.
15738 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
15739 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
15740 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
15741 and push.
15742 (hfy-slant, hfy-weight): Use tables rather than code.
15743 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
15744 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
15745 (hfy-face-attr-for-class): Initialize `face-spec' directly.
15746 (hfy-face-to-css): Remove `nconc' with single arg.
15747 (hfy-p-to-face-lennart): Use `or'.
15748 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
15749 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
15750 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
15751 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
15752 (hfy-force-fontification): Use run-hooks.
15753
15754 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
15755
15756 Various minor fixes.
15757 * htmlfontify.el (hfy-default-header): Add toggle_invis since
15758 Javascript belongs in the header, not the body.
15759 (hfy-javascript): Remove.
15760 (hfy-fontify-buffer): Don't insert it any more.
15761 (hfy-face-at): Handle (face0 face1 face2) style face properties.
15762 Fix bug in invis handling when there were no invis props in a chunk.
15763
15764 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
15765
15766 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
15767
15768 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
15769
15770 * finder.el (finder-mode-map): Add a menu.
15771
15772 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
15773
15774 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
15775 "unsigned" structs.
15776
15777 (verilog-leap-to-head, verilog-backward-token): Handle "disable
15778 fork" statement better.
15779
15780 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
15781
15782 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
15783 (verilog-delete-auto, verilog-delete-empty-auto-pair)
15784 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
15785 Reported by Clay Douglass.
15786
15787 (verilog-auto-inst, verilog-auto-star-safe)
15788 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
15789 Fix removing "// Interfaces" when saving .* expansions.
15790 Reported by Pierre-David Pfister.
15791
15792 2009-11-26 Glenn Morris <rgm@gnu.org>
15793
15794 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
15795 the scope.
15796
15797 2009-11-25 Johan Bockgård <bojohan@gnu.org>
15798
15799 * vc-annotate.el (vc-annotate-revision-previous-to-line):
15800 Really use previous revision.
15801
15802 2009-11-25 Kevin Ryde <user42@zip.com.au>
15803
15804 * man.el (Man-completion-table): default-directory "/" in case
15805 doesn't otherwise exist. process-environment COLUMNS=999 so as
15806 not to truncate long names. process-connection-type pipe to avoid
15807 any chance of hitting the pseudo-tty TIOCGWINSZ.
15808 (man): completion-ignore-case t for friendliness and since man
15809 itself is case-insensitive on the command line.
15810 Further to Bug#3717.
15811
15812 * arc-mode.el: Add "Keywords: files", so the details in its
15813 commentary can be reached from finder-by-keyword.
15814 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
15815 editing mode, but it's comms related and sgml-mode.el has "comm"
15816 on that basis too.
15817 * textmodes/bibtex-style.el: Add "Keywords: tex".
15818 * international/isearch-x.el, international/ja-dic-cnv.el:
15819 * international/ja-dic-utl.el, international/kkc.el:
15820 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
15821
15822 2009-11-25 Juri Linkov <juri@jurta.org>
15823
15824 * man.el (Man-completion-table): Modify regexp to include
15825 section names to completion strings. (Bug#3717)
15826
15827 2009-11-25 Juri Linkov <juri@jurta.org>
15828
15829 Search recursively in gzipped files. (Bug#4982)
15830
15831 * progmodes/grep.el (grep-highlight-matches): Add new options
15832 `always' and `auto'. Doc fix.
15833 (grep-process-setup): Check `grep-highlight-matches' for
15834 `auto-detect' to determine the need to compute grep defaults.
15835 Move Windows/DOS specific --colors settings handling
15836 to `grep-compute-defaults'. Check `grep-highlight-matches'
15837 to get the value of "--color=".
15838 (grep-compute-defaults): Compute `grep-highlight-matches' when it
15839 has the value `auto-detect'. Move Windows/DOS specific settings
15840 from `grep-process-setup'.
15841 (zrgrep): New command with alias `rzgrep'.
15842
15843 2009-11-25 Juri Linkov <juri@jurta.org>
15844
15845 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
15846 to nil instead of switching off view-mode. (Bug#4896)
15847
15848 2009-11-25 Juri Linkov <juri@jurta.org>
15849
15850 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
15851
15852 * mwheel.el (mwheel-scroll-up-function)
15853 (mwheel-scroll-down-function): New defvars.
15854 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
15855 `scroll-up', and `mwheel-scroll-down-function' instead of
15856 `scroll-down'.
15857
15858 * doc-view.el (doc-view-scroll-up-or-next-page)
15859 (doc-view-scroll-down-or-previous-page): Add optional ARG.
15860 Use this ARG in the call to image-scroll-up/image-scroll-down.
15861 Change `interactive' spec to "P". Goto next/previous page only
15862 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
15863 SPC/DEL case). Doc fix.
15864 (doc-view-next-line-or-next-page)
15865 (doc-view-previous-line-or-previous-page): Rename arg to ARG
15866 for consistency.
15867 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
15868 `doc-view-scroll-up-or-next-page', and buffer-local
15869 `mwheel-scroll-down-function' to
15870 `doc-view-scroll-down-or-previous-page'.
15871
15872 2009-11-25 Juri Linkov <juri@jurta.org>
15873
15874 Provide additional default values (directories at other Dired
15875 windows) via M-n in the minibuffer of some Dired commands.
15876
15877 * dired-aux.el (dired-diff, dired-compare-directories)
15878 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
15879 `minibuffer-default' in `minibuffer-with-setup-hook'.
15880 (dired-dwim-target-directory): Find a window that displays Dired
15881 buffer instead of failing when the next window is not Dired.
15882 Use `get-window-with-predicate' to find for the next Dired window.
15883 (dired-dwim-target-defaults): New function.
15884
15885 * ediff-util.el (ediff-read-file-name):
15886 Use `dired-dwim-target-defaults' to set `minibuffer-default'
15887 in `minibuffer-with-setup-hook'.
15888
15889 2009-11-25 Juri Linkov <juri@jurta.org>
15890
15891 Provide additional default values (file name at point or at the
15892 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
15893
15894 * minibuffer.el (read-file-name-defaults): New function.
15895 (read-file-name): Reset `minibuffer-default' to nil when
15896 it duplicates initial input `insdef'.
15897 Bind `minibuffer-default-add-function' to lambda that
15898 calls `read-file-name-defaults' in `minibuffer-selected-window'.
15899 (minibuffer-insert-file-name-at-point): New command.
15900
15901 * files.el (file-name-at-point-functions): New defcustom.
15902 (find-file-default): Remove defvar.
15903 (find-file-read-args): Don't use `find-file-default'.
15904 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
15905 to `read-file-name'.
15906 (find-file-literally): Use `read-file-name' with
15907 `confirm-nonexistent-file-or-buffer'.
15908
15909 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
15910
15911 * dired.el (dired-read-dir-and-switches):
15912 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
15913 to `read-file-name'.
15914 (dired-file-name-at-point): New function.
15915 (dired-mode): Add hook `dired-file-name-at-point' to
15916 `file-name-at-point-functions'.
15917
15918 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
15919
15920 Really make the *Completions* window soft-dedicated (bug#5030).
15921 * window.el (window--display-buffer-2): Add `dedicated' argument.
15922 (display-buffer): Pass it when needed so the dedicated flag is set
15923 after calling set-window-buffer, which would otherwise reset it.
15924
15925 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
15926
15927 * progmodes/meta-mode.el (meta-complete-symbol):
15928 * progmodes/etags.el (complete-tag):
15929 * mail/mailabbrev.el (mail-abbrev-complete-alias):
15930 Use completion-in-region.
15931
15932 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
15933 (dabbrev-completion): Use completion-in-region.
15934 (dabbrev--abbrev-at-point): Simplify regexp.
15935
15936 * abbrev.el (abbrev--before-point): Use word-motion functions
15937 if :regexp is not specified (bug#5031).
15938
15939 * subr.el (string-prefix-p): New function.
15940
15941 * man.el (Man-completion-cache): New var.
15942 (Man-completion-table): Use it.
15943
15944 * vc.el (vc-print-log-internal): Make `limit' optional for better
15945 compatibility (e.g. with vc-annotate.el).
15946
15947 2009-11-24 Kevin Ryde <user42@zip.com.au>
15948
15949 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
15950 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
15951
15952 * emacs-lisp/elint.el (elint-add-required-env): Better error message
15953 when .el source file not found or other error.
15954
15955 2009-11-24 Markus Triska <markus.triska@gmx.at>
15956
15957 * linum.el (linum-update-window): Ignore intangible (bug#4996).
15958
15959 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
15960
15961 Handle the [back] button properly (bug#4979).
15962 * descr-text.el (describe-text-properties): Add a `buffer' argument.
15963 Use help-setup-xref, help-buffer, and with-help-window.
15964 (describe-char): Add `buffer' argument.
15965 Pass proper command to help-setup-xref. Don't meddle with
15966 help-xref-stack-item directly.
15967 (describe-text-category): Use with-help-window and help-buffer.
15968
15969 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
15970 for the displayed buffer (bug#4887).
15971
15972 * man.el (Man-completion-table): New function.
15973 (man): Use it.
15974
15975 2009-11-24 David Reitter <david.reitter@gmail.com>
15976
15977 * vc-git.el (vc-git-registered): Use checkout directory (where
15978 .git is) rather than the file's directory and a relative path spec
15979 to work around a bug in git.
15980
15981 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
15982
15983 Improve handling of processes on remote hosts.
15984
15985 * eshell/esh-util.el (eshell-path-env): New defvar.
15986 (eshell-parse-colon-path): New defun.
15987 (eshell-file-attributes): Use `eshell-parse-colon-path'.
15988
15989 * eshell/esh-ext.el (eshell-search-path):
15990 Use `eshell-parse-colon-path'.
15991 (eshell-remote-command): Remove argument HANDLER.
15992 (eshell-external-command): Check for FTP remote connection.
15993
15994 * eshell/esh-proc.el (eshell-gather-process-output):
15995 Use `file-truename', in order to start also symlinked files.
15996 Apply `start-file-process' instead of `start-process'.
15997 Shorten `command' to the local file name part.
15998
15999 * eshell/em-cmpl.el (eshell-complete-commands-list):
16000 Use `eshell-parse-colon-path'.
16001
16002 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
16003
16004 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
16005 to `eshell-directory-change-hook'.
16006
16007 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
16008
16009 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
16010 because it could be enabled automatically if view-read-only is non-nil.
16011
16012 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
16013
16014 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
16015 made on 2009-11-22.
16016
16017 2009-11-24 Glenn Morris <rgm@gnu.org>
16018
16019 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
16020 deleted variable bookmark-bmenu-bookmark-column.
16021
16022 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
16023
16024 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
16025
16026 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
16027
16028 * net/browse-url.el (browse-url-filename-alist): On Windows, add
16029 two slashes to the "file:" prefix.
16030 (browse-url-file-url): De-munge Cygwin filenames before passing
16031 them to Windows browser.
16032 (browse-url-default-windows-browser): Use call-process.
16033
16034 2009-11-23 Juri Linkov <juri@jurta.org>
16035
16036 Implement DocView Continuous mode. (Bug#4896)
16037 * doc-view.el (doc-view-continuous-mode): New defcustom.
16038 (doc-view-mode-map): Bind C-n/<down> to
16039 `doc-view-next-line-or-next-page', C-p/<up> to
16040 `doc-view-previous-line-or-previous-page'.
16041 (doc-view-next-line-or-next-page)
16042 (doc-view-previous-line-or-previous-page): New commands.
16043
16044 2009-11-23 Juri Linkov <juri@jurta.org>
16045
16046 Implement Isearch in comint input history. (Bug#3746)
16047 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
16048 `isearch-mode-hook'.
16049 (comint-history-isearch): New defcustom.
16050 (comint-history-isearch-backward)
16051 (comint-history-isearch-backward-regexp): New commands.
16052 (comint-history-isearch-message-overlay): New buffer-local variable.
16053 (comint-history-isearch-setup, comint-history-isearch-end)
16054 (comint-goto-input, comint-history-isearch-search)
16055 (comint-history-isearch-message, comint-history-isearch-wrap)
16056 (comint-history-isearch-push-state)
16057 (comint-history-isearch-pop-state): New functions.
16058
16059 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
16060
16061 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
16062 return.
16063 (tramp-handle-make-symbolic-link)
16064 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
16065 Quote file names.
16066 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
16067 (tramp-handle-process-file): Use it.
16068
16069 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
16070
16071 * window.el (move-to-window-line-last-op): Remove.
16072 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
16073
16074 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
16075
16076 Make M-r mirror the new cycling behavior of C-l.
16077 * window.el (move-to-window-line-last-op): New var.
16078 (move-to-window-line-top-bottom): New command.
16079 (global-map): Bind M-r move-to-window-line-top-bottom.
16080
16081 2009-11-23 Sven Joachim <svenjoac@gmx.de>
16082
16083 * dired-x.el (dired-guess-shell-alist-default):
16084 Support xz format. (Bug#4953)
16085
16086 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
16087
16088 * emulation/viper-cmd.el: Use viper-last-command-char instead of
16089 last-command-char/last-command-event.
16090 (viper-prefix-arg-value): Do correct conversion of event-char for
16091 XEmacs.
16092
16093 * emulation/viper-util.el, emulation/viper.el:
16094 Use viper-last-command-char instead of
16095 last-command-char/last-command-event.
16096
16097 * ediff-init.el, ediff-mult.el, ediff-util.el:
16098 Replace last-command-char and last-command-event
16099 with (ediff-last-command-char) everywhere.
16100
16101 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
16102 created in fundamental mode.
16103
16104 * ediff.el (ediff-version): Revert the change of interactive-p to
16105 called-interactively-p.
16106
16107 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
16108
16109 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
16110 generation from word-movement command names.
16111
16112 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
16113
16114 * cus-start.el (all): Add native condition for font-use-system-font.
16115
16116 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
16117
16118 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
16119 Correct the patch from 2009-11-18. (Bug#3910)
16120
16121 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
16122
16123 * progmodes/subword.el: Rename from lisp/subword.el.
16124
16125 * subword.el: Rename to progmodes/subword.el.
16126
16127 * Makefile.in (ELCFILES): Adapt to subword.el move.
16128
16129 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16130 Stefan Monnier <monnier@iro.umontreal.ca>
16131
16132 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
16133 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
16134 (bookmark-bmenu-show-filenames): Use push.
16135 (bookmark-bmenu-hide-filenames): Use local var instead of
16136 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
16137 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
16138 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
16139 filenames now that the bookmark names are always available.
16140
16141 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16142
16143 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
16144 (bookmark-search-pattern): Move and leave unbound.
16145 (bookmark-bmenu-mode-map): Change binding.
16146 (bookmark-read-search-input): Simplify.
16147 Don't use text-char-description. Don't error on non-char events.
16148 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
16149 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
16150 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
16151 Use a local var for the timer.
16152 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
16153 (i.e. bookmark-bmenu-search).
16154
16155 2009-11-21 Glenn Morris <rgm@gnu.org>
16156
16157 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
16158
16159 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
16160
16161 * net/browse-url.el (browse-url-default-windows-browser):
16162 Use cygstart for cygwin.
16163
16164 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
16165
16166 * bookmark.el: Formatting and doc fixes only:
16167 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
16168 (bookmark-bmenu-search): Wrap to fit within 80 columns.
16169 Minor grammar and punctuation fixes in doc string.
16170 (bookmark-read-search-input): Adjust to fit within 80 columns.
16171
16172 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16173
16174 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
16175 (c-backward-into-nomenclature): Adapt to subword renaming.
16176
16177 * subword.el (subword-forward, subword-backward, subword-mark)
16178 (subword-kill, subword-backward-kill, subword-transpose)
16179 (subword-downcase, subword-upcase, subword-capitalize)
16180 (subword-forward-internal, subword-backward-internal):
16181 Rename from forward-subword, backward-subword, mark-subword,
16182 kill-subword, backward-kill-subword, transpose-subwords,
16183 downcase-subword, upcase-subword, capitalize-subword,
16184 forward-subword-internal, backward-subword-internal.
16185
16186 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16187
16188 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
16189 New options.
16190 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
16191 New vars.
16192 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
16193 (bookmark-bmenu-filter-alist-by-regexp)
16194 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
16195 (bookmark-bmenu-search): New command.
16196 (bookmark-bmenu-mode-map): Bind it.
16197
16198 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16199
16200 * progmodes/cc-cmds.el: declare-functioned forward-subword and
16201 backward-subword to quit the byte-compiler.
16202
16203 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
16204
16205 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
16206
16207 * progmodes/cc-cmds.el (c-update-modeline)
16208 (c-forward-into-nomenclature, c-backward-into-nomenclature):
16209 Refer to subword.el functions instead of cc-subword.el.
16210
16211 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
16212 subword.el functions instead of cc-subword.el.
16213
16214 * progmodes/cc-subword.el: Rename to subword.el.
16215 * subword.el: Rename from progmodes/cc-subword.el.
16216 (subword-mode-map): Rename from c-subword-mode-map.
16217 (subword-mode): Rename from c-subword-mode.
16218 (global-subword-mode): New global minor mode.
16219 (forward-subword): Rename from c-forward-subword.
16220 (backward-subword): Rename from c-backward-subword.
16221 (mark-subword): Rename from c-mark-subword.
16222 (kill-subword): Rename from c-kill-subword.
16223 (backward-kill-subword): Rename from c-backward-kill-subword.
16224 (transpose-subwords): Rename from c-tranpose-subword.
16225 (downcase-subword): Rename from c-downcase-subword.
16226 (capitalize-subword): Rename from c-capitalize-subword.
16227 (forward-subword-internal): Rename from c-forward-subword-internal.
16228 (backward-subword-internal): Rename from c-backward-subword-internal.
16229
16230 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
16231
16232 * vc.el (vc-deduce-fileset): Allow non-state changing operations
16233 from a dired buffer.
16234 (vc-dired-deduce-fileset): New function.
16235 (vc-root-diff, vc-print-root-log): Use it.
16236
16237 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
16238 nil LIMIT argument to vc-print-log-internal.
16239
16240 2009-11-20 Glenn Morris <rgm@gnu.org>
16241
16242 * Makefile.in (ELCFILES): Regenerate.
16243
16244 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
16245
16246 * calc/calc.el (calc-set-mode-line):
16247 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16248 (math-format-number): Rename `math-format-complement-signed' to
16249 `math-format-twos-complement'.
16250
16251 * calc/calc-bin.el (math-format-twos-complement): Rename from
16252 math-format-complement-signed.
16253 (calc-radix): Rename `calc-complement-signed-mode' to
16254 `calc-twos-complement-mode'.
16255 (calc-octal-radix, calc-hex-radix): Add an argument for
16256 two's complement.
16257
16258 * calc/calc-embed.el (calc-embedded-mode-vars):
16259 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16260
16261 * calc/calc-ext.el (calc-init-extensions):
16262 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16263 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
16264
16265 * calc/calc-units.el (math-build-units-table-buffer):
16266 Let `calc-twos-complement-mode' be nil.
16267
16268 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
16269 entries.
16270
16271 * calc/calc-vec.el (calcFunc-vunpack):
16272 * calc/calc-aent.el (calc-do-calc-eval):
16273 * calc/calc-forms.el (math-format-date):
16274 * calc/calc-graph.el (calc-graph-plot):
16275 * calc/calc-math.el (math-use-emacs-fn):
16276 * calc/calccomp.el (math-compose-expr):
16277 Let `calc-twos-complement-mode' be nil.
16278
16279 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16280
16281 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
16282 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
16283 * minibuffer.el (completion-in-region-functions): New hook.
16284 (completion-in-region): New function.
16285 * emacs-lisp/lisp.el (lisp-complete-symbol):
16286 * pcomplete.el (pcomplete-std-complete): Use it.
16287
16288 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16289
16290 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
16291 (latex-complete-alist): New vars.
16292 (latex-string-prefix-p, latex-complete-bibtex-keys)
16293 (latex-complete-envnames, latex-complete-refkeys)
16294 (latex-complete-data): New functions.
16295 (latex-complete, latex-indent-or-complete): New commands.
16296
16297 * window.el (display-buffer-mark-dedicated): New var.
16298 (display-buffer): Obey it.
16299 * minibuffer.el (minibuffer-completion-help): Use it.
16300
16301 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
16302
16303 * filecache.el (file-cache-add-file): Use push and cons.
16304 (file-cache-delete-file-regexp): Use push.
16305 (file-cache-complete): Use completion-in-region.
16306
16307 * simple.el (with-wrapper-hook): Fix thinko.
16308
16309 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
16310 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
16311 Use with-current-buffer and string-to-number.
16312 (hfy-fallback-colour-values): Use assoc-string.
16313 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
16314 (hfy-face-at): Remove unused var `found-face'.
16315 (hfy-compile-stylesheet): Remove unused var `css'.
16316 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
16317 and `orig-buffer'.
16318 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
16319 Use with-current-buffer.
16320 (hfy-text-p): Use expand-file-name and fewer setq.
16321
16322 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
16323
16324 * htmlfontify.el, hfy-cmap.el: New files.
16325
16326 2009-11-19 Juri Linkov <juri@jurta.org>
16327
16328 * minibuffer.el (completions-format): New defcustom.
16329 (completion--insert-strings): Implement vertical format.
16330
16331 * simple.el (switch-to-completions): Move point to the first
16332 completion when point was at the beginning of the buffer.
16333
16334 2009-11-19 Juri Linkov <juri@jurta.org>
16335
16336 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
16337
16338 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
16339
16340 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
16341
16342 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
16343 (mail-signature): Change default to t.
16344 (mail-from-style): Deprecate `system-default' value.
16345 (mail-insert-from-field): For default value of mail-from-style,
16346 default to `angles' unless `angles' needs quoting and `parens'
16347 does not.
16348 (mail-citation-prefix-regexp): Use citation regexp from
16349 message-mode.
16350
16351 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
16352
16353 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
16354 Set variables for computing the prompt for reading password.
16355
16356 2009-11-19 Glenn Morris <rgm@gnu.org>
16357
16358 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
16359
16360 * textmodes/flyspell.el (sgml-lexical-context): Declare.
16361
16362 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
16363 (newsticker-treeview-listwindow-height): Fix custom type.
16364
16365 2009-11-19 Kenichi Handa <handa@m17n.org>
16366
16367 * descr-text.el (describe-char-padded-string): Compose with TAB
16368 only if there's a font for CH.
16369 (describe-char): Fix the condition for detecting a trivial composition.
16370
16371 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
16372
16373 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
16374 more accurate version of the regexp. (Bug#3910)
16375
16376 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
16377
16378 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
16379
16380 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
16381
16382 * font-setting.el (font-use-system-font): Declare for byte-compiler.
16383 (font-setting-change-default-font): Fix typo in docstring.
16384
16385 2009-11-18 Alan Mackenzie <acm@muc.de>
16386
16387 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
16388
16389 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16390
16391 * font-setting.el (font-use-system-font): Move ...
16392
16393 * cus-start.el (all): ... to here.
16394
16395 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
16396
16397 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
16398 Don't set `ad-return-value' if `ad-do-it' doesn't.
16399
16400 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
16401 modification time.
16402
16403 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16404
16405 * menu-bar.el: Put "Use system font" in Option-menu.
16406 (menu-bar-options-save): Add font-use-system-font.
16407
16408 * loadup.el: If feature system-font-setting or font-render-setting is
16409 there, load font-setting.
16410
16411 * Makefile.in (ELCFILES): Add font-settings.el.
16412 * font-setting.el: New file.
16413
16414 2009-11-17 Glenn Morris <rgm@gnu.org>
16415
16416 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
16417
16418 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
16419 Preserve point in the list buffer. (Bug#4939)
16420 Use point-at-eol.
16421 (newsticker--treeview-list-update-highlight)
16422 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
16423
16424 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16425
16426 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
16427 Remove.
16428
16429 * calc/calc-ext.el (calc-init-extensions): Remove references to
16430 symclip.
16431
16432 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
16433
16434 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
16435 * calc/calc-help.el (calc-b-prefix-help): Remove references to
16436 `calc-symclip'.
16437
16438 2009-11-16 Kevin Ryde <user42@zip.com.au>
16439
16440 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
16441 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
16442
16443 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
16444 (lm-keywords-list): Allow comma-only separator like "foo,bar".
16445 Ignore trailing spaces by omit-nulls to split-string (fixing
16446 regression from Emacs 21 due to the incompatible split-string
16447 change). (Bug #4928.)
16448
16449 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
16450
16451 * vc.el (vc-log-show-limit): Default to 2000.
16452 (vc-print-log-internal): Insert buttons to request more entries
16453 when limiting the output.
16454
16455 * vc-sccs.el (vc-sccs-print-log):
16456 * vc-rcs.el (vc-rcs-print-log):
16457 * vc-cvs.el (vc-cvs-print-log):
16458 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
16459 LIMIT is non-nil.
16460
16461 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
16462
16463 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
16464 error when `tramp-gvfs-dbus-event-vector' is set.
16465 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
16466
16467 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
16468
16469 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
16470
16471 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
16472
16473 * net/dbus.el (dbus-unregister-service): New defun.
16474 (dbus-register-property): Register the handlers of
16475 "org.freedesktop.DBus.Properties" for SERVICE.
16476 (dbus-property-handler): Fix docstring.
16477
16478 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16479
16480 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
16481 Quote doc string reference in defvaralias as it is not in special form.
16482 (byte-compile-output-docform): Doc fix.
16483
16484 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16485
16486 * calc/calc.el (math-2-word-size, math-half-2-word-size)
16487 (calc-complement-signed-mode): New variables.
16488 (calc-set-mode-line): Add indicator for twos-complements.
16489 (math-format-number): Format twos-complement notation.
16490
16491 * calc/calc-bin.el (calc-word-size): Reset the variables
16492 `math-2-word-size' and `math-half-2-word-size'.
16493 (math-format-complement-signed, math-symclip, calcFunc-symclip)
16494 (calc-symclip): New functions.
16495
16496 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
16497
16498 * calc/calc-embed.el (calc-embedded-mode-vars):
16499 Add `calc-complement-signed-mode' to the list of modes.
16500
16501 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
16502 (calc-b-oper-keys): Add `calc-symclip' to list.
16503
16504 * calc/calc-ext.el (math-read-number-fancy): Read complement
16505 signed numbers.
16506 (calc-init-extensions): Add binding for `calc-symclip'.
16507 Add autoload for `calcFunc-symclip' and `calc-symclip'.
16508
16509 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
16510 `calc-symclip'.
16511 (calc-modes-menu): Add item for twos complement mode.
16512
16513 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
16514
16515 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
16516
16517 * register.el (jump-to-register, insert-register): Handle Semantic
16518 tags. From commented-out advice in semantic/senator.el.
16519
16520 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
16521
16522 * vc.el (vc-log-show-limit): New variable.
16523 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
16524 when using a prefix argument.
16525 (vc-print-log-internal): Add new argument LIMIT.
16526
16527 * vc-svn.el (vc-svn-print-log):
16528 * vc-mtn.el (vc-mtn-print-log):
16529 * vc-hg.el (vc-hg-print-log):
16530 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
16531 pass it to the log command when set. Make the BUFFER argument
16532 non-optional.
16533
16534 * vc-sccs.el (vc-sccs-print-log):
16535 * vc-rcs.el (vc-rcs-print-log):
16536 * vc-git.el (vc-git-print-log):
16537 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
16538 ignore it. Make the BUFFER argument non-optional.
16539
16540 * bindings.el (mode-line-buffer-identification): Do not purecopy.
16541
16542 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
16543
16544 * dired.el (dired-mode-map): Move encryption items to "Operate"
16545 menu (Bug#4703).
16546
16547 * strokes.el (strokes-update-window-configuration): Make strokes
16548 buffer current before erasing (Bug#4906).
16549
16550 2009-11-15 Juri Linkov <juri@jurta.org>
16551
16552 * simple.el (set-mark-default-inactive): Add :type, :group
16553 and :version. (Bug#4876)
16554
16555 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
16556
16557 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
16558 (archive-unique-fname): ... here. (Bug#4929)
16559
16560 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
16561
16562 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
16563 with a real fix.
16564
16565 * novice.el (disabled-command-function): Add useful args.
16566 Setup the help buffer so that [back] works.
16567 Remove redundant call to help-mode.
16568 (disabled-command-function): Use `case'.
16569 (en/disable-command): New function extracted from enable-command.
16570 (enable-command, disable-command): Use it.
16571
16572 2009-11-14 Glenn Morris <rgm@gnu.org>
16573
16574 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
16575 constants. (Bug#4913)
16576
16577 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
16578
16579 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
16580
16581 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
16582 defined in C that have no doc-strings. (Bug#1063)
16583
16584 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
16585
16586 * cus-edit.el (data, files):
16587 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
16588
16589 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
16590
16591 * simple.el (shell-command): Doc fix (Bug#4891).
16592
16593 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
16594
16595 2009-11-14 Glenn Morris <rgm@gnu.org>
16596
16597 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
16598 statements for vc-diff, emerge-quit, and rmail-cease-edit.
16599 If they are already loaded, eval-after-load will do the right thing.
16600
16601 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
16602 compiling.
16603
16604 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
16605
16606 * simple.el (x-selection-owner-p): Declare.
16607 (read-mail-command): Use custom radio type rather than choice.
16608 (completion-no-auto-exit): Doc fix.
16609
16610 * custom.el (defgroup):
16611 * epg-config.el (epg): Doc fixes.
16612
16613 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
16614
16615 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
16616 * international/ccl.el (define-ccl-program): Do not purecopy the
16617 docstring, defconst does it anyway.
16618
16619 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16620
16621 * add-log.el (add-change-log-entry): Avoid displaying the changelog
16622 a second time.
16623
16624 * x-dnd.el (x-dnd-maybe-call-test-function):
16625 * window.el (split-window-vertically):
16626 * whitespace.el (whitespace-help-on):
16627 * vc-rcs.el (vc-rcs-consult-headers):
16628 * userlock.el (ask-user-about-lock-help)
16629 (ask-user-about-supersession-help):
16630 * type-break.el (type-break-force-mode-line-update):
16631 * time-stamp.el (time-stamp-conv-warn):
16632 * terminal.el (te-set-output-log, te-more-break, te-filter)
16633 (te-sentinel, terminal-emulator):
16634 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
16635 (term-write-input-ring, term-check-source, term-start-output-log):
16636 (term-display-buffer-line, term-dynamic-list-completions):
16637 (term-ansi-make-term, serial-term):
16638 * subr.el (selective-display):
16639 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16640 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
16641 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
16642 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
16643 (speedbar-remove-localized-speedbar-support)
16644 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
16645 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
16646 (speedbar-buffers-line-directory):
16647 * simple.el (shell-command-on-region, append-to-buffer)
16648 (prepend-to-buffer):
16649 * shadowfile.el (shadow-save-todo-file):
16650 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
16651 (scroll-bar-maybe-set-window-start):
16652 * sb-image.el (speedbar-image-dump):
16653 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
16654 (load-save-place-alist-from-file):
16655 * ps-samp.el (ps-print-message-from-summary):
16656 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
16657 (ps-background-image, ps-begin-job, ps-do-despool):
16658 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
16659 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
16660 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
16661 (pr-call-process, pr-file-list, pr-interface-save):
16662 * novice.el (disabled-command-function)
16663 (enable-command, disable-command):
16664 * mouse.el (mouse-buffer-menu-alist):
16665 * mouse-copy.el (mouse-kill-preserving-secondary):
16666 * macros.el (kbd-macro-query):
16667 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
16668 * informat.el (batch-info-validate):
16669 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
16670 * hippie-exp.el (try-expand-dabbrev-visible):
16671 * help-mode.el (help-make-xrefs):
16672 * help-fns.el (describe-variable):
16673 * generic-x.el (bat-generic-mode-run-as-comint):
16674 * finder.el (finder-mouse-select):
16675 * find-dired.el (find-dired-sentinel):
16676 * filesets.el (filesets-file-close):
16677 * files.el (list-directory):
16678 * faces.el (list-faces-display, describe-face):
16679 * facemenu.el (list-colors-display):
16680 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
16681 * epg.el (epg--process-filter, epg-cancel):
16682 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
16683 (epa--read-signature-type):
16684 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
16685 (emerge-file-names):
16686 * ehelp.el (electric-helpify):
16687 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
16688 * ediff-vers.el (rcs-ediff-view-revision):
16689 * ediff-util.el (ediff-setup):
16690 * ediff-mult.el (ediff-append-custom-diff):
16691 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
16692 (ediff-wordify):
16693 * echistory.el (Electric-command-history-redo-expression):
16694 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
16695 * disp-table.el (describe-display-table):
16696 * dired.el (dired-find-buffer-nocreate):
16697 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
16698 * dabbrev.el (dabbrev--same-major-mode-p):
16699 * chistory.el (list-command-history):
16700 * apropos.el (apropos-documentation):
16701 * allout.el (allout-obtain-passphrase):
16702 (allout-copy-exposed-to-buffer):
16703 (allout-verify-passphrase): Use with-current-buffer.
16704
16705 2009-11-13 Glenn Morris <rgm@gnu.org>
16706
16707 * Makefile.in (ELCFILES): Regenerate.
16708
16709 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
16710
16711 * net/dbus.el (dbus-registered-objects-table): Rename from
16712 `dbus-registered-functions-table', because it contains also properties.
16713 (dbus-unregister-object): Unregister also properties.
16714 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
16715 Use a timeout of 500 msec, in order to not block.
16716 (dbus-register-property, dbus-property-handler): New defuns.
16717
16718 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16719
16720 * simple.el (minibuffer-default-add-completions): Drop deprecated
16721 4th arg.
16722
16723 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
16724
16725 * textmodes/artist.el (artist-mouse-choose-operation):
16726 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
16727 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
16728 (artist-compute-up-event-key): New function.
16729 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
16730
16731 2009-11-13 Kenichi Handa <handa@m17n.org>
16732
16733 * language/japan-util.el: Make sure that the value of jisx0208
16734 property is jisx0208 character.
16735
16736 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
16737
16738 * international/mule.el (auto-coding-regexp-alist): Only purecopy
16739 car or each item, not the whole list.
16740
16741 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
16742
16743 * minibuffer.el (minibuffer-completion-help):
16744 Use minibuffer-hide-completions.
16745
16746 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
16747
16748 * dired.el (dired-save-positions, dired-restore-positions): New funs.
16749 (dired-revert): Use them (bug#4880).
16750
16751 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16752
16753 * tooltip.el (tooltip-frame-parameters): Undo previous change.
16754
16755 2009-11-12 Juri Linkov <juri@jurta.org>
16756
16757 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
16758 New functions.
16759 (find-file-literally-at-point): Alias of `ffap-literally'.
16760
16761 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16762
16763 * textmodes/ispell.el (ispell-skip-region-alist):
16764 * textmodes/css-mode.el (auto-mode-alist):
16765 * progmodes/compile.el (auto-mode-alist):
16766 * international/mule.el (ctext-non-standard-encodings-alist)
16767 (ctext-non-standard-encodings-regexp):
16768 * simple.el (shell-command-switch, text-read-only):
16769 * replace.el (occur-mode-map):
16770 * paths.el (rmail-file-name):
16771 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
16772 * find-file.el (ff-special-constructs):
16773 * files.el (file-name-handler-alist):
16774 * composite.el: Purecopy strings.
16775
16776 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
16777
16778 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
16779
16780 * widget.el (define-widget): Purecopy the docstring.
16781 * international/mule-cmds.el (charset): Do not purecopy the
16782 docstring here, define-widget does it.
16783
16784 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
16785 * textmodes/bibtex-style.el (auto-mode-alist):
16786 * progmodes/inf-lisp.el (inferior-lisp-prompt):
16787 * progmodes/compile.el (compile-command):
16788 * language/korea-util.el (default-korean-keyboard):
16789 * international/mule-conf.el (file-coding-system-alist):
16790 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
16791 * tooltip.el (tooltip-frame-parameters):
16792 * newcomment.el (comment-end, comment-padding):
16793 * dired.el (dired-trivial-filenames):
16794 * comint.el (comint-file-name-prefix): Purecopy initial values.
16795
16796 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
16797
16798 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
16799 (tramp-advice-minibuffer-electric-tilde): Unload advices via
16800 `tramp-unload'.
16801 (tramp-advice-make-auto-save-file-name)
16802 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
16803 after removing the advice.
16804
16805 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
16806
16807 * progmodes/grep.el (grep-regexp-alist):
16808 * international/mule-cmds.el (iso-2022-control-alist):
16809 * emacs-lisp/timer.el (timer-duration-words):
16810 * subr.el (version-separator, version-regexp-alist):
16811 * minibuffer.el (completion-styles-alist):
16812 * faces.el (face-attribute-name-alist, list-faces-sample-text):
16813 Change defvars to defconsts.
16814
16815 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
16816 * loadup.el ("international/mule-conf"): Load the byte compiled version.
16817 * international/mule-conf.el: Allow to be byte compiled.
16818
16819 * international/mule.el (define-charset): Purecopy props.
16820 (load-with-code-conversion): Purecopy doc string and file name.
16821 (put-charset-property): Purecopy strings.
16822 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
16823
16824 * international/mule-cmds.el (register-input-method): Purecopy arguments.
16825 (define-char-code-property): Correctly purecopy the table.
16826
16827 * international/ccl.el (define-ccl-program): Purecopy the docstring.
16828
16829 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
16830
16831 * subr.el (add-hook): Purecopy strings.
16832 (eval-after-load): Purecopy load-history-regexp and the form.
16833
16834 * custom.el (custom-declare-group): Purecopy load-file-name.
16835
16836 * subr.el (menu-bar-separator): New defconst.
16837 * net/eudc.el (eudc-tools-menu):
16838 * international/mule-cmds.el (set-coding-system-map)
16839 (mule-menu-keymap):
16840 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
16841 * vc-hooks.el (vc-menu-map):
16842 * replace.el (occur-mode-map):
16843 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
16844 (menu-bar-edit-menu, menu-bar-goto-menu)
16845 (menu-bar-custom-menu, menu-bar-showhide-menu)
16846 (menu-bar-options-menu, menu-bar-tools-menu)
16847 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
16848 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
16849 (menu-bar-help-menu):
16850 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
16851 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
16852
16853 * term/x-win.el (x-gtk-stock-map):
16854 * progmodes/vera-mode.el (auto-mode-alist):
16855 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
16856 (inferior-lisp-program, inferior-lisp-load-command):
16857 * progmodes/hideshow.el (hs-special-modes-alist):
16858 * progmodes/gud.el (same-window-regexps):
16859 * progmodes/grep.el (grep-program, find-program, xargs-program):
16860 * net/telnet.el (same-window-regexps):
16861 * net/rlogin.el (same-window-regexps):
16862 * language/ethiopic.el (font-ccl-encoder-alist):
16863 * vc-sccs.el (vc-sccs-master-templates):
16864 * vc-rcs.el (vc-rcs-master-templates):
16865 * subr.el (cl-assertion-failed):
16866 * simple.el (next-error-overlay-arrow-position):
16867 * lpr.el (lpr-command):
16868 * locate.el (locate-ls-subdir-switches):
16869 * info.el (same-window-regexps, info)
16870 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
16871 * image-mode.el (image-mode, auto-mode-alist):
16872 * hippie-exp.el (hippie-expand-ignore-buffers):
16873 * format.el (format-alist):
16874 * find-dired.el (find-ls-subdir-switches, find-grep-options)
16875 (find-name-arg):
16876 * facemenu.el (facemenu-keybindings):
16877 * dired.el (dired-listing-switches, dired-chown-program):
16878 * diff.el (diff-switches, diff-command):
16879 * cus-edit.el (same-window-regexps):
16880 * bindings.el (mode-line-mule-info)
16881 (mode-line-buffer-identification): Purecopy strings.
16882
16883 2009-11-11 Juri Linkov <juri@jurta.org>
16884
16885 * simple.el (dired-get-filename) <declare-function>:
16886 Tell the byte-compiler about dired-get-filename.
16887 (shell-command): In Dired mode, get filename from the current line
16888 as the default value.
16889
16890 2009-11-10 Glenn Morris <rgm@gnu.org>
16891
16892 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
16893 * calendar/holidays.el, progmodes/cperl-mode.el:
16894 Update x-popup-menu declarations.
16895
16896 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
16897 (list-load-path-shadows): Use dolist.
16898 (list-load-path-shadows): Use with-current-buffer.
16899
16900 2009-11-10 Juri Linkov <juri@jurta.org>
16901
16902 * minibuffer.el (read-file-name): Support a list of default values
16903 in `default-filename'. Use the first file name where only one
16904 element is required. Doc fix.
16905
16906 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
16907
16908 * net/dbus.el (dbus-unregister-object): Release service, if no
16909 other method is registered for it.
16910
16911 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
16912
16913 * bookmark.el (bookmark-completing-read): Sort bookmark names if
16914 bookmark-sort-flag is non-nil (Bug#4653).
16915
16916 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
16917
16918 * emulation/cua-base.el: Add CUA property to some CC mode commands
16919 (Bug#4100).
16920
16921 2009-11-08 Kevin Ryde <user42@zip.com.au>
16922
16923 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
16924 at end of sentence (Bug#4818).
16925
16926 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
16927
16928 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16929 Handle "see declaration of" MSFT statements (Bug#4100).
16930
16931 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
16932
16933 * net/tramp.el (tramp-advice-make-auto-save-file-name)
16934 (tramp-advice-file-expand-wildcards): Unload via
16935 `ad-remove-advice'.
16936
16937 * net/trampver.el: Update release number.
16938
16939 2009-11-08 Kevin Ryde <user42@zip.com.au>
16940
16941 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
16942 `ad-do-it'.
16943
16944 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
16945
16946 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
16947 in order to keep context in SELinux.
16948
16949 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
16950
16951 * dired-aux.el (dired-query): Place cursor in echo area and allow
16952 C-g.
16953
16954 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
16955 menu item if not on a directory (Bug#4701).
16956
16957 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
16958
16959 Sync with Tramp 2.1.17.
16960
16961 * net/tramp.el (tramp-handle-copy-directory): Don't use
16962 `file-remote-p' (due to compatibility).
16963
16964 * net/tramp-compat.el (tramp-compat-copy-directory)
16965 (tramp-compat-delete-directory): New defuns.
16966
16967 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
16968 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
16969 Use `tramp-compat-delete-directory'.
16970
16971 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
16972 (tramp-smb-handle-delete-directory):
16973 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
16974
16975 * net/trampver.el: Update release number.
16976
16977 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
16978
16979 * tar-mode.el (tar-copy): Call write-region on the right buffer
16980 (Bug#4857).
16981
16982 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
16983 by hand, if necessary (Bug#4878).
16984
16985 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
16986
16987 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
16988 align size column (Bug#4839).
16989
16990 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
16991 statement.
16992
16993 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
16994
16995 * progmodes/ld-script.el (auto-mode-alist):
16996 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
16997
16998 * cus-face.el (custom-declare-face): Purecopy face spec.
16999
17000 2009-11-06 Kenichi Handa <handa@m17n.org>
17001
17002 * international/uni-bidi.el: Re-generated.
17003 * international/uni-category.el: Re-generated.
17004 * international/uni-combining.el: Re-generated.
17005 * international/uni-mirrored.el: Re-generated.
17006
17007 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
17008
17009 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
17010 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
17011 (tex-start-options, slitex-run-command, latex-run-command)
17012 (tex-run-command, tex-directory):
17013 * textmodes/ispell.el (ispell-html-skip-alists)
17014 (ispell-tex-skip-alists, ispell-tex-skip-alists):
17015 * textmodes/fill.el (adaptive-fill-first-line-regexp):
17016 (adaptive-fill-regexp):
17017 * textmodes/dns-mode.el (auto-mode-alist):
17018 * progmodes/python.el (interpreter-mode-alist):
17019 * progmodes/etags.el (tags-compression-info-list):
17020 * progmodes/etags.el (tags-file-name):
17021 * net/browse-url.el (browse-url-galeon-program)
17022 (browse-url-firefox-program):
17023 * mail/sendmail.el (mail-signature-file)
17024 (mail-citation-prefix-regexp):
17025 * international/mule-conf.el (eight-bit):
17026 * international/latexenc.el (latex-inputenc-coding-alist):
17027 * international/fontset.el (x-pixel-size-width-font-regexp):
17028 * emacs-lisp/warnings.el (warning-type-format):
17029 * emacs-lisp/trace.el (trace-buffer):
17030 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
17031 (emacs-lisp-mode-map):
17032 * calendar/holidays.el (holiday-solar-holidays)
17033 (holiday-bahai-holidays, holiday-islamic-holidays)
17034 (holiday-christian-holidays, holiday-hebrew-holidays)
17035 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
17036 (hebrew-holidays-1, holiday-oriental-holidays)
17037 (holiday-general-holidays):
17038 * x-dnd.el (x-dnd-known-types):
17039 * tool-bar.el (tool-bar):
17040 * startup.el (site-run-file):
17041 * shell.el (shell-dumb-shell-regexp):
17042 * rfn-eshadow.el (file-name-shadow-tty-properties)
17043 (file-name-shadow-properties):
17044 * paths.el (remote-shell-program, news-directory):
17045 * mouse.el ([C-down-mouse-3]):
17046 * menu-bar.el (menu-bar-tools-menu):
17047 * jka-cmpr-hook.el (jka-compr-load-suffixes)
17048 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
17049 (jka-compr-compression-info-list):
17050 * isearch.el (search-whitespace-regexp):
17051 * image-file.el (image-file-name-extensions):
17052 * find-dired.el (find-ls-option):
17053 * files.el (directory-listing-before-filename-regexp)
17054 (directory-free-space-args, insert-directory-program)
17055 (list-directory-brief-switches, magic-fallback-mode-alist)
17056 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
17057 (automount-dir-prefix):
17058 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
17059 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
17060 (face-font-registry-alternatives, face-font-registry-alternatives)
17061 (face-font-family-alternatives):
17062 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
17063 (facemenu-foreground-menu, facemenu-face-menu):
17064 * epa-hook.el (epa-file-name-regexp):
17065 * dnd.el (dnd-protocol-alist):
17066 * textmodes/rst.el (auto-mode-alist):
17067 * button.el (default-button): Purecopy strings.
17068
17069 2009-11-06 Glenn Morris <rgm@gnu.org>
17070
17071 * Makefile.in (ELCFILES): Update.
17072
17073 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
17074
17075 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
17076 * emacs-lisp/levents.el: Move to obsolete/levents.el.
17077
17078 * nxml/xsd-regexp.el (xsdre-gen-categories):
17079 * nxml/xmltok.el (xmltok-parse-entity):
17080 * nxml/rng-parse.el (rng-parse-validate-file):
17081 * nxml/rng-maint.el (rng-format-manual)
17082 (rng-manual-output-force-new-line):
17083 * nxml/rng-loc.el (rng-save-schema-location-1):
17084 * nxml/rng-cmpct.el (rng-c-parse-file):
17085 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
17086 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
17087
17088 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
17089
17090 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
17091 Remove extra save-excursions and make-variable-buffer-local's.
17092 Suggested by Stefan Monnier.
17093
17094 (verilog-getopt-file, verilog-module-inside-filename-p)
17095 (verilog-set-define): Merge GNU 1.35 and repair changes from
17096 switching to using with-current-buffer.
17097
17098 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
17099 being treated as a number and confusing AUTORESET.
17100 Reported by Dan Dever.
17101
17102 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
17103 Add verilog-auto-ignore-concat to fix backward compatibility with
17104 older verilog-modes. Reported by Dan Katz.
17105
17106 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
17107 containing closing anchors "...$".
17108
17109 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
17110 Reported by Wade Smith.
17111
17112 (verilog-batch-execute-func): Comment on function usage.
17113
17114 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
17115
17116 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
17117 for labels.
17118
17119 (verilog-label-re, verilog-calc-1): Support proper indent of named
17120 asserts.
17121
17122 (verilog-backward-token, verilog-basic-complete-re)
17123 (verilog-beg-of-statement, verilog-indent-re): Support proper
17124 indent of the assert statement at the beginning of a block of text.
17125
17126 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
17127 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
17128 tokens as begins.
17129
17130 2009-11-05 Glenn Morris <rgm@gnu.org>
17131
17132 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
17133 Emacs 19. (Bug#1531)
17134 (byte-compile-fix-header): Update for the above change.
17135 Drop test for epoch::version.
17136
17137 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
17138 * cus-dep.el (custom-make-dependencies):
17139 * finder.el (finder-compile-keywords):
17140 Use autoload-rubric's feature argument.
17141
17142 * calendar/diary-lib.el (top-level): Make load behave more like require.
17143
17144 * vc-git.el (vc-git-stash-map): Move definition before use.
17145
17146 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
17147
17148 * custom.el (custom-declare-group): Purecopy standard-value.
17149 (custom-declare-group): Purecopy custom-prefix.
17150
17151 * international/mule.el (load-with-code-conversion):
17152 Call do-after-load-evaluation unconditionally.
17153
17154 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
17155
17156 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
17157
17158 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
17159
17160 2009-11-04 Glenn Morris <rgm@gnu.org>
17161
17162 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
17163 (byte-compile-compatibility): Remove option.
17164 (byte-compile-close-variables, byte-compile-fix-header)
17165 (byte-compile-insert-header, byte-compile-output-docform)
17166 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
17167 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
17168 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
17169 (byte-compile-insert, byte-compile-defun):
17170 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
17171 (byte-defop-compiler19): Remove.
17172 Without byte-compile-compatibility, the 'emacs19-opcode property is not
17173 used by anything. Replace all calls with byte-defop-compiler.
17174
17175 2009-11-04 Juri Linkov <juri@jurta.org>
17176
17177 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
17178 (menu-bar-options-menu): Don't quote the `prop' arg of
17179 `menu-bar-make-mm-toggle'.
17180
17181 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
17182
17183 * calendar/calendar.el (cal-loaddefs):
17184 * calendar/diary-lib.el (diary-loaddefs):
17185 * calendar/holidays.el (hol-loaddefs):
17186 * eshell/esh-module.el (esh-groups): Load rather than require.
17187
17188 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17189
17190 * calendar/todo-mode.el (todo-add-category): Don't hardcode
17191 point-min==1.
17192 (todo-top-priorities): Only display-buffer when called interactively.
17193 (todo-item-start): Don't save excursion point.
17194 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
17195 (todo-insert-item-here, todo-file-item, todo-remove-item):
17196 Adjust uses of todo-item-start and todo-item-end.
17197
17198 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
17199 (autoload-rubric): Don't use any more.
17200
17201 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
17202 and only put a prop if it is non-nil.
17203
17204 2009-11-03 Juri Linkov <juri@jurta.org>
17205
17206 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
17207 (menu-bar-options-menu): Fix list quoting (Bug#4429).
17208
17209 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
17210 and "Menu" to make top-level menu item visually one unit (like
17211 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
17212 multi-word menu items). Fix :help string for quit-window.
17213
17214 2009-11-03 Glenn Morris <rgm@gnu.org>
17215
17216 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
17217 (byte-compile-file-form-define-abbrev-table)
17218 (byte-compile-file-form-custom-declare-variable)
17219 (byte-compile-variable-ref, byte-compile-defvar):
17220 Whether or not a warning is enabled should only affect whether we issue
17221 the warning, not whether or not we collect the relevant data.
17222 Eg warnings can be turned on and off throughout the course of a file.
17223
17224 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
17225 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
17226
17227 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17228
17229 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
17230 * play/mpuz.el (mpuz-create-buffer):
17231 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
17232 (lm-print-y,s,noise, lm-print-w0, lm-init):
17233 * play/gomoku.el (gomoku-prompt-for-move):
17234 * play/fortune.el (fortune-in-buffer):
17235 * play/dissociate.el (dissociated-press):
17236 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
17237 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
17238 * mail/supercite.el (sc-eref-show):
17239 * mail/smtpmail.el (smtpmail-send-it):
17240 * mail/rmailsum.el (rmail-summary-next-labeled-message)
17241 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
17242 (rmail-summary-undelete-many, rmail-summary-rmail-update)
17243 (rmail-summary-goto-msg, rmail-summary-expunge)
17244 (rmail-summary-get-new-mail, rmail-summary-search-backward)
17245 (rmail-summary-add-label, rmail-summary-output-menu)
17246 (rmail-summary-output-body):
17247 * mail/rfc822.el (rfc822-addresses):
17248 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
17249 * mail/mailpost.el (post-mail-send-it):
17250 * mail/hashcash.el (hashcash-generate-payment):
17251 * mail/feedmail.el (feedmail-run-the-queue)
17252 (feedmail-queue-send-edit-prompt-help-first)
17253 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
17254 (feedmail-deduce-address-list):
17255 * eshell/esh-ext.el (eshell-remote-command):
17256 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
17257 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
17258 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
17259 (viper-save-string-in-file, viper-valid-marker):
17260 * emulation/viper-keym.el (viper-toggle-key):
17261 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
17262 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
17263 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
17264 * emulation/viper-cmd.el (viper-exec-form-in-vi)
17265 (viper-exec-form-in-emacs, viper-brac-function):
17266 * emulation/viper.el (viper-delocalize-var):
17267 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
17268 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
17269 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
17270 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
17271 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
17272 * emulation/edt.el (edt-electric-helpify):
17273 * emulation/cua-rect.el (cua--rectangle-aux-replace):
17274 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
17275 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
17276 (cua-indent-to-global-mark-column):
17277 * calendar/diary-lib.el (calendar-mark-1):
17278 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
17279 Use with-current-buffer.
17280 * emulation/viper.el (viper-delocalize-var): Use dolist.
17281
17282 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
17283
17284 * comint.el (comint-replace-by-expanded-history-before-point):
17285 Replace !! with the previous input string literally (Bug#1795).
17286
17287 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
17288
17289 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
17290 to be made up of whitespace.
17291
17292 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
17293
17294 * minibuffer.el (read-file-name): Don't use file dialogs for
17295 remote directories (Bug#99).
17296
17297 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
17298
17299 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
17300
17301 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
17302
17303 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
17304 instead of deleting the window or frame.
17305
17306 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
17307
17308 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
17309 Support face colors.
17310
17311 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
17312 New function. Support face colors (Bug#1168).
17313 (tex-common-initialization): Use it.
17314
17315 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
17316 mode allows it (Bug#1168).
17317
17318 2009-10-31 Juri Linkov <juri@jurta.org>
17319
17320 * facemenu.el (list-colors-display): Don't mark buffer as
17321 modified (Bug#3948).
17322
17323 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
17324
17325 * international/mule-diag.el (list-character-sets-1):
17326 Minor message fix (Bug#3526).
17327
17328 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
17329 Fix face property (Bug#4834).
17330 (etags-list-tags, etags-tags-apropos-additional)
17331 (etags-tags-apropos, tags-select-tags-table): Add follow-link
17332 property.
17333
17334 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
17335 items.
17336
17337 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
17338
17339 * textmodes/two-column.el (2C-split):
17340 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
17341 * textmodes/tex-mode.el (tex-set-buffer-directory):
17342 * textmodes/spell.el (spell-region, spell-string):
17343 * textmodes/reftex.el (reftex-erase-buffer):
17344 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
17345 * textmodes/reftex-toc.el (reftex-toc-promote-action):
17346 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
17347 (reftex-select-item):
17348 * textmodes/reftex-ref.el (reftex-label-info-update)
17349 (reftex-offer-label-menu):
17350 * textmodes/reftex-index.el (reftex-index-change-entry)
17351 (reftex-index-phrases-info):
17352 * textmodes/reftex-global.el (reftex-create-tags-file)
17353 (reftex-save-all-document-buffers, reftex-ensure-write-access):
17354 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
17355 (reftex-view-crossref-from-bibtex):
17356 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
17357 (reftex-extract-bib-entries-from-thebibliography)
17358 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
17359 * textmodes/refbib.el (r2b-capitalize-title):
17360 (r2b-convert-buffer, r2b-help):
17361 * textmodes/page-ext.el (pages-directory)
17362 (pages-directory-goto-with-mouse):
17363 * textmodes/bibtex.el (bibtex-validate-globally):
17364 * textmodes/bib-mode.el (bib-capitalize-title):
17365 * textmodes/artist.el (artist-clear-buffer, artist-system):
17366 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
17367 (local-set-scheme-interaction-buffer, xscheme-process-filter)
17368 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
17369 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
17370 (xscheme-send-control-g-interrupt, xscheme-start-process)
17371 (xscheme-process-sentinel, xscheme-cd):
17372 * progmodes/verilog-mode.el (verilog-read-always-signals)
17373 (verilog-set-define, verilog-getopt-file)
17374 (verilog-module-inside-filename-p):
17375 * progmodes/sh-script.el:
17376 * progmodes/python.el (python-pdbtrack-get-source-buffer)
17377 (python-pdbtrack-grub-for-buffer, python-execute-file):
17378 * progmodes/octave-inf.el (inferior-octave):
17379 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
17380 (idlwave-shell-compile-helper-routines, idlwave-set-local)
17381 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
17382 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
17383 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
17384 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
17385 (idlwave-shell-filter, idlwave-shell-examine-highlight)
17386 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
17387 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
17388 (idlwave-shell-examine-display, idlwave-shell-run-region)
17389 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
17390 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
17391 * progmodes/idlw-help.el (idlwave-help-get-special-help)
17392 (idlwave-help-get-help-buffer):
17393 * progmodes/gud.el (gud-basic-call, gud-find-class)
17394 (gud-tooltip-activate-mouse-motions-if-enabled):
17395 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
17396 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
17397 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
17398 (ebrowse-tags-next-file):
17399 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
17400 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
17401 (ebnf-eps-finish-and-write):
17402 * progmodes/cpp.el (cpp-edit-save):
17403 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
17404 * progmodes/cc-defs.el (c-emacs-features):
17405 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
17406 (antlr-directory-dependencies):
17407 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
17408 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
17409 (ada-find-any-references, ada-make-filename-from-adaname)
17410 (ada-make-body-gnatstub):
17411 * obsolete/rnews.el (news-list-news-groups):
17412 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
17413 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
17414 * net/rcirc.el (rcirc-debug):
17415 * net/newst-treeview.el (newsticker--treeview-list-add-item)
17416 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
17417 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
17418 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
17419 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
17420 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
17421 (newsticker--treeview-list-clear-highlight)
17422 (newsticker--treeview-list-update-highlight)
17423 (newsticker--treeview-list-highlight-start)
17424 (newsticker--treeview-tree-update-highlight)
17425 (newsticker--treeview-get-selected-item)
17426 (newsticker-treeview-mark-list-items-old)
17427 (newsticker--treeview-set-current-node):
17428 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
17429 * net/newst-backend.el (newsticker--get-news-by-funcall)
17430 (newsticker--get-news-by-wget, newsticker--image-get)
17431 (newsticker--image-sentinel):
17432 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
17433 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
17434 (eudc-ph-close-session):
17435 * net/eudc.el (eudc-save-options):
17436 * language/thai-word.el (thai-update-word-table):
17437 * language/japan-util.el (japanese-string-conversion):
17438 * international/titdic-cnv.el (tsang-quick-converter)
17439 (ziranma-converter, ctlau-converter):
17440 * international/mule-cmds.el (describe-language-environment):
17441 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
17442 (skkdic-convert-postfix, skkdic-convert-prefix):
17443 (skkdic-convert-okuri-nasi, skkdic-convert):
17444 * emacs-lisp/re-builder.el (reb-update-overlays):
17445 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
17446 * emacs-lisp/gulp.el (gulp-send-requests):
17447 * emacs-lisp/find-gc.el (trace-call-tree):
17448 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
17449 (eieio-describe-generic):
17450 * emacs-lisp/eieio-base.el (eieio-persistent-read):
17451 * emacs-lisp/edebug.el (edebug-outside-excursion):
17452 * emacs-lisp/debug.el (debugger-make-xrefs):
17453 * emacs-lisp/cust-print.el (custom-prin1-to-string):
17454 * emacs-lisp/chart.el (chart-new-buffer):
17455 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
17456 Use with-current-buffer.
17457 * textmodes/artist.el (artist-system): Don't call
17458 copy-sequence on a fresh string.
17459 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
17460
17461 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
17462
17463 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
17464 is no item to edit. (Bug#4820)
17465 (todo-top-priorities): Restore point and restore narrowing in Todo
17466 buffer. (Bug#4820)
17467
17468 2009-10-31 Glenn Morris <rgm@gnu.org>
17469
17470 * net/ange-ftp.el (top-level): Don't require dired when compiling.
17471 (comint-last-output-start, comint-last-input-start)
17472 (comint-last-input-end): Don't defvar when compiling.
17473 (ange-ftp-process-file): Use bound-and-true-p.
17474
17475 * pcmpl-rpm.el (top-level): Move provide statement to end.
17476 (pcmpl-rpm): Remove unused custom group.
17477
17478 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
17479
17480 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
17481
17482 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
17483 (byte-compile-warnings): Add `constants' as an option.
17484 (byte-compile-callargs-warn, byte-compile-arglist-warn)
17485 (display-call-tree): Update for byte-compile-fdefinition possibly
17486 returning `(macro lambda ...)'. (Bug#4778)
17487 (byte-compile-variable-ref, byte-compile-setq-default):
17488 Respect `constants' member of byte-compile-warnings.
17489
17490 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17491
17492 * vc-bzr.el (vc-bzr-revision-keywords): New var.
17493 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
17494 to "submit:".
17495
17496 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
17497
17498 * textmodes/ispell.el (ispell-skip-region-alist):
17499 * international/mule-conf.el (eight-bit):
17500 * international/fontset.el (font-encoding-alist):
17501 * startup.el (pure-space-overflow-message):
17502 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
17503 * paths.el (gnus-nntp-service, rmail-spool-directory)
17504 (term-file-prefix):
17505 * files.el (save-some-buffers-action-alist):
17506 * cmuscheme.el (same-window-buffer-names):
17507 * ielm.el (same-window-buffer-names):
17508 * shell.el (same-window-buffer-names):
17509 * mail/sendmail.el (same-window-buffer-names):
17510 * progmodes/inf-lisp.el (same-window-buffer-names):
17511 * bindings.el (mode-line-client)
17512 (mode-line-column-line-number-mode-map):
17513 * language/tibetan.el (tibetan-precomposition-rule-regexp)
17514 (tibetan-precomposed-regexp): Purecopy string arguments.
17515
17516 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17517
17518 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
17519 (calcDigit-nondigit):
17520 * calc/calc-yank.el (calc-copy-to-buffer):
17521 * calc/calc-units.el (calc-invalidate-units-table):
17522 * calc/calc-trail.el (calc-trail-yank):
17523 * calc/calc-store.el (calc-insert-variables):
17524 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
17525 * calc/calc-prog.el (calc-read-parse-table):
17526 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
17527 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
17528 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
17529 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
17530 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
17531 (calc-graph-name, calc-graph-find-command, calc-graph-view)
17532 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
17533 * calc/calc-ext.el (calc-realign):
17534 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
17535 (calc-embedded-finish-edit, calc-embedded-make-info)
17536 (calc-embedded-finish-command, calc-embedded-stack-change):
17537 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
17538
17539 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
17540 shell-dynamic-complete-filename in preference to
17541 comint-dynamic-complete-filename.
17542
17543 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
17544 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
17545 Don't consider whether the display supports colors.
17546 (bookmark-import-new-list): Use dolist.
17547 (bookmark-bmenu-mode-map): Move initialization into declaration.
17548 (bookmark-bmenu-list): Use dolist, simplify.
17549 (bookmark-show-all-annotations): Use save-selected-window and dolist.
17550 (menu-bar-final-items): Use push.
17551
17552 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
17553
17554 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
17555 it works on remote files.
17556 (vc-hg-diff): Don't pass any `--cwd' argument.
17557
17558 2009-10-27 Kevin Ryde <user42@zip.com.au>
17559
17560 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
17561 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
17562 (Further to Bug#3921).
17563
17564 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
17565
17566 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
17567 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
17568 calling `tramp-imap-put-file'. Add file size to the call.
17569 (tramp-imap-get-file-entries): Compute also user name, file size,
17570 and date.
17571 (tramp-imap-handle-insert-directory): Insert uid and gid.
17572 (tramp-imap-handle-file-attributes): Transform uid and gid
17573 according to `id-format'.
17574 (tramp-imap-put-file): New optional parameter SIZE. Encode file
17575 size in header X-Size.
17576
17577 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
17578
17579 * simple.el (transpose-subr): Give clearer error when the mark
17580 is not set. (Bug#4807)
17581
17582 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
17583
17584 * net/tramp.el (tramp-perl-file-truename): New defconst.
17585 Perl code contributed by yary <not.com@gmail.com> (tiny change).
17586 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
17587 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
17588 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
17589
17590 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
17591 Ignore `dired-call-process'.
17592 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
17593
17594 2009-10-26 Julian Scheid <julians37@gmail.com>
17595
17596 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
17597 (tramp-get-remote-readlink): New defun.
17598 (tramp-handle-file-truename): Use it.
17599 (tramp-handle-file-exists-p): Check file-attributes cache, assume
17600 file exists if cache value present.
17601 (tramp-check-cached-permissions): New defun.
17602 (tramp-handle-file-readable-p): Use it.
17603 (tramp-handle-file-writable-p): Likewise.
17604 (tramp-handle-file-executable-p): Likewise.
17605 (tramp-handle-file-name-all-completions): Try using Perl to get
17606 partial completions. When perl not available, combine `cd' and
17607 `ls' into single remote operation and use shell expansion to get
17608 partial remote directory contents. Set `file-exists-p' cache for
17609 directory and any files returned by ls. Change cache handling to
17610 support partial directory contents. Use error message emitted by
17611 remote `cd' or Perl code for local tramp-error.
17612 (tramp-do-copy-or-rename-file-directly): Avoid separate
17613 tramp-send-command-and-check call.
17614 (tramp-handle-process-file): Merge three remote ops into one.
17615 Do not flush all caches when `process-file-side-effects' is set.
17616 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
17617 file-attributes shows uid/gid to be set already.
17618
17619 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
17620
17621 * textmodes/tex-mode.el (tex-dvi-view-command)
17622 (tex-show-queue-command, tex-open-quote):
17623 * progmodes/ruby-mode.el (auto-mode-alist)
17624 (interpreter-mode-alist): Purecopy strings.
17625
17626 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
17627
17628 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
17629 string for the hook, keymap and abbrev table.
17630
17631 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
17632
17633 * x-dnd.el (x-dnd-xdnd-to-action):
17634 * startup.el (fancy-startup-text, fancy-about-text): Change to
17635 defconst from defvar.
17636
17637 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
17638
17639 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
17640 Purecopy initialization strings.
17641
17642 * mail/sendmail.el (mail-header-separator)
17643 (mail-personal-alias-file):
17644 * mail/rmail.el (rmail-default-dont-reply-to-names)
17645 (rmail-ignored-headers, rmail-retry-ignored-headers)
17646 (rmail-highlighted-headers, rmail-secondary-file-directory)
17647 (rmail-secondary-file-regexp):
17648 * files.el (null-device, file-name-invalid-regexp)
17649 (locate-dominating-stop-dir-regexp)
17650 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
17651 (interpreter-mode-alist): Use mapcar instead of mapc.
17652
17653 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
17654
17655 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
17656 (completion-ignored-extensions):
17657 (debug-ignored-errors): Purecopy strings.
17658
17659 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17660
17661 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
17662 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
17663 (pcomplete--here): Use push.
17664
17665 * subr.el (all-completions): Declare the 4th arg obsolete.
17666
17667 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17668
17669 * pcomplete.el (pcomplete-unquote-argument-function): New var.
17670 (pcomplete-unquote-argument): New function.
17671 (pcomplete--common-suffix): Always pay attention to case.
17672 (pcomplete--table-subvert): Quote and unquote the text.
17673 (pcomplete--common-quoted-suffix): New function.
17674 (pcomplete-std-complete): Use it and pcomplete-begin.
17675
17676 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
17677 we're inside a dedicated or minibuffer window.
17678
17679 2009-10-24 Karl Fogel <kfogel@red-bean.com>
17680
17681 * bookmark.el: Update documentation, especially documentation
17682 of `bookmark-alist' and of the bookmark file format.
17683 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
17684
17685 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
17686
17687 * mail/emacsbug.el (report-emacs-bug): Clarify that the
17688 keybindings apply to the mail buffer (Bug#4003). Shrink help
17689 window to buffer.
17690
17691 * whitespace.el (whitespace-mode, whitespace-newline-mode)
17692 (global-whitespace-mode, global-whitespace-newline-mode)
17693 (whitespace-toggle-options, global-whitespace-toggle-options):
17694 Doc fix (Bug#3660).
17695
17696 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
17697 of xmltok-start before the end tag was inserted (Bug#2840).
17698
17699 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
17700 patterns that are preceded by an open-paren (Bug#1320).
17701
17702 2009-10-24 Sven Joachim <svenjoac@gmx.de>
17703
17704 * files.el (delete-directory): Delete symlinks to directories with
17705 delete-file (Bug#4739).
17706
17707 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
17708
17709 * vc.el (vc-backend-for-registration): Rename from
17710 vc-get-backend-for-registration. Update callers.
17711
17712 * international/mule-cmds.el (set-language-info-alist):
17713 Purecopy lang-env.
17714 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
17715 (charset): Purecopy the name.
17716 (define-char-code-property): Purecopy string arguments.
17717
17718 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
17719 Purecopy string arguments.
17720
17721 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
17722 * ediff-hook.el (menu-bar-ediff-menu):
17723 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
17724 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
17725
17726 2009-10-24 Glenn Morris <rgm@gnu.org>
17727
17728 * comint.el (comint-dynamic-list-completions):
17729 * term.el (term-dynamic-list-completions): Use choose-completion rather
17730 than obsolete alias mouse-choose-completion.
17731
17732 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
17733 file-cache-choose-completion.
17734 (file-cache-choose-completion): Handle an optional event argument.
17735 (file-cache-mouse-choose-completion): Make it an obsolete alias.
17736
17737 * progmodes/octave-mod.el (octave-complete-symbol):
17738 Use choose-completion if mouse-choose-completion is ever removed.
17739
17740 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
17741 use.
17742
17743 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
17744 compiler.
17745
17746 * vc-hooks.el (vc-responsible-backend): Fix declaration.
17747
17748 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17749
17750 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
17751 Ignore `pred' now that we receive one.
17752 Handle test-completion specially.
17753
17754 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
17755
17756 * vc.el (vc-responsible-backend): Throw an error if not backend is
17757 found. Remove the REGISTER argument. Move the code dealing with
17758 REGISTER ...
17759 (vc-get-backend-for-registration): ... here. New function.
17760 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
17761 of vc-responsible-backend, pass the file name instead of the
17762 directory name.
17763
17764 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
17765
17766 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
17767 New funs.
17768 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
17769 (pcomplete-comint-setup): Don't modify a global var via
17770 accidental side-effects.
17771 (pcomplete-shell-setup): Adjust call accordingly.
17772 (pcomplete-parse-comint-arguments): Use push.
17773
17774 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
17775
17776 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
17777 Allow uncapitalized info node names (Bug#3921).
17778
17779 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
17780 to the DEBUG file (Bug#3781).
17781
17782 2009-10-23 Jari Aalto <jari.aalto@cante.net>
17783
17784 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
17785 dictionary entry (Bug#4579).
17786
17787 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
17788
17789 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
17790 from `rfn-eshadow-update-overlay-hook' when unloading.
17791 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
17792 "rsyncc". Adjust doc string.
17793 (tramp-temp-buffer-file-name): New buffer-local defvar.
17794 (tramp-handle-insert-file-contents, tramp-handle-write-region):
17795 Keep temporary file when indicated by method ("rsync" and
17796 "rsyncc").
17797 (tramp-handle-write-region): Handle APPEND.
17798 (tramp-delete-temp-file-function): New defun. Added to
17799 `kill-buffer-hook'.
17800
17801 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
17802
17803 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
17804
17805 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
17806
17807 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
17808 (color-name-rgb-alist, tty-standard-colors)
17809 (tty-color-mode-alist): Change to defconst.
17810
17811 * simple.el (mark-inactive): Purecopy message.
17812
17813 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
17814 (global-map, yank-menu):
17815 * textmodes/ispell.el (ispell-menu-map):
17816 * net/eudc.el (eudc-tools-menu):
17817 * international/mule-cmds.el (describe-language-environment-map)
17818 (setup-language-environment-map, set-coding-system-map)
17819 (mule-menu-keymap):
17820 * vc-hooks.el (vc-menu-entry, vc-menu-map):
17821 * replace.el (occur-mode-map):
17822 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
17823
17824 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
17825
17826 * calc/calc.el (math-read-number, math-read-number-simple):
17827 Use `save-match-data'.
17828
17829 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
17830
17831 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
17832 rather than fiddling with global-map bindings, since it should only
17833 affect per-terminal settings.
17834 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
17835
17836 * minibuffer.el (completion-table-with-terminator): Allow to specify
17837 the terminator-regexp.
17838
17839 * simple.el (switch-to-completions): Look for *Completions* in other
17840 frames as well.
17841
17842 * pcomplete.el: Allow the use of completion-tables.
17843 (pcomplete-std-complete): New command.
17844 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
17845 (pcomplete--here): Use a function for `form' rather than an expression,
17846 so it can be byte-compiled.
17847 (pcomplete-here, pcomplete-here*): Adjust accordingly.
17848 Add edebug declaration.
17849 (pcomplete-show-completions): Remove unused var `curbuf'.
17850 (pcomplete-do-complete, pcomplete-stub):
17851 Don't assume `completions' is a list of strings any more.
17852
17853 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
17854
17855 * find-dired.el (find-name-arg): Fix typo in docstring.
17856
17857 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
17858
17859 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
17860 (pcmpl-linux-fs-types): Same, and update to new modules layout.
17861
17862 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
17863 pcomplete-entries.
17864
17865 * comint.el (comint-read-input-ring, comint-write-input-ring)
17866 (comint-substitute-in-file-name)
17867 (comint-dynamic-complete-as-filename)
17868 (comint-dynamic-simple-complete)
17869 (comint-dynamic-list-filename-completions)
17870 (comint-dynamic-list-completions)
17871 (comint-redirect-results-list-from-process): Minor simplifications.
17872
17873 2009-10-21 Kevin Ryde <user42@zip.com.au>
17874
17875 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
17876 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
17877 the first form. And insert a blank line after ";;; Code" since
17878 that's usual style. (Bug#4612)
17879
17880 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
17881
17882 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
17883
17884 * minibuffer.el (completion-table-with-terminator): Properly implement
17885 boundaries, in case `terminator' appears in the suffix.
17886 (completion--embedded-envvar-table): Don't return boundaries if
17887 there's no valid completion. Simplify.
17888 (completion-file-name-table): New completion table extracted from
17889 completion--file-name-table.
17890 (completion--file-name-table): Use it.
17891 (read-file-name-predicate): Declare obsolete.
17892 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
17893 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
17894 completion-file-name-table, and use the `pred' argument.
17895 * files.el (locate-file-completion-table): Use the `pred' arg rather
17896 than read-file-name-predicate.
17897 (abbreviate-file-name): Use \` rather than ^ for BOS.
17898
17899 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
17900
17901 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
17902 vc-responsible-backend to register, it causes problems.
17903
17904 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
17905
17906 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
17907
17908 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
17909
17910 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
17911 (tramp-smb-handle-file-attributes): Use it.
17912 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
17913 (tramp-smb-handle-insert-directory): Use `mapc' rather than
17914 `mapcar'. Use `tramp-smb-get-stat-capability'.
17915 Add `dired-filename' text properties.
17916 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
17917 (tramp-smb-maybe-open-connection): Simplify check for smbclient
17918 version.
17919
17920 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
17921
17922 * subr.el (read-key-delay): Reduce to 0.01.
17923 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
17924 (bug#4751).
17925
17926 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17927
17928 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
17929
17930 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
17931 (Info-menu): Remove unused vars `last' and `completions'.
17932 (Info-index-nodes): Remove unused var `node'.
17933
17934 * info.el (Info-complete-menu-item): Use complete-with-action.
17935
17936 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
17937
17938 Make vc-annotate work through copies and renames.
17939 * vc-annotate.el (vc-annotate-extract-revision-at-line):
17940 Return the file name too.
17941 (vc-annotate-revision-at-line)
17942 (vc-annotate-find-revision-at-line)
17943 (vc-annotate-revision-previous-to-line)
17944 (vc-annotate-show-log-revision-at-line): Update to get the file
17945 name from vc-annotate-extract-revision-at-line.
17946 (vc-annotate-show-diff-revision-at-line-internal): Change the
17947 argument to mean whether to show a file diff or not. Get the file
17948 name from vc-annotate-extract-revision-at-line.
17949 (vc-annotate-show-diff-revision-at-line):
17950 Update vc-annotate-show-diff-revision-at-line call.
17951 (vc-annotate-warp-revision): Add an optional file argument.
17952
17953 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
17954 (vc-git-annotate-extract-revision-at-line): Also return the file
17955 name if found.
17956
17957 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
17958 command. Remove unused code.
17959 (vc-hg-annotate-re): Update to match --follow output.
17960 (vc-hg-annotate-extract-revision-at-line): Also return the file
17961 name if found.
17962
17963 * vc.el: Update annotate-extract-revision-at-line documentation.
17964
17965 2009-10-18 Kevin Ryde <user42@zip.com.au>
17966
17967 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
17968 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
17969
17970 * net/browse-url.el (browse-url): Identify alist with "consp and
17971 not functionp" and let all other things go down the `apply' leg,
17972 as suggested by Stefan. (Further to bug#4531.)
17973
17974 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
17975
17976 * minibuffer.el (read-file-name): Check for repeat before putting
17977 a default argument in file-name-history (Bug#4657).
17978
17979 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
17980 read syntax (Bug#4737).
17981
17982 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
17983
17984 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
17985
17986 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
17987 (html-tag-alist, html-tag-help): Add descriptions for undocumented
17988 entries and make note of obsolete tags.
17989
17990 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
17991
17992 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
17993
17994 2009-10-18 Glenn Morris <rgm@gnu.org>
17995
17996 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
17997 grep, so that binary files (eg international/uni-bidi.el) can match.
17998 Remove test for "UnicodeData" files, since it is hopefully unnecessary
17999 now, and in any case the file header format has changed.
18000
18001 2009-10-17 Glenn Morris <rgm@gnu.org>
18002
18003 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
18004 (flyspell-get-word, flyspell-large-region)
18005 (flyspell-auto-correct-previous-word): Doc/error message fixes.
18006
18007 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
18008
18009 * Makefile.in (ELCFILES): Add ede/shell.
18010
18011 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
18012
18013 * term/common-win.el (x-colors): Purecopy it.
18014
18015 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18016
18017 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
18018 permissive for when the buffer is empty.
18019 (tar-header-block-tokenize): Decode the username and groupname.
18020 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
18021
18022 2009-10-17 Eric Ludlam <zappo@gnu.org>
18023
18024 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
18025 contains multibyte characters, choose first applicable coding
18026 system automatically.
18027
18028 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18029
18030 * international/mule-cmds.el (select-safe-coding-system): If the file
18031 has a coding cookie, use it regardless of any other setting (bug#4712).
18032
18033 2009-10-17 Glenn Morris <rgm@gnu.org>
18034
18035 * foldout.el (foldout-mouse-swallow-events):
18036 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
18037
18038 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
18039 (dired-keep-marker-copy, dired-keep-marker-hardlink)
18040 (dired-keep-marker-symlink, dired-dwim-target)
18041 (dired-copy-preserve-time): Do not autoload these defcustoms.
18042
18043 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
18044 messages from messing up the file coding. (Bug#4623)
18045
18046 2009-10-17 Jari Aalto <jari.aalto@cante.net>
18047
18048 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
18049 if no match is found for the current dictionary. (Bug#4578)
18050
18051 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
18052 optional, since that is how it is documented, and this is often called
18053 with a nil argument. (Bug#4577)
18054 (flyspell-external-point-words, flyspell-auto-correct-word)
18055 (flyspell-correct-word-before-point, flyspell-word-search-forward)
18056 (flyspell-word-search-backward): Remove nil argument in calls to
18057 flyspell-get-word, since it is not needed now.
18058
18059 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
18060
18061 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
18062
18063 2009-10-16 Glenn Morris <rgm@gnu.org>
18064
18065 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
18066
18067 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
18068
18069 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
18070 (ange-ftp-file-size): New function.
18071 (ange-ftp-file-attributes): Use it.
18072
18073 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
18074
18075 * net/tramp-smb.el (tramp-smb-version): New defvar.
18076 (tramp-smb-maybe-open-connection): Use it, in order to avoid
18077 repeated checks.
18078
18079 2009-10-16 Glenn Morris <rgm@gnu.org>
18080
18081 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
18082 Maybe copy some custom properties from old to new name. (Bug#4706)
18083
18084 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
18085
18086 * subr.el (error, sit-for, start-process-shell-command)
18087 (start-file-process-shell-command): Set the calling convention
18088 after the function definition.
18089
18090 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
18091
18092 * subr.el (error, sit-for, start-process-shell-command)
18093 (start-file-process-shell-command): Use the new
18094 set-advertised-calling-convention feature.
18095
18096 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
18097
18098 * international/ucs-normalize.el (ucs-normalize-version):
18099 Change to 1.2.
18100 (check-range): Adjust for Unicode 5.2.
18101
18102 2009-10-15 Juri Linkov <juri@jurta.org>
18103
18104 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
18105 to the `menu-item' format.
18106
18107 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
18108
18109 * net/tramp.el (tramp-replace-environment-variables): Do not fail
18110 if the environment variable does not exist.
18111
18112 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18113 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
18114 parameter.
18115 (tramp-smb-handle-add-name-to-file)
18116 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18117 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18118 (tramp-smb-handle-file-attributes)
18119 (tramp-smb-do-file-attributes-with-stat)
18120 (tramp-smb-handle-file-local-copy)
18121 (tramp-smb-handle-insert-directory)
18122 (tramp-smb-handle-make-directory)
18123 (tramp-smb-handle-make-directory-internal)
18124 (tramp-smb-handle-make-symbolic-link)
18125 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
18126 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
18127 (tramp-smb-maybe-open-connection): Apply the changed parameters.
18128 (tramp-smb-read-file-entry): Read Disk names in compressed format.
18129 Handle long file names.
18130 (tramp-smb-get-cifs-capabilities): Check, whether the connection
18131 process is running.
18132 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
18133 Read share names with "-g" option.
18134
18135 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
18136
18137 * net/rcirc.el (rcirc-view-log-file): New command.
18138 (rcirc-track-minor-mode-map): Remove C-c ` binding.
18139 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
18140 specified.
18141
18142 2009-10-15 Glenn Morris <rgm@gnu.org>
18143
18144 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
18145 from the second command-line argument.
18146 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
18147 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
18148 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
18149 w32-batch-update-autoloads.
18150 * emacs-lisp/autoload.el (autoload-make-program): New variable.
18151 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
18152
18153 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
18154 the headers cannot be located. Simplify, subtracting superflous
18155 save-excursions.
18156
18157 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
18158
18159 Replace completion-base-size by completion-base-position to fix bugs
18160 such as (bug#4699).
18161 * simple.el (completion-base-position): New var.
18162 (completion-base-size): Mark as obsolete.
18163 (choose-completion): Make it work for mouse events as well.
18164 Pass the new base-position to choose-completion-string.
18165 (choose-completion-guess-base-position): New function, extracted from
18166 choose-completion-delete-max-match.
18167 (choose-completion-delete-max-match): Use it. Make obsolete.
18168 (choose-completion-string): Use the new base-position info.
18169 (completion-root-regexp): Delete.
18170 (completion-setup-function): Preserve completion-base-position.
18171 Eliminate obsolete base-size manipulation.
18172 * minibuffer.el (display-completion-list): Don't mess with base-size.
18173 (minibuffer-completion-help): Set completion-base-position instead.
18174 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
18175 choose-completion.
18176 * textmodes/bibtex.el (bibtex-complete):
18177 * emacs-lisp/crm.el (crm--choose-completion-string):
18178 Adjust to new calling convention.
18179 * complete.el (partial-completion-mode): Use minibufferp to avoid
18180 bumping into incompatible change to choose-completion-string-functions.
18181 * ido.el (ido-choose-completion-string): Make its calling convention
18182 more permissive.
18183 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
18184 base-size manipulation.
18185 (comint-dynamic-list-input-ring): Use dotimes and push.
18186 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
18187 fundamental-mode. Use `or'.
18188
18189 2009-10-14 Juri Linkov <juri@jurta.org>
18190
18191 * misearch.el (multi-isearch-next-buffer-from-list)
18192 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
18193
18194 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18195
18196 * Makefile.in (compile-onefile): Load `bytecomp' rather than
18197 `bytecomp.el'.
18198
18199 * minibuffer.el (completion-pcm--merge-completions): Make sure the
18200 string we return is all made up of text from the completions rather
18201 than part from the completions and part from the input (bug#4219).
18202
18203 * ido.el (ido-everywhere): Use define-minor-mode.
18204
18205 * buff-menu.el (list-buffers, ctl-x-map):
18206 Mark the entry points with ;;;###autoload cookies.
18207
18208 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
18209
18210 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
18211 correctly in the detached head case.
18212 (vc-git-print-log): Remove unused binding.
18213
18214 * vc.el (vc-responsible-backend): When a directory is passed for
18215 for registration create a VC repository if no backend is
18216 responsible for the directory argument.
18217 (vc-deduce-fileset): Tell vc-responsible-backend to register.
18218
18219 * vc.el: Move comments about RCS and SCCS ...
18220 * vc-rcs.el:
18221 * vc-sccs.el: ... here, respectively.
18222
18223 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18224
18225 * minibuffer.el (completion--file-name-table): Return nil if there's
18226 no file completion, even if substitute-in-file-name changed
18227 the string (bug#4708).
18228
18229 2009-10-13 Juri Linkov <juri@jurta.org>
18230
18231 * files-x.el (read-file-local-variable-value): Don't filter out
18232 minor modes from mode name completion (bug#4664).
18233
18234 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
18235
18236 * international/mule-cmds.el (ucs-names): Remove exclusion of
18237 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
18238
18239 2009-10-13 Kenichi Handa <handa@m17n.org>
18240
18241 * international/uni-name.el: Regenerated.
18242
18243 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
18244
18245 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
18246 should be automatically buffer-local, but isn't.)
18247
18248 2009-10-12 Sam Steingold <sds@gnu.org>
18249
18250 * progmodes/compile.el (compilation-next-error-function): Fix the
18251 timestamps if the buffer has been visited before.
18252 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
18253 non-anchored patterns, like the perl one (bug#3928).
18254
18255 2009-10-12 Glenn Morris <rgm@gnu.org>
18256
18257 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
18258 Let-bind `size'.
18259
18260 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
18261
18262 * proced.el (proced-unload-function): New function.
18263
18264 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
18265 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
18266 Doc fix.
18267
18268 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
18269
18270 2009-10-11 Juri Linkov <juri@jurta.org>
18271
18272 * files-x.el (read-file-local-variable-value):
18273 Provide default value only for bound variables (bug#4664).
18274
18275 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
18276
18277 * net/tramp.el (tramp-local-host-p): Function shall return nil for
18278 connection methods like smb.
18279
18280 * net/tramp-cache.el (tramp-flush-connection-property): The hash
18281 can be empty.
18282
18283 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18284 (tramp-smb-file-name-handler-alist): Add handlers for
18285 `add-name-to-file', `make-symbolic-link'.
18286 (tramp-smb-handle-add-name-to-file)
18287 (tramp-smb-do-file-attributes-with-stat)
18288 (tramp-smb-handle-make-symbolic-link)
18289 (tramp-smb-get-cifs-capabilities): New defuns.
18290 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18291 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18292 (tramp-smb-handle-file-local-copy)
18293 (tramp-smb-handle-make-directory-internal)
18294 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
18295 The file name syntax depends on cifs capabilities.
18296 (tramp-smb-handle-file-attributes):
18297 Call `tramp-smb-do-file-attributes-with-stat' if possible.
18298 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
18299 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
18300
18301 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
18302
18303 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
18304 (eieio-defclass): Apply deftype handler and setf-method properties
18305 directly.
18306 (eieio-add-new-slot): Avoid union function from cl library.
18307 (eieio--typep): New function.
18308 (eieio-perform-slot-validation): Use it.
18309
18310 2009-10-10 Karl Fogel <kfogel@red-bean.com>
18311
18312 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
18313 Update documentation to refer to the variables documented in r1.135.
18314 (Bug#4188)
18315
18316 2009-10-10 Karl Fogel <kfogel@red-bean.com>
18317
18318 * bookmark.el (Info-suffix-list): Remove this unused variable.
18319 (bookmark-current-point): Remove this obsolete variable.
18320 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
18321 Adjust for removal of bookmark-current-point.
18322
18323 (bookmarks-already-loaded, bookmark-current-buffer)
18324 (bookmark-yank-point): Document. (Bug#4188)
18325
18326 2009-10-10 Glenn Morris <rgm@gnu.org>
18327
18328 * frame.el (frame-height): Doc fix.
18329
18330 * calendar/calendar.el (calendar-split-width-threshold): New option.
18331 (calendar-basic-setup): Use calendar-split-width-threshold.
18332
18333 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
18334
18335 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
18336 Ideographic Supplement" range (U+1F200..U+1F2FF).
18337
18338 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18339
18340 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
18341 since the list will have been rebuilt anyway. (Bug#4349)
18342
18343 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18344
18345 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
18346 (bookmark-bmenu-execute-deletions): Don't save here, as
18347 bookmark-delete will now do so if necessary.
18348 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
18349 (Bug#4348)
18350
18351 2009-10-09 Glenn Morris <rgm@gnu.org>
18352
18353 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
18354
18355 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18356
18357 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
18358 (bookmark-jump-other-window): Just invoke bookmark-jump with new
18359 argument now, so the two function's behaviors will match. (Bug#3645)
18360
18361 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
18362
18363 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
18364 (tramp-file-name-real-host, tramp-file-name-port):
18365 Apply `save-match-data'.
18366
18367 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
18368 case both directories are remote.
18369 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
18370 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
18371
18372 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
18373
18374 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
18375
18376 2009-10-07 Glenn Morris <rgm@gnu.org>
18377
18378 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
18379 of concat.
18380
18381 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
18382
18383 * files-x.el (read-file-local-variable): Include some
18384 non-user-variables in the completion table (bug#4664).
18385
18386 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
18387
18388 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
18389 message.
18390
18391 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18392 (tramp-smb-file-name-handler-alist): Add handler for
18393 `copy-directory', `expand-file-name', `set-file-modes'.
18394 (tramp-smb-handle-copy-directory)
18395 (tramp-smb-handle-expand-file-name)
18396 (tramp-smb-handle-set-file-modes): New defuns.
18397 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
18398 (tramp-smb-handle-file-attributes): Simplify check for retrieving
18399 entry.
18400 (tramp-smb-handle-insert-directory): Don't flush the cache.
18401 (tramp-smb-maybe-open-connection): Check for samba client and
18402 server versions.
18403
18404 2009-10-07 Eli Zaretskii <eliz@gnu.org>
18405
18406 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
18407 to not error out of search for "^lisp=" fails.
18408
18409 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
18410
18411 * makefile.w32-in (WINS_UPDATES): New macro.
18412 (custom-deps, finder-data, autoloads): Use it.
18413
18414 2009-10-07 Glenn Morris <rgm@gnu.org>
18415
18416 * Makefile.in (autoloads): Revert previous change.
18417 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
18418 the list of preloaded files passed on the command-line, get
18419 it from src/Makefile.
18420
18421 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
18422 show the original buffer rather than a random one.
18423
18424 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
18425
18426 * help.el (describe-no-warranty): Place point in a slightly better
18427 position in the GPLv3 text.
18428
18429 2009-10-06 Sam Steingold <sds@gnu.org>
18430
18431 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
18432 the comm attribute is present before calling regexp-quote.
18433
18434 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
18435
18436 * play/animate.el (animate-string): For good effect, make sure
18437 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
18438
18439 * play/animate.el (animate-sequence, animate-birthday-present):
18440 * misc.el (butterfly): Don't set `indent-tabs-mode'.
18441
18442 2009-10-06 Glenn Morris <rgm@gnu.org>
18443
18444 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
18445
18446 * emacs-lisp/autoload.el (autoload-excludes): New variable.
18447 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
18448 (batch-update-autoloads): Process a string value of autoload-excludes,
18449 set during the build process.
18450 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
18451
18452 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
18453 inside with-parsed... macro so that `v' is defined.
18454
18455 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
18456 * progmodes/fortran.el (fortran-end-of-block)
18457 (fortran-beginning-of-block):
18458 Also push mark in the macro case.
18459
18460 * emerge.el (emerge-show-file-name):
18461 * calc/calc.el (calc-quit):
18462 * calc/calc-misc.el (calc-big-or-small):
18463 * calc/calc-graph.el (calc-graph-view):
18464 * calc/calc-ext.el (calc-reset):
18465 * calendar/calendar.el (calendar-basic-setup):
18466 Use window-full-height-p.
18467
18468 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
18469 header we don't understand, don't insert another. (Bug#4624)
18470 If changing mime charset, insert the new one in the right place.
18471
18472 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
18473
18474 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
18475 (cal-tex-cursor-month): Correctly increment the end date for diary and
18476 holiday listing. (Bug#4626)
18477
18478 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18479
18480 * help-fns.el (describe-function-1): Don't burp if the function is not
18481 a symbol.
18482
18483 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
18484
18485 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
18486 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
18487 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
18488 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
18489
18490 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
18491 (eieio-default-superclass): Reflow docstrings.
18492 (this, class-option-assoc, defclass, eieio-class-un-autoload)
18493 (eieio-unbind-method-implementations, defmethod)
18494 (eieio-validate-slot-value, eieio-validate-class-slot-value)
18495 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
18496 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
18497 (eieio-slot-originating-class-p, eieio-slot-name-index)
18498 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
18499 (constructor, initialize-instance, no-next-method, object-print)
18500 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
18501 Fix typos in docstrings.
18502 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
18503 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
18504 (next-method-p): Doc fixes.
18505 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
18506 Fix typos in error messages.
18507 (eieio-defmethod): Fix typo in description of generic method.
18508
18509 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
18510 (eieio-persistent-save-interactive, slot-missing):
18511 Fix typos in docstrings.
18512 (eieio-instance-inheritor-slot-boundp): Doc fix.
18513
18514 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
18515 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
18516
18517 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
18518 (eieio-custom-object-apply-reset):
18519 Fix typos in docstrings and error messages.
18520
18521 * emacs-lisp/eieio-datadebug.el (data-debug-show):
18522 Fix typo in docstring.
18523
18524 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
18525 (eieio-browse-tree): Doc fix.
18526 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
18527 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
18528 Fix typos in docstrings.
18529
18530 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
18531 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
18532 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
18533 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
18534 Reflow docstrings.
18535
18536 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
18537
18538 * vc-hg.el (log-view-vc-backend): Declare for compiler.
18539 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
18540 Set log-view-vc-backend so that diff can work.
18541
18542 * log-view.el (log-view-diff): Use vc-diff-internal instead of
18543 vc-version-diff.
18544 (vc-diff-internal): Autoload this instead of vc-version-diff.
18545
18546 2009-10-05 Eli Zaretskii <eliz@gnu.org>
18547
18548 * simple.el (eval-expression): Doc fix.
18549
18550 * progmodes/cwarn.el (cwarn-mode): Doc fix.
18551
18552 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
18553
18554 * files.el (directory-files-no-dot-files-regexp): New defconst.
18555 (delete-directory): Use it.
18556 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
18557
18558 * net/tramp.el (tramp-verbose): Fix docstring.
18559 (tramp-methods): Add recursive option to `tramp-copy-args'.
18560 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
18561 "scp1_old", "scp2_old", "rsync", "rsyncc".
18562 (tramp-default-method): Check also for `auth-source-user-or-password'.
18563 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
18564 Add handler for `copy-directory'.
18565 (tramp-handle-copy-directory): New defun.
18566 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
18567 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
18568 Optimize sent command.
18569
18570 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18571
18572 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
18573 window if necessary.
18574
18575 * calendar/calendar.el (calendar-basic-setup): Don't call
18576 switch-to-buffer in a dedicated window.
18577
18578 2009-10-05 Karl Fogel <kfogel@red-bean.com>
18579
18580 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
18581 don't do anything related to relocating, just return nil.
18582 (bookmark-error-no-filename): New error.
18583 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
18584 bookmark has no file. Don't even attempt to handle things that
18585 are not files; the whole point of custom handlers is to keep that
18586 knowledge elsewhere anyway. Tighten some comments.
18587 (bookmark-file-or-variation-thereof): Remove now-unused function.
18588 (bookmark-location): Doc string fix.
18589 (Bug#4250)
18590
18591 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18592
18593 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
18594 don't use a file dialog, because they usually don't know how to read
18595 a directory target from the user. (Bug#4230)
18596 Also, make sure the prompt can display directories as well as files.
18597
18598 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18599
18600 * bookmark.el (bookmark-set, bookmark-buffer-name):
18601 Improve doc strings. (Bug#1193)
18602
18603 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18604
18605 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
18606 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
18607 (bookmark-get-annotation, bookmark-set-annotation)
18608 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
18609 (bookmark-set-position, bookmark-get-front-context-string)
18610 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
18611 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
18612 (bookmark-jump-other-window, bookmark-handle-bookmark)
18613 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
18614 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
18615 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
18616 Improve doc strings to say whether bookmark can be a string or
18617 a record or both, and make other consistency and clarity fixes.
18618 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
18619 (bookmark-default-annotation-text, bookmark-yank-word)
18620 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
18621 (bookmark-import-new-list, bookmark-maybe-rename)
18622 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
18623 (bookmark-bmenu-bookmark): Give these doc strings.
18624 (bookmark-bmenu-check-position): Give this a doc string, but also
18625 add a FIXME comment about how the function may be pointless.
18626 (bookmark-default-handler): Rework doc string and change a
18627 parameter name, to clarify that this takes a bookmark record
18628 not a bookmark name.
18629 (bookmark-set): Change a parameter name to indicate its meaning,
18630 and improve the doc string a bit.
18631 (Bug#4188)
18632
18633 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18634
18635 * bookmark.el (bookmark-alist): Document the new `handler' element
18636 in the param alist.
18637 (bookmark-make-record-function): Adjust documentation for above.
18638 (Bug#4193)
18639
18640 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18641
18642 * info.el (Info-bookmark-make-record): Document this function.
18643 (Info-bookmark-jump): Document with a doc string, not just a comment.
18644 (Bug#4203)
18645
18646 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
18647
18648 * files.el (copy-directory): New defun.
18649
18650 * dired-aux.el (dired-copy-file-recursive): Use it.
18651
18652 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
18653
18654 * files-x.el (modify-dir-local-variable)
18655 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
18656 docstrings.
18657
18658 * recentf.el (recentf-unload-function): New function.
18659
18660 2009-10-04 Glenn Morris <rgm@gnu.org>
18661
18662 * window.el (window-full-height-p): Add doc string.
18663
18664 2009-10-04 Martin Rudalics <rudalics@gmx.at>
18665
18666 * window.el (window-full-height-p): New function. (Bug#4543)
18667
18668 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
18669
18670 * vc.el: Remove commented out code.
18671 (vc-derived-from-dir-mode): Remove, unused.
18672 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
18673
18674 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
18675
18676 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
18677 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
18678 there could be recursive loading when `default-directory' is a
18679 remote file name. (Bug#4614)
18680
18681 2009-10-03 Glenn Morris <rgm@gnu.org>
18682
18683 * calendar/calendar.el (calendar-basic-setup): Handle the case where
18684 the frame is wide.
18685 (calendar-generate-window): Test for shrinkability rather than width.
18686
18687 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
18688 reusing existing buffers, in case we happen to visit two files with the
18689 same basename. (Bug#4593)
18690
18691 2009-10-02 Eli Zaretskii <eliz@gnu.org>
18692
18693 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
18694 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
18695 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
18696 subdirs of cedet as well.
18697 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
18698
18699 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
18700
18701 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
18702 Obey advertised-signature-table.
18703
18704 * help-fns.el (help-function-arglist): Don't check
18705 advertised-signature-table.
18706 (describe-function-1): Do it here instead so it also applies to subrs.
18707
18708 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
18709
18710 * simple.el (start-file-process): Say in the doc-string, that file
18711 handlers might not support pty association, if PROGRAM is nil.
18712
18713 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
18714 HOST and USER are strings. They are nil, when there are
18715 incomplete entries in ~/.netrc, for example.
18716 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
18717 root directory ("device busy" error otherwise).
18718
18719 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
18720 Flush file properties of created directory.
18721
18722 2009-10-02 Eli Zaretskii <eliz@gnu.org>
18723
18724 * makefile.w32-in (WINS_BASIC): Remove cedet.
18725 (WINS_CEDET): Add cedet.
18726 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
18727
18728 2009-10-02 Kevin Ryde <user42@zip.com.au>
18729
18730 * net/browse-url.el (browse-url): Pass any symbol in
18731 browse-url-browser-function to `apply', since if you've mistakenly put
18732 an unbound symbol then the error is clearer. (Bug#4531)
18733
18734 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
18735
18736 * allout.el (allout-init, allout-back-to-current-heading)
18737 (allout-beginning-of-current-entry, allout-ascend-to-depth)
18738 (allout-ascend, allout-up-current-level, allout-end-of-level)
18739 (allout-previous-visible-heading, allout-forward-current-level)
18740 (allout-backward-current-level, allout-show-children):
18741 * apropos.el (apropos-describe-plist):
18742 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
18743 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
18744 * completion.el (add-completion, add-permanent-completion):
18745 * descr-text.el (describe-text-category, describe-char):
18746 * desktop.el (desktop-lazy-abort):
18747 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
18748 * dired.el (dired-build-subdir-alist):
18749 * ediff.el (ediff-version):
18750 * elide-head.el (elide-head, elide-head-show):
18751 * emerge.el (emerge-version):
18752 * env.el (getenv):
18753 * face-remap.el (variable-pitch-mode):
18754 * faces.el (describe-face):
18755 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
18756 (dired-at-point):
18757 * files.el (find-file-existing, auto-save-mode):
18758 * font-lock.el (font-lock-fontify-buffer):
18759 * help-fns.el (describe-function, describe-variable)
18760 (describe-syntax, describe-categories):
18761 * help.el (view-lossage, describe-bindings, describe-key)
18762 (describe-mode):
18763 * hexl.el (hexl-current-address):
18764 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
18765 * info.el (Info-goto-emacs-key-command-node):
18766 * log-edit.el (log-edit-insert-cvs-template)
18767 (log-edit-insert-cvs-rcstemplate):
18768 * menu-bar.el (menu-bar-mode):
18769 * mouse.el (mouse-appearance-menu):
18770 * newcomment.el (comment-indent-new-line):
18771 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
18772 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
18773 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
18774 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
18775 * recentf.el (recentf-mode):
18776 * savehist.el (savehist-mode, savehist-save):
18777 * shadowfile.el (shadow-copy-files):
18778 * simple.el (kill-ring-save, next-line, previous-line)
18779 (normal-erase-is-backspace-mode):
18780 * strokes.el (strokes-update-window-configuration)
18781 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
18782 (strokes-xpm-for-stroke):
18783 * time.el (emacs-uptime, emacs-init-time):
18784 * tutorial.el (tutorial--describe-nonstandard-key)
18785 (tutorial--detailed-help):
18786 * type-break.el (type-break-mode)
18787 (type-break-mode-line-message-mode, type-break-query-mode)
18788 (type-break-guesstimate-keystroke-threshold):
18789 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
18790 * version.el (emacs-version):
18791 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
18792 * winner.el (winner-mode):
18793 * calendar/timeclock.el (timeclock-in, timeclock-out)
18794 (timeclock-status-string, timeclock-change)
18795 (timeclock-workday-remaining-string)
18796 (timeclock-workday-elapsed-string)
18797 (timeclock-when-to-leave-string):
18798 * calendar/todo-mode.el (todo-add-category):
18799 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
18800 * emacs-lisp/autoload.el (update-file-autoloads):
18801 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
18802 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
18803 (checkdoc-message-text, checkdoc-defun):
18804 * emacs-lisp/debug.el (debugger-list-functions):
18805 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
18806 * emacs-lisp/eieio-opt.el (eieio-describe-class)
18807 (eieio-describe-generic):
18808 * emacs-lisp/lisp-mnt.el (lm-synopsis):
18809 * emacs-lisp/shadow.el (list-load-path-shadows):
18810 * emulation/cua-base.el (cua-mode):
18811 * emulation/edt.el (edt-set-scroll-margins):
18812 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
18813 (tpu-toggle-regexp, tpu-toggle-search-direction)
18814 (tpu-toggle-rectangle, tpu-toggle-control-keys):
18815 * emulation/tpu-extras.el (tpu-set-scroll-margins):
18816 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
18817 (viper-set-parsing-style-toggling-macro)
18818 (viper-set-emacs-state-searchstyle-macros):
18819 * emulation/viper.el (viper-set-hooks):
18820 * eshell/esh-mode.el (eshell-truncate-buffer):
18821 * international/mule-cmds.el (prefer-coding-system)
18822 (describe-input-method, describe-language-environment):
18823 * international/mule-diag.el (list-character-sets)
18824 (describe-character-set, describe-coding-system)
18825 (describe-fontset, list-fontsets, list-input-methods):
18826 * mail/sendmail.el (mail-signature):
18827 * net/ange-ftp.el (ange-ftp-copy-file):
18828 * net/browse-url.el (browse-url):
18829 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
18830 * net/quickurl.el (quickurl-add-url):
18831 * net/rcirc.el (names, topic):
18832 * net/xesam.el (xesam-mode):
18833 * play/5x5.el (5x5-new-game):
18834 * play/yow.el (apropos-zippy):
18835 * progmodes/ada-mode.el (ada-mode-version):
18836 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
18837 (f90-end-of-block)
18838 (f90-beginning-of-block):
18839 * progmodes/fortran.el (fortran-end-of-block)
18840 (fortran-beginning-of-block):
18841 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
18842 * progmodes/python.el (python-describe-symbol, python-shell):
18843 * term/ns-win.el (ns-print-buffer):
18844 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
18845 * textmodes/flyspell.el (flyspell-mode-on):
18846 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
18847 (pages-directory-for-addresses):
18848 * textmodes/table.el (table-recognize-cell)
18849 (table-query-dimension, table-generate-source)
18850 (table-insert-sequence, table--warn-incompatibility):
18851 * textmodes/tex-mode.el (tex-validate-buffer):
18852 * textmodes/texinfmt.el (texinfmt-version)
18853 (texinfo-format-buffer):
18854 Use `called-interactively-p' instead of `interactive-p'.
18855
18856 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
18857
18858 * image-mode.el (image-toggle-display):
18859 * emacs-lisp/elp.el (elp-instrument-function):
18860 * emacs-lisp/advice.el (ad-make-advised-definition):
18861 * emacs-lisp/easy-mmode.el (define-minor-mode):
18862 * net/browse-url.el (browse-url-maybe-new-window):
18863 * progmodes/sh-script.el (sh-learn-buffer-indent):
18864 Pass new argument 'any to `called-interactively-p'.
18865
18866 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
18867
18868 * international/uni-bidi.el:
18869 * international/uni-category.el:
18870 * international/uni-combining.el:
18871 * international/uni-comment.el:
18872 * international/uni-decimal.el:
18873 * international/uni-decomposition.el:
18874 * international/uni-digit.el:
18875 * international/uni-lowercase.el:
18876 * international/uni-mirrored.el:
18877 * international/uni-name.el:
18878 * international/uni-numeric.el:
18879 * international/uni-old-name.el:
18880 * international/uni-titlecase.el:
18881 * international/uni-uppercase.el:
18882 Regenerate from Unicode 5.2.0 data.
18883
18884 2009-10-01 Glenn Morris <rgm@gnu.org>
18885
18886 * Makefile.in (ELCFILES): Regenerate.
18887
18888 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
18889
18890 * subr.el (interactive-p): Mark obsolete.
18891 (called-interactively-p): Make the optional-ness of `kind' obsolete.
18892 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
18893 advertised-signature-table for subroutines as well.
18894
18895 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
18896 (set-advertised-calling-convention): New function.
18897 (make-obsolete, define-obsolete-function-alias)
18898 (make-obsolete-variable, define-obsolete-variable-alias):
18899 Make the optional-ness of `when' obsolete.
18900 (define-obsolete-face-alias): Make `when' non-optional.
18901 * help-fns.el (help-function-arglist):
18902 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
18903 Use advertised-signature-table.
18904
18905 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
18906
18907 * files.el (delete-directory): New defun. The original function
18908 in fileio.c has been renamed to `delete-directory-internal'.
18909
18910 * dired.el (dired-delete-file): Call `delete-directory' with
18911 RECURSIVE parameter.
18912
18913 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
18914 parameter RECURSIVE. Implementation is missing.
18915
18916 * net/tramp.el (tramp-handle-make-directory): Flush upper
18917 directory's file properties.
18918 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
18919 (tramp-handle-dired-recursive-delete-directory): Flush directory
18920 properties after the remove command only.
18921
18922 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
18923 Handle optional parameter RECURSIVE.
18924
18925 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
18926 Handle optional parameter RECURSIVE.
18927
18928 * net/tramp-smb.el (tramp-smb-errors): Add error message for
18929 connection timeout.
18930 (tramp-smb-handle-delete-directory): Handle optional parameter
18931 RECURSIVE.
18932
18933 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
18934
18935 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
18936 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
18937 (byte-compile-defmacro): Use backquotes.
18938
18939 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
18940
18941 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
18942 has no associated file.
18943 (vc-resynch-buffer): Use vc-dir-buffers.
18944
18945 2009-10-01 Glenn Morris <rgm@gnu.org>
18946
18947 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
18948 (chart-file-count):
18949 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
18950 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
18951 * emacs-lisp/eieio-opt.el (eieio-describe-class):
18952 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
18953 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
18954 (eieio-copy-parents-into-subclass, make-instance, class-children)
18955 (eieio-generic-form):
18956
18957 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
18958 match-data. (Bug#4555).
18959
18960 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
18961 rather than parsing it as a regexp. This relaxes the layout
18962 requirements and makes errors easier to detect.
18963 (check-declare-verify): Check file is regular.
18964 (check-declare-directory): Doc fix.
18965 * subr.el (declare-function): Doc fix.
18966
18967 * ibuffer.el (ibuffer-format-qualifier):
18968 * isearch.el (hi-lock-regexp-okay):
18969 * calc/calc.el (math-zerop):
18970 * mail/uce.el (rmail-msgbeg, rmail-msgend):
18971 * term/w32-win.el (setup-default-fontset, set-fontset-font):
18972 Remove unused declarations.
18973
18974 2009-09-30 Eric Ludlam <zappo@gnu.org>
18975
18976 * emacs-lisp/eieio.el (boolean-p): Delete.
18977
18978 2009-09-30 Glenn Morris <rgm@gnu.org>
18979
18980 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
18981
18982 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
18983 filename is not a string.
18984
18985 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
18986
18987 * files.el (safe-local-eval-forms): Fix typo.
18988
18989 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
18990
18991 * vc-hooks.el (vc-dir-buffers): New var.
18992 (vc-state-refresh): New function.
18993 (vc-state): Use it.
18994 (vc-after-save): Always ask the backend to recompute the new state.
18995 Always call vc-dir if necessary, using vc-dir-buffers.
18996 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
18997 Use vc-dir-buffers.
18998 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
18999 (vc-dir-prepare-status-buffer, vc-dir-update)
19000 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
19001 Don't call expand-file-name on default-directory.
19002
19003 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
19004
19005 * speedbar.el (speedbar-item-delete):
19006 * calc/calc-prog.el (calc-kbd-if):
19007 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
19008
19009 * epa.el (epa-key-list-mode-map):
19010 * hi-lock.el (hi-lock-menu): Fix typos in menus.
19011
19012 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
19013 (hs-show-hook): Fix typo in docstring.
19014
19015 2009-09-29 Glenn Morris <rgm@gnu.org>
19016
19017 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
19018 file-name-nondirectory call preventing location of cedet files.
19019 (check-declare-verify): Use literal search rather than re-search.
19020 Add basic defmethod and defclass, and define-overloadable-function.
19021
19022 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19023 Use tramp-compat-file-attributes rather than nonexistent
19024 tramp-compat-handle-file-attributes.
19025
19026 * Makefile.in (lisptagsfiles4): New.
19027 (AUTOGENEL): Add cedet loaddefs files.
19028 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
19029 (update-elclist, compile-always, backup-compiled-files)
19030 (bootstrap-clean): Add yet another directory level.
19031 (update-elclist): Use LC_COLLATE rather than COLLATE.
19032 (ELCFILES): Update, via `make update-elclist'.
19033
19034 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
19035
19036 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
19037 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
19038 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
19039
19040 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
19041
19042 * Makefile.in (lisptagsfiles3): Define.
19043 (TAGS, TAGS-LISP): Use it.
19044 (update-elclist): Add third directory level to look for elc files.
19045 (compile-always): Likewise.
19046 (backup-compiled-files): Likewise.
19047 (bootstrap-clean): Likewise.
19048 (ELCFILES): Update.
19049
19050 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
19051
19052 * Makefile.in (ELCFILES): Add CEDET files.
19053
19054 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
19055
19056 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
19057
19058 * net/tramp.el (top): Require tramp-imap.
19059
19060 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19061 Use `tramp-compat-handle-file-attributes'.
19062
19063 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
19064
19065 * net/tramp-imap.el: New package.
19066
19067 2009-09-28 Eric Ludlam <zappo@gnu.org>
19068
19069 * emacs-lisp/chart.el:
19070 * emacs-lisp/eieio-base.el:
19071 * emacs-lisp/eieio-comp.el:
19072 * emacs-lisp/eieio-custom.el:
19073 * emacs-lisp/eieio-datadebug.el:
19074 * emacs-lisp/eieio-opt.el:
19075 * emacs-lisp/eieio-speedbar.el:
19076 * emacs-lisp/eieio.el: New files.
19077
19078 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19079
19080 * whitespace.el (whitespace-trailing-regexp)
19081 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
19082 Fix doc string.
19083
19084 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
19085
19086 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
19087 menu.
19088
19089 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
19090 menu-bar-ediff-menu.
19091
19092 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
19093 define-overloadable-function.
19094
19095 * progmodes/autoconf.el: Provide autoconf as well, so that this
19096 file can be `require'd.
19097
19098 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
19099
19100 * emacs-lisp/autoload.el (generated-autoload-feature)
19101 (generated-autoload-load-name): New vars.
19102 (autoload-rubric, autoload-generate-file-autoloads): Use them.
19103 (make-autoload): Recognize define-overloadable-function and
19104 defclass forms (for EIEIO).
19105
19106 * Makefile.in (update-subdirs): Exclude cedet directory.
19107
19108 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
19109
19110 * term/ns-win.el: Don't set the region face background. (Bug#4381)
19111
19112 * faces.el: Default light-background background for region face to
19113 ns_selection_color under NS.
19114
19115 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
19116
19117 * net/imap-hash.el: New library, see NEWS.
19118
19119 * Makefile.in (ELCFILES): Add imap-hash.el.
19120
19121 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
19122
19123 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
19124 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
19125 * help-macro.el (make-help-screen): Avoid using an ambiguous function
19126 definition where the docstring could be taken for the return value.
19127
19128 2009-09-26 Glenn Morris <rgm@gnu.org>
19129
19130 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
19131 Add option to only show images below a certain size.
19132 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
19133 save-excursion calls.
19134
19135 2009-09-26 Eli Zaretskii <eliz@gnu.org>
19136
19137 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
19138 subdirectories) and eieio.
19139
19140 2009-09-26 Alan Mackenzie <acm@muc.de>
19141
19142 * progmodes/cc-engine.el (c-beginning-of-statement-1):
19143 Correct buggy bracketing. (Bug#4289)
19144
19145 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
19146 character constants (as case labels). (Bug#4289)
19147
19148 2009-09-25 Juri Linkov <juri@jurta.org>
19149
19150 * files.el (safe-local-eval-forms): Allow time-stamp in
19151 before-save-hook (Bug#4554).
19152
19153 2009-09-25 Drew Adams <drew.adams@oracle.com>
19154
19155 * menu-bar.el (list-buffers-directory): Doc fix.
19156
19157 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
19158
19159 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
19160 Try and avoid copying twice the same paragraph.
19161 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
19162 Remove save-excursion.
19163 (log-edit-changelog-entry): Do it here instead.
19164
19165 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
19166
19167 * bs.el (bs--get-file-name): Use `list-buffers-directory'
19168 when available, instead of hardcoding mode names. Doc fix.
19169
19170 * menu-bar.el (list-buffers-directory): Add docstring.
19171 Make automatically buffer-local.
19172
19173 * dired.el (dired-mode):
19174 * files.el (cd-absolute):
19175 * pcvs.el (cvs-temp-buffer):
19176 * pcvs-util.el (cvs-get-buffer-create):
19177 * shell.el (shell-mode):
19178 * vc-dir.el (vc-dir-mode):
19179 Don't make `list-buffers-directory' buffer local.
19180
19181 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
19182
19183 * comint.el (comint-exec, comint-run, make-comint):
19184 Doc fixes (Bug#4542).
19185
19186 2009-09-25 Glenn Morris <rgm@gnu.org>
19187
19188 * mail/rmailmm.el (rmail-mime): New custom group.
19189 Move all defcustoms in this file into this group.
19190 (rmail-mime-media-type-handlers-alist): Revert previous change.
19191 (rmail-mime-show-images): New option.
19192 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
19193 references to it, since it wasn't actually used for anything.
19194 (rmail-mime-insert-image): New function.
19195 (rmail-mime-image): Use rmail-mime-insert-image.
19196 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
19197 obey the value of `rmail-mime-show-images' option. Print the size of
19198 attachments.
19199
19200 2009-09-25 David Engster <deng@randomsample.de>
19201
19202 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
19203
19204 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19205
19206 * whitespace.el: Does not highlight trailing spaces While point is
19207 at end of line. Does not highligt spaces at beginning of buffer
19208 while point is at beginning of buffer. Does not highlight spaces
19209 at end of buffer while point is at end of buffer. (Bug#4177)
19210 New version 12.0.
19211 (whitespace-display-mappings): Adjust initialization.
19212 (whitespace-point, whitespace-font-lock-refontify): New vars.
19213 (whitespace-color-on, whitespace-color-off): Adjust code.
19214 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
19215 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
19216 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
19217
19218 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
19219
19220 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
19221
19222 * textmodes/sgml-mode.el: Remove xml-mode alias.
19223
19224 * files.el (auto-mode-alist, conf-mode-maybe)
19225 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
19226
19227 2009-09-24 Alan Mackenzie <acm@muc.de>
19228
19229 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
19230 c-forward-conditionals, but it doesn't move point and doesn't set
19231 the mark.
19232 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
19233 (c-down-conditional-with-else, c-backward-conditional)
19234 (c-forward-conditional): Refactor to use c-scan-conditionals.
19235
19236 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
19237
19238 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
19239 (help-default-arg-highlight): Remove.
19240 (help-highlight-arg): New function.
19241 (help-do-arg-highlight): Use it.
19242 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
19243
19244 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19245
19246 * term.el (term-set-scroll-region, term-handle-ansi-escape):
19247 Undo last change, which didn't fix the problem and introduced others.
19248
19249 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
19250
19251 * progmodes/gdb-mi.el: Don't require speedbar.
19252 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
19253
19254 2009-09-24 Glenn Morris <rgm@gnu.org>
19255
19256 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
19257
19258 * term/ns-win.el (ns-reg-to-script): Define for compiler.
19259
19260 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
19261 there is no newline after the final mime boundary. (Bug#4539)
19262 Move markers on insertion so that any buttons inserted don't end up in
19263 the next part of a multipart message.
19264 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
19265 (rmail-mime-bulk-handler): Optionally handle images.
19266 (rmail-mime-image): New button action.
19267 (rmail-mime-image-handler): New function.
19268 (rmail-mime-mode): New mode.
19269 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
19270
19271 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19272
19273 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
19274 than just dropping elements from it (bug#4504).
19275
19276 * term.el (term-set-scroll-region): Don't move cursor any more.
19277 (term-handle-ansi-escape): Call term-goto here instead.
19278 Suggested by Ivan Kanis <apple@kanis.eu>.
19279
19280 * term.el: Require CL.
19281 (term-ansi-reset): New function.
19282 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
19283 (term-handle-colors-array): Simplify.
19284
19285 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
19286
19287 * allout.el (allout-overlay-interior-modification-handler)
19288 (allout-obtain-passphrase):
19289 * epa-file.el (epa-file-write-region):
19290 * ps-print.el (ps-begin-job):
19291 * vc-hooks.el (vc-toggle-read-only):
19292 * vc-rcs.el (vc-rcs-rollback):
19293 * vc-sccs.el (vc-sccs-rollback):
19294 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
19295 (vc-version-diff, vc-revert, vc-rollback):
19296 * wdired.el (wdired-check-kill-buffer):
19297 * emacs-lisp/authors.el (authors):
19298 * net/socks.el (socks-open-connection):
19299 * net/zeroconf.el (zeroconf-service-add-hook):
19300 * obsolete/vc-mcvs.el (vc-mcvs-register):
19301 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
19302 (gdb-select-frame):
19303 * progmodes/grep.el (lgrep, rgrep):
19304 * progmodes/idlw-help.el (idlwave-help-check-locations)
19305 (idlwave-help-html-link, idlwave-help-assistant-open-link):
19306 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
19307 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
19308 (reftex-toc-rename-label): Fix typos in error messages.
19309
19310 * dired-aux.el (dired-do-shell-command): Reflow docstring.
19311 (dired-copy-how-to-fn): Doc fix.
19312 (dired-files-attributes, dired-read-shell-command):
19313 Fix typos in docstrings.
19314
19315 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
19316 (dired-x-find-file-other-window): Reflow docstrings.
19317 (dired-omit-marker-char, dired-read-shell-command)
19318 (dired-x-submit-report): Fix typos in docstrings.
19319
19320 * shell.el (shell-mode-hook):
19321 * view.el (View-scroll-line-forward):
19322 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
19323 Fix typos in docstrings.
19324
19325 * net/dig.el (dig-invoke): Fix typo in docstring.
19326 (query-dig): Reflow docstring.
19327
19328 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
19329 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
19330 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
19331 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
19332 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
19333 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
19334 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
19335 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
19336 (idlwave-completion-map, idlwave-current-indent)
19337 (idlwave-custom-ampersand-surround, idlwave-customize)
19338 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
19339 (idlwave-define-abbrev, idlwave-determine-class-special)
19340 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
19341 (idlwave-end-block-reg, idlwave-end-of-statement)
19342 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
19343 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
19344 (idlwave-explicit-class-listed, idlwave-file-header)
19345 (idlwave-fill-paragraph, idlwave-find-class-definition)
19346 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
19347 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
19348 (idlwave-in-quote, idlwave-indent-action-table)
19349 (idlwave-indent-expand-table, idlwave-indent-line)
19350 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
19351 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
19352 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
19353 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
19354 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
19355 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
19356 (idlwave-outlawed-buffers, idlwave-popup-select)
19357 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
19358 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
19359 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
19360 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
19361 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
19362 (idlwave-statement-type, idlwave-struct-skip)
19363 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
19364 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
19365 (idlwave-what-module-find-class): Fix typos in docstrings.
19366 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
19367 (idlwave-calculate-cont-indent, idlwave-expand-equal)
19368 (idlwave-find-module, idlwave-find-structure-definition)
19369 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
19370 (idlwave-list-load-path-shadows, idlwave-next-statement)
19371 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
19372 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
19373 (idlwave-template): Reflow docstrings.
19374
19375 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
19376 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
19377 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
19378 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
19379 (idlwave-shell-display-line, idlwave-shell-display-wframe)
19380 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
19381 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
19382 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
19383 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
19384 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
19385 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
19386 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
19387 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
19388 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
19389 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
19390 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
19391 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
19392 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
19393 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
19394 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
19395 Fix typos in docstrings.
19396 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
19397 (idlwave-shell-hide-output, idlwave-shell-mode)
19398 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
19399 Reflow docstrings.
19400
19401 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
19402
19403 2009-09-24 Ivan Kanis <apple@kanis.eu>
19404
19405 * term.el (term-bold-attribute): New var.
19406 (term-handle-colors-array): Use it.
19407
19408 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
19409
19410 * progmodes/gdb-mi.el (gdb-version): New variable.
19411 (gdb-non-stop-handler): Set gdb-version.
19412 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
19413 Condition "--thread" option on gdb-version.
19414 (gdb-invalidate-threads): Remove unused argument.
19415
19416 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
19417
19418 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
19419 to looking-back to avoid ridiculous slow down in large files (bug#4511).
19420
19421 2009-09-23 Glenn Morris <rgm@gnu.org>
19422
19423 * mail/rmail.el (rmail-reply): Don't try to add a References header when
19424 replying to mail without References or Message-Id. (Bug#4525)
19425
19426 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
19427
19428 * term/ns-win.el (ns-reg-to-script): New variable.
19429
19430 2009-09-23 Daiki Ueno <ueno@unixuser.org>
19431
19432 * epg.el (epg-wait-for-status): Preserve existing 'error results.
19433
19434 2009-09-22 Sam Steingold <sds@gnu.org>
19435
19436 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
19437 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
19438 to 1 because hg returns status 1 when nothing is found.
19439 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
19440
19441 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
19442
19443 * textmodes/fill.el: Convert to utf-8 encoding.
19444 (fill-french-nobreak-p): Remove redundant » and « inherited from our
19445 pre-Unicode days.
19446
19447 * add-log.el (change-log-fill-forward-paragraph): New function.
19448 (change-log-mode): Use it so fill-region DTRT.
19449 Set fill-indent-according-to-mode here rather than in
19450 change-log-fill-paragraph.
19451 (change-log-fill-paragraph): Remove.
19452
19453 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
19454
19455 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
19456 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
19457
19458 2009-09-22 Glenn Morris <rgm@gnu.org>
19459
19460 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
19461 the scroll-bar scroll the calendar window rather than the buffer.
19462
19463 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
19464 commands that move point (as opposed to scrolling).
19465
19466 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
19467
19468 * emacs-lisp/elint.el (elint): New custom group.
19469 (elint-log-buffer): Make it a defcustom.
19470 (elint-scan-preloaded, elint-ignored-warnings)
19471 (elint-directory-skip-re): New options.
19472 (elint-builtin-variables): Doc fix.
19473 (elint-preloaded-env): New variable.
19474 (elint-unknown-builtin-args): Add an entry for encode-time.
19475 (elint-extra-errors): Make it a variable rather than a constant.
19476 (elint-preloaded-skip-re): New constant.
19477 (elint-directory): Skip files matching elint-directory-skip-re.
19478 (elint-features): New variable, local to linted buffers.
19479 (elint-update-env): Initialize elint-features. Possibly add
19480 elint-preloaded-env to the buffer's environment.
19481 (elint-get-top-forms): Bind elint-current-pos, for log messages.
19482 Skip quoted forms.
19483 (elint-init-form): New function, extracted from elint-init-env.
19484 Make non-list forms a warning rather than an error.
19485 Add the mode-map for define-derived-mode. Handle define-minor-mode,
19486 easy-menu-define, put that adds an error-condition, and provide.
19487 When requiring cl, also require cl-macs. Really require cl, to handle
19488 some cl macros. Store required libraries in the list elint-features,
19489 so as not to re-load them. Treat cc-require like require.
19490 (elint-init-env): Call elint-init-form to do the work.
19491 Handle eval-and-compile and such like.
19492 (elint-add-required-env): Do not clear messages.
19493 (elint-special-forms): Add handlers for function, defalias, if, when,
19494 unless, and, or.
19495 (elint-form): Add optional argument to ignore elint-special-forms,
19496 useful to prevent recursive calls from handlers. Doc fix.
19497 Respect elint-ignored-warnings.
19498 (elint-form): Respect elint-ignored-warnings.
19499 (elint-bound-variable, elint-bound-function): New variables.
19500 (elint-unbound-variable): Respect elint-bound-variable.
19501 (elint-get-args): Respect elint-bound-function.
19502 (elint-check-cond-form): Add some simple handling for (f)boundp and
19503 featurep tests.
19504 (elint-check-defalias-form): New handler.
19505 (elint-check-let-form): Make an empty let a warning rather than an
19506 error.
19507 (elint-check-setq-form): Make an empty setq a warning rather than an
19508 error. Respect elint-ignored-warnings.
19509 (elint-check-defvar-form): Accept null doc-strings.
19510 (elint-check-conditional-form): New handler. Does some simple-minded
19511 checking of featurep and (f)boundp tests.
19512 (elint-put-function-args): New function.
19513 (elint-initialize): Use elint-scan-doc-file rather than
19514 elint-find-builtin-variables. Use elint-put-function-args.
19515 Possibly scan preloaded-file-list.
19516 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
19517 extend to handle functions as well.
19518
19519 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
19520
19521 * linum.el (linum-delete-overlays, linum-update-window):
19522 Do not modify the right margin. (Bug#3971)
19523
19524 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
19525
19526 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
19527 Use nxml-mode instead of xml-mode.
19528
19529 2009-09-21 Kevin Ryde <user42@zip.com.au>
19530
19531 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
19532
19533 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19534
19535 * net/dig.el (dig-mode): Use define-derived-mode.
19536
19537 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
19538
19539 * vc-dispatcher.el (vc-do-command): Return the process object in
19540 the asynchronous case. Use when instead of if. Do not run
19541 vc-exec-after to display a message if not enabled. (Bug#4463)
19542
19543 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
19544 properties to the stash strings.
19545 (vc-git-stash-list): Return a list of strings.
19546 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
19547 (vc-git-stash-show-at-point): New functions.
19548 (vc-git-stash-map): New keymap.
19549
19550 * register.el (ctl-x-r-map): Define the keys here instead of
19551 using autoload.
19552
19553 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
19554
19555 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
19556 list, to workaround performance problem (bug#4485).
19557
19558 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
19559
19560 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
19561
19562 2009-09-20 Daiki Ueno <ueno@unixuser.org>
19563
19564 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
19565 Document that this option is not recommended to use.
19566
19567 2009-09-19 Glenn Morris <rgm@gnu.org>
19568
19569 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
19570 variable `var'.
19571
19572 * calc/calc-alg.el (var):
19573 * calc/calcalg2.el (var): Define for compiler.
19574
19575 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
19576
19577 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
19578 Doc fix (Bug#3932).
19579
19580 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
19581
19582 * time-stamp.el (time-stamp-month-dd-yyyy)
19583 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
19584 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
19585 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
19586 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
19587 Remove functions that have been obsolete since 1995 (Bug#4436).
19588
19589 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
19590 indent buffer only if called interactively (Bug#4452).
19591
19592 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
19593 Eli Zaretskii <eliz@gnu.org>
19594
19595 This fixes bug#4197 (merged to bug#865, though not identical).
19596 * server.el (server-auth-dir): Add docstring note about FAT32.
19597 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
19598 but warn against using them.
19599
19600 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
19601
19602 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
19603 older GDB where there is no has_more field.
19604
19605 2009-09-19 Glenn Morris <rgm@gnu.org>
19606
19607 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
19608
19609 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
19610
19611 * files.el (auto-mode-alist): Change default for XML files to nXML
19612 mode (Bug#4169).
19613
19614 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
19615
19616 * server.el (server-ensure-safe-dir): Pass 'integer
19617 to `file-attributes', as suggested.
19618
19619 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
19620
19621 * dired-aux.el (dired-query-alist): Remove spurious backslash.
19622 (dired-query): Use read-key.
19623
19624 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
19625
19626 * cus-start.el (ns-use-qd-smoothing): Remove.
19627
19628 2009-09-18 Glenn Morris <rgm@gnu.org>
19629
19630 * allout.el (top-level): Remove unnecessary progn.
19631
19632 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
19633
19634 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
19635 definition of abbrev table.
19636
19637 * speedbar.el (speedbar-track-mouse):
19638 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
19639 * net/eudc.el (eudc-expand-inline):
19640 * net/newst-backend.el (newsticker--cache-read-feed):
19641 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
19642 condition-case handlers.
19643
19644 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
19645
19646 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
19647 (gdb-var-list): Add an element for has_more field.
19648 (gdb-non-stop-handler): Enable pretty printing for STL containers.
19649 (gdb-var-create-handler, gdb-var-list-children-handler-1)
19650 (gdb-var-update-handler-1): Parse output of dynamic variable
19651 objects (STL containers).
19652 (gdb-var-delete-1): Pass var1 as an explicit second argument.
19653 (gdb-get-field): Delete alias. Use bindat-get-field directly.
19654
19655 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
19656 gdb-var-list.
19657 (gud-speedbar-buttons): Make node expandable if expression "has more"
19658 children.
19659
19660 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
19661
19662 * startup.el (emacs-quick-startup): Remove variable and all uses.
19663 (command-line): Set `inhibit-x-resources' instead.
19664 (command-line-1): Use `inhibit-x-resources' instead.
19665
19666 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
19667
19668 * subr.el: Fix last change to avoid using the `unless' macro,
19669 which breaks bootstrapping.
19670
19671 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19672
19673 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
19674 extended definitions, in case we reload subr.el after having
19675 loaded CL.
19676 (eval-next-after-load): Mark as obsolete.
19677
19678 2009-09-17 Juri Linkov <juri@jurta.org>
19679
19680 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
19681 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
19682 (menu-bar-showhide-menu, menu-bar-tools-menu)
19683 (menu-bar-describe-menu, menu-bar-help-menu)
19684 (minibuffer-local-completion-map, minibuffer-local-map):
19685 Fix list quoting.
19686
19687 2009-09-17 Glenn Morris <rgm@gnu.org>
19688
19689 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
19690 arguments, whether or not it has a handler.
19691
19692 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
19693
19694 * simple.el (hard-newline): Give it a doc-string.
19695
19696 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
19697 (lisp-mode-syntax-table): Give them doc-strings.
19698
19699 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
19700
19701 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
19702 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
19703 (menu-bar-options-menu, menu-bar-showhide-menu)
19704 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
19705 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
19706 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
19707 (menu-bar-options-menu, menu-bar-tools-menu)
19708 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
19709 (menu-bar-help-menu):
19710 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
19711 string arguments.
19712
19713 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
19714 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
19715 calls for the menu names and :help.
19716
19717 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19718
19719 * mouse.el (minor-mode-menu-from-indicator): Pay attention
19720 to :minor-mode-function (bug#4455).
19721
19722 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
19723
19724 * startup.el (command-line): Initialize the window-system after
19725 processing the command-line.
19726
19727 * textmodes/page.el (what-page): Make sure we don't inf-loop if
19728 page-delimiter matches the empty string.
19729
19730 2009-09-16 Glenn Morris <rgm@gnu.org>
19731
19732 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
19733 byte-compile-not-obsolete-var. It's a list now.
19734 (byte-compile-not-obsolete-funcs): New variable.
19735 (byte-compile-warn-obsolete): Don't warn about functions if they are in
19736 byte-compile-not-obsolete-funcs.
19737 (byte-compile-variable-ref, byte-compile-defvar): Update for
19738 byte-compile-not-obsolete-vars name-change and list nature.
19739 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
19740 and variables behind (f)boundp tests.
19741 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
19742
19743 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
19744
19745 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
19746
19747 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19748
19749 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
19750 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
19751 Don't autoload.
19752
19753 2009-09-15 Stephen Eglen <stephen@gnu.org>
19754
19755 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
19756 the virtual-buffers, use the name of the buffer specified by
19757 find-file-noselect, as the match may be a symlink. (This was a
19758 problem if the target and the symlink had different names.)
19759
19760 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19761
19762 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
19763
19764 * desktop.el (desktop-path): Check user-emacs-directory.
19765
19766 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
19767
19768 * loadup.el: Use after-load-functions to GC after loading each file.
19769 Remove the explicit GC calls that used to be sprinkled around.
19770
19771 * subr.el (after-load-functions): New hook.
19772 (do-after-load-evaluation): Run it. Use string-match-p to detect
19773 `obsolete' packages, rather than painfully extracting the relevant
19774 directory name.
19775
19776 2009-09-15 Glenn Morris <rgm@gnu.org>
19777
19778 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
19779 free variable `doc'.
19780
19781 * dired.el (dired-mode-map): Add menu entry for async shell command.
19782
19783 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
19784 variables, also consider the .elc files, since the .el files are
19785 normally gzipped (subsequent code locates the .el.gz from the .elc).
19786
19787 * calc/calc-prog.el (arglist): Define for compiler.
19788
19789 * calendar/diary-lib.el (diary-display-function): Change the default to
19790 fancy display.
19791 (body): Define for compiler.
19792
19793 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
19794 (byte-compile-file-form, byte-compile-lambda)
19795 (byte-compile-top-level-body, byte-compile-form)
19796 (byte-compile-variable-ref, byte-compile-setq)
19797 (byte-compile-setq-default, byte-compile-body)
19798 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
19799 (batch-byte-compile): Give some more local variables with common names
19800 a "bytecomp-" prefix to avoid masking warnings about free variables.
19801
19802 * startup.el (command-line-1): Give local variables with common names a
19803 distinguishing prefix, so as not to hide free variable warnings during
19804 bootstrap.
19805
19806 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
19807 clever and add a suffix to make a unique name, just let the user decide
19808 whether or not to overwrite it. If the input is a directory, write the
19809 default filename to that directory. (Bug#4388)
19810 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
19811 is a filename-as-a-directory.
19812
19813 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19814
19815 * textmodes/page.el (what-page): Don't move to beginning of line.
19816 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
19817
19818 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
19819
19820 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
19821
19822 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
19823
19824 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
19825 * help.el (help-for-help-internal): Add purecopy calls for text.
19826
19827 * vc.el (top): print-log method now takes an optional SHORTLOG
19828 argument. Add a new method: root.
19829 (vc-root-diff, vc-print-root-log): New functions.
19830 (vc-log-short-style): New variable.
19831 (vc-print-log-internal): Add support for showing short logs.
19832
19833 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
19834 vc-print-root-log and vc-print-root-diff.
19835
19836 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
19837 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
19838 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
19839 short logs.
19840
19841 * vc-cvs.el (vc-cvs-print-log):
19842 * vc-mtn.el (vc-mtn-print-log):
19843 * vc-rcs.el (vc-rcs-print-log):
19844 * vc-sccs.el (vc-sccs-print-log):
19845 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
19846 that is ignored for now.
19847
19848 * vc-mtn.el (vc-mtn-annotate-command):
19849 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
19850
19851 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
19852
19853 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
19854 to function-key-map, and give them ascii-character property.
19855 * term/x-win.el (x-alternatives-map):
19856 * term/ns-win.el (ns-alternatives-map):
19857 * term/internal.el (msdos-key-remapping-map):
19858 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
19859
19860 2009-09-14 Glenn Morris <rgm@gnu.org>
19861
19862 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
19863 temp-buffers (2009-09-12).
19864
19865 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
19866
19867 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
19868 the new read-key function.
19869
19870 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
19871
19872 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
19873 is defined (Bug#4405).
19874
19875 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
19876
19877 * recentf.el (recentf-cleanup): Use a hash table to find
19878 duplicates (Bug#4407).
19879
19880 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
19881
19882 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
19883 kp-0 to ascii equivalents (Bug#4325).
19884
19885 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
19886
19887 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
19888
19889 * eshell/em-hist.el:
19890 * eshell/em-dirs.el (eshell-complete-user-reference):
19891 Declare pcomplete functions and variables to avoid compiler warnings.
19892
19893 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
19894
19895 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
19896 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
19897 * eshell/em-alias.el (eshell-aliases-file):
19898 * eshell/em-hist.el (eshell-history-file-name):
19899 Use expand-file-name instead of concat to make file names (Bug#4308).
19900
19901 2009-09-13 Glenn Morris <rgm@gnu.org>
19902
19903 * ediff-merg.el (ediff-do-merge):
19904 * filesets.el (filesets-run-cmd):
19905 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
19906 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
19907 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
19908 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
19909 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
19910 Replace empty `let's with `progn'.
19911
19912 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
19913
19914 * mail/sendmail.el (send-mail-function):
19915 * tooltip.el (tooltip-mode):
19916 * simple.el (transient-mark-mode):
19917 * rfn-eshadow.el (file-name-shadow-mode):
19918 * frame.el (blink-cursor-mode):
19919 * font-core.el (global-font-lock-mode):
19920 * files.el (temporary-file-directory)
19921 (small-temporary-file-directory, auto-save-file-name-transforms):
19922 * epa-hook.el (auto-encryption-mode):
19923 * composite.el (global-auto-composition-mode):
19924 Use custom-initialize-delay.
19925 * startup.el (command-line): Don't explicitly call
19926 custom-reevaluate-setting for all the above vars.
19927 * custom.el (custom-initialize-safe-set)
19928 (custom-initialize-safe-default): Delete.
19929
19930 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
19931
19932 * term/x-win.el (x-initialize-window-system):
19933 * term/w32-win.el (w32-initialize-window-system):
19934 * term/ns-win.el (ns-initialize-window-system): Don't call
19935 mouse-wheel-mode since it's enabled globally by default already.
19936
19937 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
19938 actually define the variable, but only silences the byte-compiler.
19939 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
19940 before looking it up.
19941 (mouse-wheel-scroll-amount): Also reset the bindings if this value
19942 is changed.
19943
19944 2009-09-12 Glenn Morris <rgm@gnu.org>
19945
19946 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
19947 1000.
19948 (elint-add-required-env): Don't beep on error.
19949 (elint-forms): In case of error, return ENV unchanged.
19950 (elint-init-env): Skip non-list forms.
19951 (elint-log): Handle unknown file positions.
19952
19953 2009-09-12 Daiki Ueno <ueno@unixuser.org>
19954
19955 * epg.el (epg-make-context): Add autoload cookie.
19956 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
19957 (epg-decrypt-string, epg-start-verify, epg-verify-file)
19958 (epg-verify-string, epg-start-sign, epg-sign-file)
19959 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
19960 (epg-encrypt-string, epg-start-export-keys)
19961 (epg-export-keys-to-file, epg-export-keys-to-string)
19962 (epg-start-import-keys, epg-import-keys-from-file)
19963 (epg-import-keys-from-string, epg-start-receive-keys)
19964 (epg-receive-keys, epg-import-keys-from-server)
19965 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
19966 (epg-sign-keys, epg-start-generate-key)
19967 (epg-generate-key-from-file, epg-generate-key-from-string):
19968 Remove autoload cookie.
19969
19970 2009-09-12 Eli Zaretskii <eliz@gnu.org>
19971
19972 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
19973 reevaluation of trash-directory.
19974
19975 * mwheel.el: Fix last change.
19976 (mouse-wheel-mode): New defvar.
19977 (mouse-wheel-mode): Remove autoload cookie.
19978
19979 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
19980
19981 * mwheel.el (mwheel-installed-bindings): New var.
19982 (mouse-wheel-mode): Use it, so as to make sure we really remove all
19983 the bindings we set last time. Use custom-initialize-delay.
19984 * loadup.el: Load mwheel after term/*-win.el.
19985 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
19986 and mouse-wheel-up-event now that their first evaluation is done
19987 sufficiently late to be correct.
19988
19989 * startup.el (tutorial-directory): Make it a defcustom.
19990 Use custom-initialize-delay rather than eval-at-startup to set it.
19991 * image.el (image-load-path): Make it a defcustom.
19992 Use custom-initialize-delay rather than eval-at-startup to set it.
19993 * subr.el (eval-at-startup): Remove.
19994 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
19995
19996 * subr.el (do-after-load-evaluation): Warn the user after loading an
19997 obsolete package.
19998
19999 2009-09-12 Glenn Morris <rgm@gnu.org>
20000
20001 * proced.el (proced-mark-alt): Remove alias.
20002 (proced-mode-map): Remove proced-mark-alt.
20003
20004 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
20005 Elint file and directory. Remove initialization entry.
20006
20007 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
20008 commands.
20009 (elint-current-buffer): Set mode-line-process.
20010 (elint-init-env): Handle define-derived-mode.
20011 Fix declare-function with unspecified arglist. Guard against odd
20012 defalias statements (eg iso-insert's 8859-1-map).
20013 (elint-add-required-env): Use a temp buffer.
20014 (elint-form): Just print the function/macro name, not the whole form.
20015 Return env unchanged if we fail to parse a macro.
20016 (elint-forms): Guard against parse errors.
20017 (elint-output): New function, to handle batch mode.
20018 (elint-log-message): Add optional argument. Use elint-output.
20019 (elint-set-mode-line): New function.
20020
20021 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
20022
20023 * emacs-lisp/elp.el (elp-not-profilable): Add more
20024 functions (Bug#4233).
20025
20026 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
20027
20028 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
20029 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
20030
20031 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
20032
20033 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
20034 (gdb-var-list-children): Use json parsing.
20035
20036 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
20037
20038 * progmodes/js.el (js--proper-indentation): Handle the case where
20039 char-before is null. Reported by Deniz Dogan.
20040
20041 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
20042
20043 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
20044
20045 2009-09-11 Daiki Ueno <ueno@unixuser.org>
20046
20047 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
20048 (epg-digest-algorithm-alist): Add SHA224.
20049 (epg-context-set-passphrase-callback)
20050 (epg-context-set-progress-callback): Add description about
20051 callback function.
20052
20053 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20054
20055 * custom.el (custom-delayed-init-variables): New var.
20056 (custom-initialize-delay): New function.
20057 * startup.el (command-line): "Re"evaluate all vars in
20058 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
20059 explicitly any more.
20060 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
20061 to avoid creating a ~/.emacs.d at build-time (bug#4347).
20062
20063 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
20064
20065 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
20066
20067 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
20068 (gdb-var-update-handler): Use json parsing.
20069
20070 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
20071
20072 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
20073 decode annotated text, regardless of language environment. (Bug#2741)
20074
20075 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20076
20077 * Makefile.in (autoloads): Make rmail.el writable as well.
20078
20079 2009-09-11 Glenn Morris <rgm@gnu.org>
20080
20081 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
20082 loaddefs.el.
20083 * dired.el: Regenerate with extracted autoloads.
20084 * Makefile.in (autoloads): Make dired.el writable.
20085
20086 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
20087 * ibuffer.el: Regenerate with extracted autoloads.
20088 * Makefile.in (autoloads): Make ibuffer.el writable.
20089
20090 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
20091 * version.el (emacs-copyright, emacs-major-version)
20092 (emacs-minor-version): Reformat doc-strings for make-docfile.
20093
20094 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
20095 functions and variables, since they must be stuff specific to some other
20096 platform.
20097 (apropos-print): Make mouse-click message less specific about button.
20098
20099 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
20100 that records where a macro was defined.
20101 * help-fns.el (describe-function-1): Mention if a function has a
20102 compiler-macro.
20103 * help-mode.el (help-function-cmacro): New button.
20104
20105 * locate.el (top-level): Always require dired.
20106 (locate-mode-map): Initialize inside the defvar.
20107
20108 * net/ange-ftp.el (dired-compress-file): Declare.
20109 (ange-ftp-dired-compress-file): Add doc string.
20110
20111 * term/ns-win.el (x-display-name, x-setup-function-keys):
20112 Unify doc-strings with X versions.
20113
20114 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20115
20116 * emulation/crisp.el (crisp-mode-map): Move initialization
20117 into declaration.
20118 (crisp-mode): Use define-minor-mode.
20119
20120 * progmodes/xscheme.el (xscheme-evaluation-commands):
20121 Put a :advertised-binding property rather than using
20122 advertised-xscheme-send-previous-expression.
20123 (advertised-xscheme-send-previous-expression): Declare obsolete.
20124 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
20125 `advertised-undo'.
20126 (crisp-mode): Add corresponding bindings to
20127 undo's :advertised-binding instead.
20128 * dired.el (dired-mode-map): Put a :advertised-binding property rather
20129 than using dired-advertised-find-file.
20130 (dired-advertised-find-file):
20131 * simple.el (advertised-undo):
20132 * wid-edit.el (advertised-widget-backward): Declare obsolete.
20133 (widget-keymap): Put a :advertised-binding property rather
20134 than using advertised-widget-backward.
20135 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
20136 than using advertised-undo.
20137 * tutorial.el (tutorial--default-keys): Adjust accordingly.
20138
20139 2009-09-10 Simon South <ssouth@slowcomputing.org>
20140
20141 * progmodes/delphi.el (delphi-tab): Indent region when Transient
20142 Mark mode is enabled and region is active; otherwise indent or
20143 insert TAB as usual.
20144 (delphi-mode): Update description of TAB-key binding.
20145
20146 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
20147
20148 * subr.el (define-key-rebound-commands): Mark obsolete.
20149 * startup.el (precompute-menubar-bindings): Remove.
20150 (normal-top-level): Remove obsolete code that tried to precompute
20151 menubar bindings.
20152 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
20153 define-key-rebound-commands and precompute-menubar-bindings.
20154
20155 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
20156
20157 * net/imap.el (imap-interactive-login): Better messages.
20158 (imap-open): Fix bug with renamed buffer on reconnect.
20159 (imap-authenticate): Add buffer-local imap-last-authenticator variable
20160 for easier debugging and cleaner code. On successful (guessed based on
20161 server capabilities) secondary authentication, set imap-state
20162 correctly.
20163 (imap-last-authenticator): Define imap-last-authenticator as a variable
20164 to avoid warnings.
20165
20166 2009-09-10 Glenn Morris <rgm@gnu.org>
20167
20168 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
20169
20170 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
20171 (byte-compile-file-form-autoload): Don't warn about unknown functions
20172 where the autoload statement comes after the use.
20173 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
20174 that any handlers inside the body (eg require) are in turn respected.
20175
20176 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
20177 effects.
20178
20179 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
20180 and syntax and abbrev tables basic docs, if they don't have any.
20181
20182 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
20183
20184 * international/mule-cmds.el (top-level): Require cl when compiling.
20185 (view-hello-file): Use default-value rather than
20186 default-enable-multibyte-characters.
20187
20188 * progmodes/fortran.el: Move all safe and risky properties into the
20189 defcustoms.
20190
20191 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
20192 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
20193 * mail/undigest.el:
20194 Put autoloads in rmail.el rather than loaddefs.el.
20195 * mail/rmail.el: Regenerate with extracted autoloads.
20196
20197 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
20198 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
20199
20200 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
20201
20202 Reported in thread for Bug#4375.
20203 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
20204 "-data-evaluate-expression" instead of print.
20205 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
20206 (gdb-tooltip-print): Parse output from above MI command.
20207 (gdb): Revert 2009-08-11 change. User should detach inferior
20208 manually.
20209
20210 Remove the word "separate" from IO functions as inferior
20211 output is now never displayed in the GUD buffer.
20212
20213 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
20214
20215 * startup.el (command-line-normalize-file-name): On Windows and
20216 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
20217
20218 2009-09-10 Juri Linkov <juri@jurta.org>
20219
20220 * isearch.el (isearch-text-char-description): Propertize escape
20221 character sequences with the `escape-glyph' face. (Bug#4344)
20222
20223 * simple.el (shell-command): Set asynchronous process filter to
20224 `comint-output-filter'. (Bug#4343)
20225
20226 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
20227 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
20228 the list. Move "asm" to the bottom.
20229 (grep-find-ignored-directories): Add `choice' with nil value
20230 to empty the list easily.
20231 (grep-find-ignored-files): New option.
20232 (grep-files-history): Set to nil by default instead of '("ch" "el").
20233 (grep-compute-defaults): Add "<X>" to `grep-template'.
20234 (grep-read-files): Bind new local variables `default-alias' and
20235 `default-extension'. Use a list of default values for the file prompt.
20236 (lgrep): Add `--exclude=' command line options composed from
20237 `grep-find-ignored-files'.
20238 (rgrep): Add `-name' command line options composed from
20239 `grep-find-ignored-files'. (Bug#4301)
20240
20241 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
20242
20243 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
20244 (bug#4368).
20245
20246 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
20247
20248 * calendar/time-date.el (autoload):
20249 Expand define-obsolete-function-alias into defalias and make-obsolete
20250 for old Emacsen that Gnus supports.
20251 (with-no-warnings): Define it for old Emacsen.
20252 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
20253 is available.
20254 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
20255 float-time is available; suppress compile warning for time-to-seconds.
20256
20257 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
20258
20259 * net/imap.el (imap-message-map): Docstring fix.
20260
20261 2009-09-09 Glenn Morris <rgm@gnu.org>
20262
20263 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
20264 line numbers too. (Bug#4374)
20265
20266 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
20267
20268 * smerge-mode.el (smerge-remove-props, smerge-refine):
20269 Use with-silent-modifications (bug#4342).
20270
20271 * subr.el (with-silent-modifications): New macro.
20272
20273 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
20274
20275 * files.el (top-level): Require `cl' when compiling.
20276
20277 2009-09-07 Glenn Morris <rgm@gnu.org>
20278
20279 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
20280
20281 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
20282 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
20283
20284 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
20285
20286 * vc-git.el (vc-git-annotate-command): Use separator to parse
20287 arguments correctly.
20288
20289 2009-09-06 Eli Zaretskii <eliz@gnu.org>
20290
20291 * proced.el (proced-mode): Doc fix.
20292
20293 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
20294
20295 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
20296 lstat fails.
20297 (tramp-do-file-attributes-with-ls): Check for file existence at
20298 remote end.
20299 (tramp-do-file-attributes-with-stat): Likewise.
20300 (tramp-convert-file-attributes): Return nil when attr is nil.
20301
20302 2009-09-05 Glenn Morris <rgm@gnu.org>
20303
20304 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
20305 properties to this button.
20306 (diary-fancy-display): Don't extend the button to the final newline.
20307 (diary-fancy-display-mode): Continue to define "q" as a local key.
20308
20309 * calendar/cal-china.el (holiday-chinese): Make it slightly more
20310 efficient.
20311
20312 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
20313
20314 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
20315 (byte-compile-dest-file-function): New option.
20316 (byte-compile-dest-file): Doc fix.
20317 Obey byte-compile-dest-file-function.
20318 (byte-compile-cl-file-p): New function.
20319 (byte-compile-eval): Only suppress noruntime warnings about cl functions
20320 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
20321 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
20322 than for file being previously loaded.
20323 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
20324 (byte-compile-file-form-require): Handle the case where requiring a file
20325 indirectly causes CL to be loaded.
20326
20327 2009-09-05 Karl Fogel <kfogel@red-bean.com>
20328
20329 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
20330 before killing the old buffer, since by the time `kill-buffer' is
20331 run so many buffer variables have been set to nil that it may not
20332 behave as expected. (Bug#4061)
20333
20334 2009-09-05 Karl Fogel <kfogel@red-bean.com>
20335
20336 * files.el (find-alternate-file): If the old buffer is modified
20337 and visiting a file, behave similarly to `kill-buffer' when
20338 killing it, thus reverting to the pre-1.878 behavior; see
20339 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
20340 for discussion. Also, consult `buffer-file-name' as a variable
20341 not as a function, for consistency with the rest of the code.
20342
20343 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
20344
20345 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
20346 also when adding a new directory.
20347
20348 * net/tramp-compat.el (tramp-compat-line-beginning-position):
20349 New defun.
20350
20351 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
20352
20353 * files.el (locate-file-completion-table): Make it provide boundary
20354 information, so partial-completion works better.
20355
20356 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
20357
20358 * mail/footnote.el (Footnote-text-under-cursor):
20359 Check footnote-text-marker-alist before using it (bug#4324).
20360
20361 2009-09-04 Glenn Morris <rgm@gnu.org>
20362
20363 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
20364 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
20365 * play/solitaire.el, play/tetris.el:
20366 Remove leading * from defcustom and defface docs.
20367
20368 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
20369 necessary.
20370 (diary-fancy-overriding-map): New variable.
20371 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
20372 Use view-mode.
20373
20374 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
20375 goto-line.
20376
20377 2009-09-03 Glenn Morris <rgm@gnu.org>
20378
20379 * arc-mode.el (archive-mode):
20380 * dos-fns.el (set-default-process-coding-system):
20381 * man.el (Man-getpage-in-background):
20382 * menu-bar.el (menu-bar-describe-menu):
20383 * server.el (server-process-filter):
20384 * startup.el (command-line):
20385 * tar-mode.el (tar-header-block-tokenize, tar-extract):
20386 * w32-fns.el (set-default-process-coding-system):
20387 * x-dnd.el (x-dnd-handle-file-name):
20388 * international/mule-cmds.el (mule-menu-keymap)
20389 (set-default-coding-systems, language-info-alist, set-language-info)
20390 (set-language-environment, standard-display-european-internal)
20391 (set-locale-environment):
20392 * international/mule-diag.el (mule-diag):
20393 * mail/emacsbug.el (report-emacs-bug):
20394 * mail/rmail.el (rmail-mode):
20395 * mail/sendmail.el (mail-setup):
20396 Use default-value rather than default-enable-multibyte-characters.
20397
20398 * progmodes/f90.el: Move all safe properties into the defcustoms.
20399 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
20400
20401 * calendar/appt.el (appt-check):
20402 * calendar/diary-lib.el (diary-set-header, diary-live-p)
20403 (diary-check-diary-file, diary-list-entries)
20404 (diary-include-other-diary-files, diary-simple-display)
20405 (diary-fancy-display, diary-print-entries)
20406 (diary-mark-included-diary-files, diary-make-entry):
20407 Don't call substitute-in-file-name on diary-file.
20408
20409 2009-09-03 Eduard Wiebe <usenet@pusto.de>
20410 Stefan Monnier <monnier@iro.umontreal.ca>
20411
20412 * mail/footnote.el (footnote-prefix): Make it a defcustom.
20413 (footnote-mode-map): Move initialization into the declaration.
20414 (footnote-minor-mode-map): Define it rather than changing global-map.
20415 (footnote-mode): Use define-minor-mode.
20416
20417 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
20418
20419 * net/tramp.el (tramp-handle-file-attributes-with-ls)
20420 (tramp-do-file-attributes-with-perl)
20421 (tramp-do-file-attributes-with-stat): Rename from
20422 `tramp-handle-file-attributes-with-*'.
20423 (tramp-handle-file-attributes): Use them.
20424 (tramp-do-directory-files-and-attributes-with-perl)
20425 (tramp-do-directory-files-and-attributes-with-stat): Rename from
20426 `tramp-handle-directory-files-and-attributes-with-*'.
20427 (tramp-handle-directory-files-and-attributes): Use them.
20428 (tramp-method-out-of-band-p): Additional parameter SIZE.
20429 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
20430 (tramp-handle-write-region): Use it.
20431 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
20432 (tramp-handle-vc-registered): Check, whether the first run did
20433 return files to be tested.
20434 (tramp-advice-make-auto-save-file-name): Do not call directly
20435 `tramp-handle-make-auto-save-file-name', because this would bypass
20436 the locking mechanism.
20437
20438 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
20439 (file-remote-p, process-file, start-file-process, set-file-times)
20440 (tramp-compat-file-attributes): Compatibility functions shall not
20441 call directly `tramp-handle-*', because this would bypass the
20442 locking mechanism.
20443 (tramp-compat-number-sequence): New defun.
20444
20445 2009-09-02 Glenn Morris <rgm@gnu.org>
20446
20447 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
20448 alias for float-time.
20449 (time-to-number-of-days): In Emacs, use float-time.
20450 * net/newst-backend.el (time-add): Suppress warnings from compat
20451 function.
20452 * time.el (emacs-uptime, emacs-init-time):
20453 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
20454 Use float-time rather than time-to-seconds.
20455
20456 * minibuffer.el (completion-initials-expand): Fix typo.
20457
20458 * faces.el (modeline, modeline-inactive, modeline-highlight)
20459 (modeline-buffer-id):
20460 * info.el (info-menu-5): Mark these face aliases as obsolete.
20461
20462 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
20463
20464 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
20465 space ...
20466 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
20467 no "--thread" option.
20468 (gdb-stopped): Don't print "Switched to thread" message when it is
20469 unchanged.
20470
20471 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
20472
20473 * minibuffer.el (completion-try-completion)
20474 (completion-all-completions): Remove ill-defined (and
20475 mistakenly installed and luckily never used nor documented)
20476 `completion-styles' property.
20477 (completion-initials-expand, completion-initials-all-completions)
20478 (completion-initials-try-completion): New functions.
20479 (completion-styles-alist): Add doc to each entry.
20480 Add new `initials' entry.
20481
20482 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
20483
20484 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
20485 MI command -var-evaluate-expression.
20486 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
20487 and tweak for case of string child.
20488 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
20489
20490 2009-09-01 Glenn Morris <rgm@gnu.org>
20491
20492 * add-log.el (change-log-date-face, change-log-name-face)
20493 (change-log-email-face, change-log-file-face, change-log-list-face)
20494 (change-log-conditionals-face, change-log-function-face)
20495 (change-log-acknowledgement-face):
20496 * cus-edit.el (custom-invalid-face, custom-rogue-face)
20497 (custom-modified-face, custom-set-face, custom-changed-face)
20498 (custom-saved-face, custom-button-face, custom-button-pressed-face)
20499 (custom-documentation-face, custom-state-face, custom-comment-face)
20500 (custom-comment-tag-face, custom-variable-tag-face)
20501 (custom-variable-button-face, custom-face-tag-face)
20502 (custom-group-tag-face-1, custom-group-tag-face):
20503 * diff-mode.el (diff-header-face, diff-file-header-face)
20504 (diff-index-face, diff-hunk-header-face, diff-removed-face)
20505 (diff-added-face, diff-changed-face, diff-function-face)
20506 (diff-context-face, diff-nonexistent-face):
20507 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
20508 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
20509 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20510 (Info-title-4-face):
20511 * isearch.el (isearch-lazy-highlight-face):
20512 * log-view.el (log-view-file-face, log-view-message-face):
20513 * paren.el (show-paren-match-face, show-paren-mismatch-face):
20514 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20515 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20516 (cvs-msg-face):
20517 * smerge-mode.el (smerge-mine-face, smerge-other-face)
20518 (smerge-base-face, smerge-markers-face):
20519 * wid-edit.el (widget-documentation-face, widget-button-face)
20520 (widget-field-face, widget-single-line-field-face)
20521 (widget-inactive-face, widget-button-pressed-face):
20522 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
20523 (woman-addition-face):
20524 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
20525 (eshell-ls-executable-face, eshell-ls-readonly-face)
20526 (eshell-ls-unreadable-face, eshell-ls-special-face)
20527 (eshell-ls-missing-face, eshell-ls-archive-face)
20528 (eshell-ls-backup-face, eshell-ls-product-face)
20529 (eshell-ls-clutter-face):
20530 * eshell/em-prompt.el (eshell-prompt-face):
20531 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
20532 * obsolete/old-whitespace.el (whitespace-highlight-face):
20533 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
20534 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
20535 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
20536 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
20537 (antlr-font-lock-literal-face):
20538 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
20539 (ebrowse-root-class-face, ebrowse-file-name-face)
20540 (ebrowse-default-face, ebrowse-member-attribute-face)
20541 (ebrowse-member-class-face, ebrowse-progress-face):
20542 * progmodes/make-mode.el (makefile-space-face):
20543 * progmodes/sh-script.el (sh-heredoc-face):
20544 * textmodes/flyspell.el (flyspell-incorrect-face)
20545 (flyspell-duplicate-face):
20546 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
20547 * textmodes/texinfo.el (texinfo-heading-face):
20548 Mark face aliases with "-face" suffix as obsolete.
20549
20550 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
20551 compiler.
20552
20553 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
20554 (eudc-bob-sound-menu): Use defvar rather than defconst, since
20555 easy-menu-define wants to modify these.
20556
20557 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
20558
20559 * net/browse-url.el (browse-url-file-url):
20560 * term/internal.el (dos-codepage-setup):
20561 Use default-value rather than default-enable-multibyte-characters.
20562
20563 * progmodes/etags.el (etags-goto-tag-location):
20564 * progmodes/flymake.el (flymake-highlight-line)
20565 (flymake-goto-file-and-line, flymake-goto-line):
20566 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
20567 (gdb-goto-breakpoint):
20568 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
20569 * progmodes/python.el (python-find-function)
20570 (python-pdbtrack-track-stack-file):
20571 * progmodes/verilog-mode.el (verilog-surelint-off):
20572 * term/ns-win.el (ns-open-file-select-line):
20573 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
20574 Use forward-line rather than goto-line.
20575
20576 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
20577 * textmodes/reftex-index.el (reftex-display-index):
20578 * textmodes/reftex-ref.el (reftex-offer-label-menu):
20579 * textmodes/reftex-toc.el (reftex-toc):
20580 Remove unnecessary bindings of default-major-mode (all are followed by
20581 major-mode check and possible mode switch).
20582
20583 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
20584
20585 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
20586 Handle watchpoints (bug#4282).
20587 (def-gdb-thread-buffer-command): Enable thread to be selected by
20588 clicking without selecting threads buffer first.
20589 (gdb-current-context-command): Use selected frame so that "up",
20590 "down" etc work in the GUD buffer.
20591 (gdb-update): Find selected frame before rendering stack buffer.
20592 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
20593
20594 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
20595
20596 * progmodes/sym-comp.el (displayed-completions): Remove.
20597 (symbol-complete): Use minibuffer-complete.
20598
20599 2009-08-31 Glenn Morris <rgm@gnu.org>
20600
20601 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
20602
20603 * apropos.el (apropos-symbols-internal):
20604 Handle (obsolete) face aliases.
20605
20606 * faces.el (describe-face): Adjust the output format to be more like
20607 describe-variable, and to mention (obsolete) face aliases.
20608 Adjust the whitespace so that help-setup-xref works.
20609
20610 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
20611 * calendar/diary-lib.el (diary-button-face):
20612 Mark these face aliases as obsolete.
20613
20614 * calendar/calendar.el (calendar-today): Doc fix.
20615
20616 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
20617
20618 * progmodes/gdb-mi.el (gdb-control-all-threads)
20619 (gdb-control-current-thread): Force tool bar update.
20620 (gdb-non-stop-handler): New function.
20621 (gdb-init-1): Use it to test if non-stop mode is supported.
20622 Remove unused gdbmi buffer type.
20623
20624 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
20625
20626 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
20627 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
20628
20629 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
20630
20631 * comint.el (comint-exec-1): Check command is non-null first.
20632 Part of gdb-mi.el change (2009-08-28).
20633
20634 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20635
20636 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
20637
20638 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
20639
20640 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
20641 instead of `dolist' to avoid a recursive require when bootstrapping.
20642
20643 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20644
20645 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
20646
20647 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
20648
20649 * net/imap.el (imap-send-command): Simplify.
20650 (imap-wait-for-tag): point-max -> buffer-size.
20651
20652 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
20653
20654 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
20655 with constant argument.
20656
20657 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
20658
20659 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
20660
20661 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
20662 Change default, since most of our files don't have a history.
20663 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
20664 the user.
20665
20666 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20667 Add comint-run.
20668
20669 * calc/calc.el: Improve commenting convention.
20670 (calc-digit-map, toplevel): Simplify.
20671
20672 * comint.el (comint-insert-input): Be careful to only set point if we
20673 don't delegate to some other command.
20674
20675 * proced.el (proced-signal-list): Make it an alist.
20676 (proced-grammar-alist): Capitalize names.
20677 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
20678 Disable undo manually and make it read-only.
20679 Use completion-annotate-function.
20680
20681 * minibuffer.el (minibuffer-message): If the current buffer is not
20682 a minibuffer, insert the message in the echo area rather than at the
20683 end of the buffer.
20684 (completion-annotate-function): New variable.
20685 (minibuffer-completion-help): Use it.
20686 (completion--embedded-envvar-table): Environment vars are
20687 always case-sensitive.
20688
20689 2009-08-30 Glenn Morris <rgm@gnu.org>
20690
20691 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
20692 from fortran-current-defun.
20693 (fortran-beginning-of-subprogram): Be more precise about finding the
20694 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
20695 (fortran-end-of-subprogram): Simplify.
20696 (fortran-current-defun): Use fortran-start-prog-re.
20697
20698 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
20699
20700 * subr.el (do-after-load-evaluation): Simplify.
20701
20702 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20703
20704 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
20705
20706 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
20707 (vc-rcs-print-log): Use it.
20708
20709 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
20710
20711 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20712
20713 * paths.el (abbrev-file-name): Move to abbrev.el.
20714 * abbrev.el (abbrev-file-name): Move from paths.el.
20715 Obey user-emacs-directory.
20716 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
20717 user-emacs-directory.
20718 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
20719 abbrev-file-name and calc-settings-file any more.
20720 * startup.el (command-line): Recompute abbrev-file-name and
20721 abbreviated-home-dir.
20722 (normal-no-mouse-startup-screen): Improve the generic code and get rid
20723 of the special code for when C-h bindings haven't been changed.
20724 (display-startup-echo-area-message): Use with-current-buffer.
20725 (command-line-1): Use a list of strings, rather than a list of lists
20726 of strings for longopts.
20727
20728 * files.el (get-free-disk-space): Use / for default-directory.
20729
20730 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
20731 Use with-current-buffer.
20732
20733 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
20734 Recognize immutable variables like most-positive-fixnum.
20735 (byte-compile-setq-default): Check and warn if trying to assign
20736 to an immutable variable, or a non-variable.
20737
20738 * progmodes/cc-vars.el (c-comment-continuation-stars):
20739 * progmodes/cc-engine.el (c-looking-at-bos):
20740 * progmodes/cc-cmds.el (c-toggle-auto-state)
20741 (c-forward-into-nomenclature, c-backward-into-nomenclature)
20742 (c-comment-line-break-function): Add version of obsolescence.
20743
20744 2009-08-28 Juri Linkov <juri@jurta.org>
20745
20746 * files.el (magic-fallback-mode-alist): Add ZIP magic number
20747 associated with `archive-mode'.
20748
20749 * image.el (image-type-header-regexps): Use only JPEG magic number
20750 to determine JPEG images, and don't use `image-jpeg-p' because
20751 Emacs can display non-JFIF non-Exif JPEG images.
20752
20753 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
20754
20755 * arc-mode.el (archive-mode):
20756 * emacs-lisp/re-builder.el (re-builder-unload-function):
20757 Protect against the default value of `major-mode' being nil.
20758
20759 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
20760
20761 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
20762 Fix typos in docstrings.
20763
20764 * progmodes/js.el (js--macro-decl-re): Doc fix.
20765 (js--plain-method-re, js--split-name): Refloc docstring.
20766 (js--class-styles, js--make-merged-item, js--splice-into-items):
20767 Fix typos in docstrings; reflow docstrings.
20768 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
20769 (js--variable-decl-matcher, js--inside-pitem-p)
20770 (js--parse-state-at-point, js--get-all-known-symbols)
20771 (js--symbol-history, js-find-symbol, js--js-references)
20772 (js--moz-interactor, js--js-encode-value, js--read-tab):
20773 Fix typos in docstrings.
20774
20775 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
20776
20777 * textmodes/reftex.el (reftex-get-file-buffer-force):
20778 * progmodes/verilog-mode.el (verilog-batch-execute-func):
20779 * emulation/viper.el (viper-go-away, viper-set-hooks):
20780 * emacs-lisp/re-builder.el (re-builder-unload-function):
20781 * emacs-lisp/bytecomp.el (byte-compile-file):
20782 * ses.el (ses-unload-function):
20783 * hexl.el (hexl-find-file):
20784 * files.el (normal-mode):
20785 * ehelp.el (with-electric-help):
20786 * autoinsert.el (auto-insert-alist):
20787 * arc-mode.el (archive-mode):
20788 Use (default-value 'major-mode) instead of default-major-mode.
20789
20790 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
20791 * international/mule.el (load-with-code-conversion):
20792 * emacs-lisp/debug.el (debug):
20793 * ediff-vers.el (ediff-rcs-get-output-buffer):
20794 * dired.el (dired-internal-noselect): Don't let-bind
20795 default-major-mode around code that doesn't use it.
20796 E.g. buffer creation via get-buffer-create doesn't use it.
20797
20798 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
20799
20800 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
20801 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
20802 when writing the temp file. Otherwise, epa-file gets confused.
20803 (tramp-register-file-name-handlers): Make it a defun. Move also
20804 `epa-file-handler' to the front of `file-name-handler-alist'.
20805
20806 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
20807
20808 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
20809 start right after a ^M.
20810 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
20811 (tramp-completion-file-name-regexp-separate)
20812 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
20813 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
20814 Don't modify last-coding-system-used by accident.
20815 (tramp-completion-file-name-handler): Apply the checks here,
20816 instead during registration.
20817 (tramp-register-file-name-handlers): Rename from
20818 `tramp-register-file-name-handler'. Register both
20819 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
20820 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
20821
20822 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
20823
20824 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
20825 Remove variable ...
20826 (gdb-init-1, gdb-display-separate-io-buffer)
20827 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
20828 references to it.
20829 (gdb-inferior-io-mode): Use make-comint-in-buffer.
20830 (gdb-inferior-filter): Use comint-output-filter to stop
20831 echoing and remove ^M characters.
20832
20833 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
20834
20835 * emulation/viper-init.el (viper-restore-cursor-type):
20836 * emulation/cua-base.el (cua--update-indications):
20837 Replace default-cursor-type with (default-value 'cursor-type).
20838
20839 * mail/sendmail.el (mail-recover-1):
20840 * international/mule-diag.el (describe-current-coding-system-briefly)
20841 (describe-current-coding-system):
20842 * international/mule-cmds.el (select-safe-coding-system)
20843 (select-message-coding-system)
20844 (set-language-environment-coding-systems, set-locale-environment):
20845 * hexl.el (hexl-insert-multibyte-char):
20846 * dos-w32.el (find-buffer-file-type-coding-system):
20847 * simple.el (what-cursor-position):
20848 Replace uses of default-buffer-file-coding-system
20849 with (default-value 'buffer-file-coding-system).
20850
20851 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
20852 Replace uses of default-cursor-in-non-selected-windows
20853 with (default-value 'cursor-in-non-selected-windows).
20854 Use with-current-buffer.
20855
20856 * mail/feedmail.el: Use CL macros.
20857 (feedmail-run-the-queue, feedmail-send-it-immediately):
20858 * dos-w32.el (find-buffer-file-type): Replace uses of
20859 default-buffer-file-type with (default-value 'buffer-file-type).
20860
20861 2009-08-28 Glenn Morris <rgm@gnu.org>
20862
20863 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
20864 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
20865 Use default-value of major-mode rather than default-major-mode.
20866
20867 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
20868
20869 * Makefile.in (update-elcfiles): Report left over elc files.
20870
20871 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
20872 expand-file-name and with-current-buffer.
20873 (mail-get-names, mail-directory): Use with-current-buffer.
20874
20875 * vc.el (vc-read-revision): New function.
20876 (vc-version-diff, vc-merge): Use it.
20877
20878 2009-08-27 Sam Steingold <sds@gnu.org>
20879
20880 * simple.el (kill-do-not-save-duplicates): New user option.
20881 (kill-new): When it is non-nil, and the new string is the same as
20882 the latest kill, set replace to t to avoid duplicates in kill-ring.
20883
20884 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
20885
20886 * net/tramp.el (tramp-handle-process-file): Do not flush all
20887 caches when `process-file-side-effects' is set.
20888 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
20889 instead of `tramp-find-file-exists-command'.
20890 Unset `process-file-side-effects'.
20891
20892 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
20893
20894 * net/tramp.el (tramp-methods): New method "rsyncc".
20895 (top): Add completion function for "rsyncc".
20896 (tramp-message-show-message): New defvar.
20897 (tramp-message, tramp-error): Use it.
20898 (tramp-do-copy-or-rename-file-directly): Extend check for direct
20899 remote copying.
20900 (tramp-do-copy-or-rename-file-out-of-band): Handle new
20901 `tramp-methods' entry `copy-env' of "rsyncc".
20902 (tramp-vc-registered-read-file-names): New defconst.
20903 (tramp-vc-registered-file-names): New defvar.
20904 (tramp-handle-vc-registered): Implement optimization strategy.
20905 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
20906 (tramp-vc-file-name-handler): New defun.
20907 (tramp-get-ls-command, tramp-get-test-command)
20908 (tramp-get-file-exists-command, tramp-get-remote-ln)
20909 (tramp-get-remote-perl, tramp-get-remote-stat)
20910 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
20911
20912 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
20913 (tramp-cache-inhibit-cache): Extend doc string. It allows also
20914 timestamps.
20915 (tramp-get-file-property): Check for timestamps in
20916 `tramp-cache-inhibit-cache'.
20917 (tramp-set-file-property): Write timestamp.
20918
20919 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
20920
20921 * language/japan-util.el (japanese-symbol-table): Add entries for
20922 cp932-2-byte.
20923
20924 * international/characters.el: Add category `j' to cp932-2-byte.
20925
20926 2009-08-27 Kenichi Handa <handa@m17n.org>
20927
20928 * international/fontset.el (build-default-fontset-data): New macro.
20929 (setup-default-fontset): Use build-default-fontset-data for CJK,
20930 tibetan, ethiopic, and ipa.
20931
20932 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
20933
20934 * cus-start.el (default-major-mode): Customize `major-mode' instead.
20935 (enable-multibyte-characters): Not customizable any more.
20936
20937 * subr.el (default-mode-line-format, default-header-line-format)
20938 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
20939 (default-direction-reversed, default-truncate-lines)
20940 (default-left-margin, default-tab-width, default-case-fold-search)
20941 (default-left-margin-width, default-right-margin-width)
20942 (default-left-fringe-width, default-right-fringe-width)
20943 (default-fringes-outside-margins, default-scroll-bar-width)
20944 (default-vertical-scroll-bar, default-indicate-empty-lines)
20945 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
20946 (default-fringe-cursor-alist, default-scroll-up-aggressively)
20947 (default-scroll-down-aggressively, default-fill-column)
20948 (default-cursor-type, default-buffer-file-type)
20949 (default-cursor-in-non-selected-windows)
20950 (default-buffer-file-coding-system, default-major-mode)
20951 (default-enable-multibyte-characters): Mark as obsolete.
20952
20953 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
20954
20955 * vc-dir.el (vc-dir-update): Remove debug helper.
20956
20957 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
20958
20959 2009-08-26 Sam Steingold <sds@gnu.org>
20960
20961 * simple.el (save-interprogram-paste-before-kill): New user option.
20962 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
20963 save the interprogram-paste into kill-ring before overriding it
20964 with the Emacs kill.
20965
20966 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
20967
20968 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
20969 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
20970 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
20971 and move to vc-rcs.el.
20972 (vc-default-next-revision): Rename to vc-rcs-next-revision and
20973 move to vc-rcs.el.
20974 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
20975 (vc-rcs-update-changelog): Remove.
20976 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
20977 and move to vc-rcs.el.
20978
20979 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
20980 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
20981 renaming.
20982 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
20983 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
20984 vc.el, renamed to be RCS specific.
20985
20986 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
20987 New functions.
20988 (vc-cvs-update-changelog): Move here from vc.el.
20989
20990 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
20991 New functions.
20992
20993 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
20994
20995 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
20996
20997 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
20998
20999 * vc-git.el (vc-git-register): Use "git add" for directories.
21000 (vc-git-stash, vc-git-stash-show): New functions.
21001 (vc-git-extra-menu-map): Bind them.
21002
21003 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
21004 directory correctly in case the item is a directory itself.
21005
21006 * vc.el: Document the desired behavior for reverted files in the
21007 `added' state.
21008 (vc-default-prettify-state-info): Remove function, unused.
21009
21010 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
21011
21012 2009-08-26 Glenn Morris <rgm@gnu.org>
21013
21014 * bindings.el (standard-mode-line-format): Reposition dashes in
21015 which-func entry. (Bug#4217)
21016
21017 * files.el (enable-local-variables, enable-local-eval)
21018 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
21019 the defcustoms.
21020 (auto-mode-alist, ignored-local-variables)
21021 (save-some-buffers-action-alist): Move risky declarations to the
21022 definitions.
21023 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
21024 (font-lock-defaults, format-alist, imenu--index-alist)
21025 (imenu-generic-expression, input-method-alist, minor-mode-alist)
21026 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
21027 (mode-line-modified, mode-line-mule-info, mode-line-position)
21028 (mode-line-process, mode-line-remote, outline-level)
21029 (parse-time-rules, rmail-output-file-alist)
21030 (special-display-buffer-names, vc-mode):
21031 Move risky declarations to the relevant files.
21032 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
21033 (mode-line-modified, mode-line-process, mode-line-position)
21034 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
21035 * font-core.el (font-lock-defaults):
21036 * format.el (format-alist):
21037 * vc-hooks.el (vc-mode):
21038 * window.el (special-display-buffer-names):
21039 * international/mule-cmds.el (input-method-alist):
21040 Define riskiness here (dumped file) rather than in files.el.
21041 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
21042 * imenu.el (imenu-generic-expression, imenu--index-alist):
21043 * outline.el (outline-level):
21044 * time.el (display-time-string):
21045 * calendar/parse-time.el (parse-time-rules):
21046 * mail/rmailout.el (rmail-output-file-alist):
21047 Autoload riskiness here, rather than placing in files.el.
21048
21049 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
21050
21051 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
21052
21053 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
21054
21055 * simple.el (process-file-side-effects): New defvar.
21056
21057 * dired-aux.el (dired-show-file-type):
21058 * vc.el (vc-diff-internal):
21059 * vc-arch.el (vc-arch-diff):
21060 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
21061 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
21062 * vc-git.el (vc-git-registered, vc-git-working-revision)
21063 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
21064 (vc-git--empty-db-p):
21065 * vc-hooks.el (vc-user-login-name):
21066 * vc-svn.el (vc-svn-registered, vc-svn-state)
21067 (vc-svn-dir-extra-headers, vc-svn-find-revision):
21068 * progmodes/grep.el (grep-probe): Let-bind
21069 `process-file-side-effects' with nil.
21070
21071 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
21072
21073 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
21074 daemon. Replace ping by checking for running service for bluez
21075 and zeroconf. (Bug#4239)
21076
21077 2009-08-25 Kevin Ryde <user42@zip.com.au>
21078
21079 * net/dig.el (dig): Add autoload cookie.
21080
21081 2009-08-25 Glenn Morris <rgm@gnu.org>
21082
21083 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
21084 load-history for absolute file-names.
21085 (byte-compile-file-form-require): Warn about use of the cl package.
21086
21087 * format.el (format-alist): Doc fix.
21088
21089 * play/bubbles.el (top-level): Don't require cl at run-time.
21090
21091 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
21092 run-time cl).
21093
21094 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
21095
21096 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
21097 from cl package.
21098 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
21099
21100 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
21101
21102 * calc/calc-alg.el (math-trig-rewrite)
21103 (math-hyperbolic-trig-rewrite): New functions.
21104 (calc-simplify): Simplify trig functions when asked.
21105
21106 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
21107
21108 * diff-mode.el (diff-find-source-location): Avoid goto-line.
21109
21110 2009-08-24 Kenichi Handa <handa@m17n.org>
21111
21112 * language/ind-util.el (mapthread): Delete it.
21113 (combinatorial): New function.
21114 (indian--puthash-cv): Use combinatorial instead of mapthread.
21115
21116 2009-08-22 Kevin Ryde <user42@zip.com.au>
21117
21118 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
21119 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
21120 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
21121 Clarify docstring that the value is strings not symbols.
21122 (checkdoc-list-of-strings-p): New function.
21123
21124 2009-08-22 Glenn Morris <rgm@gnu.org>
21125
21126 * files.el (auto-mode-alist):
21127 * hippie-exp.el (he-concat-directory-file-name):
21128 * lpr.el (lpr-windows-system, printer-name):
21129 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
21130 * ps-print.el (ps-windows-system):
21131 * startup.el (command-line):
21132 * emulation/viper-ex.el (viper-glob-function):
21133 * international/mule-cmds.el (set-language-environment-coding-systems):
21134 * net/ange-ftp.el (ange-ftp-write-region):
21135 * obsolete/fast-lock.el (fast-lock-cache-name):
21136 Remove code for defunct system-types emx, macos, mswindows, next-mach,
21137 unisoft-unix, vax-vms, win32, w32.
21138
21139 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
21140 given name if the pattern is not more specific.
21141
21142 * calendar/lunar.el (lunar-phase-names): New option.
21143 (lunar-phase): Doc fix.
21144 (lunar-cycles-per-year): New constant.
21145 (lunar-index): New function.
21146 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
21147 (lunar-phase-name): Use lunar-phase-names.
21148 (calendar-lunar-phases): Use format.
21149 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
21150
21151 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
21152 Copy imenu-example--name-and-position function here for own use.
21153 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
21154
21155 * bs.el (bs--redisplay):
21156 * cus-edit.el (custom-redraw):
21157 * ibuffer.el (ibuffer-bury-buffer):
21158 * server.el (server-goto-line-column):
21159 * startup.el (command-line-1):
21160 * strokes.el (strokes-xpm-for-stroke):
21161 * term.el (term-display-buffer-line):
21162 * view.el (View-goto-line):
21163 * calc/calc.el (calc-do, calc-trail-buffer):
21164 * play/gamegrid.el (gamegrid-add-score-insecure):
21165 * progmodes/ada-mode.el (ada-compile-goto-error):
21166 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
21167 (ebrowse-select-1st-to-9nth):
21168 * progmodes/cperl-mode.el (cperl-time-fontification):
21169 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
21170 * progmodes/gud.el (gud-display-line):
21171 (idlwave-shell-display-line):
21172 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
21173 * progmodes/make-mode.el (makefile-browser-toggle):
21174 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
21175 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
21176 * textmodes/picture.el (picture-draw-rectangle):
21177 * textmodes/reftex-index.el (reftex-index-goto-letter):
21178 (reftex-select-jump-to-previous):
21179 * textmodes/reftex-sel.el (reftex-find-start-point)
21180 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
21181 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
21182 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
21183 * textmodes/tex-mode.el (tex-compilation-parse-errors):
21184 * textmodes/two-column.el (2C-associated-buffer):
21185 Use forward-line rather than goto-line.
21186
21187 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
21188 goto-line.
21189
21190 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
21191 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
21192 (quick-check-list-to-regexp): Declare.
21193
21194 * progmodes/make-mode.el (makefile-browser-insert-selection):
21195 Use goto-char rather than goto-line.
21196
21197 * progmodes/prolog.el (compilation-error-regexp-alist)
21198 (compilation-forget-errors): Declare.
21199
21200 2009-08-22 Juri Linkov <juri@jurta.org>
21201
21202 * progmodes/grep.el (lgrep, rgrep): At the beginning
21203 set `dir' to `default-directory' unless `dir' is a non-nil
21204 readable directory. (Bug#4052)
21205 (lgrep, rgrep): Change a weird way to report an error
21206 from using `read-string' to using `error'.
21207 Instead of using interactive arguments in the function body,
21208 add new argument `confirm'.
21209
21210 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
21211
21212 * textmodes/remember.el (remember-buffer):
21213 * progmodes/cperl-mode.el (cperl-vc-header-alist):
21214 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
21215 (icalendar-extract-ical-from-buffer):
21216 * net/newst-treeview.el (newsticker-groups-filename):
21217 * net/newst-backend.el (newsticker-cache-filename):
21218 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
21219 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
21220 (speedbar-add-ignored-path-regexp, speedbar-line-path)
21221 (speedbar-buffers-line-path, speedbar-path-line)
21222 (speedbar-buffers-line-path):
21223 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
21224 (epg-sign-keys):
21225 * epa.el (epa-display-verify-result):
21226 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
21227
21228 2009-08-21 Glenn Morris <rgm@gnu.org>
21229
21230 * progmodes/js.el (inferior-moz-process): Fix declaration.
21231
21232 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
21233
21234 * obsolete/rnewspost.el (news-mail-reply):
21235 Use goto-char rather than goto-line.
21236
21237 * term/ns-win.el (ns-open-file-select-line):
21238 Use line-beginning-position rather than goto-line.
21239
21240 * apropos.el (apropos-command):
21241 * ehelp.el (electric-helpify):
21242 * printing.el (pr-show-setup):
21243 * strokes.el (strokes-help):
21244 * tutorial.el (tutorial--describe-nonstandard-key)
21245 (tutorial--detailed-help):
21246 * woman.el (woman-mini-help, woman-display-extended-fonts):
21247 * calc/calc-help.el (calc-describe-key):
21248 * emulation/edt.el (edt-electric-helpify):
21249 * international/mule-diag.el (mule-diag):
21250 * play/yow.el (apropos-zippy):
21251 * progmodes/python.el (python-describe-symbol):
21252 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
21253 * textmodes/table.el (*table--cell-describe-mode)
21254 (*table--cell-describe-bindings):
21255 Use help-print-return-message rather than the now obsolete alias.
21256
21257 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
21258 (calendar-cursor-to-visible-date):
21259 * play/5x5.el (5x5-position-cursor):
21260 * play/decipher.el (decipher):
21261 * play/gomoku.el (gomoku-goto-xy):
21262 * play/landmark.el (lm-goto-xy):
21263 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
21264 (mpuz-paint-digit):
21265 Use forward-line, not goto-line.
21266
21267 * mail/rmail.el (rmail-obsolete): Delete custom group.
21268 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
21269 (rmail-remote-password, rmail-remote-password-required):
21270 Remove unneeded :set-after and :set properties.
21271
21272 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
21273
21274 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
21275
21276 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
21277
21278 * loadup.el: Remove leftover macos code.
21279
21280 * vc-git.el (vc-git-annotate-command): Run asynchronously.
21281 Explicitly pass the date format to git blame so that user local
21282 so that the output format can be parsed.
21283
21284 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
21285
21286 * net/dbus.el (top): Don't check for (getenv
21287 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
21288
21289 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
21290
21291 * log-edit.el (log-edit-strip-single-file-name): New var.
21292 (log-edit-insert-changelog): Use it. Bug#3571.
21293
21294 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21295
21296 * subr.el (read-passwd): Use read-key so keypad keys work as well.
21297 Bug#3287.
21298
21299 * help.el (help-print-return-message): Rename from
21300 print-help-return-message.
21301
21302 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
21303 cvs-mode-map parent hack.
21304 (log-view-mode): Derive from special-mode.
21305
21306 * linum.el (linum-mode): window-size-change-functions is redundant.
21307 Adapt to new window-configuration-change-hook behavior.
21308 (linum-after-size, linum-after-config): Remove.
21309
21310 * imenu.el (imenu-example--name-and-position)
21311 (imenu-example--lisp-extract-index-name)
21312 (imenu-example--create-lisp-index, imenu-example--create-c-index):
21313 Mark as obsolete.
21314
21315 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
21316 (inferior-prolog-mode): Use it.
21317 (inferior-prolog-load-file): Reset list of errors.
21318
21319 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
21320
21321 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
21322
21323 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
21324
21325 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
21326
21327 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
21328 is running already.
21329
21330 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21331
21332 * subr.el (listify-key-sequence-1): Use normal syntax since those
21333 integers are nowadays always represented by the same (positive) number
21334 on all platforms.
21335 (read-key-empty-map): New const.
21336 (read-key-delay): New var.
21337 (read-key): New function.
21338 (force-mode-line-update): Use with-current-buffer.
21339 (locate-user-emacs-file): Don't forget to abbreviate the file name.
21340 (start-process-shell-command, start-file-process-shell-command):
21341 Discourage the use of command-args.
21342
21343 2009-08-19 Glenn Morris <rgm@gnu.org>
21344
21345 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
21346
21347 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21348
21349 * simple.el (choose-completion-string): Don't rely on
21350 minibuffer-completing-file-name and ad-hoc checks to decide whether
21351 to continue completion or not.
21352
21353 * minibuffer.el (minibuffer-hide-completions): New function.
21354 (completion--do-completion): Use it.
21355 (completions-annotations): New face.
21356 (completion--insert-strings): Use it.
21357 (completion-pcm--delim-wild-regex): Add docstring.
21358 (completion-pcm--string->pattern): Add support for 0-width delimiters
21359 in completion-pcm--delim-wild-regex.
21360
21361 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
21362
21363 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
21364 Remove unused var `buffer-modified-p'.
21365
21366 * minibuffer.el (completion--do-completion): Move point for the #b001
21367 case as well (bug#4176).
21368 (minibuffer-complete, minibuffer-complete-word): Don't move point.
21369
21370 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
21371
21372 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
21373 and :session buses.
21374
21375 2009-08-18 Kenichi Handa <handa@m17n.org>
21376
21377 * international/ucs-normalize.el (ucs-normalize-version):
21378 Change to 1.1.
21379 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
21380 (utf-8-hfs): Make it perform normalization on encoding too.
21381
21382 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
21383 (sentence-end-without-space): Delete duplicated chars.
21384 (sentence-end-base): Likewise.
21385
21386 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
21387 (html-mode): Delete duplicated chars from sentence-end-base.
21388
21389 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
21390 (texinfo-mode): Delete duplicated chars from sentence-end-base.
21391
21392 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
21393
21394 * files.el (hack-one-local-variable): If the mode function is for
21395 a minor mode, pass it an argument (Bug#4148).
21396
21397 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
21398
21399 * net/tramp.el (tramp-register-completion-file-name-handler):
21400 Check also for (member 'partial-completion completion-styles).
21401
21402 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21403
21404 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
21405 abbrev (Bug#3943).
21406
21407 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
21408
21409 * progmodes/cperl-mode.el: Merge upstream 6.2.
21410 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
21411 (cperl-forward-re): Check cperl-brace-recursing.
21412 (cperl-highlight-charclass): New function.
21413 (cperl-find-pods-heres): Use it.
21414 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
21415 (cperl-beautify-regexp-piece): Fix column calculation.
21416 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
21417 (cperl-beautify-level): Don't process entire regexp.
21418 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
21419 calling man.
21420 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
21421 (cperl-init-faces): Build a list in the normal way.
21422
21423 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21424
21425 * calendar/parse-time.el (parse-time-string-chars): Save match
21426 data.
21427
21428 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
21429
21430 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
21431 (sql-product): Use it.
21432 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
21433 (sql-set-product): Add completion.
21434 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
21435 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
21436 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
21437 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
21438 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
21439 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
21440 (sql-highlight-db2-keywords): Remove.
21441 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
21442 (sql-highlight-product): Use derived-mode-p.
21443 (sql-set-sqli-buffer): Use with-current-buffer.
21444 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
21445 Simplify.
21446
21447 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
21448
21449 * term.el: Fix commenting convention, turn comments into docstrings.
21450
21451 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
21452
21453 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
21454
21455 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
21456
21457 * calendar/parse-time.el (parse-time-string-chars): Compute using
21458 character classes, to handle non-ascii characters (Bug#3190).
21459
21460 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21461
21462 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
21463 another heredoc if the user adds another < (Bug#3226).
21464
21465 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
21466 Don't initialize based on window-system (Bug#4124).
21467
21468 * facemenu.el (facemenu-read-color): Use a completion function
21469 that accepts any defined color, such as RGB triplets (Bug#3677).
21470
21471 * files.el (get-free-disk-space): Change fallback default
21472 directory to /. Expand DIR argument before switching to fallback.
21473 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
21474
21475 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
21476
21477 * files.el (load-library): Doc fix.
21478
21479 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
21480
21481 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
21482 (viper-if-string): Redefine C-s in the minibuffer to insert the last
21483 incremental search string.
21484
21485 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
21486 XEmacs.
21487
21488 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
21489 (ediff-merge-region-is-non-clash)
21490 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
21491 Also check if the job is really a merge job.
21492
21493 * ediff.el (ediff-current-file): New function.
21494
21495 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
21496
21497 * progmodes/js.el: Edit docstrings throughout to follow Emacs
21498 conventions.
21499 (js-insert-and-indent): Delete function.
21500 (js-mode-map): Don't bind keys to js-insert-and-indent.
21501 (js-beginning-of-defun): Rename from js--beginning-of-defun.
21502 (js-end-of-defun): Rename from js--end-of-defun.
21503 (js-auto-indent-flag): Delete variable.
21504
21505 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
21506
21507 * progmodes/js.el: Remove proclaim statement.
21508 Defvar which-func-imenu-joiner-function to silence compiler.
21509
21510 * files.el (auto-mode-alist): Use js-mode for .js files.
21511
21512 * progmodes/js2-mode.el: Remove file.
21513
21514 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
21515
21516 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
21517
21518 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
21519
21520 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
21521 Karl Landstrom <karl.landstrom@brgeight.se>
21522
21523 * progmodes/js.el: New file.
21524
21525 2009-08-14 Mark A. Hershberger <mah@everybody.org>
21526
21527 * timezone.el (timezone-parse-date): Add ability to understand ISO
21528 basic format (minimal separators) dates in addition to the
21529 already-supported extended format dates.
21530
21531 2009-08-14 Eli Zaretskii <eliz@gnu.org>
21532
21533 * international/ucs-normalize.el: Add a `coding' file variable.
21534
21535 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
21536
21537 2009-08-14 Sam Steingold <sds@gnu.org>
21538
21539 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
21540
21541 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
21542
21543 * faces.el (help-argument-name): Define it here instead of
21544 help-fns.el, because in daemon mode help-fns.el may be loaded when
21545 faces are still uninitialized (Bug#1078).
21546
21547 * help-fns.el (help-argument-name): Move defface to faces.el.
21548
21549 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
21550
21551 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
21552 create buffer with a pty but no process so that GDB can make the
21553 inferior the controlling process.
21554
21555 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
21556
21557 * international/ucs-normalize.el: New file.
21558
21559 2009-08-13 Richard Stallman <rms@gnu.org>
21560
21561 * mail/rmail.el (rmail-get-attr-names):
21562 Accept an attribute header that is too short.
21563
21564 * mail/rmail.el (rmail-forget-messages):
21565 Ignore nil elt in rmail-message-vector. Use dotimes.
21566
21567 * progmodes/compile.el (compilation-goto-locus):
21568 Use next-error-move-function.
21569
21570 * simple.el (next-error-move-function): New variable.
21571
21572 2009-08-12 Juri Linkov <juri@jurta.org>
21573
21574 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
21575 always non-nil. (Bug#4052)
21576
21577 * replace.el (read-regexp): Return empty string when
21578 `default-value' is nil.
21579 (keep-lines-read-args): Don't use empty string as the
21580 default value for `read-regexp'. (Bug#2495)
21581
21582 2009-08-12 Juri Linkov <juri@jurta.org>
21583
21584 * international/mule-cmds.el (ucs-insert): Change arguments
21585 from `arg' to `character', `count', `inherit' to be the same
21586 as in `insert-char'. Doc fix. (Bug#4039)
21587
21588 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
21589
21590 2009-08-12 Juri Linkov <juri@jurta.org>
21591
21592 * files-x.el: New file.
21593
21594 * files.el: Move code that deals with adding/deleting
21595 file/directory-local variables to files-x.el.
21596
21597 * Makefile.in (ELCFILES): Add files-x.elc.
21598
21599 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
21600
21601 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
21602 to use `goto-line'.
21603 (gdb-place-breakpoints, gdb-get-location): Rewritten without
21604 `goto-line'.
21605 (gdb-invalidate-disassembly): Do not refresh upon receiving
21606 'update signal. Instead, update all disassembly buffers only after
21607 threads list.
21608 (gdb): Send -target-detach when buffer is killed (Bug#3794).
21609 (gdb-starting): Move -data-list-register-names...
21610 (gdb-stopped): ...here so it's sent when first thread stops.
21611 (gdb-registers-handler-custom): Do nothing if register names are
21612 unknown yet.
21613
21614 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
21615 from `gdb-mi.el' to avoid extra tangling.
21616
21617 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
21618 change which breaks `gud-def' definitions used in `gdb'.
21619 (gdb-update-gud-running): No extra fuss for updating frame number.
21620
21621 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
21622
21623 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
21624 (describe-language-environment-map, setup-language-environment-map)
21625 (set-coding-system-map): Move initialization into declaration.
21626 (set-language-info-alist): Last arg to define-key-after can be skipped.
21627
21628 * international/quail.el (quail-completion-1): Simplify.
21629 (quail-define-rules): Use slightly more compact code.
21630 (quail-insert-decode-map): Propertize keys, compact columns.
21631
21632 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
21633 Add goto-line.
21634
21635 2009-08-10 Miles Bader <miles@gnu.org>
21636
21637 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
21638 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
21639 (js2-instance-member, js2-private-member, js2-private-function-call)
21640 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
21641 (js2-magic-paren, js2-external-variable):
21642 Remove "-face" suffix from face names.
21643 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
21644 (js2-highlight-undeclared-vars, js2-peek-token)
21645 (js2-parse-function-params, js2-mode-show-errors)
21646 (js2-mode-show-warnings, js2-make-magic-delimiter)
21647 (js2-mode-highlight-magic-parens): Update to use new face names.
21648
21649 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
21650
21651 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
21652 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
21653
21654 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
21655
21656 * subr.el: Provide hashtable-print-readable.
21657
21658 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
21659 hs-c-like-adjust-block-beginning.
21660 (hs-hide-block-at-point): Stop hiding at the beginning of
21661 hs-block-end-regexp (Bug#700).
21662
21663 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
21664
21665 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
21666 a macro.
21667 (gdb-registers-handler-custom): Do not fail when register names
21668 are unavailable.
21669
21670 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21671
21672 * progmodes/gdb-mi.el (gdb-control-all-threads)
21673 (gdb-control-current-thread): Interactive setters for
21674 `gdb-gud-control-all-threads' to use in menu.
21675 (gdb-show-run-p): Show «Go» when process is not active.
21676 (gud-tool-bar-map): Add non-stop/A,T indicator.
21677 Uses gud/thread.xpm and gud/all.xpm.
21678
21679 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
21680
21681 * net/net-utils.el (net-utils-font-lock-keywords): New var.
21682 (nslookup-font-lock-keywords): Make it a variable.
21683 (net-utils-mode): New mode for viewing diagnostic network output.
21684 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
21685 (net-utils-run-simple): New function.
21686 (ifconfig, iwconfig, netstat, arp, route): Use it.
21687
21688 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21689
21690 * progmodes/gdb-mi.el (gdb-read-memory-custom)
21691 (gdb-memory-set-address, def-gdb-set-positive-number)
21692 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
21693 after changing settings.
21694 (gdb-invalidate-disassembly): Update when first shown.
21695 (gdb-edit-locals-value): Fix.
21696 (gdb-registers-handler-custom): Print registers in right order and
21697 allow changing register values (only for current thread yet).
21698 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
21699 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
21700 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
21701 (gdb-locals-handler-custom, gdb-registers-handler-custom):
21702 Thread info in mode name.
21703 (gdb-registers-mode-map): TAB to switch to locals.
21704
21705 2009-08-08 Eli Zaretskii <eliz@gnu.org>
21706
21707 * mail/rmail.el (rmail-add-mbox-headers)
21708 (rmail-set-message-counters-counter): Search for
21709 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
21710
21711 2009-08-08 Glenn Morris <rgm@gnu.org>
21712
21713 * Makefile.in (ELCFILES): Update.
21714
21715 2009-08-07 Eli Zaretskii <eliz@gnu.org>
21716
21717 * mail/sendmail.el (mail-yank-original):
21718 Set buffer-file-coding-system from the one used by the message whose
21719 text is yanked.
21720
21721 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
21722 to "windows" when "pgnuplot" is used.
21723 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
21724 Don't call accept-process-output if "pgnuplot" is used.
21725 (calc-graph-init): Don't send -display and -geometry to
21726 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
21727 running "pgnuplot -V" with shell-command-to-string.
21728
21729 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
21730 the default.
21731
21732 2009-08-07 Eli Zaretskii <eliz@gnu.org>
21733
21734 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
21735 org/org-latex.elc.
21736
21737 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
21738
21739 * vc-dispatcher.el (vc-resynch-window): Update comment.
21740
21741 * term.el (term-handle-ansi-escape): Add comments with the
21742 terminfo capabilities implemented.
21743
21744 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
21745
21746 * progmodes/gdb-mi.el (gdb-var-create-regexp): Remove.
21747 (gdb-var-create-handler): Rewritten using JSON parser.
21748 (gdb-propertize-header): Move earlier.
21749 (gdb-set-header): Remove to avoid duplication.
21750 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
21751 Refresh disassembly buffers only after threads list have been
21752 update.
21753 (gdb-threads-header, gdb-registers-header): Per-buffer header line
21754 variables.
21755
21756 2009-08-04 Juri Linkov <juri@jurta.org>
21757
21758 * files.el: Commands to add/delete file/directory-local variables.
21759 (read-file-local-variable, read-file-local-variable-value)
21760 (read-file-local-variable-mode, modify-file-local-variable)
21761 (modify-file-local-variable-prop-line)
21762 (modify-dir-local-variable): New functions.
21763 (add-file-local-variable, delete-file-local-variable)
21764 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
21765 (add-dir-local-variable, delete-dir-local-variable)
21766 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
21767 (copy-dir-locals-to-file-locals-prop-line): New commands.
21768
21769 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
21770
21771 * abbrev.el (insert-abbrev-table-description): Prettify output.
21772 Suggested by Karl Chen.
21773
21774 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
21775
21776 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
21777 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
21778 (gdb-overlay-arrow-position, gdb-thread-position)
21779 (gdb-disassembly-position): Declare variables.
21780 (gdb-wait-for-pending): Function now.
21781 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
21782 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
21783 compilation goes smoothly.
21784 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
21785 (gdb-non-stop-setting): New customization setting which replaces
21786 `gdb-non-stop' so changing it doesn't break active GDB session.
21787 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
21788 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
21789 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
21790 (gdb-show-threads-by-default): New customization options.
21791 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
21792 routines.
21793 (gdb-get-buffer-create): Send buffers update signal when they are
21794 created.
21795 (gdb-invalidate-locals, gdb-invalidate-registers)
21796 (gdb-invalidate-breakpoints)
21797 (gdb-invalidate-threads, gdb-invalidate-disassembly)
21798 (gdb-invalidate-memory): Accept update signal.
21799 (gdb-current-context-command): Use --frame option.
21800 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
21801 Implement `gdb-frame-number' selection logic.
21802 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
21803 whether to show GUD toolbar buttons.
21804 (gdb-thread-exited): Unselect current thread when it exits.
21805 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
21806 (gdb-mark-line): Routine which sets overlay arrow or inverses
21807 video on fringeless displays.
21808 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
21809 to build aligned columns of data in GDB buffers and set text
21810 properties line-by-line.
21811 (gdb-invalidate-breakpoints)
21812 (gdb-breakpoints-list-handler-custom)
21813 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
21814 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
21815 (gdb-registers-handler-custom): Align data columns.
21816 (gdb-locals-handler-custom): Now prints data like in variable
21817 declarations.
21818 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
21819 Remove confusing buttons.
21820 (gdb-invalidate-threads): Append --frame.
21821 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
21822 between breakpoints/threads buffers.
21823 (gdb-set-window-buffer): Now can ignore dedicated windows.
21824 (gdb-propertize-header): Use `gdb-set-window-buffer'.
21825 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
21826 (def-gdb-thread-buffer-gud-command): Replaces
21827 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
21828 for fine thread control.
21829 (gdb-preempt-existing-or-display-buffer): New function used to
21830 display bound buffers without breaking window layout.
21831 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
21832 (gdb-select-frame): New version of `gdb-frames-select' which now
21833 sets `gdb-frame-number' so commands may use --frame option instead
21834 of inner debugger state.
21835 (gdb-frame-handler): Do not set `gdb-frame-number'.
21836 (gdb-threads-mode-map): Select threads with mouse.
21837
21838 * progmodes/gud.el (gdb-gud-context-call): Declare function to
21839 avoid compilation warning.
21840 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
21841 `gdb-show-stop-p`.
21842
21843 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
21844 Argument `key' renamed to `buffer-type'.
21845 (gdb-current-context-buffer-name): Do not add thread info to
21846 buffer name when no thread is selected.
21847 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
21848 command (bug 3794).
21849 (gdb-thread-selected): Handle `=thread-selected' notification.
21850 (gdb-wait-for-pending): New macro to deal with congestion problems.
21851 (gdb-breakpoints-list-handler-custom): Don't fail on pending
21852 breakpoints.
21853 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
21854 This fixes problem similar to one described in bug 3947.
21855 (gud-menu-map): More menu items.
21856 (gdb-init-1): Reset `gdb-thread-number' to nil.
21857
21858 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
21859 non-stop settings.
21860
21861 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
21862 (gdb-current-context-command): Do not append --thread if
21863 `gdb-thread-number' is nil.
21864 (gdb-running-threads-count, gdb-stopped-threads-count):
21865 New variables.
21866 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
21867 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
21868 New customization options.
21869 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
21870 GUD commands.
21871 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
21872 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
21873 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
21874 set `gdb-thread-number' and update `gud-running' properly.
21875 (gdb-running): Update threads list when new threads appear.
21876 (gdb-stopped): Support non-stop operation and new thread switching
21877 logic.
21878 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
21879 (gdb-json-partial-output): New set of JSON routines.
21880 (def-gdb-auto-update-trigger): New `signal-list' optional
21881 argument.
21882 (gdb-thread-list-handler-custom): Update `gud-running',
21883 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
21884 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
21885 (gdb-continue-thread, gdb-step-thread): New commands for fine
21886 thread execution control.
21887 (gud-menu-map): New menu items to switch non-stop options.
21888 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
21889 (gdb-send): Mimic RET properly (bug 3794).
21890
21891 * progmodes/gdb-mi.el (gdb-rules-name-maker)
21892 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
21893 gdb-buffer-rules.
21894 (def-gdb-auto-update-handler): New nopreserve optional argument.
21895 (gdb-stack-list-frames-custom): Print stack from top to bottom.
21896
21897 * progmodes/gdb-mi.el (gdb-pc-address): Remove unused variable.
21898 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
21899 (gdb-parent-mode): New mode to derive other GDB modes from.
21900 (gdb-display-disassembly-for-thread)
21901 (gdb-frame-disassembly-for-thread): New commands for threads
21902 buffer.
21903
21904 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
21905 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
21906 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
21907 (gdb-update): We now store all GDB buffers in a list so that they
21908 can be updated by traversing a list instead of calling invalidate
21909 triggers explicitly.
21910 (def-gdb-trigger-and-handler): New macro to define trigger-handler
21911 pair for GDB buffer.
21912 (gdb-stack-buffer-name): Add thread information.
21913 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
21914 handle pending triggers.
21915 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
21916 (def-gdb-thread-buffer-simple-command)
21917 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
21918 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
21919 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
21920 New commands which show buffers bound to thread.
21921 (gdb-stack-list-locals-regexp): Remove unused regexp.
21922
21923 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
21924 (gdb-locals-buffer-name, gdb-registers-buffer-name)
21925 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
21926 to (gud-comint-buffer) in *-buffer-name functions
21927 because (gdb-get-target-string) already does that.
21928 (gdb-locals-handler-custom, gdb-registers-handler-custom)
21929 (gdb-changed-registers-handler): Rewritten without regexps.
21930
21931 * progmodes/gdb-mi.el: Basic thread selection support.
21932 (gdb-thread-number): New variable.
21933 (gdb-current-context-command): New macro which adds --thread
21934 option to command.
21935 (gdb-threads-mode-map): Select thread with SPC.
21936 (gdb-thread-list-handler-custom): Mark current thread with overlay
21937 arrow. Synchronize GDB thread and Emacs thread.
21938 (gdb-select-thread): New command which selects current thread.
21939 (gdb-invalidate-frames, gdb-invalidate-locals)
21940 (gdb-invalidate-registers): Use --thread option.
21941
21942 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
21943
21944 * net/tramp.el (top): Make check for tramp-gvfs loading more
21945 robust. (Bug#3977)
21946 (tramp-handle-insert-file-contents): `unwind-protect' must be
21947 inside `with-parsed-tramp-file-name'.
21948
21949 * net/tramp-gvfs.el (top): Remove superfluous message when loading
21950 fails.
21951
21952 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
21953
21954 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
21955 directory if CLASSPATH is not set.
21956
21957 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
21958
21959 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
21960 New defconst.
21961 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
21962
21963 2009-08-02 Kevin Ryde <user42@zip.com.au>
21964
21965 * net/newst-backend.el (newsticker--raw-url-list-defaults):
21966 Update freshmeat link. Delete newsforge.com as it seems gone.
21967
21968 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
21969
21970 * select.el (x-set-selection): Doc fix (Bug#4021).
21971
21972 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
21973
21974 * help-fns.el (describe-variable): Treat list return values from
21975 dir-locals-find-file properly (Bug#4005).
21976
21977 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
21978
21979 * net/tramp.el (tramp-debug-message): Print also microseconds.
21980
21981 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
21982
21983 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
21984 or END is non-nil.
21985 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
21986 (tramp-get-debug-buffer): Change `outline-regexp' according to new
21987 format.
21988
21989 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
21990 (tramp-get-file-property): Use it.
21991
21992 * autorevert.el (auto-revert-handler):
21993 Allow `auto-revert-tail-mode' for remote files.
21994
21995 2009-08-02 Jason Rumney <jasonr@gnu.org>
21996
21997 * minibuffer.el (read-file-name): Treat confirm options to
21998 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
21999
22000 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
22001
22002 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
22003 (font-lock-variable-name-face, font-lock-constant-face):
22004 Darken the colors for light backgrounds.
22005
22006 2009-08-01 Eli Zaretskii <eliz@gnu.org>
22007
22008 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
22009 month names. (Bug#3987)
22010
22011 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
22012
22013 * simple.el (line-move-finish): Pass whole number to
22014 line-move-to-column.
22015 (line-move-visual): Perform hscroll to the recorded position.
22016
22017 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
22018
22019 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
22020
22021 2009-07-29 Alan Mackenzie <acm@muc.de>
22022
22023 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
22024
22025 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
22026
22027 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
22028 (gdb-place-breakpoints): Use full path when setting breakpoints.
22029
22030 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
22031
22032 * calc/calc.el (calc-mode-map): Add keybinding for
22033 `calc-transpose-lines'.
22034
22035 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
22036
22037 * calc/calc-misc.el (calc-transpose-lines): New function.
22038
22039 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
22040
22041 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
22042 Simplify check for out-of-band methods.
22043 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
22044 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
22045
22046 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
22047
22048 * vc-git.el (vc-git-checkin): Fix typo.
22049
22050 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
22051
22052 * progmodes/js2-mode.el: New file.
22053
22054 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
22055
22056 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
22057 (gud-menu-map): Adjust tooltip accordingly.
22058
22059 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
22060
22061 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
22062 (vc-bzr-log-view-mode): Adjust log-view-file-re.
22063
22064 * add-log.el (change-log-mode-map): Add a menu.
22065
22066 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
22067
22068 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
22069 function returns nil.
22070 (dbus-handle-event): Handle special return value :ignore.
22071 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
22072
22073 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
22074
22075 * view.el (view-mode-enable): Don't define Helper-return-blurb if
22076 it's not needed.
22077
22078 2009-07-25 Eli Zaretskii <eliz@gnu.org>
22079
22080 Fix Bug#3888:
22081
22082 * w32-vars.el (x-select-enable-clipboard): Doc fix.
22083
22084 * term/pc-win.el (x-display-name, x-colors)
22085 (x-select-enable-clipboard, x-select-text): Doc fix.
22086
22087 * term/common-win.el (x-display-name, x-colors): Doc fix.
22088
22089 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
22090 (xw-defined-colors): Doc fix.
22091
22092 * w32-fns.el (x-select-text, x-setup-function-keys)
22093 (x-get-selection, x-set-selection): Doc fix.
22094
22095 * term/x-win.el (x-select-text, x-setup-function-keys)
22096 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
22097
22098 * select.el (x-set-selection): Doc fix.
22099
22100 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
22101
22102 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
22103 instead of "IsNSSSupportAvailable". Avahi ought to work also when
22104 "IsNSSSupportAvailable" method is not available.
22105 Reported by Steve Youngs <steve@sxemacs.org>.
22106
22107 2009-07-24 Kenichi Handa <handa@m17n.org>
22108
22109 * international/characters.el: Fix setting of category ?C, ?|, ?K,
22110 and ?H. Fix setting of case for Latin Extended and Greek Extended.
22111 (build-unicode-category-table): Fix range checks.
22112
22113 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
22114
22115 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
22116 the buffer we try to sync is current when calling
22117 vc-resynch-buffer.
22118
22119 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
22120 not show up to date files.
22121
22122 2009-07-24 Glenn Morris <rgm@gnu.org>
22123
22124 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
22125 Add autoload cookies. If necessary, initialize.
22126 (elint-log): Handle non-file buffers.
22127 (elint-initialize): Add optional argument to reinitialize.
22128 (elint-find-builtin-variables): Save excursion.
22129
22130 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
22131
22132 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
22133 for Lint.
22134
22135 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
22136
22137 * vc.el (vc-print-log-internal): New function, split out from ...
22138 (vc-print-log): ... here.
22139 (vc-dir-move-to-goal-column): Declare.
22140
22141 * vc-git.el (vc-git-add-signoff): New variable.
22142 (vc-git-checkin): Use it.
22143 (vc-git-toggle-signoff): New function.
22144 (vc-git-extra-menu-map): Bind it to menu.
22145 (vc-git--run-command-string): Accept a nil FILE argument.
22146 (vc-git-stash-list): New function.
22147 (vc-git-dir-extra-headers): Use it.
22148
22149 2009-07-23 Glenn Morris <rgm@gnu.org>
22150
22151 * help-fns.el (describe-variable): Describe ignored and risky local
22152 variables in a similar way to that in which we describe safe ones.
22153
22154 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
22155 (byte-compile-output-file-form, byte-compile-output-docform)
22156 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
22157 Give some more local variables with common names a "bytecomp-" prefix,
22158 so as not to shadow things during compilation.
22159 * emacs-lisp/cl-macs.el (load-time-value)
22160 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
22161 `outbuffer' to `bytecomp-outbuffer'.
22162
22163 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
22164 since the next two variables cover them automatically now.
22165 (elint-builtin-variables, elint-autoloaded-variables): New.
22166 (elint-unknown-builtin-args): Remove all members, since they can be
22167 parsed automatically now.
22168 (elint-extra-errors): New.
22169 (elint-env-add-env, elint-env-add-macro): Use cadr.
22170 (elint-current-buffer): Use or. Change final message.
22171 (elint-get-top-forms): Use line-end-position.
22172 (elint-init-env): Use cadr. Handle autoload, declare-function,
22173 and defalias.
22174 (elint-add-required-env): Doc fix. Use or. Standardize error.
22175 (regexp-assoc): Remove unused function.
22176 (elint-top-form): Set elint-current-pos, to record the start of the
22177 top-level form, for compilation-mode.
22178 (elint-form): Trap errors in macro expansion. Use dolist.
22179 (elint-unbound-variable): Use elint-builtin-variables and
22180 elint-autoloaded-variables.
22181 (elint-get-args): Use cadr, or.
22182 (elint-check-cond-form): Use dolist, cadr.
22183 (elint-check-condition-case-form): Doc fix. Use cadr.
22184 Use elint-extra-errors.
22185 (elint-log): New function.
22186 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
22187 Distinguish errors and warnings.
22188 (elint-log-message): Use with-current-buffer. Inhibit read-only.
22189 Use a bytecomp-style format.
22190 (elint-clear-log): Preserve default-directory. Inhibit read-only.
22191 (elint-get-log-buffer): Use compilation mode. Disable undo.
22192 Don't truncate lines.
22193 (elint-initialize): Set builtin and autoloaded variable lists.
22194 Only process elint-unknown-builtin-args if non-nil.
22195 (elint-find-builtin-variables, elint-find-autoloaded-variables):
22196 New functions.
22197 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
22198
22199 2009-07-22 Kevin Ryde <user42@zip.com.au>
22200
22201 * net/newst-backend.el (newsticker--parse-atom-1.0)
22202 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
22203 (newsticker--parse-rss-1.0):
22204 * progmodes/idlwave.el (idlwave-mode):
22205 * progmodes/idlw-shell.el (idlwave-shell-mode):
22206 * progmodes/vera-mode.el (vera-mode):
22207 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
22208 * progmodes/vhdl-mode.el (vhdl-mode):
22209 * textmodes/table.el (table-generate-source)
22210 (table--warn-incompatibility):
22211 Hyperlink urls in docstrings with URL `...'.
22212
22213 2009-07-22 Glenn Morris <rgm@gnu.org>
22214
22215 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
22216 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
22217 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
22218 Remove leading * from defcustom docs.
22219
22220 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
22221
22222 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
22223 defcustom doc.
22224 (list-load-path-shadows): Optionally, just return shadows as a string.
22225
22226 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
22227
22228 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
22229
22230 * mail/rmailedit.el (rmail-edit-mode):
22231 Use auto-save-include-big-deletions.
22232
22233 * mail/rmail.el (rmail-variables):
22234 Use auto-save-include-big-deletions.
22235
22236 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
22237 changes.
22238
22239 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
22240
22241 * calc/calc.el (calc-undo-length): New variable.
22242 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
22243
22244 2009-07-21 Richard Stallman <rms@gnu.org>
22245
22246 * files.el (auto-save-mode): Handle buffer-save-size = -2
22247 for toggling mode.
22248
22249 2009-07-21 Glenn Morris <rgm@gnu.org>
22250
22251 * textmodes/ispell.el (ispell-looking-back): Update declaration.
22252
22253 * calendar/todo-mode.el (calendar-current-date): Update declaration.
22254
22255 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
22256 silence compiler. Instead...
22257 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
22258 (ps-print-ensure-fontified): Update for above function name changes.
22259
22260 * printing.el (pr-mh-get-msg-num, pr-mh-show)
22261 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
22262 silence compiler. Instead...
22263 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
22264 (mh-show-buffer): Only define for compiler.
22265 (pr-mh-current-message): Update for above function name changes.
22266
22267 * files.el (abort-if-file-too-large): Explicitly pass `filename'
22268 as an argument.
22269 (find-file-noselect, insert-file-1): Update for above change.
22270
22271 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
22272
22273 * mail/mailclient.el (mailclient-send-it): Fix message.
22274
22275 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
22276 (edebug-eval): Check cl-debug-env is bound.
22277 (print-level, print-circle): Don't redefine built-in variables.
22278
22279 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
22280 (custom-print-vectors): Remove old comments from doc.
22281
22282 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
22283 (emerge-version): Make the variable an obsolete alias for the
22284 emacs-version variable. Make the function obsolete.
22285 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
22286 Emerge options, rather than merging in into the main Options menu.
22287 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
22288 and auto advance modes. Disable edit/fast items when not relevant.
22289
22290 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
22291
22292 * term/vt420.el (terminal-init-vt420): Fix typo.
22293
22294 2009-07-20 Sam Steingold <sds@gnu.org>
22295
22296 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
22297 variable (removed from compile.el on 2004-03-11).
22298
22299 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
22300
22301 * files.el (hack-local-variables-filter): Fix last change.
22302
22303 2009-07-19 Juri Linkov <juri@jurta.org>
22304
22305 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
22306 (dir-local-variables-alist): New buffer-local variable.
22307 (hack-local-variables-filter): If variable is not dir-local,
22308 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
22309 because file-local overrides dir-local.
22310 (c-postprocess-file-styles) <declare-function>:
22311 Remove obsolete declaration.
22312 (hack-dir-local-variables): Add dir-local variable/value pair to
22313 `dir-local-variables-alist' and remove duplicates. Doc fix.
22314
22315 * help-fns.el (describe-variable): Add information about
22316 file-local and dir-local variables.
22317
22318 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
22319
22320 * files.el (hack-local-variables-filter): Rewrite.
22321
22322 2009-07-19 Glenn Morris <rgm@gnu.org>
22323
22324 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
22325 Silence compiler by only defining on XEmacs.
22326
22327 * international/mule.el (auto-coding-regexp-alist): Only match
22328 BABYL... at the start of buffer, not of lines. (Bug#3790)
22329
22330 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
22331 non-calendar buffers (Bug#3862). Restore "not on a date" message.
22332 (cal-menu-context-mouse-menu): Doc fix.
22333
22334 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
22335
22336 * simple.el (mail-user-agent): Doc fix. Set :version tag.
22337
22338 2009-07-18 Juri Linkov <juri@jurta.org>
22339
22340 * info.el: Virtual Info keyword finder.
22341 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
22342 (Info-finder-file): New variable.
22343 (Info-finder-find-file): New function.
22344 (finder-known-keywords, finder-package-info)
22345 (find-library-name, lm-commentary): Use defvar and
22346 declare-function to silence compiler warnings.
22347 (Info-finder-find-node): New function.
22348 (info-finder): New command.
22349
22350 * subr.el (process-kill-buffer-query-function): New function.
22351 (add-hook)<kill-buffer-query-functions>: Add hook
22352 `process-kill-buffer-query-function'.
22353
22354 2009-07-18 Alan Mackenzie <acm@muc.de>
22355
22356 * progmodes/cc-mode.el (c-before-hack-hook)
22357 (c-postprocess-file-styles): Give invocation of `c-set-style'
22358 DONT-OVERRIDE parameter of t. Already set style variables will
22359 thus not be overridden by style settings given by `c-file-syle'.
22360
22361 * files.el (hack-local-variables-filter): Remove entries with
22362 duplicate keys from `file-local-variables-alist'.
22363
22364 2009-07-18 Eli Zaretskii <eliz@gnu.org>
22365
22366 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
22367 x-set-selection if display-selections-p returns nil for the
22368 current frame.
22369
22370 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
22371
22372 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
22373
22374 2009-07-18 Eli Zaretskii <eliz@gnu.org>
22375
22376 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
22377 Accept nil in addition to a regexp.
22378 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
22379 Accept nil in addition to a regexp.
22380 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
22381 buffers that have an associated file. Handle nil values of
22382 desktop-buffers-not-to-save and desktop-files-not-to-save.
22383 (Bug#3833)
22384
22385 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
22386 (x-disown-selection-internal): New functions.
22387
22388 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
22389
22390 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
22391 warning.
22392 (gdb-breakpoints-header): Move forward to avoid compiler warning.
22393 (gdb-make-header-line-mouse-map): Remove duplicate definition.
22394
22395 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
22396
22397 * simple.el (set-mark): Revert last change.
22398
22399 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
22400
22401 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
22402 rendering of pngs is not possible instead of messaging a long
22403 description.
22404
22405 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
22406
22407 * w32-fns.el (x-selection-owner-p): New function.
22408
22409 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
22410 (mouse-yank-at-click, mouse-yank-primary):
22411 If select-active-regions is non-nil, deactivate the mark before
22412 insertion.
22413
22414 * simple.el (deactivate-mark, set-mark): Only save selection if we
22415 own it.
22416
22417 2009-07-17 Kenichi Handa <handa@m17n.org>
22418
22419 * case-table.el (describe-buffer-case-table): Fix for the case
22420 that KEY is a cons.
22421
22422 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
22423
22424 * vc-rcs.el (vc-rcs-find-file-hook):
22425 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
22426
22427 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
22428
22429 * net/tramp.el (tramp-wait-for-output): Handle the case when
22430 commands do not return a newline but a null byte before the shell
22431 prompt. (Bug#3858)
22432
22433 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22434
22435 * term/ns-win.el (ns-set-alpha): Don't declare.
22436 (ns-set-background-alpha): Remove function.
22437
22438 2009-07-16 Kevin Ryde <user42@zip.com.au>
22439
22440 * emacs-lisp/copyright.el (copyright-update): Save match-data across
22441 y-or-n-p, for safety.
22442
22443 2009-07-16 Richard Stallman <rms@gnu.org>
22444
22445 * files.el (auto-save-mode): If buffer-saved-size is -2,
22446 don't clobber it.
22447
22448 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
22449 (rmail-retry-ignored-headers): Add more uninteresting fields.
22450
22451 2009-07-15 Jari Aalto <jari.aalto@cante.net>
22452
22453 * net/rcirc.el (rcirc): Use history variables.
22454 (rcirc-server-name-history, rcirc-nick-name-history)
22455 (rcirc-server-port-history): New variables.
22456
22457 2009-07-15 Kenichi Handa <handa@m17n.org>
22458
22459 * international/mule-cmds.el (set-language-environment-charset):
22460 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
22461 ignore them.
22462
22463 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
22464 Delete unibyte-display.
22465
22466 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
22467
22468 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
22469
22470 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
22471
22472 * simple.el (deactivate-mark): Optional argument FORCE.
22473 (set-mark): Use deactivate-mark.
22474
22475 * info.el (Info-search): No need to check transient-mark-mode
22476 before calling deactivate-mark.
22477
22478 * select.el (x-set-selection): Doc fix.
22479 (x-valid-simple-selection-p): Allow buffer values.
22480 (xselect--selection-bounds): Handle buffer values.
22481 Suggested by David De La Harpe Golden.
22482
22483 * mouse.el (mouse-set-region, mouse-drag-track):
22484 Call copy-region-as-kill before setting the mark, to let
22485 select-active-regions work.
22486
22487 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
22488
22489 * simple.el (deactivate-mark): If select-active-regions is
22490 non-nil, copy the selection data into a string.
22491 (activate-mark): If select-active-regions is non-nil, set the
22492 selection to the current buffer.
22493 (set-mark): Update selection if select-active-regions is non-nil.
22494
22495 * select.el (x-valid-simple-selection-p): Allow buffer values.
22496
22497 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
22498
22499 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
22500 and more featureful message-mode.
22501
22502 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
22503
22504 * select.el (x-set-selection): Doc fix.
22505 (x-valid-simple-selection-p): Disallow selection data consisting
22506 of a list or cons of integers, since that is not used.
22507 (xselect--selection-bounds, xselect--int-to-cons): New functions.
22508 (xselect-convert-to-string, xselect-convert-to-length)
22509 (xselect-convert-to-filename, xselect-convert-to-charpos)
22510 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
22511
22512 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
22513
22514 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
22515 output in -break-info command (Emacs bug #3794).
22516
22517 2009-07-14 Glenn Morris <rgm@gnu.org>
22518
22519 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
22520 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
22521 (edebug-print-length, edebug-print-level, edebug-print-circle)
22522 (edebug-sit-for-seconds, edebug-view-outside)
22523 (edebug-bounce-point, edebug-set-global-break-condition)
22524 (edebug-Go-nonstop-mode, edebug-trace-mode)
22525 (edebug-Trace-fast-mode, edebug-continue-mode)
22526 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
22527 (edebug-visit-eval-list): Doc fixes.
22528
22529 * subr.el (def-edebug-spec): Doc fix.
22530
22531 2009-07-14 Kenichi Handa <handa@m17n.org>
22532
22533 * international/characters.el: Fix setting of category ?C.
22534
22535 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
22536
22537 * term/ns-win.el (x-select-font): defalias x-select-font to
22538 ns-popup-font-panel instead of generate-fontset-menu.
22539
22540 2009-07-12 Eli Zaretskii <eliz@gnu.org>
22541
22542 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
22543
22544 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
22545
22546 * arc-mode.el (archive-find-type): Allow for a PK00 string before
22547 the PK\003\004 header (Bug#3770).
22548
22549 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
22550
22551 * pcomplete.el (pcomplete-comint-setup): Check for
22552 shell-dynamic-complete-filename too.
22553
22554 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
22555
22556 * simple.el (temporary-goal-column): Change the value for
22557 line-move-visual to a cons cell.
22558 (line-move-visual): Record or set the window hscroll, if
22559 necessary (Bug#3494).
22560 (line-move-1): Handle cons value of temporary-goal-column.
22561
22562 2009-07-11 Kenichi Handa <handa@m17n.org>
22563
22564 * international/mule-diag.el (describe-character-set): Don't show
22565 width.
22566
22567 2009-07-10 Sam Steingold <sds@gnu.org>
22568
22569 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22570 Omake sometimes indents the errors it prints, so allow all
22571 regexps to start with spaces.
22572
22573 2009-07-10 Eli Zaretskii <eliz@gnu.org>
22574
22575 * cus-edit.el (customize-changed-options-previous-release):
22576 Bump value to 22.1. (Bug#3804)
22577
22578 2009-07-08 Sam Steingold <sds@gnu.org>
22579
22580 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
22581 to be a cons cell (test . ignored-directory) to selectively ignore
22582 some directories depending on the location of the search.
22583
22584 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
22585
22586 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
22587 remote user is root, on the local host.
22588 (tramp-local-host-p): Either the local user or the remote user
22589 must be root. (Bug#3771)
22590
22591 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
22592
22593 * progmodes/gdb-mi.el (gdb): Remove description of
22594 gdb-use-separate-io-buffer.
22595 (menu): Don't allow toggling of or enable
22596 gdb-use-separate-io-buffer from menubar.
22597
22598 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
22599
22600 * mail/unrmail.el (unrmail): Make sure the message ends with two
22601 newlines (Bug#3769).
22602
22603 2009-07-08 Glenn Morris <rgm@gnu.org>
22604
22605 * calendar/calendar.el (calendar-current-date): Rework previous change.
22606
22607 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
22608
22609 * calendar/calendar.el (calendar-current-date):
22610 Add an optional argument giving an offset from today.
22611
22612 2009-07-08 Glenn Morris <rgm@gnu.org>
22613
22614 * tutorial.el (tutorial--describe-nonstandard-key):
22615 Adjust the message for when a key has been unbound.
22616 (help-with-tutorial): Hide the arch-tag.
22617
22618 2009-07-08 Kenichi Handa <handa@m17n.org>
22619
22620 * international/fontset.el (setup-default-fontset): For each
22621 script, append (not set) font-specs.
22622
22623 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
22624 docstring.
22625
22626 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
22627
22628 * progmodes/gdb-mi.el (gdb-init-1): Move sending
22629 -data-list-register-names to ...
22630 (gdb-starting): ... here because GDB 7.0 requires execution to
22631 have started when using this MI command.
22632 (gdb-set-header): New function to distinguish select and
22633 unselected tabs in gdb buffers.
22634 (gdb-propertize-header): New macro that uses gdb-set-header.
22635 (gdb-breakpoints-header, gdb-locals-header): Use it.
22636 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
22637
22638 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
22639
22640 * Makefile.in (ELCFILES): Remove fadr.elc.
22641
22642 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
22643
22644 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
22645 may contain frame information, so `string-match' should be used.
22646 (gdb-update): Disassembly is invalidated through
22647 `gdb-get-selected-frame'.
22648 (gdb-pad-string): New function to pad string with spaces.
22649 (gdb-invalidate-disassembly): Invalidate only if the buffer
22650 exists.
22651 (gdb-disassembly-handler-custom): Column alignment.
22652 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
22653 placing new ones.
22654 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
22655 end of line, too.
22656 (gdb-frame-handler): Match convention to for disassembly buffer
22657 mode name.
22658 (gdb-stack-list-frames-handler): Rewritten without regexps.
22659 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
22660 not highlight breakpoints without line information.
22661 (gdb-input): Add trailing newline to command.
22662
22663 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
22664 buffer properly.
22665 (gdb-breakpoints-list-handler-custom): Replacement for
22666 `gdb-break-list-handler'. Using real parser instead of regexps
22667 now.
22668 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
22669 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
22670 to place breakpoints.
22671 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
22672 functions.
22673 (gdb-disassembly-handler-custom): Show overlay arrow.
22674 (gdb-disassembly-place-breakpoints): Show breakpoints in
22675 disassembly buffer.
22676 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
22677 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
22678 instead of parsing breakpoints buffer. Fixed old menu references
22679 in `gud-menu-map'.
22680
22681 * fadr.el: Remove.
22682
22683 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
22684 (gdb-memory-address): New variable which holds top address of
22685 memory page shown in memory buffer.
22686 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
22687 New customization variables.
22688 New functions:
22689 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
22690 display the memory buffer.
22691 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
22692 buffer display parameters.
22693 (def-gdb-memory-format, gdb-memory-format-binary)
22694 (gdb-memory-format-octal, gdb-memory-format-unsigned)
22695 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
22696 Functions for setting memory buffer format.
22697 (gdb-memory-unit-word, gdb-memory-unit-halfword)
22698 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
22699 unit size used in memory buffer.
22700 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
22701 Switch to next/previous page of memory buffer.
22702 Now using (bindat-get-field) instead of fadr functions.
22703
22704 2009-07-07 Sam Steingold <sds@gnu.org>
22705
22706 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
22707 non-top-level files.
22708
22709 2009-07-07 Kenichi Handa <handa@m17n.org>
22710
22711 * international/mule-cmds.el (reset-language-environment):
22712 Put the highset priority to the charset iso-8859-1.
22713
22714 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
22715
22716 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
22717 to the end of the line when locating the block (Bug#700).
22718
22719 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
22720
22721 * net/tramp.el (tramp-handle-write-region): Flush file properties
22722 in case of short track.
22723
22724 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
22725
22726 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
22727 Coded custom representation of verilog error regular expressions
22728 to work with Emacs-22's new format.
22729 (verilog-error-regexp-xemacs-alist): Coded custom representation
22730 of verilog error regular expressions to work with XEmacs format.
22731 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
22732 error recognition into XEmacs.
22733 (verilog-error-regexp-add-emacs): Hook routine to install verilog
22734 error recognition into Emacs-22.
22735
22736 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
22737
22738 * woman.el: Remove stand-alone closing parentheses.
22739 (woman-file-name, woman2-format-paragraphs)
22740 (woman-leave-blank-lines): Code cleanup.
22741 (woman-use-own-frame): Change default to nil.
22742 (woman-italic, woman-bold, woman-unknown, woman-addition):
22743 Change defaults to inherit from default faces.
22744 (woman2-process-escapes): Consume the newline after a stand-alone
22745 filler character (Bug#3651).
22746
22747 2009-07-06 Glenn Morris <rgm@gnu.org>
22748
22749 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
22750 (top-level): Move provide to the end.
22751 (ffap): Remove defunct URL from custom group.
22752
22753 * subr.el (eval-after-load): Doc fix.
22754
22755 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
22756
22757 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
22758 `calc-embedded-word' is called twice.
22759
22760 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
22761
22762 * files.el (find-alternate-file-other-window, find-alternate-file):
22763 Obey confirm-nonexistent-file-or-buffer.
22764
22765 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
22766
22767 * dired-aux.el (dired-show-file-type): Handle remote files.
22768
22769 2009-07-05 Jari Aalto <jari.aalto@cante.net>
22770
22771 * desktop.el (desktop-globals-to-save):
22772 Add file-name-history (Bug#2750).
22773
22774 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
22775
22776 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
22777
22778 2009-07-04 Johan Bockgård <bojohan@gnu.org>
22779
22780 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
22781 property on entire argument since this is what eshell-lisp-command
22782 expects.
22783
22784 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
22785
22786 * net/tramp-gvfs.el (tramp-gvfs-methods)
22787 (tramp-gvfs-zeroconf-domain)
22788 (tramp-bluez-discover-devices-timeout): Add version flag.
22789 (tramp-gvfs-handler-mounted-unmounted)
22790 (tramp-gvfs-connection-mounted-p): Polish handling of
22791 incompatibilities between GVFS 0.2 and 1.0.
22792
22793 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
22794
22795 * cus-start.el (all): Add make-pointer-invisible.
22796
22797 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
22798
22799 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
22800 formatted correctly.
22801
22802 2009-07-02 Juri Linkov <juri@jurta.org>
22803
22804 * info.el: Virtual Info files and nodes.
22805 (Info-virtual-files, Info-virtual-nodes): New variables.
22806 (Info-current-node-virtual): New variable.
22807 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
22808 New functions.
22809 (Info-file-supports-index-cookies): Use Info-virtual-file-p
22810 to check for a virtual file instead of checking a fixed list
22811 of node names.
22812 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
22813 instead of ad-hoc processing of "dir" and (apropos history toc).
22814 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
22815 instead of ad-hoc processing of "dir" and (apropos history toc).
22816 Reread a file when moving from a virtual node.
22817 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
22818 (Info-directory-toc-nodes, Info-directory-find-file)
22819 (Info-directory-find-node): New functions.
22820 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
22821 (Info-history): Move part of code to
22822 `Info-history-find-node'.
22823 (Info-history-toc-nodes, Info-history-find-file)
22824 (Info-history-find-node): New functions.
22825 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
22826 (Info-toc): Move part of code to `Info-toc-find-node'.
22827 (Info-toc-find-node): New function.
22828 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
22829 the current Info file name to references because now the node
22830 "*TOC*" belongs to the same Info manual.
22831 (Info-toc-build): Rename from `Info-build-toc'.
22832 (Info-toc-nodes): Rename input argument `file' to `filename'.
22833 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
22834 instead of ad-hoc processing of ("dir" apropos history toc).
22835 (Info-index-nodes): Use Info-virtual-file-p
22836 to check for a virtual file instead of checking a fixed list
22837 of node names.
22838 (Info-index-node): Add check for `Info-current-node-virtual'.
22839 Raise `save-match-data' higher up the tree to contain
22840 `search-forward' too (bug fix).
22841 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
22842 (Info-virtual-index-nodes): New variable.
22843 (Info-virtual-index-find-node, Info-virtual-index): New functions.
22844 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
22845 (Info-apropos-file, Info-apropos-nodes): New variables.
22846 (Info-apropos-toc-nodes, Info-apropos-find-file)
22847 (Info-apropos-find-node, Info-apropos-matches): New functions.
22848 (info-apropos): Move part of code to `Info-apropos-find-node' and
22849 `Info-apropos-matches'.
22850 (Info-mode-map): Bind "I" to `Info-virtual-index'.
22851 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
22852 for a virtual file instead of checking a fixed list of node names.
22853
22854 * simple.el (async-shell-command): New command.
22855
22856 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
22857
22858 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
22859 instead of `mount-info'.
22860
22861 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
22862
22863 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
22864 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
22865
22866 2009-07-02 Kenichi Handa <handa@m17n.org>
22867
22868 * international/mule.el (set-keyboard-coding-system): Force *-unix
22869 coding-system to avoid eol conversion.
22870
22871 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
22872
22873 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
22874 Add handler for `process-file', `shell-command' and
22875 `start-file-process'.
22876 (tramp-gvfs-handle-shell-command)
22877 (tramp-gvfs-handle-start-file-process)
22878 (tramp-gvfs-handle-process-file): New defuns.
22879 (tramp-synce-list-devices): Simplify check for existence of property.
22880
22881 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
22882
22883 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
22884
22885 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
22886
22887 * language/korean.el (set-language-info-alist): Add korean-cp949,
22888 cp949 to spec.
22889
22890 2009-07-01 Kenichi Handa <handa@m17n.org>
22891
22892 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
22893
22894 * international/encoded-kb.el: Deleted.
22895
22896 * international/mule.el (set-keyboard-coding-system): Perform the
22897 necessary setup here instead of calling encoded-kbd-setup-display.
22898
22899 2009-07-01 Glenn Morris <rgm@gnu.org>
22900
22901 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
22902
22903 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
22904
22905 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
22906
22907 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
22908
22909 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
22910 Handle also the 'rename case, when setting file modes. (Bug#3712)
22911 (tramp-default-file-modes): Remove execute permissions.
22912
22913 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
22914 (top): Add a default for "synce" in `tramp-default-user-alist'.
22915 Add completion function for "synce" method.
22916 (tramp-hal-service, tramp-hal-path-manager)
22917 (tramp-hal-interface-manager, tramp-hal-interface-device):
22918 New defconst.
22919 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
22920 (tramp-synce-list-devices, tramp-synce-parse-device-names):
22921 New defuns.
22922
22923 * net/trampver.el: Update release number.
22924
22925 2009-06-30 Kenichi Handa <handa@m17n.org>
22926
22927 * international/fontset.el (setup-default-fontset): Add CJK fonts
22928 for symbols and the other miscellaneous characters.
22929
22930 * language/korea-util.el (setup-korean-environment-internal):
22931 Make char-width-table suitable for Korean environments.
22932 (exit-korean-environment): Cancel above.
22933
22934 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
22935 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
22936 setup-function to make char-width-table suitable for respective
22937 environments, and an exit-function to cancel that.
22938
22939 * language/japan-util.el (setup-japanese-environment-internal):
22940 Call use-cjk-char-width-table with arg `ja_JP'.
22941
22942 * international/characters.el (cjk-char-width-table): Delete it.
22943 (cjk-char-width-table-list): New variable.
22944 (use-cjk-char-width-table): New arg local-name.
22945 (use-default-char-width-table): Fix for the case that Emacs is
22946 already using the default char-width-table.
22947
22948 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
22949
22950 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
22951 modes mandatory. (Bug#3712)
22952
22953 2009-06-29 Alan Mackenzie <acm@muc.de>
22954
22955 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
22956 correction between the visible width of TABs and their number of bytes.
22957
22958 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
22959
22960 * server.el (server-buffer-done): Prevent kill-buffer from
22961 prompting by clearing the buffer modification flag (Bug#3696).
22962
22963 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
22964
22965 * progmodes/verilog-mode.el (verilog-beg-of-statement)
22966 (verilog-endcomment-reason-re): Support unique case and priority case.
22967 (verilog-basic-complete-re): Support localparam lineup.
22968 (verilog-beg-of-statement-1): Fix for robustness, unique case.
22969 (verilog-set-auto-endcomments): Fix for unique case, always_comb
22970 commenting.
22971 (verilog-leap-to-case-head): Now support *nested* unique &
22972 priority case statements.
22973 (verilog-auto-lineup): Make just declarations the default (as it
22974 had been).
22975 (verilog-leap-to-case-head): Support priority/unique case statements.
22976 (verilog-auto-lineup): Rework to give users radio buttons to
22977 select the various styles of automatic lineup.
22978 (verilog-error-regexp-alist): Rework to support the XEmacs style
22979 of error regular expressions from compilers, lint tools &
22980 simulators. Note that GNU Emacs has made it impossible for a mode
22981 to load such things.
22982 (electric-verilog-terminate-line, verilog-indent-declaration)
22983 (verilog-auto-wiure): Rework for radio button selection of
22984 auto-lineup selection of specification of auto lineup.
22985 (verilog-beg-of-statement-1): Redesign to support proper operation
22986 in additional code, based on testing with auto-lineup.
22987 (verilog-calculate-indent, assignments & declarations)
22988 (verilog-backward-token): Enhance to support auto-lineup of
22989 assignments & declarations.
22990 (verilog-in-directive-p, verilog-at-struct-p): New function for
22991 easy test of whether we are.
22992 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
22993 to support safe execution at almost anyline.
22994 (verilog-calc-1): Properly support indenting deep inside generate
22995 blocks.
22996 (verilog-init-font): Remove definition & use of verilog-init-font,
22997 as it is redundant with font-lock-defaults.
22998 (verilog-mode): Alter the definition of verilog-font-lock-defaults
22999 to avoid circular calls if syntax-ppss is a function (as is the
23000 case now in 22.x GNU Emacs) as that function would sometimes call
23001 itself, leading to (nearly) infinite recursion.
23002 (verilog-ovm-begin-re, verilog-ovm-end-re)
23003 (verilog-ovm-statement-re, verilog-leap-to-head)
23004 (verilog-backward-token): Add support for OVM macros. Some are
23005 complete statements, and others open and close scopes like begin
23006 and end.
23007 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
23008 (verilog-defun-level-generate-only-re): Really fix the defun-list
23009 compilation issue.
23010 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
23011 coverpoint, constraint and cross statements.
23012 (verilog-defun-level-list, verilog-generate-defun-level-list)
23013 (verilog-all-defun-level-list): Redo these specifications - it is
23014 too hard to support eval-when compile aggregation of lists also
23015 built at when-compile time.
23016 (verilog-defun-level-list): Place defconsts of variables used in
23017 building regular expressions which are built in eval-when-compile
23018 bodies in the same eval-when-compile body to facilitate compile
23019 without load.
23020 (verilog-beg-block-re-ordered): Support indenting
23021 virtual/protected tasks and functions.
23022 (verilog-defun-level-list, verilog-in-generate-region-p)
23023 (verilog-backward-ws&directives, verilog-calc-1): Speed up
23024 indentation of some module items (generate items).
23025 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
23026 across virtual/protected tasks and functions.
23027
23028 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
23029
23030 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
23031 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
23032 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
23033 in concatenations. Reported by Yishay Belkind.
23034 (verilog-auto-ascii-enum): Support one-hot state machines in
23035 AUTOASCIIENUM. Suggested by Lloyd Gomez.
23036 (verilog-auto-inst, verilog-auto-inst-port): Include interface
23037 modport in AUTOINST and add vl-modport for users.
23038 Reported by David Rogoff.
23039 (verilog-auto-inout-module, verilog-auto-inst)
23040 (verilog-decls-get-interfaces, verilog-insert-definition)
23041 (verilog-insert-one-definition, verilog-read-decls)
23042 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
23043 (verilog-sig-modport, verilog-signals-combine-bus)
23044 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
23045 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
23046 Suggested by David Rogoff.
23047 (verilog-repair-open-comma): Fix non-insertion of comma when
23048 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
23049 (verilog-make-width-expression): Simplify [A-1:0] expression
23050 widths to just {A{1'b0}}.
23051 (verilog-mode): Cleanup checkdoc warnings.
23052 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
23053 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
23054 inputs/outputs or data type. Suggested by Vasu Kandadi.
23055 (next-error-last-buffer): Fix byte-compiler warning.
23056 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
23057 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
23058 or shell command text during AUTO expansion. Suggested by Tad Truex.
23059 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
23060 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
23061 Fix dotted nets {a.b,c.d} and escaped identifiers being mis-included
23062 in AUTOINOUT. Reported by Matthew Lovell.
23063 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
23064 causing use of <= assignments. Reported by Alex Reed.
23065 (verilog-read-decls): Fix triand, trior, wand, wor to be
23066 recognized by AUTOWIRE. Reported by Spencer Isaacson.
23067 (verilog-extended-complete-re): Support import "DPI-C" functions.
23068 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
23069 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
23070 (verilog-insert-date, verilog-insert-year)
23071 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
23072 Windows systems. Reported by Michael Potts.
23073 (verilog-read-module-name): Fix AUTOINST when the child module
23074 declaration's name is a tick define. Reported by Elliot Mednick.
23075 (verilog-read-decls): Fix V2K parameter bit subscripts getting
23076 passed to next parameter's definition. Reported by Bruce T.
23077 (verilog-read-decls): Fix detecting "parameter int" when using
23078 AUTOINSTPARAM. Reported by Bruce T.
23079 (verilog-goto-defun): Fix goto not finding modules unless first
23080 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
23081 (verilog-mode): Expand -f flag arguments on entry to mode so
23082 verilog-goto-defun will work. Reported by Lawrence Butcher.
23083 (verilog-getopt): Expand environment variables in -f file
23084 arguments. Suggested by Lawrence Butcher.
23085 (verilog-set-define): Fix "Symbol's value as variable is void"
23086 when reading enumerations.
23087 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
23088 Suggested by Stephen Peltan.
23089 (verilog-read-defines): Fix reading of enumerations in include
23090 files. Reported by Steve Peltan.
23091
23092 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
23093
23094 * files.el (trash-directory): Fix defcustom type.
23095
23096 2009-06-28 Juri Linkov <juri@jurta.org>
23097
23098 * help-fns.el (describe-function-1): Correctly locate adviced
23099 functions in hyperlink (Bug#2438).
23100
23101 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
23102
23103 * files.el (trash-directory): Change default to nil.
23104 (move-file-to-trash): If trash-directory is nil and
23105 system-move-file-to-trash is unbound, perform freedesktop-style
23106 trashing.
23107
23108 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
23109
23110 * files.el (move-file-to-trash): Add freedesktop trash
23111 support (Bug#973).
23112
23113 2009-06-28 Glenn Morris <rgm@gnu.org>
23114
23115 * autorevert.el (global-auto-revert-non-file-buffers)
23116 (global-auto-revert-mode): Doc fixes.
23117
23118 2009-06-27 Johan Bockgård <bojohan@gnu.org>
23119
23120 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
23121
23122 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
23123
23124 * faces.el (x-handle-named-frame-geometry): Ensure that we have
23125 opened an X connection before calling x-get-resource (Bug#3194).
23126
23127 * play/doctor.el: Remove reference to obsolete website.
23128 (make-doctor-variables): Correct grammar mistake (Bug#2633).
23129
23130 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
23131
23132 Remove find-file-not-found-hook VC method. (Bug#2757)
23133 * vc-hooks.el (vc-file-not-found-hook)
23134 (vc-default-find-file-not-found-hook): Remove functions.
23135 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
23136 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
23137 * vc.el:
23138 * vc-hg.el:
23139 * vc-git.el: Do not mention find-file-not-found-hook VC method.
23140
23141 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
23142
23143 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
23144 compatibility function for `looking-back'.
23145
23146 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
23147 Use `ispell-looking-back'.
23148
23149 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
23150
23151 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
23152 rather than `filename'.
23153
23154 2009-06-23 Miles Bader <miles@gnu.org>
23155
23156 * face-remap.el (text-scale-set): New function.
23157
23158 2009-06-23 Glenn Morris <rgm@gnu.org>
23159
23160 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
23161
23162 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
23163
23164 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
23165
23166 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
23167
23168 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
23169 Simplify Persian conditionals.
23170
23171 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
23172 variable `filename'.
23173
23174 * comint.el (comint-insert-input): Doc fix.
23175
23176 * Makefile.in (ELCFILES): Fix typo in previous change.
23177
23178 2009-06-23 Miles Bader <miles@gnu.org>
23179
23180 * cus-start.el: Add entry for `recenter-redisplay'.
23181
23182 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23183
23184 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
23185 Add an optional argument for the backend, use it instead of
23186 calling vc-backend.
23187 (vc-mode-line): Add an optional argument for the backend.
23188 Pass the backend to vc-state and vc-working-revision. Move code for
23189 special handling for vc-state being a buffer to ...
23190
23191 * vc-rcs.el (vc-rcs-find-file-hook):
23192 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
23193
23194 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
23195 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
23196 vc-stay-local-p and vc-mode-line calls.
23197
23198 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
23199 (vc-cvs-diff, vc-cvs-annotate-command)
23200 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
23201 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
23202 vc-mode-line calls.
23203
23204 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
23205 direct comparison.
23206 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
23207 backend when calling vc-mode-line.
23208 (vc-register): Do not create a closure for calling the vc register
23209 function, call it directly.
23210
23211 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23212
23213 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
23214 to make it obvious item can be clicked.
23215
23216 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
23217
23218 2009-06-23 Kenichi Handa <handa@m17n.org>
23219
23220 * language/korea-util.el (korean-key-bindings): Change the binding
23221 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
23222 same command.
23223
23224 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
23225
23226 Sync with Tramp 2.1.16.
23227
23228 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
23229
23230 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
23231 when a loading of a package fails. Completion function for rsync
23232 is `tramp-completion-function-alist-ssh'.
23233 (all): Replace all calls of `split-string' and
23234 `tramp-split-string' by `tramp-compat-split-string'.
23235 (tramp-default-method): Use `tramp-compat-process-running-p'.
23236 (tramp-default-proxies-alist): Allow also Lisp forms.
23237 (tramp-remote-path): Add choice "Private Directories".
23238 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
23239 (tramp-domain-regexp): Allow also "-", "_" and ".".
23240 (tramp-end-of-output): Remove newlines, and add "$" at the end.
23241 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
23242 (tramp-debug-message): Insert header line in debug buffer.
23243 (tramp-handle-directory-files-and-attributes-with-stat):
23244 Care about filenames with spaces, or starting with "-".
23245 (tramp-handle-dired-uncache): New defun.
23246 (tramp-handle-insert-directory): Don't flush the directory from
23247 cache, this is handled by `dired-uncache' now.
23248 (tramp-handle-insert-file-contents): Improve error handling.
23249 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
23250 Quote `tramp-end-of-output'.
23251 (tramp-action-password): Improve trace message.
23252 (tramp-check-for-regexp): Both echoes must be present, before removing.
23253 (tramp-open-connection-setup-interactive-shell): Trace coding system.
23254 (tramp-compute-multi-hops): Eval cons cells of
23255 `tramp-default-proxies-alist'.
23256 (tramp-maybe-open-connection): Use the same command pattern for
23257 first hop and further hops.
23258 (tramp-wait-for-output): Remove handling of newlines.
23259 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
23260 (tramp-split-string): Remove function. It is handled in
23261 tramp-compat now.
23262
23263 * net/tramp-cmds.el (tramp-bug):
23264 Recommend `tramp-cleanup-all-connections' in the bug mail.
23265
23266 * net/tramp-compat.el (tramp-compat-split-string)
23267 (tramp-compat-process-running-p): New defuns.
23268
23269 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
23270 for `dired-uncache'.
23271
23272 * net/tramp-gvfs.el: New package.
23273
23274 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
23275 Add handler for `dired-uncache'.
23276 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
23277
23278 * net/trampver.el: Update release number. Make version check fit
23279 for SXEmacs 22.
23280
23281 2009-06-22 Jim Meyering <meyering@redhat.com>
23282
23283 Automatically handle .xz suffix (XZ-compressed files), too.
23284 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
23285 XZ is the successor to LZMA: <http://tukaani.org/xz/>
23286
23287 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
23288 Nick Roberts <nickrob@snap.net.nz>
23289
23290 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
23291 repository (http://sphinx.net.ru/hg/gdb-mi/).
23292
23293 2009-06-22 Glenn Morris <rgm@gnu.org>
23294
23295 * files.el (dir-locals-collect-mode-variables): Allow for any number of
23296 `mode' and `eval' entries. (Bug#3430)
23297
23298 * Makefile.in (ELCFILES): Add fadr.elc.
23299
23300 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
23301 differing behavior of \n and ^ in strings. (Bug#3385)
23302
23303 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
23304
23305 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
23306 property.
23307 (lisp-indent-function): Make it a defcustom.
23308
23309 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
23310
23311 * progmodes/gdb-ui.el: Replace with ...
23312 * progmodes/gdb-mi.el: ... this file.
23313 * progmodes/gud.el: Modify for gdb-mi.el.
23314
23315 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
23316
23317 * fadr.el: New file.
23318
23319 See ChangeLog.14 for earlier changes.
23320
23321 ;; Local Variables:
23322 ;; coding: utf-8
23323 ;; End:
23324
23325 Copyright (C) 2009-2011 Free Software Foundation, Inc.
23326
23327 This file is part of GNU Emacs.
23328
23329 GNU Emacs is free software: you can redistribute it and/or modify
23330 it under the terms of the GNU General Public License as published by
23331 the Free Software Foundation, either version 3 of the License, or
23332 (at your option) any later version.
23333
23334 GNU Emacs is distributed in the hope that it will be useful,
23335 but WITHOUT ANY WARRANTY; without even the implied warranty of
23336 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23337 GNU General Public License for more details.
23338
23339 You should have received a copy of the GNU General Public License
23340 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.